From 8994cd5be511c08352f42a457d345af85ea00662 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 12:51:51 -0400 Subject: [PATCH 01/34] fix: improving links on home page --- fern/products/home/pages/welcome.mdx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/fern/products/home/pages/welcome.mdx b/fern/products/home/pages/welcome.mdx index 711e45d18..cb699c13c 100644 --- a/fern/products/home/pages/welcome.mdx +++ b/fern/products/home/pages/welcome.mdx @@ -148,18 +148,13 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right Arrow right - - Import your brand language - Arrow right light - Arrow right light - Add multiple specs to your docs site Arrow right light Arrow right light - - Set up tabs + + Configure your docs site Arrow right light Arrow right light @@ -173,12 +168,12 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right light Arrow right light - + Customize slug from MDX Arrow right light Arrow right light - + See all available components Arrow right light Arrow right light From 87b8862b6eef05602b9db9015968ed7a9779d492 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 15:13:57 -0400 Subject: [PATCH 02/34] fix: improving links on home page --- fern/assets/styles.css | 96 +++++++++++++- fern/docs.yml | 6 +- fern/products/docs/docs.yml | 22 ++- ...ble-snippets.mdx => reusable-markdown.mdx} | 4 +- .../sdks/images/icons/csharp-light.svg | 16 +++ fern/products/sdks/images/icons/go-light.svg | 14 ++ .../products/sdks/images/icons/java-light.svg | 7 + fern/products/sdks/images/icons/php-light.svg | 5 + .../sdks/images/icons/python-light.svg | 11 ++ .../products/sdks/images/icons/ruby-light.svg | 125 ++++++++++++++++++ fern/products/sdks/images/icons/ts-light.svg | 11 ++ 11 files changed, 298 insertions(+), 19 deletions(-) rename fern/products/docs/pages/component-library/custom-components/{reusable-snippets.mdx => reusable-markdown.mdx} (94%) create mode 100644 fern/products/sdks/images/icons/csharp-light.svg create mode 100644 fern/products/sdks/images/icons/go-light.svg create mode 100644 fern/products/sdks/images/icons/java-light.svg create mode 100644 fern/products/sdks/images/icons/php-light.svg create mode 100644 fern/products/sdks/images/icons/python-light.svg create mode 100644 fern/products/sdks/images/icons/ruby-light.svg create mode 100644 fern/products/sdks/images/icons/ts-light.svg diff --git a/fern/assets/styles.css b/fern/assets/styles.css index 97090c8a1..2a6da6006 100644 --- a/fern/assets/styles.css +++ b/fern/assets/styles.css @@ -38,9 +38,7 @@ } /*** START -- PRODUCT SELECTOR STYLING ***/ - @media (min-width: 1024px) { - .fern-product-selector { transform: translate(-2px, 4px); } @@ -212,6 +210,10 @@ /*** END -- PRODUCT SELECTOR STYLING ***/ /*** START -- DOCS HOMEPAGE STYLING ***/ +a[href*="changelog"] svg { + display: none; +} + .docs-homepage { position: relative; .fern-card { @@ -284,6 +286,96 @@ /*** END -- DOCS HOMEPAGE STYLING ***/ /*** START -- SDKS HOMEPAGE STYLING ***/ +a[href*="changelog"] svg { + display: none; +} + +/* TypeScript */ +div:has(a[href*="/sdks/generators/typescript/quickstart"]) > button.fern-sidebar-link span.mr-auto::before, +div:has(a[href*="/sdks/generators/type-script/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + margin-right: 4px; + background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/typescript-light.svg"); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + vertical-align: middle; +} + +/* Python */ +div:has(a[href*="/sdks/generators/python/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + margin-right: 4px; + background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/python-light.svg"); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + vertical-align: middle; +} + +/* Go */ +div:has(a[href*="/sdks/generators/go/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + margin-right: 4px; + background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/go-light.svg"); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + vertical-align: middle; +} + +/* C# / .NET */ +div:has(a[href*="/sdks/generators/csharp/quickstart"]) > button.fern-sidebar-link span.mr-auto::before, +div:has(a[href*="/sdks/generators/net/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + margin-right: 4px; + background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/csharp-light.svg"); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + vertical-align: middle; +} + +/* PHP */ +div:has(a[href*="/sdks/generators/php/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + margin-right: 4px; + background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/php-light.svg"); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + vertical-align: middle; +} + +/* Ruby */ +div:has(a[href*="/sdks/generators/ruby/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { + content: ""; + display: inline-block; + width: 16px; + height: 16px; + margin-right: 4px; + background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/ruby-light.svg"); + background-repeat: no-repeat; + background-position: center; + background-size: contain; + vertical-align: middle; +} + .sdks-homepage { position: relative; diff --git a/fern/docs.yml b/fern/docs.yml index 18e3a0afb..ae56985b7 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -315,9 +315,9 @@ redirects: destination: /learn/docs/preview-publish/publishing-your-docs permanent: true # General getting started pattern - - source: /learn/docs/getting-started/:slug* - destination: /learn/docs/guides/getting-started/:slug* - permanent: true + # - source: /learn/docs/getting-started/:slug* + # destination: /learn/docs/guides/getting-started/:slug* + # permanent: true # Building and Customizing Your Docs redirects - specific cases first - source: /learn/docs/building-and-customizing-your-docs/navigation diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml index 8f5b84bc1..8f4f35869 100644 --- a/fern/products/docs/docs.yml +++ b/fern/products/docs/docs.yml @@ -7,15 +7,11 @@ navigation: path: ./pages/getting-started/quickstart.mdx - link: Customer Showcase href: https://buildwithfern.com/customers - - section: Component Library + - section: Writing Content contents: - - section: Writing Content - contents: - - page: Markdown - path: ./pages/component-library/writing-content/markdown.mdx - - page: Visual Editor - path: ./pages/component-library/writing-content/visual-editor.mdx - - section: Default Components + - page: Markdown + path: ./pages/component-library/writing-content/markdown.mdx + - section: Components contents: - page: Overview path: ./pages/component-library/default-components/overview.mdx @@ -71,12 +67,12 @@ navigation: - page: Tooltips path: ./pages/component-library/default-components/tooltips.mdx icon: fa-regular fa-comment - - page: Reusable Snippets - path: ./pages/component-library/custom-components/reusable-snippets.mdx + - page: Visual Editor + path: ./pages/component-library/writing-content/visual-editor.mdx + - page: Reusable Markdown + path: ./pages/component-library/custom-components/reusable-markdown.mdx - page: Custom React Components path: ./pages/component-library/custom-components/custom-react-components.mdx - - page: Custom CSS & JS - path: ./pages/component-library/custom-components/custom-css-js.mdx - section: Configuration collapsed: true contents: @@ -88,6 +84,8 @@ navigation: path: ./pages/configuration/frontmatter.mdx - page: Search path: ./pages/configuration/search.mdx + - page: Custom CSS & JS + path: ./pages/component-library/custom-components/custom-css-js.mdx - section: Preview & Publish collapsed: true contents: diff --git a/fern/products/docs/pages/component-library/custom-components/reusable-snippets.mdx b/fern/products/docs/pages/component-library/custom-components/reusable-markdown.mdx similarity index 94% rename from fern/products/docs/pages/component-library/custom-components/reusable-snippets.mdx rename to fern/products/docs/pages/component-library/custom-components/reusable-markdown.mdx index 62191532a..ebb8cc5d2 100644 --- a/fern/products/docs/pages/component-library/custom-components/reusable-snippets.mdx +++ b/fern/products/docs/pages/component-library/custom-components/reusable-markdown.mdx @@ -1,6 +1,6 @@ --- -title: Reusable Snippets -description: Reusable, custom snippets to keep content in sync. Edit once, update everywhere. +title: Reusable Markdown +description: Reusable, custom markdown to keep content in sync. Edit once, update everywhere. --- Keep your documentation DRY (Don't Repeat Yourself) by defining a reusable snippet once, and then referencing it in multiple places. This way, you only need to update the snippet in one place to keep all references in sync. diff --git a/fern/products/sdks/images/icons/csharp-light.svg b/fern/products/sdks/images/icons/csharp-light.svg new file mode 100644 index 000000000..9bf4281fd --- /dev/null +++ b/fern/products/sdks/images/icons/csharp-light.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/fern/products/sdks/images/icons/go-light.svg b/fern/products/sdks/images/icons/go-light.svg new file mode 100644 index 000000000..051648bff --- /dev/null +++ b/fern/products/sdks/images/icons/go-light.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/fern/products/sdks/images/icons/java-light.svg b/fern/products/sdks/images/icons/java-light.svg new file mode 100644 index 000000000..751e63e84 --- /dev/null +++ b/fern/products/sdks/images/icons/java-light.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/fern/products/sdks/images/icons/php-light.svg b/fern/products/sdks/images/icons/php-light.svg new file mode 100644 index 000000000..665259094 --- /dev/null +++ b/fern/products/sdks/images/icons/php-light.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/fern/products/sdks/images/icons/python-light.svg b/fern/products/sdks/images/icons/python-light.svg new file mode 100644 index 000000000..e0a9b6479 --- /dev/null +++ b/fern/products/sdks/images/icons/python-light.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/fern/products/sdks/images/icons/ruby-light.svg b/fern/products/sdks/images/icons/ruby-light.svg new file mode 100644 index 000000000..46a8ef298 --- /dev/null +++ b/fern/products/sdks/images/icons/ruby-light.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fern/products/sdks/images/icons/ts-light.svg b/fern/products/sdks/images/icons/ts-light.svg new file mode 100644 index 000000000..43ae30380 --- /dev/null +++ b/fern/products/sdks/images/icons/ts-light.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + From e72b4e3199b0ade39d8466462c00988f489bcb85 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 15:16:58 -0400 Subject: [PATCH 03/34] fix: improving links on home page --- fern/assets/styles.css | 86 ------------------------------------------ 1 file changed, 86 deletions(-) diff --git a/fern/assets/styles.css b/fern/assets/styles.css index 2a6da6006..fa0d12427 100644 --- a/fern/assets/styles.css +++ b/fern/assets/styles.css @@ -290,92 +290,6 @@ a[href*="changelog"] svg { display: none; } -/* TypeScript */ -div:has(a[href*="/sdks/generators/typescript/quickstart"]) > button.fern-sidebar-link span.mr-auto::before, -div:has(a[href*="/sdks/generators/type-script/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - margin-right: 4px; - background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/typescript-light.svg"); - background-repeat: no-repeat; - background-position: center; - background-size: contain; - vertical-align: middle; -} - -/* Python */ -div:has(a[href*="/sdks/generators/python/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - margin-right: 4px; - background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/python-light.svg"); - background-repeat: no-repeat; - background-position: center; - background-size: contain; - vertical-align: middle; -} - -/* Go */ -div:has(a[href*="/sdks/generators/go/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - margin-right: 4px; - background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/go-light.svg"); - background-repeat: no-repeat; - background-position: center; - background-size: contain; - vertical-align: middle; -} - -/* C# / .NET */ -div:has(a[href*="/sdks/generators/csharp/quickstart"]) > button.fern-sidebar-link span.mr-auto::before, -div:has(a[href*="/sdks/generators/net/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - margin-right: 4px; - background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/csharp-light.svg"); - background-repeat: no-repeat; - background-position: center; - background-size: contain; - vertical-align: middle; -} - -/* PHP */ -div:has(a[href*="/sdks/generators/php/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - margin-right: 4px; - background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/php-light.svg"); - background-repeat: no-repeat; - background-position: center; - background-size: contain; - vertical-align: middle; -} - -/* Ruby */ -div:has(a[href*="/sdks/generators/ruby/quickstart"]) > button.fern-sidebar-link span.mr-auto::before { - content: ""; - display: inline-block; - width: 16px; - height: 16px; - margin-right: 4px; - background-image: url("https://fern-docs.s3.us-east-2.amazonaws.com/SDK+Icons/ruby-light.svg"); - background-repeat: no-repeat; - background-position: center; - background-size: contain; - vertical-align: middle; -} - .sdks-homepage { position: relative; From de46c6af712800bca189d3c7b270b08662794fdb Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 16:30:20 -0400 Subject: [PATCH 04/34] fix: improving links on home page --- fern/assets/styles.css | 196 +--------------- fern/components/FernFooter.tsx | 84 ------- fern/components/FernStatus.tsx | 212 ------------------ fern/components/images/BuiltWithFernLogo.tsx | 37 --- fern/components/images/builtwithfern-dark.tsx | 39 ---- .../images/builtwithfern-frame-dark.tsx | 105 --------- .../images/builtwithfern-frame-light.tsx | 105 --------- .../components/images/builtwithfern-light.tsx | 37 --- fern/components/images/soc2.tsx | 130 ----------- fern/docs.yml | 4 - fern/footer-dist/output.js | 14 +- fern/products/home/pages/welcome.mdx | 15 +- footer/src/FernFooter.tsx | 24 +- 13 files changed, 24 insertions(+), 978 deletions(-) delete mode 100644 fern/components/FernFooter.tsx delete mode 100644 fern/components/FernStatus.tsx delete mode 100644 fern/components/images/BuiltWithFernLogo.tsx delete mode 100644 fern/components/images/builtwithfern-dark.tsx delete mode 100644 fern/components/images/builtwithfern-frame-dark.tsx delete mode 100644 fern/components/images/builtwithfern-frame-light.tsx delete mode 100644 fern/components/images/builtwithfern-light.tsx delete mode 100644 fern/components/images/soc2.tsx diff --git a/fern/assets/styles.css b/fern/assets/styles.css index fa0d12427..fe6b5bcda 100644 --- a/fern/assets/styles.css +++ b/fern/assets/styles.css @@ -674,147 +674,6 @@ a[href*="changelog"] svg { gap: 1.5rem; } - .footer { - padding: 3rem 2rem; - } - - .footer-top { - display: flex; - justify-content: space-between; - gap: 2rem; - margin-bottom: 3rem; - position: relative; - } - - .footer-logo { - display: flex; - align-items: center; - gap: 0.25rem; - - /* svg { - display: none !important; - } */ - - svg { - transition: filter 150ms ease; - } - - &:hover { - svg { - filter: saturate(1) opacity(1); - } - } - } - - .footer-logo-img { - height: 1rem; - margin: 0; - filter: saturate(0) opacity(0.7); - } - - .footer-logo-frame { - position: absolute; - top: 50%; - left: 0; - transform: translate(-32px, calc(-50% - 4px)); - filter: saturate(0) opacity(0.7); - } - - .footer-status { - display: flex; - flex-direction: row; - gap: 1rem; - } - - .status-text { - font-size: 0.875rem; - color: var(--grayscale-10); - font-weight: 400; - } - - .soc2-badge { - display: flex; - align-items: center; - gap: 0.5rem; - border-radius: 9999px; - padding: 0.25rem 0.75rem 0.25rem 0.25rem; - align-self: flex-start; - text-decoration: none; - transition: background-color 150ms ease, color 150ms ease; - - &:hover { - background-color: var(--grayscale-a4); - - .status-text { - color: var(--grayscale-12); - } - } - } - - .soc2-badge-img { - width: 1.5rem; - height: 1.5rem; - background-color: #62636C; - border-radius: 1000px; - } - - .footer-links { - display: flex; - gap: 2rem; - padding-top: 2rem; - align-items: flex-end; - justify-content: space-between; - } - - .footer-columns { - display: flex; - gap: 2rem; - } - - .footer-column { - display: flex; - flex-direction: column; - gap: 1rem; - width: 170px; - } - - .footer-column-title { - font-size: 0.875rem; - font-weight: 400; - color: var(--grayscale-9); - letter-spacing: -0.025em; - } - - .footer-column-links { - display: flex; - flex-direction: column; - gap: 1rem; - } - - .footer-link { - font-weight: 400; - font-size: 0.875rem; - color: var(--grayscale-11); - text-decoration: none; - transition: color 0.15s ease-in-out; - - svg { - display: none !important; - } - } - - .footer-link:hover { - color: var(--grayscale-12); - } - - .footer-bottom-text { - font-weight: 400; - font-size: 0.875rem; - color: var(--grayscale-10); - text-decoration: none; - transition: color 0.15s ease-in-out; - } - .a-btn { text-decoration: none !important; font-weight: 400 !important; @@ -961,49 +820,7 @@ a[href*="changelog"] svg { gap: 1rem; } - .footer { - padding: 2rem 1.5rem; - } - - .footer-top { - flex-direction: column; - gap: 1.5rem; - margin-bottom: 2rem; - } - - .footer-logo-frame { - transform: translate(-32px, calc(-50% - 68px)); - } - - .footer-status { - flex-direction: column; - gap: 0.75rem; - padding-top: 2rem; - } - - .footer-links { - display: grid; - grid-template-columns: 1fr; - gap: 1.5rem; - align-items: flex-start; - padding-top: 1rem; - } - - .footer-columns { - display: grid; - grid-template-columns: 1fr; - gap: 2rem; - width: 100%; - order: 1; - } - - .footer-column { - width: 100%; - } - - .footer-bottom-text { - order: 2; - } + } /* Tablet breakpoint - Better use of space */ @@ -1019,17 +836,6 @@ a[href*="changelog"] svg { .feature-grid { gap: 1px; } - - .footer-columns { - flex-direction: row; - flex-wrap: wrap; - justify-content: center; - } - - .footer-column { - width: calc(50% - 1rem); - min-width: 200px; - } } /* Very small screens */ diff --git a/fern/components/FernFooter.tsx b/fern/components/FernFooter.tsx deleted file mode 100644 index 1c06e182c..000000000 --- a/fern/components/FernFooter.tsx +++ /dev/null @@ -1,84 +0,0 @@ -import React from 'react'; -import { FernStatusWidget } from './FernStatus'; - -import { BuiltWithFernLight } from './images/builtwithfern-light'; -import { BuiltWithFernDark } from './images/builtwithfern-dark'; -import { BuiltWithFernFrameLight } from './images/builtwithfern-frame-light'; -import { BuiltWithFernFrameDark } from './images/builtwithfern-frame-dark'; -import { Soc2Logo } from './images/soc2'; - -export const FernFooter = () => { - return ( - - ); -}; \ No newline at end of file diff --git a/fern/components/FernStatus.tsx b/fern/components/FernStatus.tsx deleted file mode 100644 index 014964940..000000000 --- a/fern/components/FernStatus.tsx +++ /dev/null @@ -1,212 +0,0 @@ -import React, { useState, useEffect } from 'react'; - -interface StatusData { - ongoing_incidents?: Array<{ - current_worst_impact: string; - }>; - in_progress_maintenances?: Array; - scheduled_maintenances?: Array<{ - starts_at: string; - }>; -} - -interface StatusState { - dotClass: string; - statusMessage: string; -} - -export const FernStatusWidget = () => { - const [status, setStatus] = useState({ - dotClass: 'is-loading', - statusMessage: 'Checking status...' - }); - - const apiEndpoint = 'https://status.buildwithfern.com/api/v1/summary'; - const refreshInterval = 5 * 60 * 1000; // 5 minutes - - const updateStatus = (data: StatusData) => { - let dotClass = 'is-green'; - let statusMessage = 'All systems operational'; - - // Check for ongoing incidents - if (data.ongoing_incidents && data.ongoing_incidents.length > 0) { - let worstImpact = 0; - for (const incident of data.ongoing_incidents) { - let impactLevel = 0; - - if (incident.current_worst_impact === 'degraded_performance') { - impactLevel = 1; - } else if (incident.current_worst_impact === 'partial_outage') { - impactLevel = 2; - } else if (incident.current_worst_impact === 'full_outage') { - impactLevel = 3; - } - - if (impactLevel > worstImpact) { - worstImpact = impactLevel; - } - } - - // Set status based on severity - if (worstImpact === 3) { - dotClass = 'is-red'; - statusMessage = 'Service outage'; - } else if (worstImpact === 2) { - dotClass = 'is-orange'; - statusMessage = 'Partial outage'; - } else if (worstImpact === 1) { - dotClass = 'is-yellow'; - statusMessage = 'Degraded performance'; - } - } - - // Check for in-progress maintenance - if (data.in_progress_maintenances && data.in_progress_maintenances.length > 0) { - if (dotClass === 'is-green') { - dotClass = 'is-blue'; - statusMessage = 'Maintenance in progress'; - } - } - - // Check for scheduled maintenance - if (data.scheduled_maintenances && data.scheduled_maintenances.length > 0) { - if (dotClass === 'is-green') { - const now = new Date(); - let soonMaintenance = false; - - for (const maintenance of data.scheduled_maintenances) { - const startsAt = new Date(maintenance.starts_at); - const hoursDiff = (startsAt.getTime() - now.getTime()) / (1000 * 60 * 60); - - if (hoursDiff <= 24) { - soonMaintenance = true; - break; - } - } - - if (soonMaintenance) { - dotClass = 'is-blue'; - statusMessage = 'Scheduled maintenance soon'; - } - } - } - - setStatus({ dotClass, statusMessage }); - }; - - const fetchStatus = async () => { - try { - const response = await fetch(apiEndpoint); - if (response.ok) { - const data: StatusData = await response.json(); - updateStatus(data); - } else { - setStatus({ dotClass: 'is-red', statusMessage: 'Cannot check status' }); - } - } catch (error) { - console.error('Error fetching status:', error); - setStatus({ dotClass: 'is-red', statusMessage: 'Cannot check status' }); - } - }; - - useEffect(() => { - fetchStatus(); - const interval = setInterval(fetchStatus, refreshInterval); - return () => clearInterval(interval); - }, []); - - const getBackgroundColor = () => { - switch (status.dotClass) { - case 'is-green': return '#00c853'; - case 'is-red': return '#f44336'; - case 'is-orange': return '#ff9800'; - case 'is-blue': return '#2196f3'; - case 'is-yellow': return '#ffc107'; - case 'is-loading': return '#cccccc'; - default: return '#cccccc'; - } - }; - - return ( - -
-
- {status.statusMessage} - - -
-
- ); -}; diff --git a/fern/components/images/BuiltWithFernLogo.tsx b/fern/components/images/BuiltWithFernLogo.tsx deleted file mode 100644 index 976fd4521..000000000 --- a/fern/components/images/BuiltWithFernLogo.tsx +++ /dev/null @@ -1,37 +0,0 @@ -interface BuiltWithFernLogoProps { - width?: number; - height?: number; - className?: string; -} - -export const BuiltWithFernLogo = ({ - width = 145, - height = 16, - className = "" -}: BuiltWithFernLogoProps) => { - return ( - - - - - - ); -}; - -export default BuiltWithFernLogo; \ No newline at end of file diff --git a/fern/components/images/builtwithfern-dark.tsx b/fern/components/images/builtwithfern-dark.tsx deleted file mode 100644 index 14986a708..000000000 --- a/fern/components/images/builtwithfern-dark.tsx +++ /dev/null @@ -1,39 +0,0 @@ -import React from 'react'; - -interface BuiltWithFernDarkProps { - width?: number; - height?: number; - className?: string; -} - -export const BuiltWithFernDark = ({ - width = 145, - height = 16, - className = "" -}: BuiltWithFernDarkProps) => { - return ( - - - - - - ); -}; - -export default BuiltWithFernDark; diff --git a/fern/components/images/builtwithfern-frame-dark.tsx b/fern/components/images/builtwithfern-frame-dark.tsx deleted file mode 100644 index c6e067b16..000000000 --- a/fern/components/images/builtwithfern-frame-dark.tsx +++ /dev/null @@ -1,105 +0,0 @@ -interface BuiltWithFernFrameDarkProps { - width?: number; - height?: number; - className?: string; -} - -export const BuiltWithFernFrameDark = ({ - width = 217, - height = 120, - className = "" -}: BuiltWithFernFrameDarkProps) => { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -}; - -export default BuiltWithFernFrameDark; diff --git a/fern/components/images/builtwithfern-frame-light.tsx b/fern/components/images/builtwithfern-frame-light.tsx deleted file mode 100644 index d84b630a2..000000000 --- a/fern/components/images/builtwithfern-frame-light.tsx +++ /dev/null @@ -1,105 +0,0 @@ -interface BuiltWithFernFrameLightProps { - width?: number; - height?: number; - className?: string; -} - -export const BuiltWithFernFrameLight = ({ - width = 217, - height = 120, - className = "" -}: BuiltWithFernFrameLightProps) => { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -}; - -export default BuiltWithFernFrameLight; diff --git a/fern/components/images/builtwithfern-light.tsx b/fern/components/images/builtwithfern-light.tsx deleted file mode 100644 index c5fad90f5..000000000 --- a/fern/components/images/builtwithfern-light.tsx +++ /dev/null @@ -1,37 +0,0 @@ -interface BuiltWithFernLightProps { - width?: number; - height?: number; - className?: string; -} - -export const BuiltWithFernLight = ({ - width = 145, - height = 16, - className = "" -}: BuiltWithFernLightProps) => { - return ( - - - - - - ); -}; - -export default BuiltWithFernLight; diff --git a/fern/components/images/soc2.tsx b/fern/components/images/soc2.tsx deleted file mode 100644 index 9cd0d4c56..000000000 --- a/fern/components/images/soc2.tsx +++ /dev/null @@ -1,130 +0,0 @@ -import React from 'react'; - -interface Soc2LogoProps { - width?: number; - height?: number; - className?: string; -} - -export const Soc2Logo = ({ - width = 32, - height = 32, - className = "" -}: Soc2LogoProps) => { - return ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ); -}; - -export default Soc2Logo; \ No newline at end of file diff --git a/fern/docs.yml b/fern/docs.yml index ae56985b7..91bfdb068 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -135,10 +135,6 @@ layout: searchbar-placement: header tabs-placement: header -experimental: - mdx-components: - - ./components - js: - path: ./footer-dist/output.js strategy: beforeInteractive diff --git a/fern/footer-dist/output.js b/fern/footer-dist/output.js index cfdbb98aa..159d72776 100644 --- a/fern/footer-dist/output.js +++ b/fern/footer-dist/output.js @@ -189,18 +189,21 @@ Error generating stack: `+o.message+` padding-top: 2rem; align-items: flex-end; justify-content: space-between; + width: 100%; } .footer-columns { display: flex; gap: 2rem; + flex: 1; } .footer-column { display: flex; flex-direction: column; gap: 1rem; - width: 170px; + flex: 1; + min-width: 120px; } .footer-column-title { @@ -254,6 +257,7 @@ Error generating stack: `+o.message+` color: var(--grayscale-10); text-decoration: none; transition: color 0.15s ease-in-out; + width: fit-content; } /* Responsive Design - Mobile */ @@ -288,16 +292,12 @@ Error generating stack: `+o.message+` .footer-columns { display: grid; - grid-template-columns: 1fr; + grid-template-columns: 2fr; gap: 2rem; width: 100%; order: 1; } - .footer-column { - width: 100%; - } - .footer-bottom-text { order: 2; } @@ -316,4 +316,4 @@ Error generating stack: `+o.message+` min-width: 200px; } } - `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/learn/v2/api-definition/introduction/what-is-an-api-definition",className:"footer-link",children:"API Definition"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/docs/getting-started/overview",className:"footer-link",children:"Docs"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); + `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/v2/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/v2/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/ask-fern",className:"footer-link",children:"Ask Fern"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); diff --git a/fern/products/home/pages/welcome.mdx b/fern/products/home/pages/welcome.mdx index cb699c13c..61a3339bf 100644 --- a/fern/products/home/pages/welcome.mdx +++ b/fern/products/home/pages/welcome.mdx @@ -113,8 +113,8 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right light Arrow right light - - Configuration + + Configure Arrow right light Arrow right light @@ -148,11 +148,6 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right Arrow right - - Add multiple specs to your docs site - Arrow right light - Arrow right light - Configure your docs site Arrow right light @@ -168,8 +163,8 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right light Arrow right light - - Customize slug from MDX + + Configure slugs via MDX Arrow right light Arrow right light @@ -228,7 +223,7 @@ import { FernFooter } from "../../../components/FernFooter"; See our most recent product updates.

- Docs + View Arrow right dark Arrow right dark diff --git a/footer/src/FernFooter.tsx b/footer/src/FernFooter.tsx index 447d94cf3..abaaa2cb3 100644 --- a/footer/src/FernFooter.tsx +++ b/footer/src/FernFooter.tsx @@ -112,18 +112,21 @@ export const FernFooter: React.FC = () => { padding-top: 2rem; align-items: flex-end; justify-content: space-between; + width: 100%; } .footer-columns { display: flex; gap: 2rem; + flex: 1; } .footer-column { display: flex; flex-direction: column; gap: 1rem; - width: 170px; + flex: 1; + min-width: 120px; } .footer-column-title { @@ -177,6 +180,7 @@ export const FernFooter: React.FC = () => { color: var(--grayscale-10); text-decoration: none; transition: color 0.15s ease-in-out; + width: fit-content; } /* Responsive Design - Mobile */ @@ -211,16 +215,12 @@ export const FernFooter: React.FC = () => { .footer-columns { display: grid; - grid-template-columns: 1fr; + grid-template-columns: 2fr; gap: 2rem; width: 100%; order: 1; } - .footer-column { - width: 100%; - } - .footer-bottom-text { order: 2; } @@ -253,10 +253,6 @@ export const FernFooter: React.FC = () => {
- {/* -
- All systems operational -
*/} @@ -284,9 +280,11 @@ export const FernFooter: React.FC = () => { From ed10bab2ddf1a65eee39ff75b8469f3d599bcfee Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 17:42:43 -0400 Subject: [PATCH 05/34] fix: server's broken --- check_urls.py | 180 + docs.xml | 3927 +++++++++++++++++ fern/footer-dist/output.js | 2 +- .../docs/pages/getting-started/overview.mdx | 55 +- fern/products/home/home.yml | 2 +- 5 files changed, 4159 insertions(+), 7 deletions(-) create mode 100644 check_urls.py create mode 100644 docs.xml diff --git a/check_urls.py b/check_urls.py new file mode 100644 index 000000000..23ef547b8 --- /dev/null +++ b/check_urls.py @@ -0,0 +1,180 @@ +#!/usr/bin/env python3 +""" +URL Checker Script for Fern Docs Sitemap +Checks all URLs in the sitemap for 404 errors and other issues. +""" + +import xml.etree.ElementTree as ET +import requests +import time +import sys +from urllib.parse import urlparse +from concurrent.futures import ThreadPoolExecutor, as_completed +import argparse + +class URLChecker: + def __init__(self, sitemap_path, max_workers=10, delay=0.1, timeout=30): + self.sitemap_path = sitemap_path + self.max_workers = max_workers + self.delay = delay + self.timeout = timeout + self.session = requests.Session() + self.session.headers.update({ + 'User-Agent': 'Fern-URL-Checker/1.0' + }) + + def parse_sitemap(self): + """Parse the XML sitemap and extract all URLs.""" + try: + tree = ET.parse(self.sitemap_path) + root = tree.getroot() + + # Handle namespace + namespace = {'ns': 'http://www.sitemaps.org/schemas/sitemap/0.9'} + urls = [] + + for url_elem in root.findall('ns:url', namespace): + loc_elem = url_elem.find('ns:loc', namespace) + if loc_elem is not None: + urls.append(loc_elem.text.strip()) + + return urls + except ET.ParseError as e: + print(f"❌ Error parsing XML sitemap: {e}") + return [] + except FileNotFoundError: + print(f"❌ Sitemap file not found: {self.sitemap_path}") + return [] + + def check_url(self, url): + """Check a single URL and return result.""" + try: + response = self.session.get(url, timeout=self.timeout, allow_redirects=True) + return { + 'url': url, + 'status_code': response.status_code, + 'final_url': response.url, + 'redirected': url != response.url, + 'error': None + } + except requests.exceptions.RequestException as e: + return { + 'url': url, + 'status_code': None, + 'final_url': None, + 'redirected': False, + 'error': str(e) + } + + def check_urls(self, urls): + """Check all URLs concurrently.""" + results = [] + failed_urls = [] + redirect_urls = [] + + print(f"🔍 Checking {len(urls)} URLs...") + print(f"⚙️ Using {self.max_workers} workers with {self.delay}s delay") + print("=" * 60) + + with ThreadPoolExecutor(max_workers=self.max_workers) as executor: + # Submit all URL check tasks + future_to_url = {executor.submit(self.check_url, url): url for url in urls} + + for i, future in enumerate(as_completed(future_to_url), 1): + result = future.result() + results.append(result) + + # Add delay between requests + if self.delay > 0: + time.sleep(self.delay) + + # Print progress + if i % 50 == 0 or i == len(urls): + print(f"Progress: {i}/{len(urls)} URLs checked") + + # Categorize results + if result['error']: + failed_urls.append(result) + print(f"❌ ERROR: {result['url']} - {result['error']}") + elif result['status_code'] == 404: + failed_urls.append(result) + print(f"❌ 404: {result['url']}") + elif result['status_code'] >= 400: + failed_urls.append(result) + print(f"⚠️ {result['status_code']}: {result['url']}") + elif result['redirected']: + redirect_urls.append(result) + print(f"🔄 REDIRECT: {result['url']} → {result['final_url']}") + elif result['status_code'] == 200: + print(f"✅ OK: {result['url']}") + else: + print(f"ℹ️ {result['status_code']}: {result['url']}") + + return results, failed_urls, redirect_urls + + def print_summary(self, results, failed_urls, redirect_urls): + """Print summary of results.""" + print("\n" + "=" * 60) + print("📊 SUMMARY") + print("=" * 60) + + total_urls = len(results) + success_urls = len([r for r in results if r['status_code'] == 200 and not r['error']]) + + print(f"Total URLs checked: {total_urls}") + print(f"✅ Successful (200): {success_urls}") + print(f"🔄 Redirects: {len(redirect_urls)}") + print(f"❌ Failed/Errors: {len(failed_urls)}") + + if failed_urls: + print(f"\n❌ FAILED URLS ({len(failed_urls)}):") + print("-" * 40) + for result in failed_urls: + if result['error']: + print(f"ERROR: {result['url']} - {result['error']}") + else: + print(f"{result['status_code']}: {result['url']}") + + if redirect_urls: + print(f"\n🔄 REDIRECTED URLS ({len(redirect_urls)}):") + print("-" * 40) + for result in redirect_urls: + print(f"{result['url']} → {result['final_url']}") + + return len(failed_urls) == 0 + +def main(): + parser = argparse.ArgumentParser(description='Check URLs in Fern sitemap for 404 errors') + parser.add_argument('--sitemap', default='fern/docs.xml', help='Path to sitemap XML file') + parser.add_argument('--workers', type=int, default=10, help='Number of concurrent workers') + parser.add_argument('--delay', type=float, default=0.1, help='Delay between requests (seconds)') + parser.add_argument('--timeout', type=int, default=30, help='Request timeout (seconds)') + parser.add_argument('--max-urls', type=int, help='Limit number of URLs to check (for testing)') + + args = parser.parse_args() + + checker = URLChecker(args.sitemap, args.workers, args.delay, args.timeout) + + print("🚀 Fern Docs URL Checker") + print("=" * 60) + + # Parse sitemap + urls = checker.parse_sitemap() + if not urls: + print("❌ No URLs found in sitemap") + sys.exit(1) + + # Limit URLs if specified (for testing) + if args.max_urls: + urls = urls[:args.max_urls] + print(f"🔬 Testing mode: checking first {len(urls)} URLs") + + # Check URLs + results, failed_urls, redirect_urls = checker.check_urls(urls) + + # Print summary and exit + success = checker.print_summary(results, failed_urls, redirect_urls) + sys.exit(0 if success else 1) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/docs.xml b/docs.xml new file mode 100644 index 000000000..d9eeb3791 --- /dev/null +++ b/docs.xml @@ -0,0 +1,3927 @@ +This XML file does not appear to have any style information associated with it. The document tree is shown below. + + +https://buildwithfern.com/learn + + +https://buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition + + +https://buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder + + +https://buildwithfern.com/learn/api-definition/openapi/overview + + +https://buildwithfern.com/learn/api-definition/openapi/authentication + + +https://buildwithfern.com/learn/api-definition/openapi/servers + + +https://buildwithfern.com/learn/api-definition/openapi/endpoints/http + + +https://buildwithfern.com/learn/api-definition/openapi/endpoints/multipart + + +https://buildwithfern.com/learn/api-definition/openapi/endpoints/sse + + +https://buildwithfern.com/learn/api-definition/openapi/webhooks + + +https://buildwithfern.com/learn/api-definition/openapi/audiences + + +https://buildwithfern.com/learn/api-definition/openapi/extensions/method-names + + +https://buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names + + +https://buildwithfern.com/learn/api-definition/openapi/extensions/others + + +https://buildwithfern.com/learn/api-definition/openapi/overlay-customizations + + +https://buildwithfern.com/learn/api-definition/openapi/sync-specification + + +https://buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi + + +https://buildwithfern.com/learn/api-definition/fern/overview + + +https://buildwithfern.com/learn/api-definition/fern/authentication + + +https://buildwithfern.com/learn/api-definition/fern/types + + +https://buildwithfern.com/learn/api-definition/fern/endpoints + + +https://buildwithfern.com/learn/api-definition/fern/endpoints/http + + +https://buildwithfern.com/learn/api-definition/fern/endpoints/multipart + + +https://buildwithfern.com/learn/api-definition/fern/endpoints/bytes + + +https://buildwithfern.com/learn/api-definition/fern/endpoints/sse + + +https://buildwithfern.com/learn/api-definition/fern/webhooks + + +https://buildwithfern.com/learn/api-definition/fern/websockets + + +https://buildwithfern.com/learn/api-definition/fern/errors + + +https://buildwithfern.com/learn/api-definition/fern/imports + + +https://buildwithfern.com/learn/api-definition/fern/examples + + +https://buildwithfern.com/learn/api-definition/fern/audiences + + +https://buildwithfern.com/learn/api-definition/fern/availability + + +https://buildwithfern.com/learn/api-definition/fern/api-yml/overview + + +https://buildwithfern.com/learn/api-definition/fern/api-yml/environments + + +https://buildwithfern.com/learn/api-definition/fern/api-yml/global-headers + + +https://buildwithfern.com/learn/api-definition/fern/api-yml/errors + + +https://buildwithfern.com/learn/api-definition/fern/packages + + +https://buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is + + +https://buildwithfern.com/learn/api-definition/fern/export-openapi + + +https://buildwithfern.com/learn/sdks/introduction/overview + + +https://buildwithfern.com/learn/sdks/introduction/language-support + + +https://buildwithfern.com/learn/sdks/introduction/customer-showcase + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 + + +https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 + + +https://buildwithfern.com/learn/sdks/capabilities/strongly-typed + + +https://buildwithfern.com/learn/sdks/capabilities/method-names + + +https://buildwithfern.com/learn/sdks/capabilities/schema-validation + + +https://buildwithfern.com/learn/sdks/capabilities/discriminated-unions + + +https://buildwithfern.com/learn/sdks/capabilities/multipart-form-data + + +https://buildwithfern.com/learn/sdks/capabilities/forward-compatibility + + +https://buildwithfern.com/learn/sdks/capabilities/registry-publishing + + +https://buildwithfern.com/learn/sdks/capabilities/auto-pagination + + +https://buildwithfern.com/learn/sdks/capabilities/oauth + + +https://buildwithfern.com/learn/sdks/capabilities/retries + + +https://buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification + + +https://buildwithfern.com/learn/sdks/capabilities/idempotency-headers + + +https://buildwithfern.com/learn/sdks/capabilities/server-sent-events + + +https://buildwithfern.com/learn/sdks/capabilities/integration-tests + + +https://buildwithfern.com/learn/sdks/capabilities/code-snippets + + +https://buildwithfern.com/learn/sdks/capabilities/custom-code + + +https://buildwithfern.com/learn/sdks/capabilities/merging-apis + + +https://buildwithfern.com/learn/sdks/capabilities/websockets + + +https://buildwithfern.com/learn/sdks/capabilities/mcp + + +https://buildwithfern.com/learn/sdks/reference/configuration + + +https://buildwithfern.com/learn/sdks/guides/generate-your-first-sdk + + +https://buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally + + +https://buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk + + +https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script + + +https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi + + +https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget + + +https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite + + +https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central + + +https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems + + +https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist + + +https://buildwithfern.com/learn/docs/getting-started/overview + + +https://buildwithfern.com/learn/docs/getting-started/customer-showcase + + +https://buildwithfern.com/learn/docs/getting-started/quickstart + + +https://buildwithfern.com/learn/docs/getting-started/global-configuration + + +https://buildwithfern.com/learn/docs/getting-started/project-structure + + +https://buildwithfern.com/learn/docs/getting-started/development + + +https://buildwithfern.com/learn/docs/getting-started/publish-your-docs + + +https://buildwithfern.com/learn/docs/getting-started/changelog + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 + + +https://buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain + + +https://buildwithfern.com/learn/user-feedback + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac + + +https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/search + + +https://buildwithfern.com/learn/docs/content/write-markdown + + +https://buildwithfern.com/learn/docs/content/components/overview + + +https://buildwithfern.com/learn/docs/content/components/accordions + + +https://buildwithfern.com/learn/docs/content/components/accordion-groups + + +https://buildwithfern.com/learn/docs/content/components/aside + + +https://buildwithfern.com/learn/docs/content/components/button + + +https://buildwithfern.com/learn/docs/content/components/callouts + + +https://buildwithfern.com/learn/docs/content/components/cards + + +https://buildwithfern.com/learn/docs/content/components/card-groups + + +https://buildwithfern.com/learn/docs/content/components/code-blocks + + +https://buildwithfern.com/learn/docs/content/components/embed + + +https://buildwithfern.com/learn/docs/content/components/request-snippet + + +https://buildwithfern.com/learn/docs/content/components/response-snippet + + +https://buildwithfern.com/learn/docs/content/components/schema-snippet + + +https://buildwithfern.com/learn/docs/content/components/frames + + +https://buildwithfern.com/learn/docs/content/components/icons + + +https://buildwithfern.com/learn/docs/content/components/paramfield + + +https://buildwithfern.com/learn/docs/content/components/steps + + +https://buildwithfern.com/learn/docs/content/components/tabs + + +https://buildwithfern.com/learn/docs/content/components/tooltips + + +https://buildwithfern.com/learn/docs/content/custom-react-components + + +https://buildwithfern.com/learn/docs/content/frontmatter + + +https://buildwithfern.com/learn/docs/content/reusable-snippets + + +https://buildwithfern.com/learn/docs/content/changelog + + +https://buildwithfern.com/learn/docs/content/visual-editor + + +https://buildwithfern.com/learn/docs/api-references/generate-api-ref + + +https://buildwithfern.com/learn/docs/api-references/sdk-snippets + + +https://buildwithfern.com/learn/docs/api-references/http-snippets + + +https://buildwithfern.com/learn/docs/api-references/api-explorer + + +https://buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys + + +https://buildwithfern.com/learn/docs/api-references/endpoint-errors + + +https://buildwithfern.com/learn/docs/api-references/audiences + + +https://buildwithfern.com/learn/docs/api-references/customize-api-reference-layout + + +https://buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference + + +https://buildwithfern.com/learn/docs/api-references/generate-webhook-reference + + +https://buildwithfern.com/learn/docs/api-references/server-urls + + +https://buildwithfern.com/learn/docs/api-references/generate-websocket-ref + + +https://buildwithfern.com/learn/docs/api-references/generate-openrpc-ref + + +https://buildwithfern.com/learn/docs/integrations/overview + + +https://buildwithfern.com/learn/docs/integrations/analytics/google + + +https://buildwithfern.com/learn/docs/integrations/analytics/posthog + + +https://buildwithfern.com/learn/docs/integrations/analytics/fullstory + + +https://buildwithfern.com/learn/docs/integrations/analytics/segment + + +https://buildwithfern.com/learn/docs/integrations/analytics/mixpanel + + +https://buildwithfern.com/learn/docs/integrations/support/intercom + + +https://buildwithfern.com/learn/docs/integrations/postman + + +https://buildwithfern.com/learn/docs/integrations/feature-flags + + +https://buildwithfern.com/learn/docs/developer-tools/llms-txt + + +https://buildwithfern.com/learn/docs/developer-tools/cursor + + +https://buildwithfern.com/learn/docs/developer-tools/gitlab + + +https://buildwithfern.com/learn/docs/developer-tools/vale + + +https://buildwithfern.com/learn/docs/developer-tools/view-markdown + + +https://buildwithfern.com/learn/ask-fern/overview + + +https://buildwithfern.com/learn/ask-fern/customer-showcase + + +https://buildwithfern.com/learn/ask-fern/custom-prompting + + +https://buildwithfern.com/learn/ask-fern/citations + + +https://buildwithfern.com/learn/cli-reference/overview + + +https://buildwithfern.com/learn/cli-reference/options + + +https://buildwithfern.com/learn/cli-reference/commands + + +https://buildwithfern.com/learn/cli-reference/changelog + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/7/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/6/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/5/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/4/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/3/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/2/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2025/1/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/12/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/11/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/10/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/9/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/8/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/7/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/6/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/5/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/4/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/3/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/2/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2024/1/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/12/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/11/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/10/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/9/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/8/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/7/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/6/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/5/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/4/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/26 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/10 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/3 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/3/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/25 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/7 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/5 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/4 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/2 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/2/1 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/31 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/30 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/29 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/27 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/22 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/21 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/20 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/19 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/18 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/17 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/13 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/12 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/11 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/9 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/8 + + +https://buildwithfern.com/learn/cli-reference/changelog/2023/1/6 + + +https://buildwithfern.com/learn/cli-reference/changelog/2022/12/28 + + +https://buildwithfern.com/learn/cli-reference/changelog/2022/12/24 + + +https://buildwithfern.com/learn/cli-reference/changelog/2022/12/23 + + +https://buildwithfern.com/learn/cli-reference/changelog/2022/12/16 + + +https://buildwithfern.com/learn/cli-reference/changelog/2022/12/15 + + +https://buildwithfern.com/learn/cli-reference/changelog/2022/12/14 + + +https://buildwithfern.com/learn/cli-reference/changelog/2022/12/13 + + +https://buildwithfern.com/learn/api-reference/overview + + +https://buildwithfern.com/learn/api-reference/snippets/get + + +https://buildwithfern.com/learn/api-reference/snippets/load + + +https://buildwithfern.com/learn/api-reference/tokens/generate + + +https://buildwithfern.com/learn/api-reference/tokens/revoke + + \ No newline at end of file diff --git a/fern/footer-dist/output.js b/fern/footer-dist/output.js index 159d72776..781855886 100644 --- a/fern/footer-dist/output.js +++ b/fern/footer-dist/output.js @@ -316,4 +316,4 @@ Error generating stack: `+o.message+` min-width: 200px; } } - `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/v2/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/v2/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/ask-fern",className:"footer-link",children:"Ask Fern"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); + `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/v2/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/v2/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/learn/v2/ask-fern",className:"footer-link",children:"Ask Fern"}),f.jsx("a",{href:"/learn/v2/api-definition/introduction/what-is-an-api-definition",className:"footer-link",children:"API Definition"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); diff --git a/fern/products/docs/pages/getting-started/overview.mdx b/fern/products/docs/pages/getting-started/overview.mdx index 8b61b2108..260a182b2 100644 --- a/fern/products/docs/pages/getting-started/overview.mdx +++ b/fern/products/docs/pages/getting-started/overview.mdx @@ -1,5 +1,5 @@ --- -title: Documentation +title: Fern Docs description: Meet documentation that is stunning by default, AI-ready, and designed to convert. --- @@ -9,8 +9,14 @@ description: Meet documentation that is stunning by default, AI-ready, and desig {/* Dashed Pattern - Right Side */}
+ + {/*

Meet documentation that is stunning by default, AI-ready, and designed to convert.

*/} + +

Get started

+

Import your existing syling and specs to get started with Fern Docs.

+ - +
Quickstart @@ -27,7 +33,7 @@ description: Meet documentation that is stunning by default, AI-ready, and desig
- +
Configure with ease @@ -43,8 +49,13 @@ description: Meet documentation that is stunning by default, AI-ready, and desig
- - + + +

Features

+

Build your own components, enable Ask Fern, and make docs writing approachable.

+ + +
Flexible component library @@ -77,5 +88,39 @@ description: Meet documentation that is stunning by default, AI-ready, and desig
+ + +
+ Visual Editor + +
+
+ Bring your own API Spec + Arrow right light + Arrow right light +
+
+

Use one or more of an OpenAPI, AsyncAPI, gRPC, OpenRPC, and the Fern Definition spec.

+
+
+
+
+ + +
+ Visual Editor + +
+
+ Ask Fern + Arrow right light + Arrow right light +
+
+

A personalized chatbot that can answer questions about your documentation.

+
+
+
+
diff --git a/fern/products/home/home.yml b/fern/products/home/home.yml index 28ed4eccc..ee29ac746 100644 --- a/fern/products/home/home.yml +++ b/fern/products/home/home.yml @@ -1,3 +1,3 @@ navigation: - - page: What is AI search? + - page: Home path: ./pages/welcome.mdx \ No newline at end of file From 9cff61a1e00bc1c5d5e215691d5cf9c99648d5e5 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 18:31:06 -0400 Subject: [PATCH 06/34] fix: testing redirects --- docs.xml | 1 - fern/components/FernFooter.tsx | 84 +++++++ fern/components/FernStatus.tsx | 212 ++++++++++++++++++ fern/components/images/BuiltWithFernLogo.tsx | 37 +++ fern/components/images/builtwithfern-dark.tsx | 39 ++++ .../images/builtwithfern-frame-dark.tsx | 105 +++++++++ .../images/builtwithfern-frame-light.tsx | 105 +++++++++ .../components/images/builtwithfern-light.tsx | 37 +++ fern/components/images/soc2.tsx | 130 +++++++++++ fern/docs.yml | 5 +- fern/fern.config.json | 2 +- fern/products/home/home.yml | 2 +- fern/products/home/pages/welcome.mdx | 3 - 13 files changed, 755 insertions(+), 7 deletions(-) create mode 100644 fern/components/FernFooter.tsx create mode 100644 fern/components/FernStatus.tsx create mode 100644 fern/components/images/BuiltWithFernLogo.tsx create mode 100644 fern/components/images/builtwithfern-dark.tsx create mode 100644 fern/components/images/builtwithfern-frame-dark.tsx create mode 100644 fern/components/images/builtwithfern-frame-light.tsx create mode 100644 fern/components/images/builtwithfern-light.tsx create mode 100644 fern/components/images/soc2.tsx diff --git a/docs.xml b/docs.xml index d9eeb3791..519550008 100644 --- a/docs.xml +++ b/docs.xml @@ -1,4 +1,3 @@ -This XML file does not appear to have any style information associated with it. The document tree is shown below. https://buildwithfern.com/learn diff --git a/fern/components/FernFooter.tsx b/fern/components/FernFooter.tsx new file mode 100644 index 000000000..1c06e182c --- /dev/null +++ b/fern/components/FernFooter.tsx @@ -0,0 +1,84 @@ +import React from 'react'; +import { FernStatusWidget } from './FernStatus'; + +import { BuiltWithFernLight } from './images/builtwithfern-light'; +import { BuiltWithFernDark } from './images/builtwithfern-dark'; +import { BuiltWithFernFrameLight } from './images/builtwithfern-frame-light'; +import { BuiltWithFernFrameDark } from './images/builtwithfern-frame-dark'; +import { Soc2Logo } from './images/soc2'; + +export const FernFooter = () => { + return ( + + ); +}; \ No newline at end of file diff --git a/fern/components/FernStatus.tsx b/fern/components/FernStatus.tsx new file mode 100644 index 000000000..014964940 --- /dev/null +++ b/fern/components/FernStatus.tsx @@ -0,0 +1,212 @@ +import React, { useState, useEffect } from 'react'; + +interface StatusData { + ongoing_incidents?: Array<{ + current_worst_impact: string; + }>; + in_progress_maintenances?: Array; + scheduled_maintenances?: Array<{ + starts_at: string; + }>; +} + +interface StatusState { + dotClass: string; + statusMessage: string; +} + +export const FernStatusWidget = () => { + const [status, setStatus] = useState({ + dotClass: 'is-loading', + statusMessage: 'Checking status...' + }); + + const apiEndpoint = 'https://status.buildwithfern.com/api/v1/summary'; + const refreshInterval = 5 * 60 * 1000; // 5 minutes + + const updateStatus = (data: StatusData) => { + let dotClass = 'is-green'; + let statusMessage = 'All systems operational'; + + // Check for ongoing incidents + if (data.ongoing_incidents && data.ongoing_incidents.length > 0) { + let worstImpact = 0; + for (const incident of data.ongoing_incidents) { + let impactLevel = 0; + + if (incident.current_worst_impact === 'degraded_performance') { + impactLevel = 1; + } else if (incident.current_worst_impact === 'partial_outage') { + impactLevel = 2; + } else if (incident.current_worst_impact === 'full_outage') { + impactLevel = 3; + } + + if (impactLevel > worstImpact) { + worstImpact = impactLevel; + } + } + + // Set status based on severity + if (worstImpact === 3) { + dotClass = 'is-red'; + statusMessage = 'Service outage'; + } else if (worstImpact === 2) { + dotClass = 'is-orange'; + statusMessage = 'Partial outage'; + } else if (worstImpact === 1) { + dotClass = 'is-yellow'; + statusMessage = 'Degraded performance'; + } + } + + // Check for in-progress maintenance + if (data.in_progress_maintenances && data.in_progress_maintenances.length > 0) { + if (dotClass === 'is-green') { + dotClass = 'is-blue'; + statusMessage = 'Maintenance in progress'; + } + } + + // Check for scheduled maintenance + if (data.scheduled_maintenances && data.scheduled_maintenances.length > 0) { + if (dotClass === 'is-green') { + const now = new Date(); + let soonMaintenance = false; + + for (const maintenance of data.scheduled_maintenances) { + const startsAt = new Date(maintenance.starts_at); + const hoursDiff = (startsAt.getTime() - now.getTime()) / (1000 * 60 * 60); + + if (hoursDiff <= 24) { + soonMaintenance = true; + break; + } + } + + if (soonMaintenance) { + dotClass = 'is-blue'; + statusMessage = 'Scheduled maintenance soon'; + } + } + } + + setStatus({ dotClass, statusMessage }); + }; + + const fetchStatus = async () => { + try { + const response = await fetch(apiEndpoint); + if (response.ok) { + const data: StatusData = await response.json(); + updateStatus(data); + } else { + setStatus({ dotClass: 'is-red', statusMessage: 'Cannot check status' }); + } + } catch (error) { + console.error('Error fetching status:', error); + setStatus({ dotClass: 'is-red', statusMessage: 'Cannot check status' }); + } + }; + + useEffect(() => { + fetchStatus(); + const interval = setInterval(fetchStatus, refreshInterval); + return () => clearInterval(interval); + }, []); + + const getBackgroundColor = () => { + switch (status.dotClass) { + case 'is-green': return '#00c853'; + case 'is-red': return '#f44336'; + case 'is-orange': return '#ff9800'; + case 'is-blue': return '#2196f3'; + case 'is-yellow': return '#ffc107'; + case 'is-loading': return '#cccccc'; + default: return '#cccccc'; + } + }; + + return ( + +
+
+ {status.statusMessage} + + +
+
+ ); +}; diff --git a/fern/components/images/BuiltWithFernLogo.tsx b/fern/components/images/BuiltWithFernLogo.tsx new file mode 100644 index 000000000..976fd4521 --- /dev/null +++ b/fern/components/images/BuiltWithFernLogo.tsx @@ -0,0 +1,37 @@ +interface BuiltWithFernLogoProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernLogo = ({ + width = 145, + height = 16, + className = "" +}: BuiltWithFernLogoProps) => { + return ( + + + + + + ); +}; + +export default BuiltWithFernLogo; \ No newline at end of file diff --git a/fern/components/images/builtwithfern-dark.tsx b/fern/components/images/builtwithfern-dark.tsx new file mode 100644 index 000000000..14986a708 --- /dev/null +++ b/fern/components/images/builtwithfern-dark.tsx @@ -0,0 +1,39 @@ +import React from 'react'; + +interface BuiltWithFernDarkProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernDark = ({ + width = 145, + height = 16, + className = "" +}: BuiltWithFernDarkProps) => { + return ( + + + + + + ); +}; + +export default BuiltWithFernDark; diff --git a/fern/components/images/builtwithfern-frame-dark.tsx b/fern/components/images/builtwithfern-frame-dark.tsx new file mode 100644 index 000000000..c6e067b16 --- /dev/null +++ b/fern/components/images/builtwithfern-frame-dark.tsx @@ -0,0 +1,105 @@ +interface BuiltWithFernFrameDarkProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernFrameDark = ({ + width = 217, + height = 120, + className = "" +}: BuiltWithFernFrameDarkProps) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default BuiltWithFernFrameDark; diff --git a/fern/components/images/builtwithfern-frame-light.tsx b/fern/components/images/builtwithfern-frame-light.tsx new file mode 100644 index 000000000..d84b630a2 --- /dev/null +++ b/fern/components/images/builtwithfern-frame-light.tsx @@ -0,0 +1,105 @@ +interface BuiltWithFernFrameLightProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernFrameLight = ({ + width = 217, + height = 120, + className = "" +}: BuiltWithFernFrameLightProps) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default BuiltWithFernFrameLight; diff --git a/fern/components/images/builtwithfern-light.tsx b/fern/components/images/builtwithfern-light.tsx new file mode 100644 index 000000000..c5fad90f5 --- /dev/null +++ b/fern/components/images/builtwithfern-light.tsx @@ -0,0 +1,37 @@ +interface BuiltWithFernLightProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernLight = ({ + width = 145, + height = 16, + className = "" +}: BuiltWithFernLightProps) => { + return ( + + + + + + ); +}; + +export default BuiltWithFernLight; diff --git a/fern/components/images/soc2.tsx b/fern/components/images/soc2.tsx new file mode 100644 index 000000000..9cd0d4c56 --- /dev/null +++ b/fern/components/images/soc2.tsx @@ -0,0 +1,130 @@ +import React from 'react'; + +interface Soc2LogoProps { + width?: number; + height?: number; + className?: string; +} + +export const Soc2Logo = ({ + width = 32, + height = 32, + className = "" +}: Soc2LogoProps) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default Soc2Logo; \ No newline at end of file diff --git a/fern/docs.yml b/fern/docs.yml index 91bfdb068..33e72f8f8 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -145,7 +145,10 @@ analytics: gtm: container-id: GTM-55W3VNDW - +experimental: + mdx-components: + - ./components + # Redirects for new docs structure migration redirects: diff --git a/fern/fern.config.json b/fern/fern.config.json index b66b2bc2e..023935bdc 100644 --- a/fern/fern.config.json +++ b/fern/fern.config.json @@ -1,4 +1,4 @@ { "organization": "fern", - "version": "0.65.23" + "version": "0.65.24" } \ No newline at end of file diff --git a/fern/products/home/home.yml b/fern/products/home/home.yml index ee29ac746..28ed4eccc 100644 --- a/fern/products/home/home.yml +++ b/fern/products/home/home.yml @@ -1,3 +1,3 @@ navigation: - - page: Home + - page: What is AI search? path: ./pages/welcome.mdx \ No newline at end of file diff --git a/fern/products/home/pages/welcome.mdx b/fern/products/home/pages/welcome.mdx index 61a3339bf..090f461b9 100644 --- a/fern/products/home/pages/welcome.mdx +++ b/fern/products/home/pages/welcome.mdx @@ -304,8 +304,5 @@ import { FernFooter } from "../../../components/FernFooter";
- {/* Footer */} - {/* */} - {/* */} \ No newline at end of file From 30fded5a6bdbf71f6178fa87a526915bab7c4ffb Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 18:51:07 -0400 Subject: [PATCH 07/34] fix: removing redirects --- check_urls.py | 139 +- check_urls_output.txt | 2084 ++++++++++++++++++++ docs.xml | 2616 +++++++++++++------------- fern/docs.yml | 852 ++++----- fern/products/home/pages/welcome.mdx | 2 +- 5 files changed, 3911 insertions(+), 1782 deletions(-) create mode 100644 check_urls_output.txt diff --git a/check_urls.py b/check_urls.py index 23ef547b8..478a4c061 100644 --- a/check_urls.py +++ b/check_urls.py @@ -22,6 +22,17 @@ def __init__(self, sitemap_path, max_workers=10, delay=0.1, timeout=30): self.session.headers.update({ 'User-Agent': 'Fern-URL-Checker/1.0' }) + # Define the problematic home page URL + self.home_page_url = 'https://fern-api.docs.buildwithfern.com/learn/home' + # File handle for output logging + self.output_file = None + + def log(self, message): + """Print to console and write to file if file is open.""" + print(message) + if self.output_file: + self.output_file.write(message + '\n') + self.output_file.flush() # Ensure immediate write def parse_sitemap(self): """Parse the XML sitemap and extract all URLs.""" @@ -40,21 +51,24 @@ def parse_sitemap(self): return urls except ET.ParseError as e: - print(f"❌ Error parsing XML sitemap: {e}") + self.log(f"❌ Error parsing XML sitemap: {e}") return [] except FileNotFoundError: - print(f"❌ Sitemap file not found: {self.sitemap_path}") + self.log(f"❌ Sitemap file not found: {self.sitemap_path}") return [] def check_url(self, url): """Check a single URL and return result.""" try: response = self.session.get(url, timeout=self.timeout, allow_redirects=True) + is_home_redirect = (url != response.url and + response.url.rstrip('/') == self.home_page_url.rstrip('/')) return { 'url': url, 'status_code': response.status_code, 'final_url': response.url, 'redirected': url != response.url, + 'home_redirect': is_home_redirect, 'error': None } except requests.exceptions.RequestException as e: @@ -63,6 +77,7 @@ def check_url(self, url): 'status_code': None, 'final_url': None, 'redirected': False, + 'home_redirect': False, 'error': str(e) } @@ -71,10 +86,11 @@ def check_urls(self, urls): results = [] failed_urls = [] redirect_urls = [] + home_redirect_urls = [] - print(f"🔍 Checking {len(urls)} URLs...") - print(f"⚙️ Using {self.max_workers} workers with {self.delay}s delay") - print("=" * 60) + self.log(f"🔍 Checking {len(urls)} URLs...") + self.log(f"⚙️ Using {self.max_workers} workers with {self.delay}s delay") + self.log("=" * 60) with ThreadPoolExecutor(max_workers=self.max_workers) as executor: # Submit all URL check tasks @@ -90,58 +106,70 @@ def check_urls(self, urls): # Print progress if i % 50 == 0 or i == len(urls): - print(f"Progress: {i}/{len(urls)} URLs checked") + self.log(f"Progress: {i}/{len(urls)} URLs checked") # Categorize results if result['error']: failed_urls.append(result) - print(f"❌ ERROR: {result['url']} - {result['error']}") + self.log(f"❌ ERROR: {result['url']} - {result['error']}") elif result['status_code'] == 404: failed_urls.append(result) - print(f"❌ 404: {result['url']}") + self.log(f"❌ 404: {result['url']}") elif result['status_code'] >= 400: failed_urls.append(result) - print(f"⚠️ {result['status_code']}: {result['url']}") + self.log(f"⚠️ {result['status_code']}: {result['url']}") + elif result['home_redirect']: + home_redirect_urls.append(result) + self.log(f"🏠 HOME REDIRECT: {result['url']} → {result['final_url']}") elif result['redirected']: redirect_urls.append(result) - print(f"🔄 REDIRECT: {result['url']} → {result['final_url']}") + self.log(f"🔄 REDIRECT: {result['url']} → {result['final_url']}") elif result['status_code'] == 200: - print(f"✅ OK: {result['url']}") + self.log(f"✅ OK: {result['url']}") else: - print(f"ℹ️ {result['status_code']}: {result['url']}") + self.log(f"ℹ️ {result['status_code']}: {result['url']}") - return results, failed_urls, redirect_urls + return results, failed_urls, redirect_urls, home_redirect_urls - def print_summary(self, results, failed_urls, redirect_urls): + def print_summary(self, results, failed_urls, redirect_urls, home_redirect_urls): """Print summary of results.""" - print("\n" + "=" * 60) - print("📊 SUMMARY") - print("=" * 60) + self.log("\n" + "=" * 60) + self.log("📊 SUMMARY") + self.log("=" * 60) total_urls = len(results) success_urls = len([r for r in results if r['status_code'] == 200 and not r['error']]) - print(f"Total URLs checked: {total_urls}") - print(f"✅ Successful (200): {success_urls}") - print(f"🔄 Redirects: {len(redirect_urls)}") - print(f"❌ Failed/Errors: {len(failed_urls)}") + self.log(f"Total URLs checked: {total_urls}") + self.log(f"✅ Successful (200): {success_urls}") + self.log(f"🔄 Redirects: {len(redirect_urls)}") + self.log(f"🏠 Home page redirects: {len(home_redirect_urls)}") + self.log(f"❌ Failed/Errors: {len(failed_urls)}") if failed_urls: - print(f"\n❌ FAILED URLS ({len(failed_urls)}):") - print("-" * 40) + self.log(f"\n❌ FAILED URLS ({len(failed_urls)}):") + self.log("-" * 40) for result in failed_urls: if result['error']: - print(f"ERROR: {result['url']} - {result['error']}") + self.log(f"ERROR: {result['url']} - {result['error']}") else: - print(f"{result['status_code']}: {result['url']}") + self.log(f"{result['status_code']}: {result['url']}") + + if home_redirect_urls: + self.log(f"\n🏠 HOME PAGE REDIRECTS ({len(home_redirect_urls)}):") + self.log("-" * 40) + self.log("⚠️ These URLs redirect to the home page instead of specific content:") + for result in home_redirect_urls: + self.log(f"{result['url']} → {result['final_url']}") if redirect_urls: - print(f"\n🔄 REDIRECTED URLS ({len(redirect_urls)}):") - print("-" * 40) + self.log(f"\n🔄 OTHER REDIRECTED URLS ({len(redirect_urls)}):") + self.log("-" * 40) for result in redirect_urls: - print(f"{result['url']} → {result['final_url']}") + self.log(f"{result['url']} → {result['final_url']}") - return len(failed_urls) == 0 + # Consider home redirects as problematic for the exit code + return len(failed_urls) == 0 and len(home_redirect_urls) == 0 def main(): parser = argparse.ArgumentParser(description='Check URLs in Fern sitemap for 404 errors') @@ -150,31 +178,48 @@ def main(): parser.add_argument('--delay', type=float, default=0.1, help='Delay between requests (seconds)') parser.add_argument('--timeout', type=int, default=30, help='Request timeout (seconds)') parser.add_argument('--max-urls', type=int, help='Limit number of URLs to check (for testing)') + parser.add_argument('--output', default='check_urls_output.txt', help='Output file path') args = parser.parse_args() checker = URLChecker(args.sitemap, args.workers, args.delay, args.timeout) - print("🚀 Fern Docs URL Checker") - print("=" * 60) - - # Parse sitemap - urls = checker.parse_sitemap() - if not urls: - print("❌ No URLs found in sitemap") + # Open output file for writing + try: + checker.output_file = open(args.output, 'w', encoding='utf-8') + checker.log(f"📝 Output will be saved to: {args.output}") + except IOError as e: + print(f"❌ Error opening output file {args.output}: {e}") sys.exit(1) - # Limit URLs if specified (for testing) - if args.max_urls: - urls = urls[:args.max_urls] - print(f"🔬 Testing mode: checking first {len(urls)} URLs") - - # Check URLs - results, failed_urls, redirect_urls = checker.check_urls(urls) - - # Print summary and exit - success = checker.print_summary(results, failed_urls, redirect_urls) - sys.exit(0 if success else 1) + try: + checker.log("🚀 Fern Docs URL Checker") + checker.log("=" * 60) + + # Parse sitemap + urls = checker.parse_sitemap() + if not urls: + checker.log("❌ No URLs found in sitemap") + sys.exit(1) + + # Limit URLs if specified (for testing) + if args.max_urls: + urls = urls[:args.max_urls] + checker.log(f"🔬 Testing mode: checking first {len(urls)} URLs") + + # Check URLs + results, failed_urls, redirect_urls, home_redirect_urls = checker.check_urls(urls) + + # Print summary and exit + success = checker.print_summary(results, failed_urls, redirect_urls, home_redirect_urls) + + checker.log(f"\n📁 Results saved to: {args.output}") + sys.exit(0 if success else 1) + + finally: + # Close output file + if checker.output_file: + checker.output_file.close() if __name__ == "__main__": main() \ No newline at end of file diff --git a/check_urls_output.txt b/check_urls_output.txt new file mode 100644 index 000000000..ad371a316 --- /dev/null +++ b/check_urls_output.txt @@ -0,0 +1,2084 @@ +📝 Output will be saved to: check_urls_output.txt +🚀 Fern Docs URL Checker +============================================================ +🔍 Checking 1308 URLs... +⚙️ Using 10 workers with 0.1s delay +============================================================ +❌ 404: https://fern-api.docs.buildwithfern.com/learn +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-the-fern-folder +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/4 +Progress: 50/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/22 +Progress: 100/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/7 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/13 +Progress: 150/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/13 +Progress: 200/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/12/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/2/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/10/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/10/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/4 +Progress: 250/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/21 +Progress: 300/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/7/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/2/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/2/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go +Progress: 350/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/12/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/10/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/10/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/5/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/11/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/12/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/26 +Progress: 400/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/10/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/1/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/15 +Progress: 450/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/10/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/10/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/9 +Progress: 500/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/16 +Progress: 550/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/3/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/12/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/3 +Progress: 600/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/10/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/10/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/9/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/5/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/1/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/publishing-to-npm +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get +Progress: 650/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/configuration/what-is-docs-yml +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/configuration/project-structure +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/configuration/search +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown +✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +Progress: 700/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/configuration/frontmatter +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly +✅ OK: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab +✅ OK: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations +✅ OK: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting +Progress: 750/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 +Progress: 800/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 +Progress: 850/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 +Progress: 900/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 +Progress: 950/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 +Progress: 1000/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 +Progress: 1050/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 +Progress: 1100/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 +Progress: 1150/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 +Progress: 1200/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 +Progress: 1250/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 +Progress: 1300/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/public-api/snippets/get +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/public-api/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/public-api/tokens/revoke +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/public-api/snippets/load +Progress: 1308/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/public-api/tokens/generate + +============================================================ +📊 SUMMARY +============================================================ +Total URLs checked: 1308 +✅ Successful (200): 1304 +🔄 Redirects: 722 +🏠 Home page redirects: 0 +❌ Failed/Errors: 4 + +❌ FAILED URLS (4): +---------------------------------------- +404: https://fern-api.docs.buildwithfern.com/learn +ERROR: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk - Exceeded 30 redirects. + +🔄 OTHER REDIRECTED URLS (722): +---------------------------------------- +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-the-fern-folder +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/5/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/28 +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2025/1/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/9/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/4/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ts/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/3/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/12/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2025/2/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/10/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/10/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/5/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/7/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/1/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/2/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/python/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2025/1/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/12/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/10/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/10/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/7/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/5/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/4/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/11/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/10/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2023/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/go/2024/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2025/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/10/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/10/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/csharp/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/2/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2025/1/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/9/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/5/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/3/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/java/2024/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/12/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/10/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/10/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/9/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/8/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/5/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/php/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/1/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/changelog/ruby/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi +https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/publishing-to-npm +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/configuration/what-is-docs-yml +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/configuration/project-structure +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/configuration/search +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/configuration/frontmatter +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref +https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/public-api/snippets/get +https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/public-api/overview +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/public-api/tokens/revoke +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/public-api/snippets/load +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/public-api/tokens/generate + +📁 Results saved to: check_urls_output.txt diff --git a/docs.xml b/docs.xml index 519550008..326b674ea 100644 --- a/docs.xml +++ b/docs.xml @@ -1,3926 +1,3926 @@ -https://buildwithfern.com/learn +https://fern-api.docs.buildwithfern.com/learn -https://buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition -https://buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder -https://buildwithfern.com/learn/api-definition/openapi/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview -https://buildwithfern.com/learn/api-definition/openapi/authentication +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication -https://buildwithfern.com/learn/api-definition/openapi/servers +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers -https://buildwithfern.com/learn/api-definition/openapi/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http -https://buildwithfern.com/learn/api-definition/openapi/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart -https://buildwithfern.com/learn/api-definition/openapi/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse -https://buildwithfern.com/learn/api-definition/openapi/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks -https://buildwithfern.com/learn/api-definition/openapi/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences -https://buildwithfern.com/learn/api-definition/openapi/extensions/method-names +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names -https://buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names -https://buildwithfern.com/learn/api-definition/openapi/extensions/others +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others -https://buildwithfern.com/learn/api-definition/openapi/overlay-customizations +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations -https://buildwithfern.com/learn/api-definition/openapi/sync-specification +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification -https://buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi -https://buildwithfern.com/learn/api-definition/fern/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview -https://buildwithfern.com/learn/api-definition/fern/authentication +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication -https://buildwithfern.com/learn/api-definition/fern/types +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types -https://buildwithfern.com/learn/api-definition/fern/endpoints +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints -https://buildwithfern.com/learn/api-definition/fern/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http -https://buildwithfern.com/learn/api-definition/fern/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart -https://buildwithfern.com/learn/api-definition/fern/endpoints/bytes +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes -https://buildwithfern.com/learn/api-definition/fern/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse -https://buildwithfern.com/learn/api-definition/fern/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks -https://buildwithfern.com/learn/api-definition/fern/websockets +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets -https://buildwithfern.com/learn/api-definition/fern/errors +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors -https://buildwithfern.com/learn/api-definition/fern/imports +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports -https://buildwithfern.com/learn/api-definition/fern/examples +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples -https://buildwithfern.com/learn/api-definition/fern/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences -https://buildwithfern.com/learn/api-definition/fern/availability +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability -https://buildwithfern.com/learn/api-definition/fern/api-yml/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview -https://buildwithfern.com/learn/api-definition/fern/api-yml/environments +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments -https://buildwithfern.com/learn/api-definition/fern/api-yml/global-headers +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers -https://buildwithfern.com/learn/api-definition/fern/api-yml/errors +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors -https://buildwithfern.com/learn/api-definition/fern/packages +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages -https://buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is -https://buildwithfern.com/learn/api-definition/fern/export-openapi +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi -https://buildwithfern.com/learn/sdks/introduction/overview +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview -https://buildwithfern.com/learn/sdks/introduction/language-support +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support -https://buildwithfern.com/learn/sdks/introduction/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase -https://buildwithfern.com/learn/sdks/introduction/changelog/ts +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/go +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/java +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/php +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 -https://buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 -https://buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 -https://buildwithfern.com/learn/sdks/capabilities/strongly-typed +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed -https://buildwithfern.com/learn/sdks/capabilities/method-names +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names -https://buildwithfern.com/learn/sdks/capabilities/schema-validation +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation -https://buildwithfern.com/learn/sdks/capabilities/discriminated-unions +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions -https://buildwithfern.com/learn/sdks/capabilities/multipart-form-data +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data -https://buildwithfern.com/learn/sdks/capabilities/forward-compatibility +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility -https://buildwithfern.com/learn/sdks/capabilities/registry-publishing +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing -https://buildwithfern.com/learn/sdks/capabilities/auto-pagination +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination -https://buildwithfern.com/learn/sdks/capabilities/oauth +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth -https://buildwithfern.com/learn/sdks/capabilities/retries +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries -https://buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification -https://buildwithfern.com/learn/sdks/capabilities/idempotency-headers +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers -https://buildwithfern.com/learn/sdks/capabilities/server-sent-events +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events -https://buildwithfern.com/learn/sdks/capabilities/integration-tests +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests -https://buildwithfern.com/learn/sdks/capabilities/code-snippets +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets -https://buildwithfern.com/learn/sdks/capabilities/custom-code +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code -https://buildwithfern.com/learn/sdks/capabilities/merging-apis +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis -https://buildwithfern.com/learn/sdks/capabilities/websockets +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets -https://buildwithfern.com/learn/sdks/capabilities/mcp +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp -https://buildwithfern.com/learn/sdks/reference/configuration +https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration -https://buildwithfern.com/learn/sdks/guides/generate-your-first-sdk +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk -https://buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally -https://buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk -https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script -https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi -https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget -https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite -https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central -https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems -https://buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist -https://buildwithfern.com/learn/docs/getting-started/overview +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview -https://buildwithfern.com/learn/docs/getting-started/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase -https://buildwithfern.com/learn/docs/getting-started/quickstart +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart -https://buildwithfern.com/learn/docs/getting-started/global-configuration +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration -https://buildwithfern.com/learn/docs/getting-started/project-structure +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure -https://buildwithfern.com/learn/docs/getting-started/development +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development -https://buildwithfern.com/learn/docs/getting-started/publish-your-docs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs -https://buildwithfern.com/learn/docs/getting-started/changelog +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 -https://buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 -https://buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain -https://buildwithfern.com/learn/user-feedback +https://fern-api.docs.buildwithfern.com/learn/user-feedback -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac -https://buildwithfern.com/learn/docs/building-and-customizing-your-docs/search +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search -https://buildwithfern.com/learn/docs/content/write-markdown +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown -https://buildwithfern.com/learn/docs/content/components/overview +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview -https://buildwithfern.com/learn/docs/content/components/accordions +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions -https://buildwithfern.com/learn/docs/content/components/accordion-groups +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups -https://buildwithfern.com/learn/docs/content/components/aside +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside -https://buildwithfern.com/learn/docs/content/components/button +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button -https://buildwithfern.com/learn/docs/content/components/callouts +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts -https://buildwithfern.com/learn/docs/content/components/cards +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards -https://buildwithfern.com/learn/docs/content/components/card-groups +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups -https://buildwithfern.com/learn/docs/content/components/code-blocks +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks -https://buildwithfern.com/learn/docs/content/components/embed +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed -https://buildwithfern.com/learn/docs/content/components/request-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet -https://buildwithfern.com/learn/docs/content/components/response-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet -https://buildwithfern.com/learn/docs/content/components/schema-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet -https://buildwithfern.com/learn/docs/content/components/frames +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames -https://buildwithfern.com/learn/docs/content/components/icons +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons -https://buildwithfern.com/learn/docs/content/components/paramfield +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield -https://buildwithfern.com/learn/docs/content/components/steps +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps -https://buildwithfern.com/learn/docs/content/components/tabs +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs -https://buildwithfern.com/learn/docs/content/components/tooltips +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips -https://buildwithfern.com/learn/docs/content/custom-react-components +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components -https://buildwithfern.com/learn/docs/content/frontmatter +https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter -https://buildwithfern.com/learn/docs/content/reusable-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets -https://buildwithfern.com/learn/docs/content/changelog +https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog -https://buildwithfern.com/learn/docs/content/visual-editor +https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor -https://buildwithfern.com/learn/docs/api-references/generate-api-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref -https://buildwithfern.com/learn/docs/api-references/sdk-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets -https://buildwithfern.com/learn/docs/api-references/http-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets -https://buildwithfern.com/learn/docs/api-references/api-explorer +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer -https://buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys -https://buildwithfern.com/learn/docs/api-references/endpoint-errors +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors -https://buildwithfern.com/learn/docs/api-references/audiences +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences -https://buildwithfern.com/learn/docs/api-references/customize-api-reference-layout +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout -https://buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference -https://buildwithfern.com/learn/docs/api-references/generate-webhook-reference +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference -https://buildwithfern.com/learn/docs/api-references/server-urls +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls -https://buildwithfern.com/learn/docs/api-references/generate-websocket-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref -https://buildwithfern.com/learn/docs/api-references/generate-openrpc-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref -https://buildwithfern.com/learn/docs/integrations/overview +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview -https://buildwithfern.com/learn/docs/integrations/analytics/google +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google -https://buildwithfern.com/learn/docs/integrations/analytics/posthog +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog -https://buildwithfern.com/learn/docs/integrations/analytics/fullstory +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory -https://buildwithfern.com/learn/docs/integrations/analytics/segment +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment -https://buildwithfern.com/learn/docs/integrations/analytics/mixpanel +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel -https://buildwithfern.com/learn/docs/integrations/support/intercom +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom -https://buildwithfern.com/learn/docs/integrations/postman +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman -https://buildwithfern.com/learn/docs/integrations/feature-flags +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags -https://buildwithfern.com/learn/docs/developer-tools/llms-txt +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt -https://buildwithfern.com/learn/docs/developer-tools/cursor +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor -https://buildwithfern.com/learn/docs/developer-tools/gitlab +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab -https://buildwithfern.com/learn/docs/developer-tools/vale +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale -https://buildwithfern.com/learn/docs/developer-tools/view-markdown +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown -https://buildwithfern.com/learn/ask-fern/overview +https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview -https://buildwithfern.com/learn/ask-fern/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase -https://buildwithfern.com/learn/ask-fern/custom-prompting +https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting -https://buildwithfern.com/learn/ask-fern/citations +https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations -https://buildwithfern.com/learn/cli-reference/overview +https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview -https://buildwithfern.com/learn/cli-reference/options +https://fern-api.docs.buildwithfern.com/learn/cli-reference/options -https://buildwithfern.com/learn/cli-reference/commands +https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands -https://buildwithfern.com/learn/cli-reference/changelog +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 -https://buildwithfern.com/learn/cli-reference/changelog/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 -https://buildwithfern.com/learn/cli-reference/changelog/2025/6/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 -https://buildwithfern.com/learn/cli-reference/changelog/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 -https://buildwithfern.com/learn/cli-reference/changelog/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 -https://buildwithfern.com/learn/cli-reference/changelog/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 -https://buildwithfern.com/learn/cli-reference/changelog/2025/2/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 -https://buildwithfern.com/learn/cli-reference/changelog/2025/1/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 -https://buildwithfern.com/learn/cli-reference/changelog/2024/12/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 -https://buildwithfern.com/learn/cli-reference/changelog/2024/11/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 -https://buildwithfern.com/learn/cli-reference/changelog/2024/10/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 -https://buildwithfern.com/learn/cli-reference/changelog/2024/9/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 -https://buildwithfern.com/learn/cli-reference/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 -https://buildwithfern.com/learn/cli-reference/changelog/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 -https://buildwithfern.com/learn/cli-reference/changelog/2024/6/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 -https://buildwithfern.com/learn/cli-reference/changelog/2024/5/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 -https://buildwithfern.com/learn/cli-reference/changelog/2024/4/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/3/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 -https://buildwithfern.com/learn/cli-reference/changelog/2024/2/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 -https://buildwithfern.com/learn/cli-reference/changelog/2024/1/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/12/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 -https://buildwithfern.com/learn/cli-reference/changelog/2023/11/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/10/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/9/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 -https://buildwithfern.com/learn/cli-reference/changelog/2023/8/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/7/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/6/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 -https://buildwithfern.com/learn/cli-reference/changelog/2023/5/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 -https://buildwithfern.com/learn/cli-reference/changelog/2023/4/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/26 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/10 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/3 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 -https://buildwithfern.com/learn/cli-reference/changelog/2023/3/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/25 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/7 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/5 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/4 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/2 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 -https://buildwithfern.com/learn/cli-reference/changelog/2023/2/1 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/31 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/30 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/29 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/27 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/22 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/21 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/20 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/19 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/18 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/17 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/12 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/11 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/9 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/8 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 -https://buildwithfern.com/learn/cli-reference/changelog/2023/1/6 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 -https://buildwithfern.com/learn/cli-reference/changelog/2022/12/28 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 -https://buildwithfern.com/learn/cli-reference/changelog/2022/12/24 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 -https://buildwithfern.com/learn/cli-reference/changelog/2022/12/23 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 -https://buildwithfern.com/learn/cli-reference/changelog/2022/12/16 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 -https://buildwithfern.com/learn/cli-reference/changelog/2022/12/15 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 -https://buildwithfern.com/learn/cli-reference/changelog/2022/12/14 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 -https://buildwithfern.com/learn/cli-reference/changelog/2022/12/13 +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 -https://buildwithfern.com/learn/api-reference/overview +https://fern-api.docs.buildwithfern.com/learn/api-reference/overview -https://buildwithfern.com/learn/api-reference/snippets/get +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get -https://buildwithfern.com/learn/api-reference/snippets/load +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load -https://buildwithfern.com/learn/api-reference/tokens/generate +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate -https://buildwithfern.com/learn/api-reference/tokens/revoke +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke \ No newline at end of file diff --git a/fern/docs.yml b/fern/docs.yml index 33e72f8f8..044de62c4 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -157,442 +157,442 @@ redirects: # ============================================================================ # Main learn page redirect - - source: /learn - destination: /learn/home - permanent: true - - source: /learn/welcome - destination: /learn/home - permanent: true - - source: /learn/api-definition/fern/api-yml-reference - destination: /learn/api-definition/fern/api-yml/overview - permanent: true - - source: /learn/docs/api-references/api-explorer - destination: /learn/docs/api-references/api-explorer/overview - - source: /learn/docs/api-references/api-playground/:slug* - destination: learn/docs/api-references/api-explorer/:slug* - permanent: true - - source: /learn/docs/api-references/api-playground - destination: /learn/docs/api-references/api-explorer/overview - permanent: true + # - source: /learn + # destination: /learn/home + # permanent: true + # - source: /learn/welcome + # destination: /learn/home + # permanent: true + # - source: /learn/api-definition/fern/api-yml-reference + # destination: /learn/api-definition/fern/api-yml/overview + # permanent: true + # - source: /learn/docs/api-references/api-explorer + # destination: /learn/docs/api-references/api-explorer/overview + # - source: /learn/docs/api-references/api-playground/:slug* + # destination: learn/docs/api-references/api-explorer/:slug* + # permanent: true + # - source: /learn/docs/api-references/api-playground + # destination: /learn/docs/api-references/api-explorer/overview + # permanent: true - # ============================================================================ - # SDK REDIRECTS - # ============================================================================ + # # ============================================================================ + # # SDK REDIRECTS + # # ============================================================================ - # SDK Features/Capabilities redirects - - source: /learn/sdks/features/:slug* - destination: /learn/sdks/capabilities/:slug* - permanent: true + # # SDK Features/Capabilities redirects + # - source: /learn/sdks/features/:slug* + # destination: /learn/sdks/capabilities/:slug* + # permanent: true - # SDK Deep Dives - specific overrides for newer destinations - - source: /learn/sdks/capabilities/method-names - destination: /learn/sdks/deep-dives/customize-method-names - permanent: true - - source: /learn/sdks/guides/preview-your-sdk-locally - destination: /learn/sdks/deep-dives/setup-local-sdk-previews - permanent: true - - source: /learn/sdks/capabilities/auto-pagination - destination: /learn/v2/sdks/deep-dives/configure-auto-pagination - permanent: true - - source: /learn/sdks/capabilities/idempotency-headers - destination: /learn/sdks/deep-dives/configure-idempotency - permanent: true - - # SDK Package Managers redirects - - source: /learn/sdks/package-managers/:slug* - destination: /learn/sdks/guides/publish-to-package-managers/:slug* - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/npm-type-script - destination: /learn/sdks/generators/type-script/publishing-to-npm - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/pypi - destination: /learn/sdks/generators/python/publishing-to-py-pi - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/nuget - destination: /learn/sdks/generators/net/publishing-to-nu-get - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/pkgsite - destination: /learn/sdks/generators/go/publishing-as-a-go-module - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/maven-central - destination: /learn/sdks/generators/java/publishing-to-maven-central - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/rubygems - destination: /learn/sdks/generators/ruby/publishing-to-rubygems - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/packagist - destination: /learn/sdks/generators/php/publishing-to-packagist - permanent: true - - # SDK Introduction redirects - - source: /learn/sdks/introduction/configuration - destination: /learn/sdks/introduction/language-support - permanent: true - - source: /learn/sdks/introduction/language-support - destination: /learn/sdks/overview/introduction - permanent: true - - source: /learn/sdks/introduction/overview - destination: /learn/sdks/overview/introduction - permanent: true - - source: /learn/sdks/introduction/customer-showcase - destination: /learn/sdks/customer-showcase - permanent: true - - source: /learn/sdks/introduction/changelog/:slug* - destination: /learn/sdks/overview/changelog/:slug* - permanent: true - - # SDK Capabilities - remaining general redirects (after specific overrides above) - - source: /learn/sdks/capabilities/idiomatic-method-names - destination: /learn/sdks/capabilities/method-names - permanent: true - - source: /learn/sdks/capabilities/o-auth-token-refresh - destination: /learn/sdks/capabilities/oauth - permanent: true - - source: /learn/sdks/capabilities/retries-with-backoff - destination: /learn/sdks/capabilities/retries - permanent: true - - source: /learn/sdks/capabilities/web-sockets - destination: /learn/sdks/capabilities/websockets - permanent: true - - source: /learn/sdks/capabilities/augment-with-custom-code - destination: /learn/sdks/capabilities/custom-code - permanent: true - - source: /learn/sdks/capabilities/merging-multiple-apis - destination: /learn/sdks/capabilities/merging-apis - permanent: true - # General SDK capabilities pattern (will catch any not specifically overridden above) - - source: /learn/sdks/capabilities/:slug* - destination: /learn/sdks/overview/capabilities/:slug* - permanent: true - - # SDK Reference redirects - - source: /learn/sdks/reference/:slug* - destination: /learn/sdks/overview/reference/:slug* - permanent: true - - # SDK Guides - specific cases first, then general pattern - - source: /learn/sdks/guides/generate-your-first-sdk - destination: /learn/sdks/getting-started/generate-your-first-sdk - permanent: true - - source: /learn/sdks/guides/publish-a-public-facing-sdk - destination: /learn/sdks/guides/publish-your-sdk - permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/:slug* - destination: /learn/sdks/generators/:slug* - permanent: true - # General SDK guides pattern - - source: /learn/sdks/getting-started/:slug* - destination: /learn/sdks/guides/:slug* - permanent: true - - source: /learn/sdks/guides/:slug* - destination: /learn/sdks/getting-started/:slug* - permanent: true + # # SDK Deep Dives - specific overrides for newer destinations + # - source: /learn/sdks/capabilities/method-names + # destination: /learn/sdks/deep-dives/customize-method-names + # permanent: true + # - source: /learn/sdks/guides/preview-your-sdk-locally + # destination: /learn/sdks/deep-dives/setup-local-sdk-previews + # permanent: true + # - source: /learn/sdks/capabilities/auto-pagination + # destination: /learn/v2/sdks/deep-dives/configure-auto-pagination + # permanent: true + # - source: /learn/sdks/capabilities/idempotency-headers + # destination: /learn/sdks/deep-dives/configure-idempotency + # permanent: true - # ============================================================================ - # DOCS REDIRECTS - # ============================================================================ + # # SDK Package Managers redirects + # - source: /learn/sdks/package-managers/:slug* + # destination: /learn/sdks/guides/publish-to-package-managers/:slug* + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/npm-type-script + # destination: /learn/sdks/generators/type-script/publishing-to-npm + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/pypi + # destination: /learn/sdks/generators/python/publishing-to-py-pi + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/nuget + # destination: /learn/sdks/generators/net/publishing-to-nu-get + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/pkgsite + # destination: /learn/sdks/generators/go/publishing-as-a-go-module + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/maven-central + # destination: /learn/sdks/generators/java/publishing-to-maven-central + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/rubygems + # destination: /learn/sdks/generators/ruby/publishing-to-rubygems + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/packagist + # destination: /learn/sdks/generators/php/publishing-to-packagist + # permanent: true + + # # SDK Introduction redirects + # - source: /learn/sdks/introduction/configuration + # destination: /learn/sdks/introduction/language-support + # permanent: true + # - source: /learn/sdks/introduction/language-support + # destination: /learn/sdks/overview/introduction + # permanent: true + # - source: /learn/sdks/introduction/overview + # destination: /learn/sdks/overview/introduction + # permanent: true + # - source: /learn/sdks/introduction/customer-showcase + # destination: /learn/sdks/customer-showcase + # permanent: true + # - source: /learn/sdks/introduction/changelog/:slug* + # destination: /learn/sdks/overview/changelog/:slug* + # permanent: true + + # # SDK Capabilities - remaining general redirects (after specific overrides above) + # - source: /learn/sdks/capabilities/idiomatic-method-names + # destination: /learn/sdks/capabilities/method-names + # permanent: true + # - source: /learn/sdks/capabilities/o-auth-token-refresh + # destination: /learn/sdks/capabilities/oauth + # permanent: true + # - source: /learn/sdks/capabilities/retries-with-backoff + # destination: /learn/sdks/capabilities/retries + # permanent: true + # - source: /learn/sdks/capabilities/web-sockets + # destination: /learn/sdks/capabilities/websockets + # permanent: true + # - source: /learn/sdks/capabilities/augment-with-custom-code + # destination: /learn/sdks/capabilities/custom-code + # permanent: true + # - source: /learn/sdks/capabilities/merging-multiple-apis + # destination: /learn/sdks/capabilities/merging-apis + # permanent: true + # # General SDK capabilities pattern (will catch any not specifically overridden above) + # - source: /learn/sdks/capabilities/:slug* + # destination: /learn/sdks/overview/capabilities/:slug* + # permanent: true + + # # SDK Reference redirects + # - source: /learn/sdks/reference/:slug* + # destination: /learn/sdks/overview/reference/:slug* + # permanent: true + + # # SDK Guides - specific cases first, then general pattern + # - source: /learn/sdks/guides/generate-your-first-sdk + # destination: /learn/sdks/introduction/overview + # permanent: true + # - source: /learn/sdks/guides/publish-a-public-facing-sdk + # destination: /learn/sdks/guides/publish-your-sdk + # permanent: true + # - source: /learn/sdks/guides/publish-to-package-managers/:slug* + # destination: /learn/sdks/generators/:slug* + # permanent: true + # # General SDK guides pattern + # - source: /learn/sdks/getting-started/:slug* + # destination: /learn/sdks/guides/:slug* + # permanent: true + # - source: /learn/sdks/guides/:slug* + # destination: /learn/sdks/getting-started/:slug* + # permanent: true + + # # ============================================================================ + # # DOCS REDIRECTS + # # ============================================================================ - # Building Your Docs redirects (older naming) - - source: /learn/docs/building-your-docs/:slug* - destination: /learn/docs/building-and-customizing-your-docs/:slug* - permanent: true - - # Getting Started page redirects - specific cases first - - source: /learn/docs/getting-started/customer-showcase - destination: https://buildwithfern.com/customers - permanent: true - - source: /learn/docs/getting-started/global-configuration - destination: /learn/docs/guides/configuration/what-is-docs-yml - permanent: true - - source: /learn/docs/getting-started/project-structure - destination: /learn/docs/guides/configuration/project-structure - permanent: true - - source: /learn/docs/getting-started/development - destination: /learn/docs/preview-publish/previewing-changes-locally - permanent: true - - source: /learn/docs/getting-started/publish-your-docs - destination: /learn/docs/preview-publish/publishing-your-docs - permanent: true - # General getting started pattern - # - source: /learn/docs/getting-started/:slug* - # destination: /learn/docs/guides/getting-started/:slug* - # permanent: true - - # Building and Customizing Your Docs redirects - specific cases first - - source: /learn/docs/building-and-customizing-your-docs/navigation - destination: /learn/docs/navigation/overview - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/versioning - destination: /learn/docs/navigation/versions - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/announcements - destination: /learn/docs/navigation/announcement-banner - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/links-and-redirects - destination: /learn/docs/seo/redirects - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/customizing-slugs - destination: /learn/docs/seo/configuring-slugs - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/hiding-content - destination: /learn/docs/navigation/hiding-content - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/pull-request-preview - destination: /learn/docs/preview-publish/previewing-changes-in-a-pr - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/product-switching - destination: /learn/docs/navigation/products - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/custom-css-global-js - destination: /learn/docs/component-library/custom-components/custom-css-js - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/custom-domain - destination: /learn/docs/getting-started/setting-up-your-domain - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/rbac - destination: /learn/docs/authentication/rbac - permanent: true - - source: /learn/docs/building-and-customizing-your-docs/search - destination: /learn/docs/configuration/search - permanent: true - - # Content Section redirects - specific cases first - - source: /learn/docs/content/write-markdown - destination: /learn/docs/component-library/writing-content/markdown - permanent: true - - source: /learn/docs/content/components/button - destination: /learn/docs/component-library/default-components/callouts - permanent: true - - source: /learn/docs/content/components/request-snippet - destination: /learn/docs/component-library/default-components/endpoint-request-snippet - permanent: true - - source: /learn/docs/content/components/response-snippet - destination: /learn/docs/component-library/default-components/endpoint-response-snippet - permanent: true - - source: /learn/docs/content/components/schema-snippet - destination: /learn/docs/component-library/default-components/endpoint-schema-snippet - permanent: true - - source: /learn/docs/content/components/paramfield - destination: /learn/docs/component-library/default-components/parameter-fields - permanent: true - - source: /learn/docs/content/custom-react-components - destination: /learn/docs/component-library/custom-components/custom-react-components - permanent: true - - source: /learn/docs/content/frontmatter - destination: /learn/docs/configuration/frontmatter - permanent: true - - source: /learn/docs/content/reusable-snippets - destination: /learn/docs/component-library/custom-components/reusable-snippets - permanent: true - - source: /learn/docs/content/changelog - destination: /learn/docs/navigation/changelogs - permanent: true - - source: /learn/docs/content/visual-editor - destination: /learn/docs/component-library/writing-content/visual-editor - permanent: true - # General content components pattern - - source: /learn/docs/content/components/:slug* - destination: /learn/docs/component-library/default-components/:slug* - permanent: true - - # Components redirects - - source: /learn/docs/components/:slug* - destination: /learn/docs/component-library/default-components/:slug* - permanent: true - - # API References specific page redirects - specific cases first - - source: /learn/docs/api-references/api-explorer/auto-populate-api-keys - destination: /learn/docs/api-references/autopopulate-api-key - permanent: true - - source: /learn/docs/api-references/customize-api-reference-layout - destination: /learn/docs/api-references/customize-api-ref - permanent: true - - source: /learn/docs/api-references/write-markdown-in-api-reference - destination: /learn/docs/api-references/api-ref-content - permanent: true - - source: /learn/docs/api-references/generate-webhook-reference - destination: /learn/docs/api-references/generate-webhook-ref - permanent: true - # General API references pattern - - source: /learn/docs/api-references/:slug* - destination: /learn/docs/guides/reference/:slug* - permanent: true - - # Docs Integrations redirects - specific case first - - source: /learn/docs/integrations/feature-flags - destination: /learn/docs/integrations/launchdarkly - permanent: true - # General integrations pattern - - source: /learn/docs/integrations/:slug* - destination: /learn/docs/guides/integrations/:slug* - permanent: true - - # Developer tools redirects - - source: /learn/docs/developer-tools/:slug* - destination: /learn/docs/guides/developer-tools/:slug* - permanent: true - - # Writing content redirects - - source: /learn/docs/writing-content/visual-editor-beta - destination: /learn/docs/writing-content/visual-editor - permanent: true - - # Specific changelog redirect - - source: /learn/docs/getting-started/changelog/2025/5/23 - destination: /learn/docs/getting-started/changelog/2025/6/5 - permanent: true + # # Building Your Docs redirects (older naming) + # - source: /learn/docs/building-your-docs/:slug* + # destination: /learn/docs/building-and-customizing-your-docs/:slug* + # permanent: true - # ============================================================================ - # CLI & API REFERENCE REDIRECTS - # ============================================================================ + # # Getting Started page redirects - specific cases first + # - source: /learn/docs/getting-started/customer-showcase + # destination: https://buildwithfern.com/customers + # permanent: true + # - source: /learn/docs/getting-started/global-configuration + # destination: /learn/docs/guides/configuration/what-is-docs-yml + # permanent: true + # - source: /learn/docs/getting-started/project-structure + # destination: /learn/docs/guides/configuration/project-structure + # permanent: true + # - source: /learn/docs/getting-started/development + # destination: /learn/docs/preview-publish/previewing-changes-locally + # permanent: true + # - source: /learn/docs/getting-started/publish-your-docs + # destination: /learn/docs/preview-publish/publishing-your-docs + # permanent: true + # # General getting started pattern + # # - source: /learn/docs/getting-started/:slug* + # # destination: /learn/docs/guides/getting-started/:slug* + # # permanent: true + + # # Building and Customizing Your Docs redirects - specific cases first + # - source: /learn/docs/building-and-customizing-your-docs/navigation + # destination: /learn/docs/navigation/overview + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/versioning + # destination: /learn/docs/navigation/versions + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/announcements + # destination: /learn/docs/navigation/announcement-banner + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/links-and-redirects + # destination: /learn/docs/seo/redirects + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/customizing-slugs + # destination: /learn/docs/seo/configuring-slugs + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/hiding-content + # destination: /learn/docs/navigation/hiding-content + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/pull-request-preview + # destination: /learn/docs/preview-publish/previewing-changes-in-a-pr + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/product-switching + # destination: /learn/docs/navigation/products + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/custom-css-global-js + # destination: /learn/docs/component-library/custom-components/custom-css-js + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/custom-domain + # destination: /learn/docs/getting-started/setting-up-your-domain + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/rbac + # destination: /learn/docs/authentication/rbac + # permanent: true + # - source: /learn/docs/building-and-customizing-your-docs/search + # destination: /learn/docs/configuration/search + # permanent: true + + # # Content Section redirects - specific cases first + # - source: /learn/docs/content/write-markdown + # destination: /learn/docs/component-library/writing-content/markdown + # permanent: true + # - source: /learn/docs/content/components/button + # destination: /learn/docs/component-library/default-components/callouts + # permanent: true + # - source: /learn/docs/content/components/request-snippet + # destination: /learn/docs/component-library/default-components/endpoint-request-snippet + # permanent: true + # - source: /learn/docs/content/components/response-snippet + # destination: /learn/docs/component-library/default-components/endpoint-response-snippet + # permanent: true + # - source: /learn/docs/content/components/schema-snippet + # destination: /learn/docs/component-library/default-components/endpoint-schema-snippet + # permanent: true + # - source: /learn/docs/content/components/paramfield + # destination: /learn/docs/component-library/default-components/parameter-fields + # permanent: true + # - source: /learn/docs/content/custom-react-components + # destination: /learn/docs/component-library/custom-components/custom-react-components + # permanent: true + # - source: /learn/docs/content/frontmatter + # destination: /learn/docs/configuration/frontmatter + # permanent: true + # - source: /learn/docs/content/reusable-snippets + # destination: /learn/docs/component-library/custom-components/reusable-snippets + # permanent: true + # - source: /learn/docs/content/changelog + # destination: /learn/docs/navigation/changelogs + # permanent: true + # - source: /learn/docs/content/visual-editor + # destination: /learn/docs/component-library/writing-content/visual-editor + # permanent: true + # # General content components pattern + # - source: /learn/docs/content/components/:slug* + # destination: /learn/docs/component-library/default-components/:slug* + # permanent: true + + # # Components redirects + # - source: /learn/docs/components/:slug* + # destination: /learn/docs/component-library/default-components/:slug* + # permanent: true + + # # API References specific page redirects - specific cases first + # - source: /learn/docs/api-references/api-explorer/auto-populate-api-keys + # destination: /learn/docs/api-references/autopopulate-api-key + # permanent: true + # - source: /learn/docs/api-references/customize-api-reference-layout + # destination: /learn/docs/api-references/customize-api-ref + # permanent: true + # - source: /learn/docs/api-references/write-markdown-in-api-reference + # destination: /learn/docs/api-references/api-ref-content + # permanent: true + # - source: /learn/docs/api-references/generate-webhook-reference + # destination: /learn/docs/api-references/generate-webhook-ref + # permanent: true + # # General API references pattern + # - source: /learn/docs/api-references/:slug* + # destination: /learn/docs/guides/reference/:slug* + # permanent: true + + # # Docs Integrations redirects - specific case first + # - source: /learn/docs/integrations/feature-flags + # destination: /learn/docs/integrations/launchdarkly + # permanent: true + # # General integrations pattern + # - source: /learn/docs/integrations/:slug* + # destination: /learn/docs/guides/integrations/:slug* + # permanent: true + + # # Developer tools redirects + # - source: /learn/docs/developer-tools/:slug* + # destination: /learn/docs/guides/developer-tools/:slug* + # permanent: true + + # # Writing content redirects + # - source: /learn/docs/writing-content/visual-editor-beta + # destination: /learn/docs/writing-content/visual-editor + # permanent: true + + # # Specific changelog redirect + # - source: /learn/docs/getting-started/changelog/2025/5/23 + # destination: /learn/docs/getting-started/changelog/2025/6/5 + # permanent: true + + # # ============================================================================ + # # CLI & API REFERENCE REDIRECTS + # # ============================================================================ - # CLI & API Reference specific redirects first - - source: /learn/cli-api/cli-reference/get-started-with-fern-cli - destination: /learn/cli-reference/overview - permanent: true - - source: /learn/cli-api/cli-reference/cli-overview - destination: /learn/cli-reference/overview - permanent: true - - source: /learn/cli-reference/cli-overview - destination: /learn/cli-reference/overview - permanent: true - - source: /learn/cli-api/cli-reference/global-options - destination: /learn/cli-reference/options - permanent: true - - source: /learn/cli-reference/get-started - destination: /learn/cli-reference/overview - permanent: true - # CLI patterns - - source: /learn/cli-api/cli-reference/:slug* - destination: /learn/cli-reference/:slug* - permanent: true - - source: /learn/cli-api/cli/:slug* - destination: /learn/cli-reference/:slug* - permanent: true - - source: /learn/cli-api/:slug* - destination: /learn/cli-reference/:slug* - permanent: true + # # CLI & API Reference specific redirects first + # - source: /learn/cli-api/cli-reference/get-started-with-fern-cli + # destination: /learn/cli-reference/overview + # permanent: true + # - source: /learn/cli-api/cli-reference/cli-overview + # destination: /learn/cli-reference/overview + # permanent: true + # - source: /learn/cli-reference/cli-overview + # destination: /learn/cli-reference/overview + # permanent: true + # - source: /learn/cli-api/cli-reference/global-options + # destination: /learn/cli-reference/options + # permanent: true + # - source: /learn/cli-reference/get-started + # destination: /learn/cli-reference/overview + # permanent: true + # # CLI patterns + # - source: /learn/cli-api/cli-reference/:slug* + # destination: /learn/cli-reference/:slug* + # permanent: true + # - source: /learn/cli-api/cli/:slug* + # destination: /learn/cli-reference/:slug* + # permanent: true + # - source: /learn/cli-api/:slug* + # destination: /learn/cli-reference/:slug* + # permanent: true - # ============================================================================ - # API DEFINITION REDIRECTS - # ============================================================================ + # # ============================================================================ + # # API DEFINITION REDIRECTS + # # ============================================================================ - # API Definition Fern specific redirects first - - source: /learn/api-definition/fern/web-sockets - destination: /learn/fern-definition/websockets - permanent: true - - source: /learn/api-definition/fern/websockets - destination: /learn/fern-definition/websockets - permanent: true - - source: /learn/api-definition/fern/overview - destination: /learn/fern-definition/overview - permanent: true - - source: /learn/api-definition/fern/authentication - destination: /learn/fern-definition/auth - permanent: true - - source: /learn/api-definition/fern/depending-on-other-ap-is - destination: /learn/fern-definition/depending-on-other-apis - permanent: true - - source: /learn/api-definition/fern/endpoints/:slug* - destination: /learn/fern-definition/endpoints/:slug* - permanent: true - - source: /learn/api-definition/fern/api-yml/:slug* - destination: /learn/fern-definition/api-yml/:slug* - permanent: true - # General Fern pattern - - source: /learn/api-definition/fern/:slug* - destination: /learn/fern-definition/:slug* - permanent: true - - # API Definition Introduction redirects - - source: /learn/api-definition/introduction/what-is-an-api-definition - destination: /learn/api-definition/what-is-an-api-definition - permanent: true - - source: /learn/api-definition/introduction/what-is-the-fern-folder - destination: /learn/api-definition/what-is-the-fern-folder - permanent: true - - source: /learn/api-definition/introduction/:slug* - destination: /learn/api-definition/:slug* - permanent: true - - # API Definition OpenAPI specific redirects first - - source: /learn/api-definition/openapi/overview - destination: /learn/openapi-definition/overview - permanent: true - - source: /learn/api-definition/openapi/authentication - destination: /learn/openapi-definition/auth - permanent: true - - source: /learn/api-definition/openapi/servers - destination: /learn/openapi-definition/servers - permanent: true - - source: /learn/api-definition/openapi/webhooks - destination: /learn/openapi-definition/webhooks - permanent: true - - source: /learn/api-definition/openapi/audiences - destination: /learn/openapi-definition/audiences - permanent: true - - source: /learn/api-definition/openapi/overlay-customizations - destination: /learn/openapi-definition/overlay-customizations - permanent: true - - source: /learn/api-definition/openapi/automatic-updates - destination: /learn/openapi-definition/automation - permanent: true - - source: /learn/api-definition/openapi/endpoints/:slug* - destination: /learn/openapi-definition/endpoints/:slug* - permanent: true - - source: /learn/api-definition/openapi/extensions/:slug* - destination: /learn/openapi-definition/extensions/:slug* - permanent: true - - source: /learn/api-definition/openapi/frameworks/:slug* - destination: /learn/openapi-definition/server-frameworks/:slug* - permanent: true - # General OpenAPI pattern - - source: /learn/api-definition/openapi/:slug* - destination: /learn/openapi-definition/:slug* - permanent: true + # # API Definition Fern specific redirects first + # - source: /learn/api-definition/fern/web-sockets + # destination: /learn/fern-definition/websockets + # permanent: true + # - source: /learn/api-definition/fern/websockets + # destination: /learn/fern-definition/websockets + # permanent: true + # - source: /learn/api-definition/fern/overview + # destination: /learn/fern-definition/overview + # permanent: true + # - source: /learn/api-definition/fern/authentication + # destination: /learn/fern-definition/auth + # permanent: true + # - source: /learn/api-definition/fern/depending-on-other-ap-is + # destination: /learn/fern-definition/depending-on-other-apis + # permanent: true + # - source: /learn/api-definition/fern/endpoints/:slug* + # destination: /learn/fern-definition/endpoints/:slug* + # permanent: true + # - source: /learn/api-definition/fern/api-yml/:slug* + # destination: /learn/fern-definition/api-yml/:slug* + # permanent: true + # # General Fern pattern + # - source: /learn/api-definition/fern/:slug* + # destination: /learn/fern-definition/:slug* + # permanent: true - # ============================================================================ - # ASK FERN (AI SEARCH) REDIRECTS - # ============================================================================ + # # API Definition Introduction redirects + # - source: /learn/api-definition/introduction/what-is-an-api-definition + # destination: /learn/api-definition/what-is-an-api-definition + # permanent: true + # - source: /learn/api-definition/introduction/what-is-the-fern-folder + # destination: /learn/api-definition/what-is-the-fern-folder + # permanent: true + # - source: /learn/api-definition/introduction/:slug* + # destination: /learn/api-definition/:slug* + # permanent: true + + # # API Definition OpenAPI specific redirects first + # - source: /learn/api-definition/openapi/overview + # destination: /learn/openapi-definition/overview + # permanent: true + # - source: /learn/api-definition/openapi/authentication + # destination: /learn/openapi-definition/auth + # permanent: true + # - source: /learn/api-definition/openapi/servers + # destination: /learn/openapi-definition/servers + # permanent: true + # - source: /learn/api-definition/openapi/webhooks + # destination: /learn/openapi-definition/webhooks + # permanent: true + # - source: /learn/api-definition/openapi/audiences + # destination: /learn/openapi-definition/audiences + # permanent: true + # - source: /learn/api-definition/openapi/overlay-customizations + # destination: /learn/openapi-definition/overlay-customizations + # permanent: true + # - source: /learn/api-definition/openapi/automatic-updates + # destination: /learn/openapi-definition/automation + # permanent: true + # - source: /learn/api-definition/openapi/endpoints/:slug* + # destination: /learn/openapi-definition/endpoints/:slug* + # permanent: true + # - source: /learn/api-definition/openapi/extensions/:slug* + # destination: /learn/openapi-definition/extensions/:slug* + # permanent: true + # - source: /learn/api-definition/openapi/frameworks/:slug* + # destination: /learn/openapi-definition/server-frameworks/:slug* + # permanent: true + # # General OpenAPI pattern + # - source: /learn/api-definition/openapi/:slug* + # destination: /learn/openapi-definition/:slug* + # permanent: true + + # # ============================================================================ + # # ASK FERN (AI SEARCH) REDIRECTS + # # ============================================================================ - # Ask Fern specific redirects first - - source: /learn/ai-search/customer-showcase - destination: /learn/ask-fern/customer-showcase - permanent: true - - source: /learn/ai-search/overview - destination: /learn/ask-fern/overview - permanent: true - - source: /learn/ai-search/custom-prompting - destination: /learn/ask-fern/custom-prompting - permanent: true - - source: /learn/ai-search/citations - destination: /learn/ask-fern/citations - permanent: true - # General Ask Fern patterns - - source: /learn/ai-search/getting-started/:slug* - destination: /learn/ask-fern/:slug* - permanent: true - - source: /learn/ai-search/features/:slug* - destination: /learn/ask-fern/:slug* - permanent: true - - source: /learn/ai-search/:slug* - destination: /learn/ask-fern/:slug* - permanent: true + # # Ask Fern specific redirects first + # - source: /learn/ai-search/customer-showcase + # destination: /learn/ask-fern/customer-showcase + # permanent: true + # - source: /learn/ai-search/overview + # destination: /learn/ask-fern/overview + # permanent: true + # - source: /learn/ai-search/custom-prompting + # destination: /learn/ask-fern/custom-prompting + # permanent: true + # - source: /learn/ai-search/citations + # destination: /learn/ask-fern/citations + # permanent: true + # # General Ask Fern patterns + # - source: /learn/ai-search/getting-started/:slug* + # destination: /learn/ask-fern/:slug* + # permanent: true + # - source: /learn/ai-search/features/:slug* + # destination: /learn/ask-fern/:slug* + # permanent: true + # - source: /learn/ai-search/:slug* + # destination: /learn/ask-fern/:slug* + # permanent: true - # ============================================================================ - # API REFERENCE REDIRECTS (Fern Public API) - # ============================================================================ + # # ============================================================================ + # # API REFERENCE REDIRECTS (Fern Public API) + # # ============================================================================ - # Fern Public API Reference redirects - - source: /learn/api-reference/overview - destination: /learn/public-api/overview - permanent: true - - source: /learn/api-reference/snippets/:slug* - destination: /learn/public-api/snippets/:slug* - permanent: true - - source: /learn/api-reference/tokens/:slug* - destination: /learn/public-api/tokens/:slug* - permanent: true - - source: /learn/api-reference/:slug* - destination: /learn/public-api/:slug* - permanent: true \ No newline at end of file + # # Fern Public API Reference redirects + # - source: /learn/api-reference/overview + # destination: /learn/public-api/overview + # permanent: true + # - source: /learn/api-reference/snippets/:slug* + # destination: /learn/public-api/snippets/:slug* + # permanent: true + # - source: /learn/api-reference/tokens/:slug* + # destination: /learn/public-api/tokens/:slug* + # permanent: true + # - source: /learn/api-reference/:slug* + # destination: /learn/public-api/:slug* + # permanent: true \ No newline at end of file diff --git a/fern/products/home/pages/welcome.mdx b/fern/products/home/pages/welcome.mdx index 090f461b9..5a7a5b8e0 100644 --- a/fern/products/home/pages/welcome.mdx +++ b/fern/products/home/pages/welcome.mdx @@ -230,7 +230,7 @@ import { FernFooter } from "../../../components/FernFooter";
- Github Preview + Github Preview Github Preview

Github

From 5992672fdf2458197943be3606c94749d392bcdb Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 18:57:07 -0400 Subject: [PATCH 08/34] fix: fixing docs.yml --- fern/docs.yml | 852 +++++++++++++++++++++++++------------------------- 1 file changed, 426 insertions(+), 426 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 044de62c4..ddad91816 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -157,442 +157,442 @@ redirects: # ============================================================================ # Main learn page redirect - # - source: /learn - # destination: /learn/home - # permanent: true - # - source: /learn/welcome - # destination: /learn/home - # permanent: true - # - source: /learn/api-definition/fern/api-yml-reference - # destination: /learn/api-definition/fern/api-yml/overview - # permanent: true - # - source: /learn/docs/api-references/api-explorer - # destination: /learn/docs/api-references/api-explorer/overview - # - source: /learn/docs/api-references/api-playground/:slug* - # destination: learn/docs/api-references/api-explorer/:slug* - # permanent: true - # - source: /learn/docs/api-references/api-playground - # destination: /learn/docs/api-references/api-explorer/overview - # permanent: true + - source: /learn + destination: /learn/home + permanent: true + - source: /learn/welcome + destination: /learn/home + permanent: true + - source: /learn/api-definition/fern/api-yml-reference + destination: /learn/api-definition/fern/api-yml/overview + permanent: true + - source: /learn/docs/api-references/api-explorer + destination: /learn/docs/api-references/api-explorer/overview + - source: /learn/docs/api-references/api-playground/:slug* + destination: learn/docs/api-references/api-explorer/:slug* + permanent: true + - source: /learn/docs/api-references/api-playground + destination: /learn/docs/api-references/api-explorer/overview + permanent: true - # # ============================================================================ - # # SDK REDIRECTS - # # ============================================================================ + # ============================================================================ + # SDK REDIRECTS + # ============================================================================ - # # SDK Features/Capabilities redirects - # - source: /learn/sdks/features/:slug* - # destination: /learn/sdks/capabilities/:slug* - # permanent: true + # SDK Features/Capabilities redirects + - source: /learn/sdks/features/:slug* + destination: /learn/sdks/capabilities/:slug* + permanent: true - # # SDK Deep Dives - specific overrides for newer destinations - # - source: /learn/sdks/capabilities/method-names - # destination: /learn/sdks/deep-dives/customize-method-names - # permanent: true - # - source: /learn/sdks/guides/preview-your-sdk-locally - # destination: /learn/sdks/deep-dives/setup-local-sdk-previews - # permanent: true - # - source: /learn/sdks/capabilities/auto-pagination - # destination: /learn/v2/sdks/deep-dives/configure-auto-pagination - # permanent: true - # - source: /learn/sdks/capabilities/idempotency-headers - # destination: /learn/sdks/deep-dives/configure-idempotency - # permanent: true - - # # SDK Package Managers redirects - # - source: /learn/sdks/package-managers/:slug* - # destination: /learn/sdks/guides/publish-to-package-managers/:slug* - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/npm-type-script - # destination: /learn/sdks/generators/type-script/publishing-to-npm - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/pypi - # destination: /learn/sdks/generators/python/publishing-to-py-pi - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/nuget - # destination: /learn/sdks/generators/net/publishing-to-nu-get - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/pkgsite - # destination: /learn/sdks/generators/go/publishing-as-a-go-module - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/maven-central - # destination: /learn/sdks/generators/java/publishing-to-maven-central - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/rubygems - # destination: /learn/sdks/generators/ruby/publishing-to-rubygems - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/packagist - # destination: /learn/sdks/generators/php/publishing-to-packagist - # permanent: true - - # # SDK Introduction redirects - # - source: /learn/sdks/introduction/configuration - # destination: /learn/sdks/introduction/language-support - # permanent: true - # - source: /learn/sdks/introduction/language-support - # destination: /learn/sdks/overview/introduction - # permanent: true - # - source: /learn/sdks/introduction/overview - # destination: /learn/sdks/overview/introduction - # permanent: true - # - source: /learn/sdks/introduction/customer-showcase - # destination: /learn/sdks/customer-showcase - # permanent: true - # - source: /learn/sdks/introduction/changelog/:slug* - # destination: /learn/sdks/overview/changelog/:slug* - # permanent: true - - # # SDK Capabilities - remaining general redirects (after specific overrides above) - # - source: /learn/sdks/capabilities/idiomatic-method-names - # destination: /learn/sdks/capabilities/method-names - # permanent: true - # - source: /learn/sdks/capabilities/o-auth-token-refresh - # destination: /learn/sdks/capabilities/oauth - # permanent: true - # - source: /learn/sdks/capabilities/retries-with-backoff - # destination: /learn/sdks/capabilities/retries - # permanent: true - # - source: /learn/sdks/capabilities/web-sockets - # destination: /learn/sdks/capabilities/websockets - # permanent: true - # - source: /learn/sdks/capabilities/augment-with-custom-code - # destination: /learn/sdks/capabilities/custom-code - # permanent: true - # - source: /learn/sdks/capabilities/merging-multiple-apis - # destination: /learn/sdks/capabilities/merging-apis - # permanent: true - # # General SDK capabilities pattern (will catch any not specifically overridden above) - # - source: /learn/sdks/capabilities/:slug* - # destination: /learn/sdks/overview/capabilities/:slug* - # permanent: true - - # # SDK Reference redirects - # - source: /learn/sdks/reference/:slug* - # destination: /learn/sdks/overview/reference/:slug* - # permanent: true + # SDK Deep Dives - specific overrides for newer destinations + - source: /learn/sdks/capabilities/method-names + destination: /learn/sdks/deep-dives/customize-method-names + permanent: true + - source: /learn/sdks/guides/preview-your-sdk-locally + destination: /learn/sdks/deep-dives/setup-local-sdk-previews + permanent: true + - source: /learn/sdks/capabilities/auto-pagination + destination: /learn/v2/sdks/deep-dives/configure-auto-pagination + permanent: true + - source: /learn/sdks/capabilities/idempotency-headers + destination: /learn/sdks/deep-dives/configure-idempotency + permanent: true + + # SDK Package Managers redirects + - source: /learn/sdks/package-managers/:slug* + destination: /learn/sdks/guides/publish-to-package-managers/:slug* + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/npm-type-script + destination: /learn/sdks/generators/type-script/publishing-to-npm + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/pypi + destination: /learn/sdks/generators/python/publishing-to-py-pi + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/nuget + destination: /learn/sdks/generators/net/publishing-to-nu-get + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/pkgsite + destination: /learn/sdks/generators/go/publishing-as-a-go-module + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/maven-central + destination: /learn/sdks/generators/java/publishing-to-maven-central + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/rubygems + destination: /learn/sdks/generators/ruby/publishing-to-rubygems + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/packagist + destination: /learn/sdks/generators/php/publishing-to-packagist + permanent: true + + # SDK Introduction redirects + - source: /learn/sdks/introduction/configuration + destination: /learn/sdks/introduction/language-support + permanent: true + - source: /learn/sdks/introduction/language-support + destination: /learn/sdks/overview/introduction + permanent: true + - source: /learn/sdks/introduction/overview + destination: /learn/sdks/overview/introduction + permanent: true + - source: /learn/sdks/introduction/customer-showcase + destination: /learn/sdks/customer-showcase + permanent: true + - source: /learn/sdks/introduction/changelog/:slug* + destination: /learn/sdks/overview/changelog/:slug* + permanent: true + + # SDK Capabilities - remaining general redirects (after specific overrides above) + - source: /learn/sdks/capabilities/idiomatic-method-names + destination: /learn/sdks/capabilities/method-names + permanent: true + - source: /learn/sdks/capabilities/o-auth-token-refresh + destination: /learn/sdks/capabilities/oauth + permanent: true + - source: /learn/sdks/capabilities/retries-with-backoff + destination: /learn/sdks/capabilities/retries + permanent: true + - source: /learn/sdks/capabilities/web-sockets + destination: /learn/sdks/capabilities/websockets + permanent: true + - source: /learn/sdks/capabilities/augment-with-custom-code + destination: /learn/sdks/capabilities/custom-code + permanent: true + - source: /learn/sdks/capabilities/merging-multiple-apis + destination: /learn/sdks/capabilities/merging-apis + permanent: true + # General SDK capabilities pattern (will catch any not specifically overridden above) + - source: /learn/sdks/capabilities/:slug* + destination: /learn/sdks/overview/capabilities/:slug* + permanent: true + + # SDK Reference redirects + - source: /learn/sdks/reference/:slug* + destination: /learn/sdks/overview/reference/:slug* + permanent: true + + # SDK Guides - specific cases first, then general pattern + - source: /learn/sdks/guides/generate-your-first-sdk + destination: /learn/sdks/introduction/overview + permanent: true + - source: /learn/sdks/guides/publish-a-public-facing-sdk + destination: /learn/sdks/guides/publish-your-sdk + permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/:slug* + destination: /learn/sdks/generators/:slug* + permanent: true + # General SDK guides pattern + - source: /learn/sdks/getting-started/:slug* + destination: /learn/sdks/guides/:slug* + permanent: true + - source: /learn/sdks/guides/:slug* + destination: /learn/sdks/getting-started/:slug* + permanent: true - # # SDK Guides - specific cases first, then general pattern - # - source: /learn/sdks/guides/generate-your-first-sdk - # destination: /learn/sdks/introduction/overview - # permanent: true - # - source: /learn/sdks/guides/publish-a-public-facing-sdk - # destination: /learn/sdks/guides/publish-your-sdk - # permanent: true - # - source: /learn/sdks/guides/publish-to-package-managers/:slug* - # destination: /learn/sdks/generators/:slug* - # permanent: true - # # General SDK guides pattern - # - source: /learn/sdks/getting-started/:slug* - # destination: /learn/sdks/guides/:slug* - # permanent: true - # - source: /learn/sdks/guides/:slug* - # destination: /learn/sdks/getting-started/:slug* - # permanent: true - - # # ============================================================================ - # # DOCS REDIRECTS - # # ============================================================================ + # ============================================================================ + # DOCS REDIRECTS + # ============================================================================ - # # Building Your Docs redirects (older naming) - # - source: /learn/docs/building-your-docs/:slug* - # destination: /learn/docs/building-and-customizing-your-docs/:slug* - # permanent: true - - # # Getting Started page redirects - specific cases first - # - source: /learn/docs/getting-started/customer-showcase - # destination: https://buildwithfern.com/customers - # permanent: true - # - source: /learn/docs/getting-started/global-configuration - # destination: /learn/docs/guides/configuration/what-is-docs-yml - # permanent: true - # - source: /learn/docs/getting-started/project-structure - # destination: /learn/docs/guides/configuration/project-structure - # permanent: true - # - source: /learn/docs/getting-started/development - # destination: /learn/docs/preview-publish/previewing-changes-locally - # permanent: true - # - source: /learn/docs/getting-started/publish-your-docs - # destination: /learn/docs/preview-publish/publishing-your-docs - # permanent: true - # # General getting started pattern - # # - source: /learn/docs/getting-started/:slug* - # # destination: /learn/docs/guides/getting-started/:slug* - # # permanent: true - - # # Building and Customizing Your Docs redirects - specific cases first - # - source: /learn/docs/building-and-customizing-your-docs/navigation - # destination: /learn/docs/navigation/overview - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/versioning - # destination: /learn/docs/navigation/versions - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/announcements - # destination: /learn/docs/navigation/announcement-banner - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/links-and-redirects - # destination: /learn/docs/seo/redirects - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/customizing-slugs - # destination: /learn/docs/seo/configuring-slugs - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/hiding-content - # destination: /learn/docs/navigation/hiding-content - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/pull-request-preview - # destination: /learn/docs/preview-publish/previewing-changes-in-a-pr - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/product-switching - # destination: /learn/docs/navigation/products - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/custom-css-global-js - # destination: /learn/docs/component-library/custom-components/custom-css-js - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/custom-domain - # destination: /learn/docs/getting-started/setting-up-your-domain - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/rbac - # destination: /learn/docs/authentication/rbac - # permanent: true - # - source: /learn/docs/building-and-customizing-your-docs/search - # destination: /learn/docs/configuration/search - # permanent: true - - # # Content Section redirects - specific cases first - # - source: /learn/docs/content/write-markdown - # destination: /learn/docs/component-library/writing-content/markdown - # permanent: true - # - source: /learn/docs/content/components/button - # destination: /learn/docs/component-library/default-components/callouts - # permanent: true - # - source: /learn/docs/content/components/request-snippet - # destination: /learn/docs/component-library/default-components/endpoint-request-snippet - # permanent: true - # - source: /learn/docs/content/components/response-snippet - # destination: /learn/docs/component-library/default-components/endpoint-response-snippet - # permanent: true - # - source: /learn/docs/content/components/schema-snippet - # destination: /learn/docs/component-library/default-components/endpoint-schema-snippet - # permanent: true - # - source: /learn/docs/content/components/paramfield - # destination: /learn/docs/component-library/default-components/parameter-fields - # permanent: true - # - source: /learn/docs/content/custom-react-components - # destination: /learn/docs/component-library/custom-components/custom-react-components - # permanent: true - # - source: /learn/docs/content/frontmatter - # destination: /learn/docs/configuration/frontmatter - # permanent: true - # - source: /learn/docs/content/reusable-snippets - # destination: /learn/docs/component-library/custom-components/reusable-snippets - # permanent: true - # - source: /learn/docs/content/changelog - # destination: /learn/docs/navigation/changelogs - # permanent: true - # - source: /learn/docs/content/visual-editor - # destination: /learn/docs/component-library/writing-content/visual-editor - # permanent: true - # # General content components pattern - # - source: /learn/docs/content/components/:slug* - # destination: /learn/docs/component-library/default-components/:slug* - # permanent: true - - # # Components redirects - # - source: /learn/docs/components/:slug* - # destination: /learn/docs/component-library/default-components/:slug* - # permanent: true - - # # API References specific page redirects - specific cases first - # - source: /learn/docs/api-references/api-explorer/auto-populate-api-keys - # destination: /learn/docs/api-references/autopopulate-api-key - # permanent: true - # - source: /learn/docs/api-references/customize-api-reference-layout - # destination: /learn/docs/api-references/customize-api-ref - # permanent: true - # - source: /learn/docs/api-references/write-markdown-in-api-reference - # destination: /learn/docs/api-references/api-ref-content - # permanent: true - # - source: /learn/docs/api-references/generate-webhook-reference - # destination: /learn/docs/api-references/generate-webhook-ref - # permanent: true - # # General API references pattern - # - source: /learn/docs/api-references/:slug* - # destination: /learn/docs/guides/reference/:slug* - # permanent: true - - # # Docs Integrations redirects - specific case first - # - source: /learn/docs/integrations/feature-flags - # destination: /learn/docs/integrations/launchdarkly - # permanent: true - # # General integrations pattern - # - source: /learn/docs/integrations/:slug* - # destination: /learn/docs/guides/integrations/:slug* - # permanent: true - - # # Developer tools redirects - # - source: /learn/docs/developer-tools/:slug* - # destination: /learn/docs/guides/developer-tools/:slug* - # permanent: true + # Building Your Docs redirects (older naming) + - source: /learn/docs/building-your-docs/:slug* + destination: /learn/docs/building-and-customizing-your-docs/:slug* + permanent: true + + # Getting Started page redirects - specific cases first + - source: /learn/docs/getting-started/customer-showcase + destination: https://buildwithfern.com/customers + permanent: true + - source: /learn/docs/getting-started/global-configuration + destination: /learn/docs/guides/configuration/what-is-docs-yml + permanent: true + - source: /learn/docs/getting-started/project-structure + destination: /learn/docs/guides/configuration/project-structure + permanent: true + - source: /learn/docs/getting-started/development + destination: /learn/docs/preview-publish/previewing-changes-locally + permanent: true + - source: /learn/docs/getting-started/publish-your-docs + destination: /learn/docs/preview-publish/publishing-your-docs + permanent: true + # General getting started pattern + # - source: /learn/docs/getting-started/:slug* + # destination: /learn/docs/guides/getting-started/:slug* + # permanent: true + + # Building and Customizing Your Docs redirects - specific cases first + - source: /learn/docs/building-and-customizing-your-docs/navigation + destination: /learn/docs/navigation/overview + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/versioning + destination: /learn/docs/navigation/versions + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/announcements + destination: /learn/docs/navigation/announcement-banner + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/links-and-redirects + destination: /learn/docs/seo/redirects + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/customizing-slugs + destination: /learn/docs/seo/configuring-slugs + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/hiding-content + destination: /learn/docs/navigation/hiding-content + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/pull-request-preview + destination: /learn/docs/preview-publish/previewing-changes-in-a-pr + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/product-switching + destination: /learn/docs/navigation/products + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/custom-css-global-js + destination: /learn/docs/component-library/custom-components/custom-css-js + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/custom-domain + destination: /learn/docs/getting-started/setting-up-your-domain + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/rbac + destination: /learn/docs/authentication/rbac + permanent: true + - source: /learn/docs/building-and-customizing-your-docs/search + destination: /learn/docs/configuration/search + permanent: true + + # Content Section redirects - specific cases first + - source: /learn/docs/content/write-markdown + destination: /learn/docs/component-library/writing-content/markdown + permanent: true + - source: /learn/docs/content/components/button + destination: /learn/docs/component-library/default-components/callouts + permanent: true + - source: /learn/docs/content/components/request-snippet + destination: /learn/docs/component-library/default-components/endpoint-request-snippet + permanent: true + - source: /learn/docs/content/components/response-snippet + destination: /learn/docs/component-library/default-components/endpoint-response-snippet + permanent: true + - source: /learn/docs/content/components/schema-snippet + destination: /learn/docs/component-library/default-components/endpoint-schema-snippet + permanent: true + - source: /learn/docs/content/components/paramfield + destination: /learn/docs/component-library/default-components/parameter-fields + permanent: true + - source: /learn/docs/content/custom-react-components + destination: /learn/docs/component-library/custom-components/custom-react-components + permanent: true + - source: /learn/docs/content/frontmatter + destination: /learn/docs/configuration/frontmatter + permanent: true + - source: /learn/docs/content/reusable-snippets + destination: /learn/docs/component-library/custom-components/reusable-snippets + permanent: true + - source: /learn/docs/content/changelog + destination: /learn/docs/navigation/changelogs + permanent: true + - source: /learn/docs/content/visual-editor + destination: /learn/docs/component-library/writing-content/visual-editor + permanent: true + # General content components pattern + - source: /learn/docs/content/components/:slug* + destination: /learn/docs/component-library/default-components/:slug* + permanent: true + + # Components redirects + - source: /learn/docs/components/:slug* + destination: /learn/docs/component-library/default-components/:slug* + permanent: true + + # API References specific page redirects - specific cases first + - source: /learn/docs/api-references/api-explorer/auto-populate-api-keys + destination: /learn/docs/api-references/autopopulate-api-key + permanent: true + - source: /learn/docs/api-references/customize-api-reference-layout + destination: /learn/docs/api-references/customize-api-ref + permanent: true + - source: /learn/docs/api-references/write-markdown-in-api-reference + destination: /learn/docs/api-references/api-ref-content + permanent: true + - source: /learn/docs/api-references/generate-webhook-reference + destination: /learn/docs/api-references/generate-webhook-ref + permanent: true + # General API references pattern + - source: /learn/docs/api-references/:slug* + destination: /learn/docs/guides/reference/:slug* + permanent: true + + # Docs Integrations redirects - specific case first + - source: /learn/docs/integrations/feature-flags + destination: /learn/docs/integrations/launchdarkly + permanent: true + # General integrations pattern + - source: /learn/docs/integrations/:slug* + destination: /learn/docs/guides/integrations/:slug* + permanent: true + + # Developer tools redirects + - source: /learn/docs/developer-tools/:slug* + destination: /learn/docs/guides/developer-tools/:slug* + permanent: true + + # Writing content redirects + - source: /learn/docs/writing-content/visual-editor-beta + destination: /learn/docs/writing-content/visual-editor + permanent: true + + # Specific changelog redirect + - source: /learn/docs/getting-started/changelog/2025/5/23 + destination: /learn/docs/getting-started/changelog/2025/6/5 + permanent: true - # # Writing content redirects - # - source: /learn/docs/writing-content/visual-editor-beta - # destination: /learn/docs/writing-content/visual-editor - # permanent: true - - # # Specific changelog redirect - # - source: /learn/docs/getting-started/changelog/2025/5/23 - # destination: /learn/docs/getting-started/changelog/2025/6/5 - # permanent: true - - # # ============================================================================ - # # CLI & API REFERENCE REDIRECTS - # # ============================================================================ + # ============================================================================ + # CLI & API REFERENCE REDIRECTS + # ============================================================================ - # # CLI & API Reference specific redirects first - # - source: /learn/cli-api/cli-reference/get-started-with-fern-cli - # destination: /learn/cli-reference/overview - # permanent: true - # - source: /learn/cli-api/cli-reference/cli-overview - # destination: /learn/cli-reference/overview - # permanent: true - # - source: /learn/cli-reference/cli-overview - # destination: /learn/cli-reference/overview - # permanent: true - # - source: /learn/cli-api/cli-reference/global-options - # destination: /learn/cli-reference/options - # permanent: true - # - source: /learn/cli-reference/get-started - # destination: /learn/cli-reference/overview - # permanent: true - # # CLI patterns - # - source: /learn/cli-api/cli-reference/:slug* - # destination: /learn/cli-reference/:slug* - # permanent: true - # - source: /learn/cli-api/cli/:slug* - # destination: /learn/cli-reference/:slug* - # permanent: true - # - source: /learn/cli-api/:slug* - # destination: /learn/cli-reference/:slug* - # permanent: true + # CLI & API Reference specific redirects first + - source: /learn/cli-api/cli-reference/get-started-with-fern-cli + destination: /learn/cli-reference/overview + permanent: true + - source: /learn/cli-api/cli-reference/cli-overview + destination: /learn/cli-reference/overview + permanent: true + - source: /learn/cli-reference/cli-overview + destination: /learn/cli-reference/overview + permanent: true + - source: /learn/cli-api/cli-reference/global-options + destination: /learn/cli-reference/options + permanent: true + - source: /learn/cli-reference/get-started + destination: /learn/cli-reference/overview + permanent: true + # CLI patterns + - source: /learn/cli-api/cli-reference/:slug* + destination: /learn/cli-reference/:slug* + permanent: true + - source: /learn/cli-api/cli/:slug* + destination: /learn/cli-reference/:slug* + permanent: true + - source: /learn/cli-api/:slug* + destination: /learn/cli-reference/:slug* + permanent: true - # # ============================================================================ - # # API DEFINITION REDIRECTS - # # ============================================================================ + # ============================================================================ + # API DEFINITION REDIRECTS + # ============================================================================ - # # API Definition Fern specific redirects first - # - source: /learn/api-definition/fern/web-sockets - # destination: /learn/fern-definition/websockets - # permanent: true - # - source: /learn/api-definition/fern/websockets - # destination: /learn/fern-definition/websockets - # permanent: true - # - source: /learn/api-definition/fern/overview - # destination: /learn/fern-definition/overview - # permanent: true - # - source: /learn/api-definition/fern/authentication - # destination: /learn/fern-definition/auth - # permanent: true - # - source: /learn/api-definition/fern/depending-on-other-ap-is - # destination: /learn/fern-definition/depending-on-other-apis - # permanent: true - # - source: /learn/api-definition/fern/endpoints/:slug* - # destination: /learn/fern-definition/endpoints/:slug* - # permanent: true - # - source: /learn/api-definition/fern/api-yml/:slug* - # destination: /learn/fern-definition/api-yml/:slug* - # permanent: true - # # General Fern pattern - # - source: /learn/api-definition/fern/:slug* - # destination: /learn/fern-definition/:slug* - # permanent: true - - # # API Definition Introduction redirects - # - source: /learn/api-definition/introduction/what-is-an-api-definition - # destination: /learn/api-definition/what-is-an-api-definition - # permanent: true - # - source: /learn/api-definition/introduction/what-is-the-fern-folder - # destination: /learn/api-definition/what-is-the-fern-folder - # permanent: true - # - source: /learn/api-definition/introduction/:slug* - # destination: /learn/api-definition/:slug* - # permanent: true - - # # API Definition OpenAPI specific redirects first - # - source: /learn/api-definition/openapi/overview - # destination: /learn/openapi-definition/overview - # permanent: true - # - source: /learn/api-definition/openapi/authentication - # destination: /learn/openapi-definition/auth - # permanent: true - # - source: /learn/api-definition/openapi/servers - # destination: /learn/openapi-definition/servers - # permanent: true - # - source: /learn/api-definition/openapi/webhooks - # destination: /learn/openapi-definition/webhooks - # permanent: true - # - source: /learn/api-definition/openapi/audiences - # destination: /learn/openapi-definition/audiences - # permanent: true - # - source: /learn/api-definition/openapi/overlay-customizations - # destination: /learn/openapi-definition/overlay-customizations - # permanent: true - # - source: /learn/api-definition/openapi/automatic-updates - # destination: /learn/openapi-definition/automation - # permanent: true - # - source: /learn/api-definition/openapi/endpoints/:slug* - # destination: /learn/openapi-definition/endpoints/:slug* - # permanent: true - # - source: /learn/api-definition/openapi/extensions/:slug* - # destination: /learn/openapi-definition/extensions/:slug* - # permanent: true - # - source: /learn/api-definition/openapi/frameworks/:slug* - # destination: /learn/openapi-definition/server-frameworks/:slug* - # permanent: true - # # General OpenAPI pattern - # - source: /learn/api-definition/openapi/:slug* - # destination: /learn/openapi-definition/:slug* - # permanent: true + # API Definition Fern specific redirects first + - source: /learn/api-definition/fern/web-sockets + destination: /learn/fern-definition/websockets + permanent: true + - source: /learn/api-definition/fern/websockets + destination: /learn/fern-definition/websockets + permanent: true + - source: /learn/api-definition/fern/overview + destination: /learn/fern-definition/overview + permanent: true + - source: /learn/api-definition/fern/authentication + destination: /learn/fern-definition/auth + permanent: true + - source: /learn/api-definition/fern/depending-on-other-ap-is + destination: /learn/fern-definition/depending-on-other-apis + permanent: true + - source: /learn/api-definition/fern/endpoints/:slug* + destination: /learn/fern-definition/endpoints/:slug* + permanent: true + - source: /learn/api-definition/fern/api-yml/:slug* + destination: /learn/fern-definition/api-yml/:slug* + permanent: true + # General Fern pattern + - source: /learn/api-definition/fern/:slug* + destination: /learn/fern-definition/:slug* + permanent: true + + # API Definition Introduction redirects + - source: /learn/api-definition/introduction/what-is-an-api-definition + destination: /learn/api-definition/what-is-an-api-definition + permanent: true + - source: /learn/api-definition/introduction/what-is-the-fern-folder + destination: /learn/api-definition/what-is-the-fern-folder + permanent: true + - source: /learn/api-definition/introduction/:slug* + destination: /learn/api-definition/:slug* + permanent: true + + # API Definition OpenAPI specific redirects first + - source: /learn/api-definition/openapi/overview + destination: /learn/openapi-definition/overview + permanent: true + - source: /learn/api-definition/openapi/authentication + destination: /learn/openapi-definition/auth + permanent: true + - source: /learn/api-definition/openapi/servers + destination: /learn/openapi-definition/servers + permanent: true + - source: /learn/api-definition/openapi/webhooks + destination: /learn/openapi-definition/webhooks + permanent: true + - source: /learn/api-definition/openapi/audiences + destination: /learn/openapi-definition/audiences + permanent: true + - source: /learn/api-definition/openapi/overlay-customizations + destination: /learn/openapi-definition/overlay-customizations + permanent: true + - source: /learn/api-definition/openapi/automatic-updates + destination: /learn/openapi-definition/automation + permanent: true + - source: /learn/api-definition/openapi/endpoints/:slug* + destination: /learn/openapi-definition/endpoints/:slug* + permanent: true + - source: /learn/api-definition/openapi/extensions/:slug* + destination: /learn/openapi-definition/extensions/:slug* + permanent: true + - source: /learn/api-definition/openapi/frameworks/:slug* + destination: /learn/openapi-definition/server-frameworks/:slug* + permanent: true + # General OpenAPI pattern + - source: /learn/api-definition/openapi/:slug* + destination: /learn/openapi-definition/:slug* + permanent: true - # # ============================================================================ - # # ASK FERN (AI SEARCH) REDIRECTS - # # ============================================================================ + # ============================================================================ + # ASK FERN (AI SEARCH) REDIRECTS + # ============================================================================ - # # Ask Fern specific redirects first - # - source: /learn/ai-search/customer-showcase - # destination: /learn/ask-fern/customer-showcase - # permanent: true - # - source: /learn/ai-search/overview - # destination: /learn/ask-fern/overview - # permanent: true - # - source: /learn/ai-search/custom-prompting - # destination: /learn/ask-fern/custom-prompting - # permanent: true - # - source: /learn/ai-search/citations - # destination: /learn/ask-fern/citations - # permanent: true - # # General Ask Fern patterns - # - source: /learn/ai-search/getting-started/:slug* - # destination: /learn/ask-fern/:slug* - # permanent: true - # - source: /learn/ai-search/features/:slug* - # destination: /learn/ask-fern/:slug* - # permanent: true - # - source: /learn/ai-search/:slug* - # destination: /learn/ask-fern/:slug* - # permanent: true + # Ask Fern specific redirects first + - source: /learn/ai-search/customer-showcase + destination: /learn/ask-fern/customer-showcase + permanent: true + - source: /learn/ai-search/overview + destination: /learn/ask-fern/overview + permanent: true + - source: /learn/ai-search/custom-prompting + destination: /learn/ask-fern/custom-prompting + permanent: true + - source: /learn/ai-search/citations + destination: /learn/ask-fern/citations + permanent: true + # General Ask Fern patterns + - source: /learn/ai-search/getting-started/:slug* + destination: /learn/ask-fern/:slug* + permanent: true + - source: /learn/ai-search/features/:slug* + destination: /learn/ask-fern/:slug* + permanent: true + - source: /learn/ai-search/:slug* + destination: /learn/ask-fern/:slug* + permanent: true - # # ============================================================================ - # # API REFERENCE REDIRECTS (Fern Public API) - # # ============================================================================ + # ============================================================================ + # API REFERENCE REDIRECTS (Fern Public API) + # ============================================================================ - # # Fern Public API Reference redirects - # - source: /learn/api-reference/overview - # destination: /learn/public-api/overview - # permanent: true - # - source: /learn/api-reference/snippets/:slug* - # destination: /learn/public-api/snippets/:slug* - # permanent: true - # - source: /learn/api-reference/tokens/:slug* - # destination: /learn/public-api/tokens/:slug* - # permanent: true - # - source: /learn/api-reference/:slug* - # destination: /learn/public-api/:slug* - # permanent: true \ No newline at end of file + # Fern Public API Reference redirects + - source: /learn/api-reference/overview + destination: /learn/public-api/overview + permanent: true + - source: /learn/api-reference/snippets/:slug* + destination: /learn/public-api/snippets/:slug* + permanent: true + - source: /learn/api-reference/tokens/:slug* + destination: /learn/public-api/tokens/:slug* + permanent: true + - source: /learn/api-reference/:slug* + destination: /learn/public-api/:slug* + permanent: true \ No newline at end of file From 48ee8264e2aa70c4b38c95697beacb78e568aed6 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 18:58:01 -0400 Subject: [PATCH 09/34] fix: added components folder back and redirects --- fern/components/FernFooter.tsx | 84 +++++++ fern/components/FernStatus.tsx | 212 ++++++++++++++++++ fern/components/images/BuiltWithFernLogo.tsx | 37 +++ fern/components/images/builtwithfern-dark.tsx | 39 ++++ .../images/builtwithfern-frame-dark.tsx | 105 +++++++++ .../images/builtwithfern-frame-light.tsx | 105 +++++++++ .../components/images/builtwithfern-light.tsx | 37 +++ fern/components/images/soc2.tsx | 130 +++++++++++ 8 files changed, 749 insertions(+) create mode 100644 fern/components/FernFooter.tsx create mode 100644 fern/components/FernStatus.tsx create mode 100644 fern/components/images/BuiltWithFernLogo.tsx create mode 100644 fern/components/images/builtwithfern-dark.tsx create mode 100644 fern/components/images/builtwithfern-frame-dark.tsx create mode 100644 fern/components/images/builtwithfern-frame-light.tsx create mode 100644 fern/components/images/builtwithfern-light.tsx create mode 100644 fern/components/images/soc2.tsx diff --git a/fern/components/FernFooter.tsx b/fern/components/FernFooter.tsx new file mode 100644 index 000000000..1c06e182c --- /dev/null +++ b/fern/components/FernFooter.tsx @@ -0,0 +1,84 @@ +import React from 'react'; +import { FernStatusWidget } from './FernStatus'; + +import { BuiltWithFernLight } from './images/builtwithfern-light'; +import { BuiltWithFernDark } from './images/builtwithfern-dark'; +import { BuiltWithFernFrameLight } from './images/builtwithfern-frame-light'; +import { BuiltWithFernFrameDark } from './images/builtwithfern-frame-dark'; +import { Soc2Logo } from './images/soc2'; + +export const FernFooter = () => { + return ( + + ); +}; \ No newline at end of file diff --git a/fern/components/FernStatus.tsx b/fern/components/FernStatus.tsx new file mode 100644 index 000000000..014964940 --- /dev/null +++ b/fern/components/FernStatus.tsx @@ -0,0 +1,212 @@ +import React, { useState, useEffect } from 'react'; + +interface StatusData { + ongoing_incidents?: Array<{ + current_worst_impact: string; + }>; + in_progress_maintenances?: Array; + scheduled_maintenances?: Array<{ + starts_at: string; + }>; +} + +interface StatusState { + dotClass: string; + statusMessage: string; +} + +export const FernStatusWidget = () => { + const [status, setStatus] = useState({ + dotClass: 'is-loading', + statusMessage: 'Checking status...' + }); + + const apiEndpoint = 'https://status.buildwithfern.com/api/v1/summary'; + const refreshInterval = 5 * 60 * 1000; // 5 minutes + + const updateStatus = (data: StatusData) => { + let dotClass = 'is-green'; + let statusMessage = 'All systems operational'; + + // Check for ongoing incidents + if (data.ongoing_incidents && data.ongoing_incidents.length > 0) { + let worstImpact = 0; + for (const incident of data.ongoing_incidents) { + let impactLevel = 0; + + if (incident.current_worst_impact === 'degraded_performance') { + impactLevel = 1; + } else if (incident.current_worst_impact === 'partial_outage') { + impactLevel = 2; + } else if (incident.current_worst_impact === 'full_outage') { + impactLevel = 3; + } + + if (impactLevel > worstImpact) { + worstImpact = impactLevel; + } + } + + // Set status based on severity + if (worstImpact === 3) { + dotClass = 'is-red'; + statusMessage = 'Service outage'; + } else if (worstImpact === 2) { + dotClass = 'is-orange'; + statusMessage = 'Partial outage'; + } else if (worstImpact === 1) { + dotClass = 'is-yellow'; + statusMessage = 'Degraded performance'; + } + } + + // Check for in-progress maintenance + if (data.in_progress_maintenances && data.in_progress_maintenances.length > 0) { + if (dotClass === 'is-green') { + dotClass = 'is-blue'; + statusMessage = 'Maintenance in progress'; + } + } + + // Check for scheduled maintenance + if (data.scheduled_maintenances && data.scheduled_maintenances.length > 0) { + if (dotClass === 'is-green') { + const now = new Date(); + let soonMaintenance = false; + + for (const maintenance of data.scheduled_maintenances) { + const startsAt = new Date(maintenance.starts_at); + const hoursDiff = (startsAt.getTime() - now.getTime()) / (1000 * 60 * 60); + + if (hoursDiff <= 24) { + soonMaintenance = true; + break; + } + } + + if (soonMaintenance) { + dotClass = 'is-blue'; + statusMessage = 'Scheduled maintenance soon'; + } + } + } + + setStatus({ dotClass, statusMessage }); + }; + + const fetchStatus = async () => { + try { + const response = await fetch(apiEndpoint); + if (response.ok) { + const data: StatusData = await response.json(); + updateStatus(data); + } else { + setStatus({ dotClass: 'is-red', statusMessage: 'Cannot check status' }); + } + } catch (error) { + console.error('Error fetching status:', error); + setStatus({ dotClass: 'is-red', statusMessage: 'Cannot check status' }); + } + }; + + useEffect(() => { + fetchStatus(); + const interval = setInterval(fetchStatus, refreshInterval); + return () => clearInterval(interval); + }, []); + + const getBackgroundColor = () => { + switch (status.dotClass) { + case 'is-green': return '#00c853'; + case 'is-red': return '#f44336'; + case 'is-orange': return '#ff9800'; + case 'is-blue': return '#2196f3'; + case 'is-yellow': return '#ffc107'; + case 'is-loading': return '#cccccc'; + default: return '#cccccc'; + } + }; + + return ( + +
+
+ {status.statusMessage} + + +
+
+ ); +}; diff --git a/fern/components/images/BuiltWithFernLogo.tsx b/fern/components/images/BuiltWithFernLogo.tsx new file mode 100644 index 000000000..976fd4521 --- /dev/null +++ b/fern/components/images/BuiltWithFernLogo.tsx @@ -0,0 +1,37 @@ +interface BuiltWithFernLogoProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernLogo = ({ + width = 145, + height = 16, + className = "" +}: BuiltWithFernLogoProps) => { + return ( + + + + + + ); +}; + +export default BuiltWithFernLogo; \ No newline at end of file diff --git a/fern/components/images/builtwithfern-dark.tsx b/fern/components/images/builtwithfern-dark.tsx new file mode 100644 index 000000000..14986a708 --- /dev/null +++ b/fern/components/images/builtwithfern-dark.tsx @@ -0,0 +1,39 @@ +import React from 'react'; + +interface BuiltWithFernDarkProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernDark = ({ + width = 145, + height = 16, + className = "" +}: BuiltWithFernDarkProps) => { + return ( + + + + + + ); +}; + +export default BuiltWithFernDark; diff --git a/fern/components/images/builtwithfern-frame-dark.tsx b/fern/components/images/builtwithfern-frame-dark.tsx new file mode 100644 index 000000000..c6e067b16 --- /dev/null +++ b/fern/components/images/builtwithfern-frame-dark.tsx @@ -0,0 +1,105 @@ +interface BuiltWithFernFrameDarkProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernFrameDark = ({ + width = 217, + height = 120, + className = "" +}: BuiltWithFernFrameDarkProps) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default BuiltWithFernFrameDark; diff --git a/fern/components/images/builtwithfern-frame-light.tsx b/fern/components/images/builtwithfern-frame-light.tsx new file mode 100644 index 000000000..d84b630a2 --- /dev/null +++ b/fern/components/images/builtwithfern-frame-light.tsx @@ -0,0 +1,105 @@ +interface BuiltWithFernFrameLightProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernFrameLight = ({ + width = 217, + height = 120, + className = "" +}: BuiltWithFernFrameLightProps) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default BuiltWithFernFrameLight; diff --git a/fern/components/images/builtwithfern-light.tsx b/fern/components/images/builtwithfern-light.tsx new file mode 100644 index 000000000..c5fad90f5 --- /dev/null +++ b/fern/components/images/builtwithfern-light.tsx @@ -0,0 +1,37 @@ +interface BuiltWithFernLightProps { + width?: number; + height?: number; + className?: string; +} + +export const BuiltWithFernLight = ({ + width = 145, + height = 16, + className = "" +}: BuiltWithFernLightProps) => { + return ( + + + + + + ); +}; + +export default BuiltWithFernLight; diff --git a/fern/components/images/soc2.tsx b/fern/components/images/soc2.tsx new file mode 100644 index 000000000..9cd0d4c56 --- /dev/null +++ b/fern/components/images/soc2.tsx @@ -0,0 +1,130 @@ +import React from 'react'; + +interface Soc2LogoProps { + width?: number; + height?: number; + className?: string; +} + +export const Soc2Logo = ({ + width = 32, + height = 32, + className = "" +}: Soc2LogoProps) => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +}; + +export default Soc2Logo; \ No newline at end of file From c6ab2513dee237bc45087d1d83e5bfee7ae492f5 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 20:29:45 -0400 Subject: [PATCH 10/34] feat: updated more redirects and cleaned up changelogs --- fern/docs.yml | 68 ++++++++++---- .../cli-api-reference/cli-api-reference.yml | 2 +- .../cli-changelog/2022-12-13.mdx | 24 +++++ .../cli-changelog/2022-12-14.mdx | 9 ++ .../cli-changelog/2022-12-15.mdx | 6 ++ .../cli-changelog/2022-12-16.mdx | 30 +++++++ .../cli-changelog/2022-12-23.mdx | 3 + .../cli-changelog/2022-12-24.mdx | 3 + .../cli-changelog/2022-12-28.mdx | 24 +++++ .../cli-changelog/2023-01-06.mdx | 6 ++ .../cli-changelog/2023-01-08.mdx | 9 ++ .../cli-changelog/2023-01-09.mdx | 3 + .../cli-changelog/2023-01-11.mdx | 12 +++ .../cli-changelog/2023-01-12.mdx | 6 ++ .../cli-changelog/2023-01-13.mdx | 9 ++ .../cli-changelog/2023-01-15.mdx | 12 +++ .../cli-changelog/2023-01-17.mdx | 12 +++ .../cli-changelog/2023-01-18.mdx | 27 ++++++ .../cli-changelog/2023-01-19.mdx | 3 + .../cli-changelog/2023-01-20.mdx | 3 + .../cli-changelog/2023-01-21.mdx | 6 ++ .../cli-changelog/2023-01-22.mdx | 3 + .../cli-changelog/2023-01-23.mdx | 24 +++++ .../cli-changelog/2023-01-24.mdx | 3 + .../cli-changelog/2023-01-27.mdx | 3 + .../cli-changelog/2023-01-28.mdx | 9 ++ .../cli-changelog/2023-01-29.mdx | 12 +++ .../cli-changelog/2023-01-30.mdx | 18 ++++ .../cli-changelog/2023-01-31.mdx | 9 ++ .../cli-changelog/2023-02-01.mdx | 15 ++++ .../cli-changelog/2023-02-02.mdx | 18 ++++ .../cli-changelog/2023-02-04.mdx | 3 + .../cli-changelog/2023-02-05.mdx | 3 + .../cli-changelog/2023-02-06.mdx | 15 ++++ .../cli-changelog/2023-02-07.mdx | 3 + .../cli-changelog/2023-02-09.mdx | 18 ++++ .../cli-changelog/2023-02-12.mdx | 9 ++ .../cli-changelog/2023-02-16.mdx | 6 ++ .../cli-changelog/2023-02-20.mdx | 3 + .../cli-changelog/2023-02-21.mdx | 3 + .../cli-changelog/2023-02-23.mdx | 3 + .../cli-changelog/2023-02-25.mdx | 6 ++ .../cli-changelog/2023-03-01.mdx | 3 + .../cli-changelog/2023-03-02.mdx | 18 ++++ .../cli-changelog/2023-03-03.mdx | 12 +++ .../cli-changelog/2023-03-04.mdx | 15 ++++ .../cli-changelog/2023-03-05.mdx | 3 + .../cli-changelog/2023-03-06.mdx | 15 ++++ .../cli-changelog/2023-03-07.mdx | 6 ++ .../cli-changelog/2023-03-08.mdx | 15 ++++ .../cli-changelog/2023-03-09.mdx | 32 +++++++ .../cli-changelog/2023-03-10.mdx | 3 + .../cli-changelog/2023-03-11.mdx | 6 ++ .../cli-changelog/2023-03-13.mdx | 6 ++ .../cli-changelog/2023-03-19.mdx | 6 ++ .../cli-changelog/2023-03-20.mdx | 6 ++ .../cli-changelog/2023-03-24.mdx | 9 ++ .../cli-changelog/2023-03-26.mdx | 3 + .../cli-changelog/2023-03-28.mdx | 15 ++++ .../cli-changelog/2023-03-29.mdx | 9 ++ .../cli-changelog/2023-03-30.mdx | 15 ++++ .../cli-changelog/2023-03-31.mdx | 9 ++ .../cli-changelog/2023-04-01.mdx | 6 ++ .../cli-changelog/2023-04-02.mdx | 12 +++ .../cli-changelog/2023-04-03.mdx | 9 ++ .../cli-changelog/2023-04-04.mdx | 3 + .../cli-changelog/2023-04-17.mdx | 9 ++ .../cli-changelog/2023-04-19.mdx | 6 ++ .../cli-changelog/2023-04-21.mdx | 9 ++ .../cli-changelog/2023-04-23.mdx | 27 ++++++ .../cli-changelog/2023-04-28.mdx | 3 + .../cli-changelog/2023-04-30.mdx | 18 ++++ .../cli-changelog/2023-05-01.mdx | 30 +++++++ .../cli-changelog/2023-05-02.mdx | 39 ++++++++ .../cli-changelog/2023-05-03.mdx | 24 +++++ .../cli-changelog/2023-05-04.mdx | 9 ++ .../cli-changelog/2023-05-05.mdx | 9 ++ .../cli-changelog/2023-05-06.mdx | 3 + .../cli-changelog/2023-05-07.mdx | 30 +++++++ .../cli-changelog/2023-05-08.mdx | 39 ++++++++ .../cli-changelog/2023-05-10.mdx | 24 +++++ .../cli-changelog/2023-05-11.mdx | 18 ++++ .../cli-changelog/2023-05-12.mdx | 9 ++ .../cli-changelog/2023-05-13.mdx | 9 ++ .../cli-changelog/2023-05-16.mdx | 6 ++ .../cli-changelog/2023-05-17.mdx | 6 ++ .../cli-changelog/2023-05-18.mdx | 6 ++ .../cli-changelog/2023-05-19.mdx | 3 + .../cli-changelog/2023-05-20.mdx | 6 ++ .../cli-changelog/2023-05-21.mdx | 3 + .../cli-changelog/2023-05-23.mdx | 6 ++ .../cli-changelog/2023-05-24.mdx | 15 ++++ .../cli-changelog/2023-05-25.mdx | 12 +++ .../cli-changelog/2023-05-27.mdx | 6 ++ .../cli-changelog/2023-05-28.mdx | 6 ++ .../cli-changelog/2023-05-29.mdx | 9 ++ .../cli-changelog/2023-05-30.mdx | 12 +++ .../cli-changelog/2023-05-31.mdx | 21 +++++ .../cli-changelog/2023-06-02.mdx | 3 + .../cli-changelog/2023-06-05.mdx | 10 +++ .../cli-changelog/2023-06-06.mdx | 15 ++++ .../cli-changelog/2023-06-07.mdx | 9 ++ .../cli-changelog/2023-06-08.mdx | 15 ++++ .../cli-changelog/2023-06-09.mdx | 18 ++++ .../cli-changelog/2023-06-10.mdx | 9 ++ .../cli-changelog/2023-06-11.mdx | 9 ++ .../cli-changelog/2023-06-12.mdx | 18 ++++ .../cli-changelog/2023-06-13.mdx | 9 ++ .../cli-changelog/2023-06-14.mdx | 3 + .../cli-changelog/2023-06-15.mdx | 9 ++ .../cli-changelog/2023-06-20.mdx | 6 ++ .../cli-changelog/2023-06-22.mdx | 6 ++ .../cli-changelog/2023-06-23.mdx | 3 + .../cli-changelog/2023-06-24.mdx | 3 + .../cli-changelog/2023-06-28.mdx | 9 ++ .../cli-changelog/2023-07-05.mdx | 3 + .../cli-changelog/2023-07-06.mdx | 27 ++++++ .../cli-changelog/2023-07-10.mdx | 3 + .../cli-changelog/2023-07-11.mdx | 9 ++ .../cli-changelog/2023-07-13.mdx | 3 + .../cli-changelog/2023-07-14.mdx | 3 + .../cli-changelog/2023-07-18.mdx | 3 + .../cli-changelog/2023-07-20.mdx | 3 + .../cli-changelog/2023-07-21.mdx | 3 + .../cli-changelog/2023-07-22.mdx | 9 ++ .../cli-changelog/2023-07-23.mdx | 18 ++++ .../cli-changelog/2023-07-24.mdx | 3 + .../cli-changelog/2023-07-26.mdx | 5 ++ .../cli-changelog/2023-07-28.mdx | 3 + .../cli-changelog/2023-07-29.mdx | 21 +++++ .../cli-changelog/2023-08-01.mdx | 13 +++ .../cli-changelog/2023-08-02.mdx | 12 +++ .../cli-changelog/2023-08-03.mdx | 3 + .../cli-changelog/2023-08-05.mdx | 6 ++ .../cli-changelog/2023-08-07.mdx | 6 ++ .../cli-changelog/2023-08-08.mdx | 6 ++ .../cli-changelog/2023-08-11.mdx | 3 + .../cli-changelog/2023-08-14.mdx | 6 ++ .../cli-changelog/2023-08-16.mdx | 3 + .../cli-changelog/2023-08-18.mdx | 3 + .../cli-changelog/2023-08-23.mdx | 3 + .../cli-changelog/2023-08-25.mdx | 3 + .../cli-changelog/2023-08-30.mdx | 7 ++ .../cli-changelog/2023-08-31.mdx | 6 ++ .../cli-changelog/2023-09-04.mdx | 9 ++ .../cli-changelog/2023-09-05.mdx | 9 ++ .../cli-changelog/2023-09-06.mdx | 6 ++ .../cli-changelog/2023-09-09.mdx | 3 + .../cli-changelog/2023-09-10.mdx | 3 + .../cli-changelog/2023-09-13.mdx | 8 ++ .../cli-changelog/2023-09-16.mdx | 3 + .../cli-changelog/2023-09-17.mdx | 3 + .../cli-changelog/2023-09-18.mdx | 3 + .../cli-changelog/2023-09-19.mdx | 3 + .../cli-changelog/2023-09-20.mdx | 6 ++ .../cli-changelog/2023-09-25.mdx | 3 + .../cli-changelog/2023-09-26.mdx | 3 + .../cli-changelog/2023-09-29.mdx | 4 + .../cli-changelog/2023-09-30.mdx | 3 + .../cli-changelog/2023-10-01.mdx | 6 ++ .../cli-changelog/2023-10-05.mdx | 3 + .../cli-changelog/2023-10-06.mdx | 6 ++ .../cli-changelog/2023-10-08.mdx | 9 ++ .../cli-changelog/2023-10-10.mdx | 3 + .../cli-changelog/2023-10-11.mdx | 3 + .../cli-changelog/2023-10-13.mdx | 6 ++ .../cli-changelog/2023-10-15.mdx | 3 + .../cli-changelog/2023-10-20.mdx | 12 +++ .../cli-changelog/2023-10-24.mdx | 3 + .../cli-changelog/2023-10-25.mdx | 7 ++ .../cli-changelog/2023-10-26.mdx | 3 + .../cli-changelog/2023-10-27.mdx | 6 ++ .../cli-changelog/2023-10-28.mdx | 3 + .../cli-changelog/2023-10-30.mdx | 12 +++ .../cli-changelog/2023-11-01.mdx | 12 +++ .../cli-changelog/2023-11-02.mdx | 6 ++ .../cli-changelog/2023-11-03.mdx | 9 ++ .../cli-changelog/2023-11-08.mdx | 3 + .../cli-changelog/2023-11-09.mdx | 12 +++ .../cli-changelog/2023-11-14.mdx | 17 ++++ .../cli-changelog/2023-11-15.mdx | 26 ++++++ .../cli-changelog/2023-11-16.mdx | 21 +++++ .../cli-changelog/2023-11-17.mdx | 14 +++ .../cli-changelog/2023-11-20.mdx | 28 ++++++ .../cli-changelog/2023-11-21.mdx | 14 +++ .../cli-changelog/2023-11-27.mdx | 27 ++++++ .../cli-changelog/2023-11-28.mdx | 17 ++++ .../cli-changelog/2023-11-30.mdx | 32 +++++++ .../cli-changelog/2023-12-04.mdx | 12 +++ .../cli-changelog/2023-12-06.mdx | 36 ++++++++ .../cli-changelog/2023-12-07.mdx | 14 +++ .../cli-changelog/2023-12-08.mdx | 19 ++++ .../cli-changelog/2023-12-10.mdx | 11 +++ .../cli-changelog/2023-12-11.mdx | 7 ++ .../cli-changelog/2023-12-13.mdx | 25 ++++++ .../cli-changelog/2023-12-14.mdx | 7 ++ .../cli-changelog/2023-12-17.mdx | 19 ++++ .../cli-changelog/2023-12-18.mdx | 17 ++++ .../cli-changelog/2023-12-20.mdx | 14 +++ .../cli-changelog/2023-12-21.mdx | 8 ++ .../cli-changelog/2023-12-22.mdx | 22 +++++ .../cli-changelog/2023-12-23.mdx | 10 +++ .../cli-changelog/2023-12-29.mdx | 16 ++++ .../cli-changelog/2024-01-01.mdx | 14 +++ .../cli-changelog/2024-01-09.mdx | 9 ++ .../cli-changelog/2024-01-10.mdx | 14 +++ .../cli-changelog/2024-01-11.mdx | 17 ++++ .../cli-changelog/2024-01-12.mdx | 26 ++++++ .../cli-changelog/2024-01-13.mdx | 7 ++ .../cli-changelog/2024-01-15.mdx | 8 ++ .../cli-changelog/2024-01-17.mdx | 18 ++++ .../cli-changelog/2024-01-18.mdx | 7 ++ .../cli-changelog/2024-01-19.mdx | 8 ++ .../cli-changelog/2024-01-25.mdx | 14 +++ .../cli-changelog/2024-01-26.mdx | 15 ++++ .../cli-changelog/2024-01-29.mdx | 25 ++++++ .../cli-changelog/2024-02-01.mdx | 15 ++++ .../cli-changelog/2024-02-04.mdx | 12 +++ .../cli-changelog/2024-02-06.mdx | 20 +++++ .../cli-changelog/2024-02-07.mdx | 21 +++++ .../cli-changelog/2024-02-08.mdx | 7 ++ .../cli-changelog/2024-02-09.mdx | 21 +++++ .../cli-changelog/2024-02-11.mdx | 8 ++ .../cli-changelog/2024-02-13.mdx | 20 +++++ .../cli-changelog/2024-02-14.mdx | 8 ++ .../cli-changelog/2024-02-16.mdx | 15 ++++ .../cli-changelog/2024-02-21.mdx | 46 ++++++++++ .../cli-changelog/2024-02-22.mdx | 11 +++ .../cli-changelog/2024-02-26.mdx | 36 ++++++++ .../cli-changelog/2024-02-27.mdx | 10 +++ .../cli-changelog/2024-03-05.mdx | 42 +++++++++ .../cli-changelog/2024-03-07.mdx | 72 +++++++++++++++ .../cli-changelog/2024-03-08.mdx | 22 +++++ .../cli-changelog/2024-03-09.mdx | 8 ++ .../cli-changelog/2024-03-10.mdx | 15 ++++ .../cli-changelog/2024-03-13.mdx | 39 ++++++++ .../cli-changelog/2024-03-15.mdx | 19 ++++ .../cli-changelog/2024-03-18.mdx | 16 ++++ .../cli-changelog/2024-03-19.mdx | 19 ++++ .../cli-changelog/2024-03-21.mdx | 50 +++++++++++ .../cli-changelog/2024-03-22.mdx | 9 ++ .../cli-changelog/2024-03-23.mdx | 8 ++ .../cli-changelog/2024-03-25.mdx | 8 ++ .../cli-changelog/2024-03-27.mdx | 22 +++++ .../cli-changelog/2024-03-28.mdx | 14 +++ .../cli-changelog/2024-03-29.mdx | 40 +++++++++ .../cli-changelog/2024-04-01.mdx | 14 +++ .../cli-changelog/2024-04-02.mdx | 11 +++ .../cli-changelog/2024-04-03.mdx | 18 ++++ .../cli-changelog/2024-04-05.mdx | 20 +++++ .../cli-changelog/2024-04-10.mdx | 26 ++++++ .../cli-changelog/2024-04-15.mdx | 22 +++++ .../cli-changelog/2024-04-19.mdx | 29 ++++++ .../cli-changelog/2024-04-23.mdx | 70 +++++++++++++++ .../cli-changelog/2024-04-25.mdx | 74 +++++++++++++++ .../cli-changelog/2024-04-26.mdx | 62 +++++++++++++ .../cli-changelog/2024-04-30.mdx | 23 +++++ .../cli-changelog/2024-05-01.mdx | 33 +++++++ .../cli-changelog/2024-05-02.mdx | 21 +++++ .../cli-changelog/2024-05-06.mdx | 11 +++ .../cli-changelog/2024-05-07.mdx | 60 +++++++++++++ .../cli-changelog/2024-05-08.mdx | 40 +++++++++ .../cli-changelog/2024-05-09.mdx | 29 ++++++ .../cli-changelog/2024-05-13.mdx | 39 ++++++++ .../cli-changelog/2024-05-14.mdx | 28 ++++++ .../cli-changelog/2024-05-15.mdx | 31 +++++++ .../cli-changelog/2024-05-17.mdx | 17 ++++ .../cli-changelog/2024-05-19.mdx | 27 ++++++ .../cli-changelog/2024-05-20.mdx | 21 +++++ .../cli-changelog/2024-05-21.mdx | 27 ++++++ .../cli-changelog/2024-05-22.mdx | 11 +++ .../cli-changelog/2024-05-24.mdx | 26 ++++++ .../cli-changelog/2024-05-28.mdx | 23 +++++ .../cli-changelog/2024-05-29.mdx | 20 +++++ .../cli-changelog/2024-05-30.mdx | 7 ++ .../cli-changelog/2024-05-31.mdx | 31 +++++++ .../cli-changelog/2024-06-03.mdx | 39 ++++++++ .../cli-changelog/2024-06-06.mdx | 28 ++++++ .../cli-changelog/2024-06-07.mdx | 35 ++++++++ .../cli-changelog/2024-06-10.mdx | 26 ++++++ .../cli-changelog/2024-06-11.mdx | 8 ++ .../cli-changelog/2024-06-13.mdx | 38 ++++++++ .../cli-changelog/2024-06-14.mdx | 41 +++++++++ .../cli-changelog/2024-06-18.mdx | 45 ++++++++++ .../cli-changelog/2024-06-19.mdx | 19 ++++ .../cli-changelog/2024-06-20.mdx | 16 ++++ .../cli-changelog/2024-06-22.mdx | 29 ++++++ .../cli-changelog/2024-06-24.mdx | 34 +++++++ .../cli-changelog/2024-06-26.mdx | 36 ++++++++ .../cli-changelog/2024-06-27.mdx | 26 ++++++ .../cli-changelog/2024-06-28.mdx | 9 ++ .../cli-changelog/2024-07-01.mdx | 24 +++++ .../cli-changelog/2024-07-03.mdx | 16 ++++ .../cli-changelog/2024-07-04.mdx | 31 +++++++ .../cli-changelog/2024-07-05.mdx | 46 ++++++++++ .../cli-changelog/2024-07-09.mdx | 66 ++++++++++++++ .../cli-changelog/2024-07-10.mdx | 17 ++++ .../cli-changelog/2024-07-11.mdx | 27 ++++++ .../cli-changelog/2024-07-12.mdx | 18 ++++ .../cli-changelog/2024-07-16.mdx | 22 +++++ .../cli-changelog/2024-07-17.mdx | 19 ++++ .../cli-changelog/2024-07-19.mdx | 26 ++++++ .../cli-changelog/2024-07-21.mdx | 8 ++ .../cli-changelog/2024-07-22.mdx | 9 ++ .../cli-changelog/2024-07-23.mdx | 11 +++ .../cli-changelog/2024-07-24.mdx | 38 ++++++++ .../cli-changelog/2024-07-25.mdx | 8 ++ .../cli-changelog/2024-07-26.mdx | 25 ++++++ .../cli-changelog/2024-07-29.mdx | 23 +++++ .../cli-changelog/2024-07-31.mdx | 29 ++++++ .../cli-changelog/2024-08-01.mdx | 37 ++++++++ .../cli-changelog/2024-08-02.mdx | 11 +++ .../cli-changelog/2024-08-06.mdx | 45 ++++++++++ .../cli-changelog/2024-08-07.mdx | 24 +++++ .../cli-changelog/2024-08-08.mdx | 34 +++++++ .../cli-changelog/2024-08-09.mdx | 13 +++ .../cli-changelog/2024-08-12.mdx | 58 ++++++++++++ .../cli-changelog/2024-08-13.mdx | 17 ++++ .../cli-changelog/2024-08-14.mdx | 27 ++++++ .../cli-changelog/2024-08-15.mdx | 20 +++++ .../cli-changelog/2024-08-16.mdx | 11 +++ .../cli-changelog/2024-08-18.mdx | 9 ++ .../cli-changelog/2024-08-19.mdx | 6 ++ .../cli-changelog/2024-08-20.mdx | 27 ++++++ .../cli-changelog/2024-08-21.mdx | 12 +++ .../cli-changelog/2024-08-22.mdx | 3 + .../cli-changelog/2024-08-23.mdx | 31 +++++++ .../cli-changelog/2024-08-25.mdx | 12 +++ .../cli-changelog/2024-08-28.mdx | 9 ++ .../cli-changelog/2024-09-02.mdx | 26 ++++++ .../cli-changelog/2024-09-03.mdx | 5 ++ .../cli-changelog/2024-09-04.mdx | 62 +++++++++++++ .../cli-changelog/2024-09-05.mdx | 21 +++++ .../cli-changelog/2024-09-06.mdx | 33 +++++++ .../cli-changelog/2024-09-07.mdx | 27 ++++++ .../cli-changelog/2024-09-08.mdx | 5 ++ .../cli-changelog/2024-09-09.mdx | 18 ++++ .../cli-changelog/2024-09-10.mdx | 5 ++ .../cli-changelog/2024-09-11.mdx | 19 ++++ .../cli-changelog/2024-09-14.mdx | 60 +++++++++++++ .../cli-changelog/2024-09-15.mdx | 18 ++++ .../cli-changelog/2024-09-16.mdx | 21 +++++ .../cli-changelog/2024-09-17.mdx | 41 +++++++++ .../cli-changelog/2024-09-18.mdx | 85 ++++++++++++++++++ .../cli-changelog/2024-09-19.mdx | 32 +++++++ .../cli-changelog/2024-09-20.mdx | 11 +++ .../cli-changelog/2024-09-21.mdx | 4 + .../cli-changelog/2024-09-23.mdx | 9 ++ .../cli-changelog/2024-09-24.mdx | 4 + .../cli-changelog/2024-09-25.mdx | 4 + .../cli-changelog/2024-09-26.mdx | 29 ++++++ .../cli-changelog/2024-09-27.mdx | 6 ++ .../cli-changelog/2024-09-28.mdx | 6 ++ .../cli-changelog/2024-09-30.mdx | 5 ++ .../cli-changelog/2024-10-02.mdx | 7 ++ .../cli-changelog/2024-10-05.mdx | 16 ++++ .../cli-changelog/2024-10-06.mdx | 35 ++++++++ .../cli-changelog/2024-10-07.mdx | 19 ++++ .../cli-changelog/2024-10-09.mdx | 3 + .../cli-changelog/2024-10-10.mdx | 12 +++ .../cli-changelog/2024-10-11.mdx | 4 + .../cli-changelog/2024-10-16.mdx | 4 + .../cli-changelog/2024-10-19.mdx | 9 ++ .../cli-changelog/2024-10-20.mdx | 12 +++ .../cli-changelog/2024-10-21.mdx | 29 ++++++ .../cli-changelog/2024-10-22.mdx | 4 + .../cli-changelog/2024-10-23.mdx | 32 +++++++ .../cli-changelog/2024-10-24.mdx | 25 ++++++ .../cli-changelog/2024-10-25.mdx | 32 +++++++ .../cli-changelog/2024-10-26.mdx | 4 + .../cli-changelog/2024-10-29.mdx | 12 +++ .../cli-changelog/2024-11-01.mdx | 12 +++ .../cli-changelog/2024-11-05.mdx | 4 + .../cli-changelog/2024-11-06.mdx | 19 ++++ .../cli-changelog/2024-11-07.mdx | 4 + .../cli-changelog/2024-11-08.mdx | 29 ++++++ .../cli-changelog/2024-11-11.mdx | 5 ++ .../cli-changelog/2024-11-12.mdx | 11 +++ .../cli-changelog/2024-11-13.mdx | 4 + .../cli-changelog/2024-11-14.mdx | 5 ++ .../cli-changelog/2024-11-18.mdx | 4 + .../cli-changelog/2024-11-19.mdx | 19 ++++ .../cli-changelog/2024-11-20.mdx | 4 + .../cli-changelog/2024-11-21.mdx | 17 ++++ .../cli-changelog/2024-11-22.mdx | 8 ++ .../cli-changelog/2024-11-23.mdx | 4 + .../cli-changelog/2024-11-27.mdx | 5 ++ .../cli-changelog/2024-11-29.mdx | 4 + .../cli-changelog/2024-12-03.mdx | 4 + .../cli-changelog/2024-12-05.mdx | 4 + .../cli-changelog/2024-12-09.mdx | 4 + .../cli-changelog/2024-12-10.mdx | 4 + .../cli-changelog/2024-12-11.mdx | 19 ++++ .../cli-changelog/2024-12-12.mdx | 8 ++ .../cli-changelog/2024-12-14.mdx | 22 +++++ .../cli-changelog/2024-12-15.mdx | 5 ++ .../cli-changelog/2024-12-16.mdx | 4 + .../cli-changelog/2024-12-17.mdx | 5 ++ .../cli-changelog/2024-12-19.mdx | 9 ++ .../cli-changelog/2024-12-20.mdx | 13 +++ .../cli-changelog/2024-12-23.mdx | 21 +++++ .../cli-changelog/2024-12-26.mdx | 4 + .../cli-changelog/2024-12-27.mdx | 8 ++ .../cli-changelog/2024-12-28.mdx | 6 ++ .../cli-changelog/2024-12-30.mdx | 5 ++ .../cli-changelog/2025-01-03.mdx | 46 ++++++++++ .../cli-changelog/2025-01-05.mdx | 6 ++ .../cli-changelog/2025-01-06.mdx | 8 ++ .../cli-changelog/2025-01-08.mdx | 4 + .../cli-changelog/2025-01-09.mdx | 17 ++++ .../cli-changelog/2025-01-10.mdx | 7 ++ .../cli-changelog/2025-01-12.mdx | 4 + .../cli-changelog/2025-01-13.mdx | 12 +++ .../cli-changelog/2025-01-14.mdx | 30 +++++++ .../cli-changelog/2025-01-15.mdx | 31 +++++++ .../cli-changelog/2025-01-16.mdx | 28 ++++++ .../cli-changelog/2025-01-17.mdx | 4 + .../cli-changelog/2025-01-18.mdx | 10 +++ .../cli-changelog/2025-01-19.mdx | 17 ++++ .../cli-changelog/2025-01-20.mdx | 4 + .../cli-changelog/2025-01-21.mdx | 16 ++++ .../cli-changelog/2025-01-22.mdx | 20 +++++ .../cli-changelog/2025-01-23.mdx | 5 ++ .../cli-changelog/2025-01-24.mdx | 10 +++ .../cli-changelog/2025-01-27.mdx | 14 +++ .../cli-changelog/2025-01-29.mdx | 18 ++++ .../cli-changelog/2025-01-30.mdx | 25 ++++++ .../cli-changelog/2025-01-31.mdx | 12 +++ .../cli-changelog/2025-02-02.mdx | 5 ++ .../cli-changelog/2025-02-03.mdx | 8 ++ .../cli-changelog/2025-02-04.mdx | 25 ++++++ .../cli-changelog/2025-02-05.mdx | 31 +++++++ .../cli-changelog/2025-02-06.mdx | 6 ++ .../cli-changelog/2025-02-07.mdx | 16 ++++ .../cli-changelog/2025-02-08.mdx | 4 + .../cli-changelog/2025-02-10.mdx | 4 + .../cli-changelog/2025-02-14.mdx | 34 +++++++ .../cli-changelog/2025-02-15.mdx | 5 ++ .../cli-changelog/2025-02-16.mdx | 4 + .../cli-changelog/2025-02-17.mdx | 8 ++ .../cli-changelog/2025-02-18.mdx | 16 ++++ .../cli-changelog/2025-02-19.mdx | 17 ++++ .../cli-changelog/2025-02-20.mdx | 46 ++++++++++ .../cli-changelog/2025-02-21.mdx | 12 +++ .../cli-changelog/2025-02-22.mdx | 3 + .../cli-changelog/2025-02-25.mdx | 12 +++ .../cli-changelog/2025-02-26.mdx | 12 +++ .../cli-changelog/2025-02-27.mdx | 26 ++++++ .../cli-changelog/2025-02-28.mdx | 5 ++ .../cli-changelog/2025-03-02.mdx | 7 ++ .../cli-changelog/2025-03-03.mdx | 36 ++++++++ .../cli-changelog/2025-03-04.mdx | 14 +++ .../cli-changelog/2025-03-05.mdx | 8 ++ .../cli-changelog/2025-03-06.mdx | 19 ++++ .../cli-changelog/2025-03-10.mdx | 8 ++ .../cli-changelog/2025-03-11.mdx | 4 + .../cli-changelog/2025-03-13.mdx | 16 ++++ .../cli-changelog/2025-03-14.mdx | 4 + .../cli-changelog/2025-03-17.mdx | 14 +++ .../cli-changelog/2025-03-18.mdx | 4 + .../cli-changelog/2025-03-19.mdx | 4 + .../cli-changelog/2025-03-20.mdx | 8 ++ .../cli-changelog/2025-03-22.mdx | 4 + .../cli-changelog/2025-03-23.mdx | 5 ++ .../cli-changelog/2025-03-24.mdx | 16 ++++ .../cli-changelog/2025-03-25.mdx | 4 + .../cli-changelog/2025-03-26.mdx | 15 ++++ .../cli-changelog/2025-03-27.mdx | 29 ++++++ .../cli-changelog/2025-03-28.mdx | 16 ++++ .../cli-changelog/2025-03-31.mdx | 8 ++ .../cli-changelog/2025-04-01.mdx | 9 ++ .../cli-changelog/2025-04-02.mdx | 4 + .../cli-changelog/2025-04-03.mdx | 8 ++ .../cli-changelog/2025-04-07.mdx | 4 + .../cli-changelog/2025-04-09.mdx | 14 +++ .../cli-changelog/2025-04-10.mdx | 4 + .../cli-changelog/2025-04-11.mdx | 8 ++ .../cli-changelog/2025-04-12.mdx | 5 ++ .../cli-changelog/2025-04-14.mdx | 4 + .../cli-changelog/2025-04-17.mdx | 4 + .../cli-changelog/2025-04-18.mdx | 12 +++ .../cli-changelog/2025-04-20.mdx | 8 ++ .../cli-changelog/2025-04-21.mdx | 18 ++++ .../cli-changelog/2025-04-22.mdx | 7 ++ .../cli-changelog/2025-04-23.mdx | 8 ++ .../cli-changelog/2025-04-24.mdx | 15 ++++ .../cli-changelog/2025-04-25.mdx | 4 + .../cli-changelog/2025-04-26.mdx | 7 ++ .../cli-changelog/2025-04-27.mdx | 12 +++ .../cli-changelog/2025-04-28.mdx | 8 ++ .../cli-changelog/2025-04-29.mdx | 20 +++++ .../cli-changelog/2025-04-30.mdx | 12 +++ .../cli-changelog/2025-05-01.mdx | 24 +++++ .../cli-changelog/2025-05-02.mdx | 21 +++++ .../cli-changelog/2025-05-03.mdx | 8 ++ .../cli-changelog/2025-05-05.mdx | 24 +++++ .../cli-changelog/2025-05-06.mdx | 28 ++++++ .../cli-changelog/2025-05-07.mdx | 8 ++ .../cli-changelog/2025-05-08.mdx | 20 +++++ .../cli-changelog/2025-05-09.mdx | 14 +++ .../cli-changelog/2025-05-13.mdx | 25 ++++++ .../cli-changelog/2025-05-14.mdx | 31 +++++++ .../cli-changelog/2025-05-15.mdx | 27 ++++++ .../cli-changelog/2025-05-16.mdx | 17 ++++ .../cli-changelog/2025-05-17.mdx | 6 ++ .../cli-changelog/2025-05-19.mdx | 8 ++ .../cli-changelog/2025-05-20.mdx | 35 ++++++++ .../cli-changelog/2025-05-21.mdx | 42 +++++++++ .../cli-changelog/2025-05-22.mdx | 25 ++++++ .../cli-changelog/2025-05-23.mdx | 4 + .../cli-changelog/2025-05-27.mdx | 26 ++++++ .../cli-changelog/2025-05-28.mdx | 44 +++++++++ .../cli-changelog/2025-05-29.mdx | 19 ++++ .../cli-changelog/2025-05-30.mdx | 17 ++++ .../cli-changelog/2025-06-02.mdx | 6 ++ .../cli-changelog/2025-06-03.mdx | 15 ++++ .../cli-changelog/2025-06-04.mdx | 4 + .../cli-changelog/2025-06-05.mdx | 25 ++++++ .../cli-changelog/2025-06-06.mdx | 9 ++ .../cli-changelog/2025-06-09.mdx | 13 +++ .../cli-changelog/2025-06-10.mdx | 4 + .../cli-changelog/2025-06-11.mdx | 24 +++++ .../cli-changelog/2025-06-12.mdx | 14 +++ .../cli-changelog/2025-06-14.mdx | 4 + .../cli-changelog/2025-06-16.mdx | 8 ++ .../cli-changelog/2025-06-17.mdx | 4 + .../cli-changelog/2025-06-18.mdx | 4 + .../cli-changelog/2025-06-19.mdx | 9 ++ .../cli-changelog/2025-06-21.mdx | 4 + .../cli-changelog/2025-06-23.mdx | 7 ++ .../cli-changelog/2025-06-24.mdx | 25 ++++++ .../cli-changelog/2025-06-25.mdx | 10 +++ .../cli-changelog/2025-06-26.mdx | 4 + fern/products/docs/docs.yml | 12 +-- .../edit-this-page.png | Bin .../frontmatter.mdx | 0 .../global-configuration.mdx | 0 .../max-toc.png | Bin .../nav-link.png | Bin .../on-page-feedback.png | Bin .../project-structure.mdx | 0 .../search.mdx | 0 .../table-of-contents.png | Bin .../pages/customization/user-feedback.mdx | 32 +++++++ .../what-is-docs-yml.mdx | 0 .../assets/dotnet-package.png | Bin .../{dotnet => csharp}/assets/new-api-key.png | Bin .../changelog/2024-05-10.mdx | 0 .../changelog/2024-05-15.mdx | 0 .../changelog/2024-05-20.mdx | 0 .../changelog/2024-05-22.mdx | 0 .../changelog/2024-05-23.mdx | 0 .../changelog/2024-05-28.mdx | 0 .../changelog/2024-05-29.mdx | 0 .../changelog/2024-05-31.mdx | 0 .../changelog/2024-06-07.mdx | 0 .../changelog/2024-06-19.mdx | 0 .../changelog/2024-06-20.mdx | 0 .../changelog/2024-06-21.mdx | 0 .../changelog/2024-07-02.mdx | 0 .../changelog/2024-07-09.mdx | 0 .../changelog/2024-07-10.mdx | 0 .../changelog/2024-07-17.mdx | 0 .../changelog/2024-07-22.mdx | 0 .../changelog/2024-07-23.mdx | 0 .../changelog/2024-07-25.mdx | 0 .../changelog/2024-07-29.mdx | 0 .../changelog/2024-07-30.mdx | 0 .../changelog/2024-07-31.mdx | 0 .../changelog/2024-08-01.mdx | 0 .../changelog/2024-08-07.mdx | 0 .../changelog/2024-08-09.mdx | 0 .../changelog/2024-08-10.mdx | 0 .../changelog/2024-08-11.mdx | 0 .../changelog/2024-08-12.mdx | 0 .../changelog/2024-08-22.mdx | 0 .../changelog/2024-08-26.mdx | 0 .../changelog/2024-08-28.mdx | 0 .../changelog/2024-08-29.mdx | 0 .../changelog/2024-10-08.mdx | 0 .../changelog/2024-10-28.mdx | 0 .../changelog/2024-10-30.mdx | 0 .../changelog/2024-11-05.mdx | 0 .../changelog/2024-11-06.mdx | 0 .../changelog/2024-11-07.mdx | 0 .../changelog/2024-11-08.mdx | 0 .../changelog/2024-11-09.mdx | 0 .../changelog/2024-11-12.mdx | 0 .../changelog/2024-11-14.mdx | 0 .../changelog/2024-11-19.mdx | 0 .../changelog/2024-11-20.mdx | 0 .../changelog/2024-11-25.mdx | 0 .../changelog/2025-01-22.mdx | 0 .../changelog/2025-02-02.mdx | 0 .../changelog/2025-02-03.mdx | 0 .../changelog/2025-02-06.mdx | 0 .../changelog/2025-02-14.mdx | 0 .../changelog/2025-02-15.mdx | 0 .../changelog/2025-02-24.mdx | 0 .../changelog/2025-02-26.mdx | 0 .../changelog/2025-02-27.mdx | 0 .../changelog/2025-02-28.mdx | 0 .../changelog/2025-03-02.mdx | 0 .../changelog/2025-03-03.mdx | 0 .../changelog/2025-03-04.mdx | 0 .../changelog/2025-03-05.mdx | 0 .../changelog/2025-03-07.mdx | 0 .../changelog/2025-03-09.mdx | 0 .../changelog/2025-03-10.mdx | 0 .../changelog/2025-03-13.mdx | 0 .../changelog/2025-03-14.mdx | 0 .../changelog/2025-03-17.mdx | 0 .../changelog/2025-03-18.mdx | 0 .../changelog/2025-03-19.mdx | 0 .../changelog/2025-03-21.mdx | 0 .../changelog/2025-03-22.mdx | 0 .../changelog/2025-03-25.mdx | 0 .../changelog/2025-03-31.mdx | 0 .../changelog/2025-04-01.mdx | 0 .../changelog/2025-04-07.mdx | 0 .../changelog/2025-04-10.mdx | 0 .../changelog/2025-04-11.mdx | 0 .../changelog/2025-04-22.mdx | 0 .../changelog/2025-04-23.mdx | 0 .../changelog/2025-05-01.mdx | 0 .../changelog/2025-05-04.mdx | 0 .../changelog/2025-05-13.mdx | 0 .../changelog/2025-05-16.mdx | 0 .../changelog/2025-06-03.mdx | 0 .../changelog/2025-06-05.mdx | 0 .../changelog/2025-06-17.mdx | 0 .../changelog/2025-06-23.mdx | 0 .../changelog/2025-06-24.mdx | 0 .../changelog/2025-06-27.mdx | 0 .../changelog/2025-07-09.mdx | 0 .../{dotnet => csharp}/configuration.mdx | 0 .../{dotnet => csharp}/custom-code.mdx | 0 .../{dotnet => csharp}/customer-showcase.mdx | 0 .../overview/{dotnet => csharp}/design.mdx | 0 .../publishing-to-nuget.mdx | 0 .../{dotnet => csharp}/quickstart.mdx | 0 fern/products/sdks/sdks.yml | 13 +-- 642 files changed, 8010 insertions(+), 30 deletions(-) create mode 100644 fern/products/cli-api-reference/cli-changelog/2022-12-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2022-12-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2022-12-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2022-12-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2022-12-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2022-12-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2022-12-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-01-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-02-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-03-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-04-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-05-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-06-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-07-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-08-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-09-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-10-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-11-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2023-12-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-01-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-02-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-03-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-04-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-05-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-06-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-07-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-08-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-09-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-10-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-11-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2024-12-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-01-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-02-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-03-31.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-26.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-04-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-01.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-07.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-08.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-13.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-15.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-20.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-22.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-27.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-28.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-29.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-05-30.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-02.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-03.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-04.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-05.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-06.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-09.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-10.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-11.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-12.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-14.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-16.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-17.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-18.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-19.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-21.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-23.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-24.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-25.mdx create mode 100644 fern/products/cli-api-reference/cli-changelog/2025-06-26.mdx rename fern/products/docs/pages/{configuration => customization}/edit-this-page.png (100%) rename fern/products/docs/pages/{configuration => customization}/frontmatter.mdx (100%) rename fern/products/docs/pages/{configuration => customization}/global-configuration.mdx (100%) rename fern/products/docs/pages/{configuration => customization}/max-toc.png (100%) rename fern/products/docs/pages/{configuration => customization}/nav-link.png (100%) rename fern/products/docs/pages/{configuration => customization}/on-page-feedback.png (100%) rename fern/products/docs/pages/{configuration => customization}/project-structure.mdx (100%) rename fern/products/docs/pages/{configuration => customization}/search.mdx (100%) rename fern/products/docs/pages/{configuration => customization}/table-of-contents.png (100%) create mode 100644 fern/products/docs/pages/customization/user-feedback.mdx rename fern/products/docs/pages/{configuration => customization}/what-is-docs-yml.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/assets/dotnet-package.png (100%) rename fern/products/sdks/overview/{dotnet => csharp}/assets/new-api-key.png (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-10.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-15.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-20.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-22.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-23.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-28.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-29.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-05-31.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-06-07.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-06-19.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-06-20.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-06-21.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-02.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-09.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-10.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-17.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-22.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-23.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-25.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-29.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-30.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-07-31.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-01.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-07.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-09.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-10.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-11.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-12.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-22.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-26.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-28.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-08-29.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-10-08.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-10-28.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-10-30.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-05.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-06.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-07.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-08.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-09.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-12.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-14.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-19.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-20.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2024-11-25.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-01-22.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-02.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-03.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-06.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-14.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-15.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-24.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-26.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-27.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-02-28.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-02.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-03.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-04.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-05.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-07.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-09.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-10.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-13.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-14.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-17.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-18.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-19.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-21.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-22.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-25.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-03-31.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-04-01.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-04-07.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-04-10.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-04-11.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-04-22.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-04-23.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-05-01.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-05-04.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-05-13.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-05-16.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-06-03.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-06-05.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-06-17.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-06-23.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-06-24.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-06-27.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/changelog/2025-07-09.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/configuration.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/custom-code.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/customer-showcase.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/design.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/publishing-to-nuget.mdx (100%) rename fern/products/sdks/overview/{dotnet => csharp}/quickstart.mdx (100%) diff --git a/fern/docs.yml b/fern/docs.yml index ddad91816..e378ae50a 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -237,9 +237,28 @@ redirects: - source: /learn/sdks/introduction/customer-showcase destination: /learn/sdks/customer-showcase permanent: true - - source: /learn/sdks/introduction/changelog/:slug* - destination: /learn/sdks/overview/changelog/:slug* + - source: /learn/sdks/introduction/changelog/ts/:slug* + destination: /learn/sdks/generators/type-script/changelog/:slug* permanent: true + - source: /learn/sdks/introduction/changelog/python/:slug* + destination: /learn/sdks/generators/python/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/csharp/:slug* + destination: /learn/sdks/generators/csharp/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/go/:slug* + destination: /learn/sdks/generators/go/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/java/:slug* + destination: /learn/sdks/generators/java/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/ruby/:slug* + destination: /learn/sdks/generators/ruby/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/php/:slug* + destination: /learn/sdks/generators/php/changelog/:slug* + permanent: true + # SDK Capabilities - remaining general redirects (after specific overrides above) - source: /learn/sdks/capabilities/idiomatic-method-names @@ -272,10 +291,10 @@ redirects: # SDK Guides - specific cases first, then general pattern - source: /learn/sdks/guides/generate-your-first-sdk - destination: /learn/sdks/introduction/overview + destination: /learn/sdks/overview/introduction permanent: true - source: /learn/sdks/guides/publish-a-public-facing-sdk - destination: /learn/sdks/guides/publish-your-sdk + destination: /learn/sdks/overview/introduction permanent: true - source: /learn/sdks/guides/publish-to-package-managers/:slug* destination: /learn/sdks/generators/:slug* @@ -302,10 +321,10 @@ redirects: destination: https://buildwithfern.com/customers permanent: true - source: /learn/docs/getting-started/global-configuration - destination: /learn/docs/guides/configuration/what-is-docs-yml + destination: /learn/docs/guides/customization/what-is-docs-yml permanent: true - source: /learn/docs/getting-started/project-structure - destination: /learn/docs/guides/configuration/project-structure + destination: /learn/docs/guides/customization/project-structure permanent: true - source: /learn/docs/getting-started/development destination: /learn/docs/preview-publish/previewing-changes-locally @@ -353,7 +372,7 @@ redirects: destination: /learn/docs/authentication/rbac permanent: true - source: /learn/docs/building-and-customizing-your-docs/search - destination: /learn/docs/configuration/search + destination: /learn/docs/customization/search permanent: true # Content Section redirects - specific cases first @@ -379,7 +398,7 @@ redirects: destination: /learn/docs/component-library/custom-components/custom-react-components permanent: true - source: /learn/docs/content/frontmatter - destination: /learn/docs/configuration/frontmatter + destination: /learn/docs/customization/frontmatter permanent: true - source: /learn/docs/content/reusable-snippets destination: /learn/docs/component-library/custom-components/reusable-snippets @@ -437,9 +456,8 @@ redirects: destination: /learn/docs/writing-content/visual-editor permanent: true - # Specific changelog redirect - - source: /learn/docs/getting-started/changelog/2025/5/23 - destination: /learn/docs/getting-started/changelog/2025/6/5 + - source: /learn/docs/getting-started/changelog/:slug* + destination: /learn/docs/changelogs/:slug* permanent: true # ============================================================================ @@ -472,6 +490,9 @@ redirects: - source: /learn/cli-api/:slug* destination: /learn/cli-reference/:slug* permanent: true + - source: /learn/cli-reference/changelog/:slug* + destination: /learn/cli-reference/changelog/:slug* + permanent: true # ============================================================================ # API DEFINITION REDIRECTS @@ -543,10 +564,12 @@ redirects: - source: /learn/api-definition/openapi/extensions/:slug* destination: /learn/openapi-definition/extensions/:slug* permanent: true + - source: /learn/api-definition/openapi/sync-specification + destination: /learn/openapi/workflow-automation/sync-your-open-api-specification + permanent: true - source: /learn/api-definition/openapi/frameworks/:slug* destination: /learn/openapi-definition/server-frameworks/:slug* permanent: true - # General OpenAPI pattern - source: /learn/api-definition/openapi/:slug* destination: /learn/openapi-definition/:slug* permanent: true @@ -578,6 +601,18 @@ redirects: - source: /learn/ai-search/:slug* destination: /learn/ask-fern/:slug* permanent: true + - source: /learn/ask-fern/overview + destination: /learn/ask-fern/getting-started/what-is-ask-fern + permanent: true + - source: /learn/ask-fern/customer-showcase + destination: https://buildwithfern.com/customers + permanent: true + - source: /learn/ask-fern/citations + destination: /learn/ask-fern/configuration/citations + permanent: true + - source: /learn/ask-fern/custom-prompting + destination: /learn/ask-fern/configuration/custom-prompting + permanent: true # ============================================================================ # API REFERENCE REDIRECTS (Fern Public API) @@ -585,14 +620,11 @@ redirects: # Fern Public API Reference redirects - source: /learn/api-reference/overview - destination: /learn/public-api/overview + destination: /learn/cli-api-reference/api-reference/overview permanent: true - source: /learn/api-reference/snippets/:slug* - destination: /learn/public-api/snippets/:slug* + destination: /learn/cli-api-reference/api-reference/snippets/:slug* permanent: true - source: /learn/api-reference/tokens/:slug* - destination: /learn/public-api/tokens/:slug* - permanent: true - - source: /learn/api-reference/:slug* - destination: /learn/public-api/:slug* + destination: /learn/cli-api-reference/api-reference/tokens/:slug* permanent: true \ No newline at end of file diff --git a/fern/products/cli-api-reference/cli-api-reference.yml b/fern/products/cli-api-reference/cli-api-reference.yml index cb0f211a8..79b97069c 100644 --- a/fern/products/cli-api-reference/cli-api-reference.yml +++ b/fern/products/cli-api-reference/cli-api-reference.yml @@ -9,7 +9,7 @@ navigation: slug: options - page: Commands path: ./pages/commands.mdx - - changelog: ./pages/changelogs/cli + - changelog: ./pages/changelogs/cli-changelog - api: API Reference api-name: public-api icon: fa-regular fa-pro diff --git a/fern/products/cli-api-reference/cli-changelog/2022-12-13.mdx b/fern/products/cli-api-reference/cli-changelog/2022-12-13.mdx new file mode 100644 index 000000000..2fcac4427 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2022-12-13.mdx @@ -0,0 +1,24 @@ +## 0.1.3-rc7 +**`(chore):`** Release 0.1.3-rc7 + +## 0.1.3-rc6 +**`(chore):`** Release 0.1.3-rc6 + +## 0.1.3-rc5 +**`(chore):`** Release 0.1.3-rc5 + +## 0.1.3-rc4 +**`(chore):`** Release 0.1.3-rc4 + +## 0.1.3-rc3 +**`(chore):`** Release 0.1.3-rc3 + +## 0.1.3-rc2 +**`(chore):`** Release 0.1.3-rc2 + +## 0.1.3-rc1 +**`(chore):`** Release 0.1.3-rc1 + +## 0.1.3-rc0 +**`(chore):`** Release 0.1.3-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2022-12-14.mdx b/fern/products/cli-api-reference/cli-changelog/2022-12-14.mdx new file mode 100644 index 000000000..2ead17b29 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2022-12-14.mdx @@ -0,0 +1,9 @@ +## 0.2.0 +**`(chore):`** Release 0.2.0 + +## 0.1.3-rc9 +**`(chore):`** Release 0.1.3-rc9 + +## 0.1.3-rc8 +**`(chore):`** Release 0.1.3-rc8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2022-12-15.mdx b/fern/products/cli-api-reference/cli-changelog/2022-12-15.mdx new file mode 100644 index 000000000..afa609b8f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2022-12-15.mdx @@ -0,0 +1,6 @@ +## 0.3.0-rc0 +**`(chore):`** Release 0.3.0-rc0 + +## 0.2.1 +**`(chore):`** Release 0.2.1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2022-12-16.mdx b/fern/products/cli-api-reference/cli-changelog/2022-12-16.mdx new file mode 100644 index 000000000..bd3f8f3e6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2022-12-16.mdx @@ -0,0 +1,30 @@ +## 0.3.0-rc9 +**`(chore):`** Release 0.3.0-rc9 + +## 0.3.0-rc8 +**`(chore):`** Release 0.3.0-rc8 + +## 0.3.0-rc7 +**`(chore):`** Release 0.3.0-rc7 + +## 0.3.0-rc10 +**`(chore):`** Release 0.3.0-rc10 + +## 0.3.0-rc6 +**`(chore):`** Release 0.3.0-rc6 + +## 0.3.0-rc5 +**`(chore):`** Release 0.3.0-rc5 + +## 0.3.0-rc4 +**`(chore):`** Release 0.3.0-rc4 + +## 0.3.0-rc3 +**`(chore):`** Release 0.3.0-rc3 + +## 0.3.0-rc2 +**`(chore):`** Release 0.3.0-rc2 + +## 0.3.0-rc1 +**`(chore):`** Release 0.3.0-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2022-12-23.mdx b/fern/products/cli-api-reference/cli-changelog/2022-12-23.mdx new file mode 100644 index 000000000..67ceeff2c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2022-12-23.mdx @@ -0,0 +1,3 @@ +## 0.3.0-rc11 +**`(chore):`** Release 0.3.0-rc11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2022-12-24.mdx b/fern/products/cli-api-reference/cli-changelog/2022-12-24.mdx new file mode 100644 index 000000000..392598ef7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2022-12-24.mdx @@ -0,0 +1,3 @@ +## 0.3.0-rc12 +**`(chore):`** Release 0.3.0-rc12 + diff --git a/fern/products/cli-api-reference/cli-changelog/2022-12-28.mdx b/fern/products/cli-api-reference/cli-changelog/2022-12-28.mdx new file mode 100644 index 000000000..67a51ecc7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2022-12-28.mdx @@ -0,0 +1,24 @@ +## 0.3.5 +**`(chore):`** Release 0.3.5 + +## 0.3.4 +**`(chore):`** Release 0.3.4 + +## 0.3.3 +**`(chore):`** Release 0.3.3 + +## 0.3.2 +**`(chore):`** Release 0.3.2 + +## 0.3.1 +**`(chore):`** Release 0.3.1 + +## 0.3.0-rc14 +**`(chore):`** Release 0.3.0-rc14 + +## 0.3.0-rc13 +**`(chore):`** Release 0.3.0-rc13 + +## 0.3.0 +**`(chore):`** Release 0.3.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-06.mdx new file mode 100644 index 000000000..282068ff8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-06.mdx @@ -0,0 +1,6 @@ +## 0.3.6-rc1 +**`(chore):`** Release 0.3.6-rc1 + +## 0.3.6-rc0 +**`(chore):`** Release 0.3.6-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-08.mdx new file mode 100644 index 000000000..a66126134 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-08.mdx @@ -0,0 +1,9 @@ +## 0.3.7 +**`(chore):`** Release 0.3.7 + +## 0.3.7-rc0 +**`(chore):`** Release 0.3.7-rc0 + +## 0.3.6 +**`(chore):`** Release 0.3.6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-09.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-09.mdx new file mode 100644 index 000000000..3c46342ce --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-09.mdx @@ -0,0 +1,3 @@ +## 0.3.8 +**`(chore):`** Release 0.3.8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-11.mdx new file mode 100644 index 000000000..c35926ead --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-11.mdx @@ -0,0 +1,12 @@ +## 0.3.10 +**`(chore):`** Release 0.3.10 + +## 0.3.9 +**`(chore):`** Release 0.3.9 + +## 0.3.8-rc1 +**`(chore):`** Release 0.3.8-rc1 + +## 0.3.8-rc0 +**`(chore):`** Release 0.3.8-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-12.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-12.mdx new file mode 100644 index 000000000..a7a4b8a82 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-12.mdx @@ -0,0 +1,6 @@ +## 0.3.12-rc0 +**`(chore):`** Release 0.3.12-rc0 + +## 0.3.11 +**`(chore):`** Release 0.3.11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-13.mdx new file mode 100644 index 000000000..8ce2722ed --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-13.mdx @@ -0,0 +1,9 @@ +## 0.3.12-rc3 +**`(chore):`** Release 0.3.12-rc3 + +## 0.3.12-rc2 +**`(chore):`** Release 0.3.12-rc2 + +## 0.3.12-rc1 +**`(chore):`** Release 0.3.12-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-15.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-15.mdx new file mode 100644 index 000000000..c28eab59d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-15.mdx @@ -0,0 +1,12 @@ +## 0.3.12-rc7 +**`(chore):`** Release 0.3.12-rc7 + +## 0.3.12-rc6 +**`(chore):`** Release 0.3.12-rc6 + +## 0.3.12-rc5 +**`(chore):`** Release 0.3.12-rc5 + +## 0.3.12-rc4 +**`(chore):`** Release 0.3.12-rc4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-17.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-17.mdx new file mode 100644 index 000000000..0b3dec6a3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-17.mdx @@ -0,0 +1,12 @@ +## 0.3.12-rc9 +**`(chore):`** Release 0.3.12-rc9 + +## 0.3.12-rc8 +**`(chore):`** Release 0.3.12-rc8 + +## 0.3.12-rc11 +**`(chore):`** Release 0.3.12-rc11 + +## 0.3.12-rc10 +**`(chore):`** Release 0.3.12-rc10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-18.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-18.mdx new file mode 100644 index 000000000..01525cd88 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-18.mdx @@ -0,0 +1,27 @@ +## 0.3.16-rc1 +**`(chore):`** Release 0.3.16-rc1 + +## 0.3.16-rc0 +**`(chore):`** Release 0.3.16-rc0 + +## 0.3.15 +**`(chore):`** Release 0.3.15 + +## 0.3.15-rc0 +**`(chore):`** Release 0.3.15-rc0 + +## 0.3.14 +**`(chore):`** Release 0.3.14 + +## 0.3.13 +**`(chore):`** Release 0.3.13 + +## 0.3.12 +**`(chore):`** Release 0.3.12 + +## 0.3.12-rc13 +**`(chore):`** Release 0.3.12-rc13 + +## 0.3.12-rc12 +**`(chore):`** Release 0.3.12-rc12 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-19.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-19.mdx new file mode 100644 index 000000000..d11322b1c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-19.mdx @@ -0,0 +1,3 @@ +## 0.3.16-rc2 +**`(chore):`** Release 0.3.16-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-20.mdx new file mode 100644 index 000000000..a9d09fe5c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-20.mdx @@ -0,0 +1,3 @@ +## 0.3.16 +**`(chore):`** Release 0.3.16 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-21.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-21.mdx new file mode 100644 index 000000000..bafcc6354 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-21.mdx @@ -0,0 +1,6 @@ +## 0.3.17-rc1 +**`(chore):`** Release 0.3.17-rc1 + +## 0.3.17-rc0 +**`(chore):`** Release 0.3.17-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-22.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-22.mdx new file mode 100644 index 000000000..6d43a2790 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-22.mdx @@ -0,0 +1,3 @@ +## 0.3.17-rc2 +**`(chore):`** Release 0.3.17-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-23.mdx new file mode 100644 index 000000000..525730e73 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-23.mdx @@ -0,0 +1,24 @@ +## 0.3.18 +**`(chore):`** Release 0.3.18 + +## 0.3.17 +**`(chore):`** Release 0.3.17 + +## 0.3.17-rc8 +**`(chore):`** Release 0.3.17-rc8 + +## 0.3.17-rc7 +**`(chore):`** Release 0.3.17-rc7 + +## 0.3.17-rc6 +**`(chore):`** Release 0.3.17-rc6 + +## 0.3.17-rc5 +**`(chore):`** Release 0.3.17-rc5 + +## 0.3.17-rc4 +**`(chore):`** Release 0.3.17-rc4 + +## 0.3.17-rc3 +**`(chore):`** Release 0.3.17-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-24.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-24.mdx new file mode 100644 index 000000000..87abe8fe5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-24.mdx @@ -0,0 +1,3 @@ +## 0.3.19 +**`(chore):`** Release 0.3.19 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-27.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-27.mdx new file mode 100644 index 000000000..02da2807b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-27.mdx @@ -0,0 +1,3 @@ +## 0.3.20 +**`(chore):`** Release 0.3.20 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-28.mdx new file mode 100644 index 000000000..d6f05f6c1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-28.mdx @@ -0,0 +1,9 @@ +## 0.3.23 +**`(chore):`** Release 0.3.23 + +## 0.3.22 +**`(chore):`** Release 0.3.22 + +## 0.3.21 +**`(chore):`** Release 0.3.21 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-29.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-29.mdx new file mode 100644 index 000000000..c82153f70 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-29.mdx @@ -0,0 +1,12 @@ +## 0.4.1 +**`(chore):`** Release 0.4.1 + +## 0.4.0-rc1 +**`(chore):`** Release 0.4.0-rc1 + +## 0.4.0 +**`(chore):`** Release 0.4.0 + +## 0.4.0-rc0 +**`(chore):`** Release 0.4.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-30.mdx new file mode 100644 index 000000000..1ed48ecf0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-30.mdx @@ -0,0 +1,18 @@ +## 0.4.5-rc2 +**`(chore):`** Release 0.4.5-rc2 + +## 0.4.5-rc1 +**`(chore):`** Release 0.4.5-rc1 + +## 0.4.5-rc0 +**`(chore):`** Release 0.4.5-rc0 + +## 0.4.4 +**`(chore):`** Release 0.4.4 + +## 0.4.3 +**`(chore):`** Release 0.4.3 + +## 0.4.2 +**`(chore):`** Release 0.4.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-01-31.mdx b/fern/products/cli-api-reference/cli-changelog/2023-01-31.mdx new file mode 100644 index 000000000..741ebf362 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-01-31.mdx @@ -0,0 +1,9 @@ +## 0.4.5-rc4 +**`(chore):`** Release 0.4.5-rc4 + +## 0.4.5-rc3 +**`(chore):`** Release 0.4.5-rc3 + +## 0.4.5-rc5 +**`(chore):`** Release 0.4.5-rc5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-01.mdx new file mode 100644 index 000000000..7d143f183 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-01.mdx @@ -0,0 +1,15 @@ +## 0.4.9 +**`(chore):`** Release 0.4.9 + +## 0.4.8 +**`(chore):`** Release 0.4.8 + +## 0.4.7 +**`(chore):`** Release 0.4.7 + +## 0.4.6 +**`(chore):`** Release 0.4.6 + +## 0.4.5 +**`(chore):`** Release 0.4.5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-02.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-02.mdx new file mode 100644 index 000000000..bd0cdb84c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-02.mdx @@ -0,0 +1,18 @@ +## 0.4.12 +**`(chore):`** Release 0.4.12 + +## 0.4.12-rc0 +**`(chore):`** Release 0.4.12-rc0 + +## 0.4.11 +**`(chore):`** Release 0.4.11 + +## 0.4.11-rc1 +**`(chore):`** Release 0.4.11-rc1 + +## 0.4.11-rc0 +**`(chore):`** Release 0.4.11-rc0 + +## 0.4.10 +**`(chore):`** Release 0.4.10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-04.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-04.mdx new file mode 100644 index 000000000..1a94b48f6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-04.mdx @@ -0,0 +1,3 @@ +## 0.4.13 +**`(chore):`** Release 0.4.13 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-05.mdx new file mode 100644 index 000000000..1c21e968d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-05.mdx @@ -0,0 +1,3 @@ +## 0.4.14 +**`(chore):`** Release 0.4.14 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-06.mdx new file mode 100644 index 000000000..7355105ad --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-06.mdx @@ -0,0 +1,15 @@ +## 0.4.17 +**`(chore):`** Release 0.4.17 + +## 0.4.17-rc0 +**`(chore):`** Release 0.4.17-rc0 + +## 0.4.16 +**`(chore):`** Release 0.4.16 + +## 0.4.15 +**`(chore):`** Release 0.4.15 + +## 0.4.15-rc0 +**`(chore):`** Release 0.4.15-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-07.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-07.mdx new file mode 100644 index 000000000..a24f965bd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-07.mdx @@ -0,0 +1,3 @@ +## 0.4.18 +**`(chore):`** Release 0.4.18 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-09.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-09.mdx new file mode 100644 index 000000000..1dd4bccc2 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-09.mdx @@ -0,0 +1,18 @@ +## 0.4.20-rc1 +**`(chore):`** Release 0.4.20-rc1 + +## 0.4.20-rc0 +**`(chore):`** Release 0.4.20-rc0 + +## 0.4.19-rc1 +**`(chore):`** Release 0.4.19-rc1 + +## 0.4.19 +**`(chore):`** Release 0.4.19 + +## 0.4.19-rc2 +**`(chore):`** Release 0.4.19-rc2 + +## 0.4.19-rc0 +**`(chore):`** Release 0.4.19-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-12.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-12.mdx new file mode 100644 index 000000000..63b28afaa --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-12.mdx @@ -0,0 +1,9 @@ +## 0.4.22 +**`(chore):`** Release 0.4.22 + +## 0.4.21 +**`(chore):`** Release 0.4.21 + +## 0.4.20 +**`(chore):`** Release 0.4.20 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-16.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-16.mdx new file mode 100644 index 000000000..1195d9d5d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-16.mdx @@ -0,0 +1,6 @@ +## 0.4.23 +**`(chore):`** Release 0.4.23 + +## 0.4.23-rc0 +**`(chore):`** Release 0.4.23-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-20.mdx new file mode 100644 index 000000000..7bb5537e4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-20.mdx @@ -0,0 +1,3 @@ +## 0.4.24-rc0 +**`(chore):`** Release 0.4.24-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-21.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-21.mdx new file mode 100644 index 000000000..ffed490e5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-21.mdx @@ -0,0 +1,3 @@ +## 0.4.24-rc1 +**`(chore):`** Release 0.4.24-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-23.mdx new file mode 100644 index 000000000..21416cae4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-23.mdx @@ -0,0 +1,3 @@ +## 0.4.24 +**`(chore):`** Release 0.4.24 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-02-25.mdx b/fern/products/cli-api-reference/cli-changelog/2023-02-25.mdx new file mode 100644 index 000000000..bb147c81e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-02-25.mdx @@ -0,0 +1,6 @@ +## 0.4.26 +**`(chore):`** Release 0.4.26 + +## 0.4.25 +**`(chore):`** Release 0.4.25 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-01.mdx new file mode 100644 index 000000000..080a277d6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-01.mdx @@ -0,0 +1,3 @@ +## 0.4.27-rc0 +**`(chore):`** Release 0.4.27-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-02.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-02.mdx new file mode 100644 index 000000000..d3a31f2f8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-02.mdx @@ -0,0 +1,18 @@ +## 0.4.28-rc2 +**`(chore):`** Release 0.4.28-rc2 + +## 0.4.28-rc1 +**`(chore):`** Release 0.4.28-rc1 + +## 0.4.28-rc0 +**`(chore):`** Release 0.4.28-rc0 + +## 0.4.27-rc2 +**`(chore):`** Release 0.4.27-rc2 + +## 0.4.27 +**`(chore):`** Release 0.4.27 + +## 0.4.27-rc1 +**`(chore):`** Release 0.4.27-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-03.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-03.mdx new file mode 100644 index 000000000..75e49ef99 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-03.mdx @@ -0,0 +1,12 @@ +## 0.4.30 +**`(chore):`** Release 0.4.30 + +## 0.4.29 +**`(chore):`** Release 0.4.29 + +## 0.4.28-rc4 +**`(chore):`** Release 0.4.28-rc4 + +## 0.4.28-rc3 +**`(chore):`** Release 0.4.28-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-04.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-04.mdx new file mode 100644 index 000000000..02689dee9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-04.mdx @@ -0,0 +1,15 @@ +## 0.4.31-rc3 +**`(chore):`** Release 0.4.31-rc3 + +## 0.4.31 +**`(chore):`** Release 0.4.31 + +## 0.4.31-rc4 +**`(chore):`** Release 0.4.31-rc4 + +## 0.4.31-rc2 +**`(chore):`** Release 0.4.31-rc2 + +## 0.4.31-rc1 +**`(chore):`** Release 0.4.31-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-05.mdx new file mode 100644 index 000000000..ebbb80b3c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-05.mdx @@ -0,0 +1,3 @@ +## 0.4.32-rc0 +**`(chore):`** Release 0.4.32-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-06.mdx new file mode 100644 index 000000000..198a69802 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-06.mdx @@ -0,0 +1,15 @@ +## 0.4.32 +**`(chore):`** Release 0.4.32 + +## 0.4.32-rc4 +**`(chore):`** Release 0.4.32-rc4 + +## 0.4.32-rc3 +**`(chore):`** Release 0.4.32-rc3 + +## 0.4.32-rc2 +**`(chore):`** Release 0.4.32-rc2 + +## 0.4.32-rc1 +**`(chore):`** Release 0.4.32-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-07.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-07.mdx new file mode 100644 index 000000000..8ba905a86 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-07.mdx @@ -0,0 +1,6 @@ +## 0.4.33-rc0 +**`(chore):`** Release 0.4.33-rc0 + +## 0.4.32-rc5 +**`(chore):`** Release 0.4.32-rc5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-08.mdx new file mode 100644 index 000000000..fa2fee47a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-08.mdx @@ -0,0 +1,15 @@ +## 0.4.33-rc5 +**`(chore):`** Release 0.4.33-rc5 + +## 0.4.33-rc4 +**`(chore):`** Release 0.4.33-rc4 + +## 0.4.33-rc3 +**`(chore):`** Release 0.4.33-rc3 + +## 0.4.33-rc2 +**`(chore):`** Release 0.4.33-rc2 + +## 0.4.33-rc1 +**`(chore):`** Release 0.4.33-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-09.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-09.mdx new file mode 100644 index 000000000..d94b2a2bf --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-09.mdx @@ -0,0 +1,32 @@ +## 0.5.1 +**`(chore):`** Release 0.5.1 + +## 0.5.0 +**`(chore):`** ## What's Changed +* Support http streams in responses by @zachkirsch in https://github.com/fern-api/fern/pull/1365 +* fix: introduce undiscriminated unions by @dsinghvi in https://github.com/fern-api/fern/pull/1367 +* Add release blocker for undiscriminated unions by @zachkirsch in https://github.com/fern-api/fern/pull/1369 +* Fix undiscriminated union rule by @zachkirsch in https://github.com/fern-api/fern/pull/1370 +* Add file upload by @zachkirsch in https://github.com/fern-api/fern/pull/1366 +* Rename property key to bodyProperty by @zachkirsch in https://github.com/fern-api/fern/pull/1371 +* Add optional files by @zachkirsch in https://github.com/fern-api/fern/pull/1372 +* ts generator versions above `0.5.0-rc0-6` use IR V12 by @dsinghvi in https://github.com/fern-api/fern/pull/1373 +* Make File a reserved keyword in TS by @zachkirsch in https://github.com/fern-api/fern/pull/1374 +* Add query-param stream condition by @zachkirsch in https://github.com/fern-api/fern/pull/1375 +* fix: audiences works with subpackages and packages by @dsinghvi in https://github.com/fern-api/fern/pull/1376 +* Fix docs in file properties by @zachkirsch in https://github.com/fern-api/fern/pull/1378 +* Update import reference in OpenAPIMigrator by @TeisJayaswal in https://github.com/fern-api/fern/pull/1380 +* fix: add missing `MovieId` type by @codebender828 in https://github.com/fern-api/fern/pull/1381 +* Only disallow 'body' wrapper properties when there's a referenced request body by @zachkirsch in https://github.com/fern-api/fern/pull/1382 + +## New Contributors +* @codebender828 made their first contribution in https://github.com/fern-api/fern/pull/1381 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.4.32...0.5.0 + +## 0.4.33-rc7 +**`(chore):`** Release 0.4.33-rc7 + +## 0.4.33-rc6 +**`(chore):`** Release 0.4.33-rc6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-10.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-10.mdx new file mode 100644 index 000000000..18b293ede --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-10.mdx @@ -0,0 +1,3 @@ +## 0.5.2 +**`(chore):`** Release 0.5.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-11.mdx new file mode 100644 index 000000000..a9b762485 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-11.mdx @@ -0,0 +1,6 @@ +## 0.5.3-rc1 +**`(chore):`** Release 0.5.3-rc1 + +## 0.5.3-rc0 +**`(chore):`** Release 0.5.3-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-13.mdx new file mode 100644 index 000000000..52817323c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-13.mdx @@ -0,0 +1,6 @@ +## 0.5.3-rc3 +**`(chore):`** Release 0.5.3-rc3 + +## 0.5.3-rc2 +**`(chore):`** Release 0.5.3-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-19.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-19.mdx new file mode 100644 index 000000000..2108dc747 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-19.mdx @@ -0,0 +1,6 @@ +## 0.5.3-rc5 +**`(chore):`** Release 0.5.3-rc5 + +## 0.5.3-rc4 +**`(chore):`** Release 0.5.3-rc4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-20.mdx new file mode 100644 index 000000000..6b8ff905c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-20.mdx @@ -0,0 +1,6 @@ +## 0.5.3 +**`(chore):`** Release 0.5.3 + +## 0.5.3-rc6 +**`(chore):`** Release 0.5.3-rc6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-24.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-24.mdx new file mode 100644 index 000000000..0da952a64 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-24.mdx @@ -0,0 +1,9 @@ +## 0.5.4-rc2 +**`(chore):`** Release 0.5.4-rc2 + +## 0.5.4-rc1 +**`(chore):`** Release 0.5.4-rc1 + +## 0.5.4-rc0 +**`(chore):`** Release 0.5.4-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-26.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-26.mdx new file mode 100644 index 000000000..cb2d04d1e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-26.mdx @@ -0,0 +1,3 @@ +## 0.5.4-rc3 +**`(chore):`** Release 0.5.4-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-28.mdx new file mode 100644 index 000000000..4e884dd06 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-28.mdx @@ -0,0 +1,15 @@ +## 0.6.2-rc0 +**`(chore):`** Release 0.6.2-rc0 + +## 0.6.1 +**`(chore):`** Release 0.6.1 + +## 0.6.0 +**`(chore):`** Release 0.6.0 + +## 0.5.4 +**`(chore):`** Release 0.5.4 + +## 0.5.4-rc4 +**`(chore):`** Release 0.5.4-rc4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-29.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-29.mdx new file mode 100644 index 000000000..64c8f8dfc --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-29.mdx @@ -0,0 +1,9 @@ +## 0.6.2 +**`(chore):`** Release 0.6.2 + +## 0.6.2-rc2 +**`(chore):`** Release 0.6.2-rc2 + +## 0.6.2-rc1 +**`(chore):`** Release 0.6.2-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-30.mdx new file mode 100644 index 000000000..342a0fa66 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-30.mdx @@ -0,0 +1,15 @@ +## 0.6.5-rc0 +**`(chore):`** Release 0.6.5-rc0 + +## 0.6.4 +**`(chore):`** Release 0.6.4 + +## 0.6.3 +**`(chore):`** Release 0.6.3 + +## 0.6.3-rc1 +**`(chore):`** Release 0.6.3-rc1 + +## 0.6.3-rc0 +**`(chore):`** Release 0.6.3-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-03-31.mdx b/fern/products/cli-api-reference/cli-changelog/2023-03-31.mdx new file mode 100644 index 000000000..5c11e5f79 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-03-31.mdx @@ -0,0 +1,9 @@ +## 0.6.6 +**`(chore):`** Release 0.6.6 + +## 0.6.5 +**`(chore):`** Release 0.6.5 + +## 0.6.5-rc1 +**`(chore):`** Release 0.6.5-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-01.mdx new file mode 100644 index 000000000..124c81cef --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-01.mdx @@ -0,0 +1,6 @@ +## 0.6.7 +**`(chore):`** Release 0.6.7 + +## 0.6.7-rc0 +**`(chore):`** Release 0.6.7-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-02.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-02.mdx new file mode 100644 index 000000000..29f13b23a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-02.mdx @@ -0,0 +1,12 @@ +## 0.6.10-rc1 +**`(chore):`** Release 0.6.10-rc1 + +## 0.6.10-rc0 +**`(chore):`** Release 0.6.10-rc0 + +## 0.6.9 +**`(chore):`** Release 0.6.9 + +## 0.6.8 +**`(chore):`** Release 0.6.8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-03.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-03.mdx new file mode 100644 index 000000000..52e6960e6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-03.mdx @@ -0,0 +1,9 @@ +## 0.6.10-rc4 +**`(chore):`** Release 0.6.10-rc4 + +## 0.6.10-rc3 +**`(chore):`** Release 0.6.10-rc3 + +## 0.6.10-rc2 +**`(chore):`** Release 0.6.10-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-04.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-04.mdx new file mode 100644 index 000000000..563b5fdb0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-04.mdx @@ -0,0 +1,3 @@ +## 0.6.10 +**`(chore):`** Release 0.6.10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-17.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-17.mdx new file mode 100644 index 000000000..6fbbd2084 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-17.mdx @@ -0,0 +1,9 @@ +## 0.6.11-rc2 +**`(chore):`** Release 0.6.11-rc2 + +## 0.6.11-rc1 +**`(chore):`** Release 0.6.11-rc1 + +## 0.6.11-rc0 +**`(chore):`** Release 0.6.11-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-19.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-19.mdx new file mode 100644 index 000000000..cfbec2a21 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-19.mdx @@ -0,0 +1,6 @@ +## 0.6.12 +**`(chore):`** Release 0.6.12 + +## 0.6.11 +**`(chore):`** Release 0.6.11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-21.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-21.mdx new file mode 100644 index 000000000..06014e921 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-21.mdx @@ -0,0 +1,9 @@ +## 0.7.0 +**`(chore):`** Release 0.7.0 + +## 0.7.0-rc1 +**`(chore):`** Release 0.7.0-rc1 + +## 0.7.0-rc0 +**`(chore):`** Release 0.7.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-23.mdx new file mode 100644 index 000000000..3f602f6f0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-23.mdx @@ -0,0 +1,27 @@ +## 0.7.4 +**`(chore):`** Release 0.7.4 + +## 0.7.4-rc1 +**`(chore):`** Release 0.7.4-rc1 + +## 0.7.4-rc0 +**`(chore):`** Release 0.7.4-rc0 + +## 0.7.3 +**`(chore):`** Release 0.7.3 + +## 0.7.3-rc0 +**`(chore):`** Release 0.7.3-rc0 + +## 0.7.2 +**`(chore):`** Release 0.7.2 + +## 0.7.1 +**`(chore):`** Release 0.7.1 + +## 0.7.1-rc1 +**`(chore):`** Release 0.7.1-rc1 + +## 0.7.1-rc0 +**`(chore):`** Release 0.7.1-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-28.mdx new file mode 100644 index 000000000..ca0eff6ed --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-28.mdx @@ -0,0 +1,3 @@ +## 0.7.5-rc0 +**`(chore):`** Release 0.7.5-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-04-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-04-30.mdx new file mode 100644 index 000000000..b050bfe9c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-04-30.mdx @@ -0,0 +1,18 @@ +## 0.7.5-rc6 +**`(chore):`** Release 0.7.5-rc6 + +## 0.7.5-rc5 +**`(chore):`** Release 0.7.5-rc5 + +## 0.7.5-rc4 +**`(chore):`** Release 0.7.5-rc4 + +## 0.7.5-rc3 +**`(chore):`** Release 0.7.5-rc3 + +## 0.7.5-rc2 +**`(chore):`** Release 0.7.5-rc2 + +## 0.7.5-rc1 +**`(chore):`** Release 0.7.5-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-01.mdx new file mode 100644 index 000000000..c3a5fb68a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-01.mdx @@ -0,0 +1,30 @@ +## 0.7.5-rc9 +**`(chore):`** Release 0.7.5-rc9 + +## 0.7.5-rc8 +**`(chore):`** Release 0.7.5-rc8 + +## 0.7.5-rc7 +**`(chore):`** Release 0.7.5-rc7 + +## 0.7.5-rc16 +**`(chore):`** Release 0.7.5-rc16 + +## 0.7.5-rc15 +**`(chore):`** Release 0.7.5-rc15 + +## 0.7.5-rc14 +**`(chore):`** Release 0.7.5-rc14 + +## 0.7.5-rc13 +**`(chore):`** Release 0.7.5-rc13 + +## 0.7.5-rc12 +**`(chore):`** Release 0.7.5-rc12 + +## 0.7.5-rc11 +**`(chore):`** Release 0.7.5-rc11 + +## 0.7.5-rc10 +**`(chore):`** Release 0.7.5-rc10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-02.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-02.mdx new file mode 100644 index 000000000..8ce986e66 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-02.mdx @@ -0,0 +1,39 @@ +## 0.8.1 +**`(chore):`** Release 0.8.1 + +## 0.8.0 +**`(chore):`** Release 0.8.0 + +## 0.8.0-rc9 +**`(chore):`** Release 0.8.0-rc9 + +## 0.8.0-rc8 +**`(chore):`** Release 0.8.0-rc8 + +## 0.8.0-rc7 +**`(chore):`** Release 0.8.0-rc7 + +## 0.8.0-rc6 +**`(chore):`** Release 0.8.0-rc6 + +## 0.8.0-rc5 +**`(chore):`** Release 0.8.0-rc5 + +## 0.8.0-rc4 +**`(chore):`** Release 0.8.0-rc4 + +## 0.8.0-rc3 +**`(chore):`** Release 0.8.0-rc3 + +## 0.8.0-rc2 +**`(chore):`** Release 0.8.0-rc2 + +## 0.8.0-rc1 +**`(chore):`** Release 0.8.0-rc1 + +## 0.8.0-rc0 +**`(chore):`** Release 0.8.0-rc0 + +## 0.7.5-rc17 +**`(chore):`** Release 0.7.5-rc17 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-03.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-03.mdx new file mode 100644 index 000000000..a0716a0c9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-03.mdx @@ -0,0 +1,24 @@ +## 0.8.6 +**`(chore):`** Release 0.8.6 + +## 0.8.6-rc2 +**`(chore):`** Release 0.8.6-rc2 + +## 0.8.6-rc1 +**`(chore):`** Release 0.8.6-rc1 + +## 0.8.6-rc0 +**`(chore):`** Release 0.8.6-rc0 + +## 0.8.5 +**`(chore):`** Release 0.8.5 + +## 0.8.4 +**`(chore):`** Release 0.8.4 + +## 0.8.3 +**`(chore):`** Release 0.8.3 + +## 0.8.2 +**`(chore):`** Release 0.8.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-04.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-04.mdx new file mode 100644 index 000000000..4ff16a8ba --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-04.mdx @@ -0,0 +1,9 @@ +## 0.8.9 +**`(chore):`** Release 0.8.9 + +## 0.8.8 +**`(chore):`** Release 0.8.8 + +## 0.8.7 +**`(chore):`** Release 0.8.7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-05.mdx new file mode 100644 index 000000000..32f161876 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-05.mdx @@ -0,0 +1,9 @@ +## 0.8.12 +**`(chore):`** Release 0.8.12 + +## 0.8.11 +**`(chore):`** Release 0.8.11 + +## 0.8.10 +**`(chore):`** Release 0.8.10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-06.mdx new file mode 100644 index 000000000..c6be2fd67 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-06.mdx @@ -0,0 +1,3 @@ +## 0.8.13-rc0 +**`(chore):`** Release 0.8.13-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-07.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-07.mdx new file mode 100644 index 000000000..899909f45 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-07.mdx @@ -0,0 +1,30 @@ +## 0.8.16-rc4 +**`(chore):`** Release 0.8.16-rc4 + +## 0.8.16-rc3 +**`(chore):`** Release 0.8.16-rc3 + +## 0.8.16-rc2 +**`(chore):`** Release 0.8.16-rc2 + +## 0.8.16-rc1 +**`(chore):`** Release 0.8.16-rc1 + +## 0.8.16-rc0 +**`(chore):`** Release 0.8.16-rc0 + +## 0.8.15 +**`(chore):`** Release 0.8.15 + +## 0.8.14 +**`(chore):`** Release 0.8.14 + +## 0.8.13 +**`(chore):`** Release 0.8.13 + +## 0.8.13-rc2 +**`(chore):`** Release 0.8.13-rc2 + +## 0.8.13-rc1 +**`(chore):`** Release 0.8.13-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-08.mdx new file mode 100644 index 000000000..c90f9c631 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-08.mdx @@ -0,0 +1,39 @@ +## 0.8.18 +**`(chore):`** Release 0.8.18 + +## 0.8.17 +**`(chore):`** Release 0.8.17 + +## 0.8.17-rc3 +**`(chore):`** Release 0.8.17-rc3 + +## 0.8.17-rc2 +**`(chore):`** Release 0.8.17-rc2 + +## 0.8.17-rc1 +**`(chore):`** Release 0.8.17-rc1 + +## 0.8.17-rc0 +**`(chore):`** Release 0.8.17-rc0 + +## 0.8.16-rc9 +**`(chore):`** Release 0.8.16-rc9 + +## 0.8.16-rc8 +**`(chore):`** Release 0.8.16-rc8 + +## 0.8.16-rc7 +**`(chore):`** Release 0.8.16-rc7 + +## 0.8.16-rc6 +**`(chore):`** Release 0.8.16-rc6 + +## 0.8.16-rc5 +**`(chore):`** Release 0.8.16-rc5 + +## 0.8.16-rc11 +**`(chore):`** Release 0.8.16-rc11 + +## 0.8.16-rc10 +**`(chore):`** Release 0.8.16-rc10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-10.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-10.mdx new file mode 100644 index 000000000..b7228cdac --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-10.mdx @@ -0,0 +1,24 @@ +## 0.8.19-rc7 +**`(chore):`** Release 0.8.19-rc7 + +## 0.8.19-rc6 +**`(chore):`** Release 0.8.19-rc6 + +## 0.8.19-rc5 +**`(chore):`** Release 0.8.19-rc5 + +## 0.8.19-rc4 +**`(chore):`** Release 0.8.19-rc4 + +## 0.8.19-rc3 +**`(chore):`** Release 0.8.19-rc3 + +## 0.8.19-rc2 +**`(chore):`** Release 0.8.19-rc2 + +## 0.8.19-rc1 +**`(chore):`** Release 0.8.19-rc1 + +## 0.8.19-rc0 +**`(chore):`** Release 0.8.19-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-11.mdx new file mode 100644 index 000000000..09e08606a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-11.mdx @@ -0,0 +1,18 @@ +## 0.8.20-rc2 +**`(chore):`** Release 0.8.20-rc2 + +## 0.8.20-rc1 +**`(chore):`** Release 0.8.20-rc1 + +## 0.8.20-rc0 +**`(chore):`** Release 0.8.20-rc0 + +## 0.8.19 +**`(chore):`** Release 0.8.19 + +## 0.8.19-rc9 +**`(chore):`** Release 0.8.19-rc9 + +## 0.8.19-rc8 +**`(chore):`** Release 0.8.19-rc8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-12.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-12.mdx new file mode 100644 index 000000000..02c1f90f1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-12.mdx @@ -0,0 +1,9 @@ +## 0.8.20 +**`(chore):`** Release 0.8.20 + +## 0.8.20-rc4 +**`(chore):`** Release 0.8.20-rc4 + +## 0.8.20-rc3 +**`(chore):`** Release 0.8.20-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-13.mdx new file mode 100644 index 000000000..531489653 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-13.mdx @@ -0,0 +1,9 @@ +## 0.8.23 +**`(chore):`** Release 0.8.23 + +## 0.8.22 +**`(chore):`** Release 0.8.22 + +## 0.8.21 +**`(chore):`** Release 0.8.21 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-16.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-16.mdx new file mode 100644 index 000000000..536fb4e7a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-16.mdx @@ -0,0 +1,6 @@ +## 0.8.25-rc0 +**`(chore):`** Add `fern-go-model` generator identifier. + +## 0.8.24 +**`(chore):`** Release 0.8.24 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-17.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-17.mdx new file mode 100644 index 000000000..d40b7511d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-17.mdx @@ -0,0 +1,6 @@ +## 0.9.0 +**`(chore):`** Running `fern init --openapi ` creates an OpenAPI workspace + +## 0.9.0-rc0 +**`(chore):`** Release 0.9.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-18.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-18.mdx new file mode 100644 index 000000000..ec14e46d6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-18.mdx @@ -0,0 +1,6 @@ +## 0.9.1-rc1 +**`(chore):`** Release 0.9.1-rc1 + +## 0.9.1-rc0 +**`(chore):`** Release 0.9.1-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-19.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-19.mdx new file mode 100644 index 000000000..8d9c41411 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-19.mdx @@ -0,0 +1,3 @@ +## 0.9.1-rc2 +**`(chore):`** Release 0.9.1-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-20.mdx new file mode 100644 index 000000000..fb69d5a05 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-20.mdx @@ -0,0 +1,6 @@ +## 0.9.1 +**`(chore):`** Release 0.9.1 + +## 0.9.1-rc3 +**`(chore):`** Release 0.9.1-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-21.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-21.mdx new file mode 100644 index 000000000..64267e21a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-21.mdx @@ -0,0 +1,3 @@ +## 0.9.2-rc0 +**`(chore):`** Release 0.9.2-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-23.mdx new file mode 100644 index 000000000..60395c5b8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-23.mdx @@ -0,0 +1,6 @@ +## 0.9.2-rc2 +**`(chore):`** Release 0.9.2-rc2 + +## 0.9.2-rc1 +**`(chore):`** Release 0.9.2-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-24.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-24.mdx new file mode 100644 index 000000000..5d52d5274 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-24.mdx @@ -0,0 +1,15 @@ +## 0.9.3 +**`(chore):`** Release 0.9.3 + +## 0.9.2 +**`(chore):`** Release 0.9.2 + +## 0.9.2-rc5 +**`(chore):`** Release 0.9.2-rc5 + +## 0.9.2-rc4 +**`(chore):`** Release 0.9.2-rc4 + +## 0.9.2-rc3 +**`(chore):`** Release 0.9.2-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-25.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-25.mdx new file mode 100644 index 000000000..e713afb6b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-25.mdx @@ -0,0 +1,12 @@ +## 0.9.4-rc3 +**`(chore):`** Release 0.9.4-rc3 + +## 0.9.4-rc2 +**`(chore):`** Release 0.9.4-rc2 + +## 0.9.4-rc1 +**`(chore):`** Release 0.9.4-rc1 + +## 0.9.4-rc0 +**`(chore):`** Release 0.9.4-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-27.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-27.mdx new file mode 100644 index 000000000..8ed9d52e7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-27.mdx @@ -0,0 +1,6 @@ +## 0.9.5 +**`(chore):`** Release 0.9.5 + +## 0.9.4 +**`(chore):`** - `fern init` reads `FERN_TOKEN` if the user token is not available + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-28.mdx new file mode 100644 index 000000000..2b390be6d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-28.mdx @@ -0,0 +1,6 @@ +## 0.9.6-rc1 +**`(chore):`** Release 0.9.6-rc1 + +## 0.9.6-rc0 +**`(chore):`** Release 0.9.6-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-29.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-29.mdx new file mode 100644 index 000000000..355cc7cd6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-29.mdx @@ -0,0 +1,9 @@ +## 0.9.7-rc1 +**`(chore):`** Release 0.9.7-rc1 + +## 0.9.7-rc0 +**`(chore):`** Release 0.9.7-rc0 + +## 0.9.6 +**`(chore):`** Release 0.9.6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-30.mdx new file mode 100644 index 000000000..735c126d8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-30.mdx @@ -0,0 +1,12 @@ +## 0.9.8 +**`(chore):`** Release 0.9.8 + +## 0.9.8-rc0 +**`(chore):`** Release 0.9.8-rc0 + +## 0.9.7 +**`(chore):`** Release 0.9.7 + +## 0.9.7-rc2 +**`(chore):`** Release 0.9.7-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-05-31.mdx b/fern/products/cli-api-reference/cli-changelog/2023-05-31.mdx new file mode 100644 index 000000000..d61d1925b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-05-31.mdx @@ -0,0 +1,21 @@ +## 0.9.10-rc0 +**`(chore):`** Release 0.9.10-rc0 + +## 0.9.9 +**`(chore):`** Release 0.9.9 + +## 0.9.9-rc4 +**`(chore):`** Release 0.9.9-rc4 + +## 0.9.9-rc3 +**`(chore):`** Release 0.9.9-rc3 + +## 0.9.9-rc2 +**`(chore):`** Release 0.9.9-rc2 + +## 0.9.9-rc1 +**`(chore):`** Release 0.9.9-rc1 + +## 0.9.9-rc0 +**`(chore):`** Release 0.9.9-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-02.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-02.mdx new file mode 100644 index 000000000..15180795d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-02.mdx @@ -0,0 +1,3 @@ +## 0.9.10 +**`(chore):`** Release 0.9.10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-05.mdx new file mode 100644 index 000000000..91cb4a0b5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-05.mdx @@ -0,0 +1,10 @@ +## 0.10.2 +**`(chore):`** Release 0.10.2 + +## 0.10.1 +**`(chore):`** Release 0.10.1 + +## 0.10.0 +**`(chore):`** - The docs `domain` must be a full domain ending in `docs.buildwithfern.com` +- `docs.yml` now supports custom-domains so that docs can redirect from a custom url + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-06.mdx new file mode 100644 index 000000000..531eeb2dd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-06.mdx @@ -0,0 +1,15 @@ +## 0.10.7 +**`(chore):`** Release 0.10.7 + +## 0.10.6 +**`(chore):`** Release 0.10.6 + +## 0.10.5 +**`(chore):`** Release 0.10.5 + +## 0.10.4 +**`(chore):`** Release 0.10.4 + +## 0.10.3 +**`(chore):`** Release 0.10.3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-07.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-07.mdx new file mode 100644 index 000000000..10172ce93 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-07.mdx @@ -0,0 +1,9 @@ +## 0.10.9 +**`(chore):`** Release 0.10.9 + +## 0.10.8 +**`(chore):`** Release 0.10.8 + +## 0.10.8-rc0 +**`(chore):`** Release 0.10.8-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-08.mdx new file mode 100644 index 000000000..e2fe8ebc0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-08.mdx @@ -0,0 +1,15 @@ +## 0.10.11-rc0 +**`(chore):`** Release 0.10.11-rc0 + +## 0.10.10 +**`(chore):`** Release 0.10.10 + +## 0.10.10-rc2 +**`(chore):`** Release 0.10.10-rc2 + +## 0.10.10-rc1 +**`(chore):`** Release 0.10.10-rc1 + +## 0.10.10-rc0 +**`(chore):`** Release 0.10.10-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-09.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-09.mdx new file mode 100644 index 000000000..7a03b278e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-09.mdx @@ -0,0 +1,18 @@ +## 0.10.13 +**`(chore):`** Release 0.10.13 + +## 0.10.13-rc2 +**`(chore):`** Release 0.10.13-rc2 + +## 0.10.13-rc1 +**`(chore):`** Release 0.10.13-rc1 + +## 0.10.13-rc0 +**`(chore):`** Release 0.10.13-rc0 + +## 0.10.12 +**`(chore):`** Release 0.10.12 + +## 0.10.11 +**`(chore):`** Release 0.10.11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-10.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-10.mdx new file mode 100644 index 000000000..0c8d9dc72 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-10.mdx @@ -0,0 +1,9 @@ +## 0.10.15 +**`(chore):`** Release 0.10.15 + +## 0.10.14 +**`(chore):`** Release 0.10.14 + +## 0.10.14-rc0 +**`(chore):`** Release 0.10.14-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-11.mdx new file mode 100644 index 000000000..46e197848 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-11.mdx @@ -0,0 +1,9 @@ +## 0.10.18 +**`(chore):`** Release 0.10.18 + +## 0.10.17 +**`(chore):`** Release 0.10.17 + +## 0.10.16 +**`(chore):`** Release 0.10.16 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-12.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-12.mdx new file mode 100644 index 000000000..77cc03290 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-12.mdx @@ -0,0 +1,18 @@ +## 0.10.23-rc0 +**`(chore):`** Release 0.10.23-rc0 + +## 0.10.22 +**`(chore):`** Release 0.10.22 + +## 0.10.21 +**`(chore):`** Release 0.10.21 + +## 0.10.20 +**`(chore):`** Release 0.10.20 + +## 0.10.20-rc0 +**`(chore):`** Release 0.10.20-rc0 + +## 0.10.19 +**`(chore):`** Release 0.10.19 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-13.mdx new file mode 100644 index 000000000..de258b48e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-13.mdx @@ -0,0 +1,9 @@ +## 0.10.25-rc0 +**`(chore):`** Release 0.10.25-rc0 + +## 0.10.24 +**`(chore):`** - Fixes https://github.com/fern-api/fern/issues/1765 so OpenAPI specs are not required to have `operationId` or `x-fern-sdk-method-name` + +## 0.10.23 +**`(chore):`** Release 0.10.23 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-14.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-14.mdx new file mode 100644 index 000000000..ad969ec10 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-14.mdx @@ -0,0 +1,3 @@ +## 0.10.25-rc1 +**`(chore):`** Release 0.10.25-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-15.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-15.mdx new file mode 100644 index 000000000..e5d544467 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-15.mdx @@ -0,0 +1,9 @@ +## 0.10.27-rc0 +**`(chore):`** Release 0.10.27-rc0 + +## 0.10.26 +**`(chore):`** Release 0.10.26 + +## 0.10.25 +**`(chore):`** Release 0.10.25 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-20.mdx new file mode 100644 index 000000000..185eea7cf --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-20.mdx @@ -0,0 +1,6 @@ +## 0.10.28 +**`(chore):`** Release 0.10.28 + +## 0.10.27 +**`(chore):`** Release 0.10.27 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-22.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-22.mdx new file mode 100644 index 000000000..fb94218bc --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-22.mdx @@ -0,0 +1,6 @@ +## 0.11.1-rc0 +**`(chore):`** Release 0.11.1-rc0 + +## 0.11.0 +**`(chore):`** - Update OpenAPI Importer logic to handle FastAPI operation ids + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-23.mdx new file mode 100644 index 000000000..907fa58a6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-23.mdx @@ -0,0 +1,3 @@ +## 0.11.2 +**`(chore):`** Release 0.11.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-24.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-24.mdx new file mode 100644 index 000000000..344e10c9d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-24.mdx @@ -0,0 +1,3 @@ +## 0.11.3-rc0 +**`(chore):`** Release 0.11.3-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-06-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-06-28.mdx new file mode 100644 index 000000000..3e2509aa5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-06-28.mdx @@ -0,0 +1,9 @@ +## 0.11.3-rc3 +**`(chore):`** Release 0.11.3-rc3 + +## 0.11.3-rc2 +**`(chore):`** Release 0.11.3-rc2 + +## 0.11.3-rc1 +**`(chore):`** - Support reading `x-fern-audiences` extension so that OpenAPI spec users can leverage fern audiences + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-05.mdx new file mode 100644 index 000000000..d9a9c67d4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-05.mdx @@ -0,0 +1,3 @@ +## 0.11.3-rc4 +**`(chore):`** Release 0.11.3-rc4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-06.mdx new file mode 100644 index 000000000..604f1104c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-06.mdx @@ -0,0 +1,27 @@ +## 0.11.4 +**`(chore):`** Release 0.11.4 + +## 0.11.4-rc0 +**`(chore):`** Release 0.11.4-rc0 + +## 0.11.3 +**`(chore):`** Release 0.11.3 + +## 0.11.3-rc9 +**`(chore):`** Release 0.11.3-rc9 + +## 0.11.3-rc8 +**`(chore):`** Release 0.11.3-rc8 + +## 0.11.3-rc7 +**`(chore):`** Release 0.11.3-rc7 + +## 0.11.3-rc6 +**`(chore):`** Release 0.11.3-rc6 + +## 0.11.3-rc5 +**`(chore):`** Release 0.11.3-rc5 + +## 0.11.3-rc10 +**`(chore):`** Release 0.11.3-rc10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-10.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-10.mdx new file mode 100644 index 000000000..9a9a2bc41 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-10.mdx @@ -0,0 +1,3 @@ +## 0.11.5 +**`(chore):`** - Fixes https://github.com/fern-api/fern/issues/1880 (no longer forced to define auth if endpoints don't require auth) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-11.mdx new file mode 100644 index 000000000..b854163aa --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-11.mdx @@ -0,0 +1,9 @@ +## 0.11.6 +**`(chore):`** Release 0.11.6 + +## 0.11.6-rc1 +**`(chore):`** Release 0.11.6-rc1 + +## 0.11.6-rc0 +**`(chore):`** Release 0.11.6-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-13.mdx new file mode 100644 index 000000000..c4e9be0cd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-13.mdx @@ -0,0 +1,3 @@ +## 0.11.7-rc0 +**`(chore):`** Release 0.11.7-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-14.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-14.mdx new file mode 100644 index 000000000..11624ad2d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-14.mdx @@ -0,0 +1,3 @@ +## 0.11.7-rc1 +**`(chore):`** Release 0.11.7-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-18.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-18.mdx new file mode 100644 index 000000000..63bb26e0f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-18.mdx @@ -0,0 +1,3 @@ +## 0.11.7-rc2 +**`(chore):`** - Pypi token is correctly read in for publishing + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-20.mdx new file mode 100644 index 000000000..4cba11c7b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-20.mdx @@ -0,0 +1,3 @@ +## 0.11.7-rc3 +**`(chore):`** Release 0.11.7-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-21.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-21.mdx new file mode 100644 index 000000000..aa86666ad --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-21.mdx @@ -0,0 +1,3 @@ +## 0.11.7-rc4 +**`(chore):`** - Hacky release with sleep 5s before running docker + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-22.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-22.mdx new file mode 100644 index 000000000..547e823e0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-22.mdx @@ -0,0 +1,9 @@ +## 0.11.7-rc7 +**`(chore):`** Release 0.11.7-rc7 + +## 0.11.7-rc6 +**`(chore):`** Release 0.11.7-rc6 + +## 0.11.7-rc5 +**`(chore):`** Release 0.11.7-rc5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-23.mdx new file mode 100644 index 000000000..f31b1b505 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-23.mdx @@ -0,0 +1,18 @@ +## 0.11.9-rc0 +**`(chore):`** Release 0.11.9-rc0 + +## 0.11.8 +**`(chore):`** - Register custom content types when reading from OpenAPI spec + +## 0.11.8-rc0 +**`(chore):`** - Register content-types when registering docs (i.e. such as `application/x-ndjson`) + +## 0.11.7 +**`(chore):`** Release 0.11.7 + +## 0.11.7-rc9 +**`(chore):`** Release 0.11.7-rc9 + +## 0.11.7-rc8 +**`(chore):`** Release 0.11.7-rc8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-24.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-24.mdx new file mode 100644 index 000000000..9d72e2f3d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-24.mdx @@ -0,0 +1,3 @@ +## 0.11.9 +**`(chore):`** - handles `x-ndjson` content-type in OpenAPI responses + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-26.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-26.mdx new file mode 100644 index 000000000..c68af102b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-26.mdx @@ -0,0 +1,5 @@ +## 0.11.10 +**`(chore):`** - OpenAPI importer handles converting servers with `staging` and `production` descriptions (@dsinghvi) +- Generators are upgraded in fern init (@dannysheridan) +- Documentation markdown paths are validated (@zachkirsch) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-28.mdx new file mode 100644 index 000000000..cbc9d9a87 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-28.mdx @@ -0,0 +1,3 @@ +## 0.11.11 +**`(chore):`** - OpenAPI importer handles converting numbers formatted as time-delta (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-07-29.mdx b/fern/products/cli-api-reference/cli-changelog/2023-07-29.mdx new file mode 100644 index 000000000..60a026ab7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-07-29.mdx @@ -0,0 +1,21 @@ +## 0.11.12-rc0 +**`(chore):`** - Specify license in generators.yml (@amckinney) +```yaml +groups: + publish: + - name: fernapi/fern-go-sdk + version: 0.0.1 + github: + repository: my-org/my-repo + license: MIT # <------- or Apache-2.0 +``` + +## 0.11.12-rc1 +**`(chore):`** - Support `x-fern-ignore` OpenAPI extension. This extensions configures fern to ignore certain endpoints when generating SDKs. (@dsinghvi) + ```yaml + paths: + my/endpoint/path: + get: + x-fern-ignore: true # <------- fern will skip this endpoint + ``` + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx new file mode 100644 index 000000000..1c5358b86 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-01.mdx @@ -0,0 +1,13 @@ +## 0.11.12-rc2 +**`(chore):`** * Add `ServiceTypeReferenceInfo` to IR so that generators can recognize what types are referenced from exactly one service (@amckinney). +```yaml + ServiceTypeReferenceInfo: + properties: + typesReferencedOnlyByService: + docs: "Types referenced by exactly one service." + type: map> + sharedTypes: + docs: "Types referenced by either zero or multiple services." + type: list +``` + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-02.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-02.mdx new file mode 100644 index 000000000..7a8115045 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-02.mdx @@ -0,0 +1,12 @@ +## 0.13.0-rc1 +**`(chore):`** - OpenAPI generator only includes current package as part of generated name (@dsinghvi) + +## 0.13.0-rc0 +**`(chore):`** - OpenAPI oneOf subtypes have generated names based on unique properties (@dsinghvi) + +## 0.12.0 +**`(chore):`** - OpenAPI importer converts `date-times` appropriately. Before this release, datetimes would be converted as strings. (@dsinghvi) + +## 0.11.12 +**`(chore):`** - Special case importing oneOf types that are all enums (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-03.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-03.mdx new file mode 100644 index 000000000..fea325e77 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-03.mdx @@ -0,0 +1,3 @@ +## 0.13.0-rc2 +**`(chore):`** - Java generators now require IR V20 (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-05.mdx new file mode 100644 index 000000000..250b99765 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-05.mdx @@ -0,0 +1,6 @@ +## 0.13.0 +**`(chore):`** - Handle `type: "null"` when importing OpenAPI oneOf (@dsinghvi) + +## 0.13.0-rc3 +**`(chore):`** - No changes + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-07.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-07.mdx new file mode 100644 index 000000000..91ff41260 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-07.mdx @@ -0,0 +1,6 @@ +## 0.14.1 +**`(chore):`** - Rerelease `0.14.0` + +## 0.14.0 +**`(chore):`** - The latest Go SDK Generator depends on IR V22 (@amckinney) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-08.mdx new file mode 100644 index 000000000..75da59a04 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-08.mdx @@ -0,0 +1,6 @@ +## 0.14.3 +**`(chore):`** - When `docs` is missing, the CLI should nudge the user to run `fern add docs` (@dannysheridan) + +## 0.14.2 +**`(chore):`** - When running `fern init --openapi ` the OpenAPI generator wont be included (@dannysheridan) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-11.mdx new file mode 100644 index 000000000..ef618bf8f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-11.mdx @@ -0,0 +1,3 @@ +## 0.14.4-rc0 +**`(chore):`** CLI handles property names that start with numbers for code generation (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-14.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-14.mdx new file mode 100644 index 000000000..1b8a0d42c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-14.mdx @@ -0,0 +1,6 @@ +## 0.14.4-rc2 +**`(chore):`** Release 0.14.4-rc2 + +## 0.14.4-rc1 +**`(chore):`** Release 0.14.4-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-16.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-16.mdx new file mode 100644 index 000000000..760e0f473 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-16.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc0 +**`(chore):`** - **Break**: The fern directory now has a top-level `apis` directory to handle apis and docs no longer live within an api definition + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-18.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-18.mdx new file mode 100644 index 000000000..dc3f1a679 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-18.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc1 +**`(chore):`** - Update discriminated union detection to handle referenced schemas (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-23.mdx new file mode 100644 index 000000000..394f020a0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-23.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc2 +**`(chore):`** - Support uploading images with custom content types such as SVGs (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-25.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-25.mdx new file mode 100644 index 000000000..c65335514 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-25.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc3 +**`(chore):`** - Support reading webhooks from OpenAPI specs (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-30.mdx new file mode 100644 index 000000000..a1ff6f5de --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-30.mdx @@ -0,0 +1,7 @@ +## 0.15.0-rc5 +**`(chore):`** - Support reading `default` key in OpenAPI to account for headers with literal value (@dsinghvi) + +## 0.15.0-rc4 +**`(chore):`** - fern.config.json version is set to `*` which allows easier integration with pnpm (@zachkirsch) +- OpenAPI importer properly reads discriminated unions so that discriminants are stripped from subtypes (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-08-31.mdx b/fern/products/cli-api-reference/cli-changelog/2023-08-31.mdx new file mode 100644 index 000000000..2f8d7dcbd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-08-31.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc7 +**`(chore):`** - OpenAPI Importer handles deduping undiscriminated union types (@dsinghvi) + +## 0.15.0-rc6 +**`(chore):`** - Respect audiences for service type graph (@amckinney) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-04.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-04.mdx new file mode 100644 index 000000000..3fb413999 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-04.mdx @@ -0,0 +1,9 @@ +## 0.15.0-rc9 +**`(chore):`** - Add test definitions for `response: text` + +## 0.15.0-rc8 +**`(chore):`** - Support text responses (@dsinghvi) + +## 0.15.0-rc10 +**`(chore):`** - OpenAPI importer supports reading `application/octet-stream` requests (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-05.mdx new file mode 100644 index 000000000..924be1dd0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-05.mdx @@ -0,0 +1,9 @@ +## 0.15.0-rc13 +**`(chore):`** - Support reading `description` on `$ref` fields in OpenAPI (@dsinghvi) + +## 0.15.0-rc12 +**`(chore):`** Release 0.15.0-rc12 + +## 0.15.0-rc11 +**`(chore):`** - Latest java generators depend on IR v25 to support text/plain responses (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx new file mode 100644 index 000000000..1b4f258bd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-06.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc15 +**`(chore):`** - Validate markdown for documentation (@dsinghvi) + +## 0.15.0-rc14 +**`(chore):`** - Support specifying instance when running docs generation `fern generate --docs --instance ` + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-09.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-09.mdx new file mode 100644 index 000000000..d3811141c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-09.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc16 +**`(chore):`** - Fix and make sure CLI adheres to `--api` flag when filtering API workspaces (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-10.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-10.mdx new file mode 100644 index 000000000..aabfc7007 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-10.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc17 +**`(chore):`** - Docs support tabs (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-13.mdx new file mode 100644 index 000000000..7ab457b63 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-13.mdx @@ -0,0 +1,8 @@ +## 0.15.0-rc19 +**`(chore):`** - docs.yml now supports showing API errors opt-in (@dsinghvi) + +## 0.15.0-rc18 +**`(chore):`** - CLI now requires that versioned navbars live in new files (@dsinghvi) +- CLI supports sending availability (@dsinghvi) +- CLI has new validation rules for mdx + filepaths (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-16.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-16.mdx new file mode 100644 index 000000000..b705229f9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-16.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc20 +**`(chore):`** - Set version slug override (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-17.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-17.mdx new file mode 100644 index 000000000..a630af6c5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-17.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc21 +**`(chore):`** - Only set GA availability if explicitly defined in the API Definition (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-18.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-18.mdx new file mode 100644 index 000000000..9012fdb40 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-18.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc22 +**`(chore):`** - Add test definitions that contain examples(@amckinney) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-19.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-19.mdx new file mode 100644 index 000000000..3fded50f1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-19.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc23 +**`(chore):`** - Support reading AsyncAPI Schemas (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-20.mdx new file mode 100644 index 000000000..122bf03eb --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-20.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc25 +**`(chore):`** - Add test fern definitions with endpoint examples(@amckinney) + +## 0.15.0-rc24 +**`(chore):`** - `fern generate --docs` runs validation on the the docs configuration (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-25.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-25.mdx new file mode 100644 index 000000000..63780b33b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-25.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc26 +**`(chore):`** - `fern generate --docs` will no longer fail because of network timeout issues (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-26.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-26.mdx new file mode 100644 index 000000000..b2ecccad1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-26.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc27 +**`(chore):`** - Support `go-fiber` generator (@connormahon34) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-29.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-29.mdx new file mode 100644 index 000000000..4d3ba146a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-29.mdx @@ -0,0 +1,4 @@ +## 0.15.0-rc28 +**`(chore):`** - Bump generator versions to the latest (@amckinney) +- Send undiscriminated union type names to docs generation (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-09-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-09-30.mdx new file mode 100644 index 000000000..4b7f253d8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-09-30.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc29 +**`(chore):`** - `--local` mode of the Fern CLI now correctly copies over generated typescript code (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-01.mdx new file mode 100644 index 000000000..6e2e90a3c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-01.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc31 +**`(chore):`** - Server side generators are tested with output mode local files (@dsinghvi) + +## 0.15.0-rc30 +**`(chore):`** - Generator snapshot tester supports custom configs (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-05.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-05.mdx new file mode 100644 index 000000000..d31fff2da --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-05.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc32 +**`(chore):`** - Fix discriminated union parsing in AsyncAPI import (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-06.mdx new file mode 100644 index 000000000..19da599db --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-06.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc34 +**`(chore):`** - Fix: OpenAPI importer scans const fields when detecting discriminated unions (@dsinghvi) + +## 0.15.0-rc33 +**`(chore):`** - Read `const` values from OpenAPI spec (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-08.mdx new file mode 100644 index 000000000..e76af3ef4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-08.mdx @@ -0,0 +1,9 @@ +## 0.15.0-rc37 +**`(chore):`** - **fix**: delete existing output on local generation (@dsinghvi) + +## 0.15.0-rc36 +**`(chore):`** - **fix**: seed CLI builds docker image (@dsinghvi) + +## 0.15.0-rc35 +**`(chore):`** - fix seed examples to contain datetime with UTC timezone (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-10.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-10.mdx new file mode 100644 index 000000000..e6c347c38 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-10.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc38 +**`(chore):`** - Additional seed test definitions (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-11.mdx new file mode 100644 index 000000000..b7f984b1d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-11.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc39 +**`(chore):`** - Support generating python snippets for documentation + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-13.mdx new file mode 100644 index 000000000..3a552bb5f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-13.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc40 +**`(chore):`** Release 0.15.0-rc40 + +## 0.15.0-rc41 +**`(chore):`** - Rerelease SDKs (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-15.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-15.mdx new file mode 100644 index 000000000..9ed9a4e9c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-15.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc42 +**`(chore):`** - Support generating preview url when generating docs (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-20.mdx new file mode 100644 index 000000000..874b92922 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-20.mdx @@ -0,0 +1,12 @@ +## 0.15.0-rc46 +**`(chore):`** - Support literal examples (@dsinghvi) + +## 0.15.0-rc45 +**`(chore):`** - **fix**: OpenAPI importer removes global headers from example generation (@dsinghvi) + +## 0.15.0-rc44 +**`(chore):`** - OpenAPI example parser handles query params that are arrays (@dsinghvi) + +## 0.15.0-rc43 +**`(chore):`** - Support reading examples from OpenAPI spec (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-24.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-24.mdx new file mode 100644 index 000000000..692dbcfa6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-24.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc47 +**`(chore):`** - Support `--custom fixture` in seed CLI for snapshot tests (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-25.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-25.mdx new file mode 100644 index 000000000..1e7b2e8b7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-25.mdx @@ -0,0 +1,7 @@ +## 0.15.0-rc49 +**`(chore):`** - Improve logging when `.fernignore` is present in directory (@dsinghvi) + +## 0.15.0-rc48 +**`(chore):`** - Upgrade Go generator IR version (@amckinney) +- `response-property` validation rules now handle aliases (@amckinney) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-26.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-26.mdx new file mode 100644 index 000000000..0ed715ecc --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-26.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc50 +**`(chore):`** - Not a user facing change: IR for `property-response` uses correct typeId (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-27.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-27.mdx new file mode 100644 index 000000000..6e6ac916c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-27.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc52 +**`(chore):`** - **fix**: OpenAPI importer handles multiple header security schemes + +## 0.15.0-rc51 +**`(chore):`** - **No user facing changes** - Seed testing CLI doesn't require generator languages to support testing OpenAPI/Postman generators + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-28.mdx new file mode 100644 index 000000000..804900ef1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-28.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc53 +**`(chore):`** - **feature**: OpenAPI importer supports `x-fern-header-variable-name` to customize the header name in the SDK + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-10-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-10-30.mdx new file mode 100644 index 000000000..6102baeff --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-10-30.mdx @@ -0,0 +1,12 @@ +## 0.15.0-rc57 +**`(chore):`** - Retrigger latest release (@dsinghvi) + +## 0.15.0-rc56 +**`(chore):`** **fix**: AsyncAPI importer reads inlined message payloads (@dsinghvi) + +## 0.15.0-rc55 +**`(chore):`** - **fix**: OpenAPI parser handles converting discriminated unions that contain`allOf` references with the discriminant (@dsinghvi) + +## 0.15.0-rc54 +**`(chore):`** - **feature**: OpenAPI importer supports resolving multi-file references (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-01.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-01.mdx new file mode 100644 index 000000000..915f73be1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-01.mdx @@ -0,0 +1,12 @@ +## 0.15.0-rc63 +**`(chore):`** _No user facing changes_ + +## 0.15.0-rc61 +**`(chore):`** - OpenAPI importer skips example generation if `allOf` examples are undefined (@dsinghvi) + +## 0.15.0-rc60 +**`(chore):`** - Filter out undefined schemas when reading AsyncAPI (@dsinghvi) + +## 0.15.0-rc59 +**`(chore):`** fix: OpenAPI importer handles resolving property schema references (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-02.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-02.mdx new file mode 100644 index 000000000..4cd57dc50 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-02.mdx @@ -0,0 +1,6 @@ +## 0.15.0-rc65 +**`(chore):`** _No user facing changes_ + +## 0.15.0-rc64 +**`(chore):`** _No user facing changes_ + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-03.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-03.mdx new file mode 100644 index 000000000..9dc09753c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-03.mdx @@ -0,0 +1,9 @@ +## 0.15.0-rc68 +**`(chore):`** _No user facing changes_ + +## 0.15.0-rc67 +**`(chore):`** _No user facing changes_ + +## 0.15.0-rc66 +**`(chore):`** - **fix**: OpenAPI importer always uses tags to organize endpoints if present (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-08.mdx new file mode 100644 index 000000000..039c8021e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-08.mdx @@ -0,0 +1,3 @@ +## 0.15.0-rc70 +**`(chore):`** - Support a `x-fern-streaming` extension in the OpenAPI importer (@amckinney) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-09.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-09.mdx new file mode 100644 index 000000000..095503a28 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-09.mdx @@ -0,0 +1,12 @@ +## 0.15.0-rc74 +**`(chore):`** Release 0.15.0-rc74 + +## 0.15.0-rc73 +**`(chore):`** - unblock ir-v28 generation + +## 0.15.0-rc72 +**`(chore):`** Release 0.15.0-rc72 + +## 0.15.0-rc71 +**`(chore):`** - CLI supports running typescript generators 0.8.1+ (@dsinghvi) + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-14.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-14.mdx new file mode 100644 index 000000000..357dc1419 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-14.mdx @@ -0,0 +1,17 @@ +## 0.15.0-rc75 +**`(chore):`** - **feature**: mark `in-development` endpoints as `beta` in the generated docs + +## 0.15.0-rc77 +**`(chore):`** ## What's Changed +* **internal** Introduce IR version 30 for example @amckinney in https://github.com/fern-api/fern/pull/2273 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc76...0.15.0-rc77 + +## 0.15.0-rc76 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer handles parsing server variables by @dsinghvi in https://github.com/fern-api/fern/pull/2275 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc75...0.15.0-rc76 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-15.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-15.mdx new file mode 100644 index 000000000..5d2fe7ed3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-15.mdx @@ -0,0 +1,26 @@ +## 0.15.0-rc81 +**`(chore):`** ## What's Changed +* **Internal**: Add fern-python generator versions for IRv30 by @amckinney in https://github.com/fern-api/fern/pull/2283 +* **Internal**: Fix fern-java-model maven coordinates by @amckinney in https://github.com/fern-api/fern/pull/2284 +* **Internal**: Generate fern-api/ir-go repository by @amckinney in https://github.com/fern-api/fern/pull/2285 +* **Internal**: Set IRv29 version for TS and Java by @amckinney in https://github.com/fern-api/fern/pull/2286 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc80...0.15.0-rc81 + +## 0.15.0-rc80 +**`(chore):`** ## What's Changed +* fix: don't compare root api files if dependency has no endpoints by @dsinghvi in https://github.com/fern-api/fern/pull/2282 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc79...0.15.0-rc80 + +## 0.15.0-rc79 +**`(chore):`** ## What's Changed +* internal: Add more granular test definitions by @amckinney in https://github.com/fern-api/fern/pull/2277 +* feature: update fhir.yml and setup workflow for registration by @dsinghvi in https://github.com/fern-api/fern/pull/2280 +* fix: register union base properties in docs by @dsinghvi in https://github.com/fern-api/fern/pull/2281 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc77...0.15.0-rc78 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-16.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-16.mdx new file mode 100644 index 000000000..bccc7c481 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-16.mdx @@ -0,0 +1,21 @@ +## 0.15.0-rc84 +**`(chore):`** ## What's Changed +* fix: `fern generate --local` no longer fails if `.fernignore` is present and there are no new changes by @dsinghvi in https://github.com/fern-api/fern/pull/2291 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc83...0.15.0-rc84 + +## 0.15.0-rc83 +**`(chore):`** ## What's Changed +* fix: default to service availability if endpoint availability is not present by @dsinghvi in https://github.com/fern-api/fern/pull/2290 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc82...0.15.0-rc83 + +## 0.15.0-rc82 +**`(chore):`** ## What's Changed +* feature: introduce `x-fern-type` extension to the OpenAPI spec by @dsinghvi in https://github.com/fern-api/fern/pull/2289 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc81...0.15.0-rc82 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-17.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-17.mdx new file mode 100644 index 000000000..d3ddfb9b5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-17.mdx @@ -0,0 +1,14 @@ +## 0.15.0-rc88 +**`(chore):`** ## What's Changed +* feature: introduce `fern token` command to generate `FERN_TOKEN` by @dsinghvi in https://github.com/fern-api/fern/pull/2295 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc87...0.15.0-rc88 + +## 0.15.0-rc87 +**`(chore):`** ## What's Changed +* fix: non .fernignored files are deleted on successive regeneration by @dsinghvi in https://github.com/fern-api/fern/pull/2294 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.0-rc84...0.15.0-rc85 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-20.mdx new file mode 100644 index 000000000..6af29ab27 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-20.mdx @@ -0,0 +1,28 @@ +## 0.15.2 +**`(chore):`** - **fix**: running `fern generate --local` with a `.fernignore` works in Github Actions (@dsinghvi) + +## 0.15.2-rc3 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.15.2-rc1...0.15.2-rc3 + +## 0.15.2-rc2 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.15.2-rc1...0.15.2-rc2 + +## 0.15.2-rc1 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.15.2-rc0...0.15.2-rc1 + +## 0.15.2-rc0 +**`(chore):`** ## What's Changed +* upgrade json5 to `2.2.2` by @dsinghvi in https://github.com/fern-api/fern/pull/2304 +* chore: remove wire verification by @dsinghvi in https://github.com/fern-api/fern/pull/2305 +* chore: upgrade yaml to 2.3.3 by @dsinghvi in https://github.com/fern-api/fern/pull/2306 +* fix: `fern generate --local` with `.fernignore` fails in Github Workflow by @dsinghvi in https://github.com/fern-api/fern/pull/2307 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.1...0.15.2-rc0 + +## 0.15.1 +**`(chore):`** _It's been forever since we released a non release candidate!_ + +**Break** +- The file structure of the Fern folder has now changed. If you have a single API, your definition can live directly at the top-level. If you have multiple, they will need to live in an apis folder. When you run `fern upgrade` the directory structure will automatically be updated. + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-21.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-21.mdx new file mode 100644 index 000000000..4cc9d1875 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-21.mdx @@ -0,0 +1,14 @@ +## 0.15.3 +**`(chore):`** ## What's Changed +* fix: migrate from registry-node to fdr-sdk by @dsinghvi in https://github.com/fern-api/fern/pull/2313 +* build(deps): bump @redocly/openapi-core from 1.4.0 to 1.4.1 by @dependabot in https://github.com/fern-api/fern/pull/2312 +* build(deps): bump @fern-api/venus-api-sdk from 0.0.20-7-g6ea8dc4 to 0.0.36 by @dependabot in https://github.com/fern-api/fern/pull/2311 +* fix: docs preview server returns the proper load docs by url response by @dsinghvi in https://github.com/fern-api/fern/pull/2315 +* build(deps-dev): bump @types/swagger2openapi from 7.0.0 to 7.0.4 by @dependabot in https://github.com/fern-api/fern/pull/2309 +* feature: introduce `idempotency` configuration by @dsinghvi in https://github.com/fern-api/fern/pull/2302 +* chore: add `idempotency-headers` to fern by @dsinghvi in https://github.com/fern-api/fern/pull/2318 +* chore: typescript generators depend on ir v31 by @dsinghvi in https://github.com/fern-api/fern/pull/2320 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.2...0.15.3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-27.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-27.mdx new file mode 100644 index 000000000..384c8dc22 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-27.mdx @@ -0,0 +1,27 @@ +## 0.15.5 +**`(chore):`** ## What's Changed +* fix: forward along global headers when registering docs by @dsinghvi in https://github.com/fern-api/fern/pull/2358 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.4...0.15.5 + +## 0.15.4 +**`(chore):`** ## What's Changed +* chore: use correct URL for preview server by @dsinghvi in https://github.com/fern-api/fern/pull/2322 +* fix: docs preview server no longer has cors requirement by @dsinghvi in https://github.com/fern-api/fern/pull/2323 +* Add test def for optional enum query param by @davidkonigsberg in https://github.com/fern-api/fern/pull/2317 +* chore: migrate to github workflows by @dsinghvi in https://github.com/fern-api/fern/pull/2327 +* chore: migrate documentation to core repo by @dsinghvi in https://github.com/fern-api/fern/pull/2328 +* feature: add example docs by @dsinghvi in https://github.com/fern-api/fern/pull/2342 +* Change 'let us know' link from email to issue by @zachkirsch in https://github.com/fern-api/fern/pull/2344 +* fix: links to generators by making them exact urls by @dannysheridan in https://github.com/fern-api/fern/pull/2346 +* feature: seed CLI runs compile commands for verification by @dsinghvi in https://github.com/fern-api/fern/pull/2351 +* Improvement: document using an enum name and value by @dannysheridan in https://github.com/fern-api/fern/pull/2349 +* chore: test definition for bearer auth with environment variable by @dsinghvi in https://github.com/fern-api/fern/pull/2353 +* fix: resolve referenced examples for path parameters by @dsinghvi in https://github.com/fern-api/fern/pull/2356 + +## New Contributors +* @davidkonigsberg made their first contribution in https://github.com/fern-api/fern/pull/2317 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.3...0.15.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-28.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-28.mdx new file mode 100644 index 000000000..c1de24d73 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-28.mdx @@ -0,0 +1,17 @@ +## 0.15.6 +**`(chore):`** ## What's Changed +* docs: how to control display order of your API reference by @dsinghvi in https://github.com/fern-api/fern/pull/2366 +* docs: .NET server code generator for C# by @dannysheridan in https://github.com/fern-api/fern/pull/2354 +* docs: improve fern's readme.md by @dannysheridan in https://github.com/fern-api/fern/pull/2370 +* docs: improve images in readme by @dannysheridan in https://github.com/fern-api/fern/pull/2371 +* docs: improve readme image by @dannysheridan in https://github.com/fern-api/fern/pull/2372 +* docs: add getting started to readme by @dannysheridan in https://github.com/fern-api/fern/pull/2380 +* docs: update bug-report.md by @dannysheridan in https://github.com/fern-api/fern/pull/2375 +* docs: file structure upon fern init by @dannysheridan in https://github.com/fern-api/fern/pull/2381 +* fix: fern no longer fails to parse nested maps (`map>`)by @mmolash in https://github.com/fern-api/fern/pull/2369 + +## New Contributors +* @mmolash made their first contribution in https://github.com/fern-api/fern/pull/2369 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.5...0.15.6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-11-30.mdx b/fern/products/cli-api-reference/cli-changelog/2023-11-30.mdx new file mode 100644 index 000000000..155149c8a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-11-30.mdx @@ -0,0 +1,32 @@ +## 0.15.10 +**`(chore):`** ## What's Changed +* seed: generators can be tested with different output versions by @amckinney in https://github.com/fern-api/fern/pull/2401 +* seed: support optional compile commands by @amckinney in https://github.com/fern-api/fern/pull/2409 +* fix: example properties for imported types are properly serialized by @dsinghvi in https://github.com/fern-api/fern/pull/2407 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.9...0.15.10 + +## 0.15.9 +**`(chore):`** ## What's Changed +* fix: properly convert examples of imported types by @dsinghvi in https://github.com/fern-api/fern/pull/2404 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.8...0.15.9 + +## 0.15.8 +**`(chore):`** ## What's Changed +* fix: see docker logs when running `fern generate --local` by @dsinghvi in https://github.com/fern-api/fern/pull/2400 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.7...0.15.8 + +## 0.15.7 +**`(chore):`** ## What's Changed +* fix: compress fhir definition by having types extend `BaseResource` by @dsinghvi in https://github.com/fern-api/fern/pull/2387 +* docs: availability in Fern Definition by @dannysheridan in https://github.com/fern-api/fern/pull/2395 +* fix: OpenAPI importer generates non-conflicting names for multipart file upload endpoints by @dsinghvi in https://github.com/fern-api/fern/pull/2399 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.6...0.15.7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-04.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-04.mdx new file mode 100644 index 000000000..144a64335 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-04.mdx @@ -0,0 +1,12 @@ +## 0.15.11 +**`(chore):`** ## What's Changed +* feature: use terminal link to render clickable docs URL by @dannysheridan in https://github.com/fern-api/fern/pull/2391 +* docs: Explain how SDKs and Docs use audiences by @dannysheridan in https://github.com/fern-api/fern/pull/2411 +* feature: send property level availability information to docs by @dsinghvi in https://github.com/fern-api/fern/pull/2420 +* feature: support undiscriminated union examples in ir by @dsinghvi in https://github.com/fern-api/fern/pull/2425 +* feature: support x-fern-ignore at the schema level by @dsinghvi in https://github.com/fern-api/fern/pull/2428 +* fix: correctly validate referenced examples that are being imported by @dsinghvi in https://github.com/fern-api/fern/pull/2429 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.10...0.15.11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-06.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-06.mdx new file mode 100644 index 000000000..e57d885fc --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-06.mdx @@ -0,0 +1,36 @@ +## 0.15.16 +**`(chore):`** ## What's Changed +* docs: Add screenshots to availability page by @dannysheridan in https://github.com/fern-api/fern/pull/2448 +* feature: OpenAPI supports `application/pdf` content-type by @amckinney in https://github.com/fern-api/fern/pull/2450 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.15...0.15.16 + +## 0.15.15 +**`(chore):`** ## What's Changed +* fix: validate responses that are imported correctly by @dsinghvi in https://github.com/fern-api/fern/pull/2447 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.14...0.15.15 + +## 0.15.14 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.15.13...0.15.14 + +## 0.15.13 +**`(chore):`** ## What's Changed +* feature: OpenAPI importer supports `audio/mpeg` content type by @dsinghvi in https://github.com/fern-api/fern/pull/2446 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.12...0.15.13 + +## 0.15.12 +**`(chore):`** ## What's Changed +* internal: seed supports configurable output mode by @dsinghvi in https://github.com/fern-api/fern/pull/2430 +* internal: add examples to literal-headers test definition by @amckinney in https://github.com/fern-api/fern/pull/2437 +* internal: seed fixtures are dynamic by @amckinney in https://github.com/fern-api/fern/pull/2440 +* documentation: broken links in quickstart by @dannysheridan in https://github.com/fern-api/fern/pull/2444 +* feature: use tag order to set `navigation` in fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/2445 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.11...0.15.12 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-07.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-07.mdx new file mode 100644 index 000000000..0c0bdb8fe --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-07.mdx @@ -0,0 +1,14 @@ +## 0.15.18 +**`(chore):`** ## What's Changed +* fix: overrides from `x-fern-overrides-filepath` file win on tie by @dsinghvi in https://github.com/fern-api/fern/pull/2455 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.17...0.15.18 + +## 0.15.17 +**`(chore):`** ## What's Changed +* feature: support overlaying extensions using `x-fern-overrides-filepath` by @dsinghvi in https://github.com/fern-api/fern/pull/2452 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.16...0.15.17 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-08.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-08.mdx new file mode 100644 index 000000000..1f11119c5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-08.mdx @@ -0,0 +1,19 @@ +## 0.16.1 +**`(chore):`** ## What's Changed +* test: introduce a test definition for optional by @dsinghvi in https://github.com/fern-api/fern/pull/2460 +* fix: aliases with `x-fern-sdk-group-name` are stored in the right file by @dsinghvi in https://github.com/fern-api/fern/pull/2461 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.0...0.16.1 + +## 0.16.0 +**`(chore):`** ## What's Changed +* docs: add docs quickstart by @dannysheridan in https://github.com/fern-api/fern/pull/2456 +* docs: fix callout spacing by @dannysheridan in https://github.com/fern-api/fern/pull/2457 +* docs: example provided for path parameter by @dannysheridan in https://github.com/fern-api/fern/pull/2458 +* *feature*: support `x-fern-sdk-group-name` on schemas by @dsinghvi in https://github.com/fern-api/fern/pull/2459 + **NOTE** The OpenAPI importer was drastically modified, so be careful upgrading to `0.16.0` and report any issues! + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.15.18...0.16.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-10.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-10.mdx new file mode 100644 index 000000000..c0824444f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-10.mdx @@ -0,0 +1,11 @@ +## 0.16.2 +**`(chore):`** ## What's Changed +* docs: show example of list by @dannysheridan in https://github.com/fern-api/fern/pull/2464 +* docs: improve cli descriptions by @dannysheridan in https://github.com/fern-api/fern/pull/2466 +* fix: openapi importer enum generation is valid @dsinghvi in https://github.com/fern-api/fern/pull/2468 +* fix: openapi importer request references generation is valid @dsinghvi in https://github.com/fern-api/fern/pull/2468 +* fix: introduce `fern openapi-ir` for debugging @dsinghvi in https://github.com/fern-api/fern/pull/2468 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.1...0.16.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-11.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-11.mdx new file mode 100644 index 000000000..977b3e419 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-11.mdx @@ -0,0 +1,7 @@ +## 0.16.3 +**`(chore):`** ## What's Changed +* improvement: openapi importer enum name generator for like `>`, `<` , `<=`, `>=` by @dsinghvi in https://github.com/fern-api/fern/pull/2471 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.2...0.16.3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-13.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-13.mdx new file mode 100644 index 000000000..152f6327f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-13.mdx @@ -0,0 +1,25 @@ +## 0.16.6 +**`(chore):`** ## What's Changed +* fix: openapi importer properly detects json response by @dsinghvi in https://github.com/fern-api/fern/pull/2487 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.5...0.16.6 + +## 0.16.5 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer detects all possible `application/json` request and response content types by @dsinghvi in https://github.com/fern-api/fern/pull/2486 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.4...0.16.5 + +## 0.16.4 +**`(chore):`** ## What's Changed +* internal: enable typescript code snippets in fern docs by @dsinghvi in https://github.com/fern-api/fern/pull/2473 +* internal: `generators.yml` in public-api by @dsinghvi in https://github.com/fern-api/fern/pull/2475 +* document: API-wide global configs in api.yml by @dannysheridan in https://github.com/fern-api/fern/pull/2478 +* fix: escape OpenAPI string examples that star with `$` by @dsinghvi in https://github.com/fern-api/fern/pull/2483 +* fix: handle OpenAPI importer handles unions `type: [string, object]` by @dsinghvi in https://github.com/fern-api/fern/pull/2483 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.3...0.16.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-14.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-14.mdx new file mode 100644 index 000000000..735ea9485 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-14.mdx @@ -0,0 +1,7 @@ +## 0.16.7 +**`(chore):`** ## What's Changed +* fix: openapi importer correctly imports across nested fern definition files by @dsinghvi in https://github.com/fern-api/fern/pull/2491 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.6...0.16.7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-17.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-17.mdx new file mode 100644 index 000000000..7dbe84911 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-17.mdx @@ -0,0 +1,19 @@ +## 0.16.9 +**`(chore):`** ## What's Changed +* fix: improve `fern check` only logging errors by @dsinghvi in https://github.com/fern-api/fern/pull/2501 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.8...0.16.9 + +## 0.16.8 +**`(chore):`** ## What's Changed +* chore: run ci on forked PRs for contributors by @dsinghvi in https://github.com/fern-api/fern/pull/2494 +* internal: seed only runs one container per script for all fixtures by @armandobelardo in https://github.com/fern-api/fern/pull/2492 +* fix: typo in docs starter example repo by @dannysheridan in https://github.com/fern-api/fern/pull/2496 +* fix: header on quickstart page by @dannysheridan in https://github.com/fern-api/fern/pull/2497 +* fix: `fern write-definition` doesn't throw on non-OpenAPI workspaces by @dsinghvi in https://github.com/fern-api/fern/pull/2499 +* fix: `fern check` logs `All checks passed` if no errors @dsinghvi in https://github.com/fern-api/fern/pull/2499 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.7...0.16.8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-18.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-18.mdx new file mode 100644 index 000000000..ba0bcbbab --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-18.mdx @@ -0,0 +1,17 @@ +## 0.16.11 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer properly escapes examples that start with $ sign by @dsinghvi in https://github.com/fern-api/fern/pull/2509 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.10...0.16.11 + +## 0.16.10 +**`(chore):`** ## What's Changed +* document: x-fern-server-name extension by @dannysheridan in https://github.com/fern-api/fern/pull/2504 +* feature: add x-fern-parameter-name extension by @amckinney in https://github.com/fern-api/fern/pull/2489 +* chore: seed exits 1 if tests fail by @dsinghvi in https://github.com/fern-api/fern/pull/2505 +* fix: x-fern-streaming can be used with x-fern-group-name by @amckinney in https://github.com/fern-api/fern/pull/2488 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.9...0.16.10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-20.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-20.mdx new file mode 100644 index 000000000..6bf65c488 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-20.mdx @@ -0,0 +1,14 @@ +## 0.16.12 +**`(chore):`** ## What's Changed +* internal: seed accepts path to api directory for custom fixture by @dsinghvi in https://github.com/fern-api/fern/pull/2516 +* fix: fern python generators rely on ir v31 by @dsinghvi in https://github.com/fern-api/fern/pull/2517 +* feature: run prettier on doc strings by @dsinghvi in https://github.com/fern-api/fern/pull/2508 +* fix: use `JSON.stringify` when writing IR by @dsinghvi in https://github.com/fern-api/fern/pull/2511 +* fix: OpenAPI importer handles self referencing schemas by @dsinghvi in https://github.com/fern-api/fern/pull/2512 +* fix: handle explicit `null` strings in OpenAPI schemas by @dsinghvi in https://github.com/fern-api/fern/pull/2514 +* fix: `ResourceList` in fhir is an undiscriminated union with literal properties by @armandobelardo in https://github.com/fern-api/fern/pull/2513 +* fix: add `int`, `float`, and `complex` to python reserved words by @armandobelardo in https://github.com/fern-api/fern/pull/2523 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.11...0.16.12 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-21.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-21.mdx new file mode 100644 index 000000000..856a39a4a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-21.mdx @@ -0,0 +1,8 @@ +## 0.16.13 +**`(chore):`** ## What's Changed +* feature: support property level audiences by @dsinghvi in https://github.com/fern-api/fern/pull/2526 +* feature: openapi importer supports importing property level audiences by @dsinghvi in https://github.com/fern-api/fern/pull/2528 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.12...0.16.13 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-22.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-22.mdx new file mode 100644 index 000000000..0fcb1969e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-22.mdx @@ -0,0 +1,22 @@ +## 0.16.16 +**`(chore):`** ## What's Changed +* fix: respect audiences on inlined request bodies by @dsinghvi in https://github.com/fern-api/fern/pull/2535 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.15...0.16.16 + +## 0.16.15 +**`(chore):`** ## What's Changed +* fix: unknown types should be treated as optional when validating examples by @dsinghvi in https://github.com/fern-api/fern/pull/2532 +* fix: `write-definition` writes to hidden folder by @dsinghvi in https://github.com/fern-api/fern/pull/2533 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.14...0.16.15 + +## 0.16.14 +**`(chore):`** ## What's Changed +* feature: `fern write-definition` writes out api dependencies by @dsinghvi in https://github.com/fern-api/fern/pull/2531 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.13...0.16.14 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-23.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-23.mdx new file mode 100644 index 000000000..04d8e982b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-23.mdx @@ -0,0 +1,10 @@ +## 0.16.19 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.16.17...0.16.19 + +## 0.16.17 +**`(chore):`** ## What's Changed +* feature: openapi importer generates oauth 2 scopes enum by @dsinghvi in https://github.com/fern-api/fern/pull/2540 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.16...0.16.17 + diff --git a/fern/products/cli-api-reference/cli-changelog/2023-12-29.mdx b/fern/products/cli-api-reference/cli-changelog/2023-12-29.mdx new file mode 100644 index 000000000..8f7b25c29 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2023-12-29.mdx @@ -0,0 +1,16 @@ +## 0.16.20 +**`(chore):`** ## What's Changed +* feature: `push` mode for GitHub repository by @dsinghvi in https://github.com/fern-api/fern/pull/2546 + ```yaml + # generators.yml + - name: fernapi/fern-python-sdk + ... + github: + mode: push + repository: owner/repo + branch: # optional branch, if omitted uses the default channel + ``` + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.19...0.16.20 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-01.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-01.mdx new file mode 100644 index 000000000..465bb738e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-01.mdx @@ -0,0 +1,14 @@ +## 0.16.22 +**`(chore):`** ## What's Changed +* fix: handle error declaration conflicts in OpenAPI importer by @dsinghvi in https://github.com/fern-api/fern/pull/2550 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.21...0.16.22 + +## 0.16.21 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer handles null `anyOf` with more than 3 variants by @dsinghvi in https://github.com/fern-api/fern/pull/2549 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.20...0.16.21 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-09.mdx new file mode 100644 index 000000000..78d22353b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-09.mdx @@ -0,0 +1,9 @@ +## 0.16.23 +**`(chore):`** ## What's Changed +* fix: make `generators.yml` optional if no generators by @dsinghvi in https://github.com/fern-api/fern/pull/2585 + +## New Contributors +* @minaelee made their first contribution in https://github.com/fern-api/fern/pull/2567 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.22...0.16.23 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-10.mdx new file mode 100644 index 000000000..169756f4b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-10.mdx @@ -0,0 +1,14 @@ +## 0.16.25 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer creates inline request schemas for singular allOf by @dsinghvi in https://github.com/fern-api/fern/pull/2591 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.24...0.16.25 + +## 0.16.24 +**`(chore):`** ## What's Changed +* fix: OpenAPI converter uses literals when anyOf has inlined enums by @dsinghvi in https://github.com/fern-api/fern/pull/2589 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.23...0.16.24 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-11.mdx new file mode 100644 index 000000000..37186176f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-11.mdx @@ -0,0 +1,17 @@ +## 0.16.28 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer adds common server path to endpoint path by @dsinghvi in https://github.com/fern-api/fern/pull/2603 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.27...0.16.28 + +## 0.16.27 +**`(chore):`** ## What's Changed +* test: Add test for file upload with query params by @amckinney in https://github.com/fern-api/fern/pull/2441 +* test: Replace /bin/bash with /bin/sh by @amckinney in https://github.com/fern-api/fern/pull/2595 +* docs: update quickstart.mdx by @minaelee in https://github.com/fern-api/fern/pull/2596 +* fix: send descriptions for union base properties when generating docs by @dsinghvi in https://github.com/fern-api/fern/pull/2601 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.25...0.16.26 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx new file mode 100644 index 000000000..6f3919356 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-12.mdx @@ -0,0 +1,26 @@ +## 0.16.31 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer visits nested `allOf` when inlined by @dsinghvi in https://github.com/fern-api/fern/pull/2615 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.30...0.16.31 + +## 0.16.30 +**`(chore):`** ## What's Changed +* feature: allow specifying OpenAPI overrides in generators.yml by @dsinghvi in https://github.com/fern-api/fern/pull/2613 + ```yaml + # generators.yml + openapi: + openapi-overrides: + ``` + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.29...0.16.30 + +## 0.16.29 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer supports reading `x-fern-sdk-return-value` by @dsinghvi in https://github.com/fern-api/fern/pull/2610 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.28...0.16.29 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-13.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-13.mdx new file mode 100644 index 000000000..c7f9d01d5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-13.mdx @@ -0,0 +1,7 @@ +## 0.16.32 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer handles converting boolean enums @dsinghvi in https://github.com/fern-api/fern/pull/2616 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.31...0.16.32 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-15.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-15.mdx new file mode 100644 index 000000000..ea95e6dc9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-15.mdx @@ -0,0 +1,8 @@ +## 0.16.33 +**`(chore):`** ## What's Changed +* feature: add `fern mock` command by @amckinney in https://github.com/fern-api/fern/pull/2618 +* feature: OpenAPI importer looks at `examples` property by @dsinghvi in https://github.com/fern-api/fern/pull/2621 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.32...0.16.33 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-17.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-17.mdx new file mode 100644 index 000000000..58e07da1a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-17.mdx @@ -0,0 +1,18 @@ +## 0.16.34 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer supports generating examples for `unknown` by @dsinghvi in https://github.com/fern-api/fern/pull/2624 +* fix: auto generation of primitive examples by @dsinghvi in https://github.com/fern-api/fern/pull/2625 +* fix: misc fixes to OpenAPI example generation by @dsinghvi in https://github.com/fern-api/fern/pull/2630 +* fix: `getAllProperties` visits references by @dsinghvi in https://github.com/fern-api/fern/pull/2631 +* fix: OpenAPI importer uses generated names for aliases by @dsinghvi in https://github.com/fern-api/fern/pull/2632 +* fix: inlined component schemas are added to __package__.yml by @dsinghvi in https://github.com/fern-api/fern/pull/2633 +* fix: OpenAPI importer handles property conflicts from grandparents by @dsinghvi in https://github.com/fern-api/fern/pull/2637 +* fix: OpenAPI importer replaces schemas that start with numbers with alphabetic notation by @dsinghvi in https://github.com/fern-api/fern/pull/2638 +* fix: upgrade fiddle sdk to `0.0.386` so that license generation works by @dsinghvi in https://github.com/fern-api/fern/pull/2643 +* fix: OpenAPI importer removes redundant path from environment by @dsinghvi in https://github.com/fern-api/fern/pull/2650 +* fix: OpenAPI importer doesn't extend aliased schemas that have a property conflict by @dsinghvi in https://github.com/fern-api/fern/pull/2651 +* fix: OpenAPI importer doesn't set name override for nested key value pair by @dsinghvi in https://github.com/fern-api/fern/pull/2652 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.33...0.16.34 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-18.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-18.mdx new file mode 100644 index 000000000..e79d81c1a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-18.mdx @@ -0,0 +1,7 @@ +## 0.16.35 +**`(chore):`** ## What's Changed +* fix: OpenAPI importer supports union examples by @dsinghvi in https://github.com/fern-api/fern/pull/2653 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.34...0.16.35 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-19.mdx new file mode 100644 index 000000000..50e4a7d3a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-19.mdx @@ -0,0 +1,8 @@ +## 0.16.36 +**`(chore):`** ## What's Changed +* feature: CLI supports running Ruby sdk + model generator by @armandobelardo in https://github.com/fern-api/fern/pull/2570 +* fix: OpenAPI importer adds variables accordingly by @dsinghvi in https://github.com/fern-api/fern/pull/2667 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.35...0.16.36 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-25.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-25.mdx new file mode 100644 index 000000000..f69c7c00e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-25.mdx @@ -0,0 +1,14 @@ +## 0.16.37 +**`(chore):`** ## What's Changed +* (fix): Allow Ruby generator to work on IRv32 by @armandobelardo in https://github.com/fern-api/fern/pull/2668 +* (chore): Go generators use IRv32 by @amckinney in https://github.com/fern-api/fern/pull/2672 +* (fix): python sdk sends enum value for inlined requests by @dsinghvi in https://github.com/fern-api/fern/pull/2793 +* (release): 0.8.0 of python-sdk generator by @dsinghvi in https://github.com/fern-api/fern/pull/2795 +* (fix): OpenAPI importer query parameters always generate valid names by @dsinghvi in https://github.com/fern-api/fern/pull/2801 +* (fix): OpenAPI importer example generation skips object query params by @dsinghvi in https://github.com/fern-api/fern/pull/2800 + +## New Contributors +* @SK-Sam made their first contribution in https://github.com/fern-api/fern/pull/2687 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.36...0.16.37 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-26.mdx new file mode 100644 index 000000000..c3abb9a67 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-26.mdx @@ -0,0 +1,15 @@ +## 0.16.39 +**`(chore):`** ## What's Changed +* (release): support scanning env variable for auth in python sdk generator 0.8.1 by @dsinghvi in https://github.com/fern-api/fern/pull/2811 +* (feature): introduce nuget output location by @dsinghvi in https://github.com/fern-api/fern/pull/2812 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.38...0.16.39 + +## 0.16.38 +**`(chore):`** ## What's Changed +* (fix): OpenAPI importer uses the `value` field when looking at `examples` by @dsinghvi in https://github.com/fern-api/fern/pull/2803 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.37...0.16.38 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-01-29.mdx b/fern/products/cli-api-reference/cli-changelog/2024-01-29.mdx new file mode 100644 index 000000000..0b8be0439 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-01-29.mdx @@ -0,0 +1,25 @@ +## 0.16.41 +**`(chore):`** ## What's Changed +* (feature): OpenAPI importer supports format `json-string` by @dsinghvi in https://github.com/fern-api/fern/pull/2827 + ```yaml + MySchema: + type: string + format: json-string # <---- OpenAPI importer handles this + ``` + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.40...0.16.41 + +## 0.16.40 +**`(chore):`** ## What's Changed +* (fix): add a `disable-example` flag for generators by @dsinghvi in https://github.com/fern-api/fern/pull/2826 + ```yaml + generators: + - name: ... + version: ... + disable-examples: true # A temporary workaround while we iron out example deserialization bugs in python + ``` + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.39...0.16.40 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-01.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-01.mdx new file mode 100644 index 000000000..21cbea7a6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-01.mdx @@ -0,0 +1,15 @@ +## 0.16.42 +**`(chore):`** ## What's Changed +* improvement: TypeScript SDK steps in quickstart by @dannysheridan in https://github.com/fern-api/fern/pull/2829 +* fix: increase python generator recursion depth to allow for deeply nested examples by @armandobelardo in https://github.com/fern-api/fern/pull/2825 +* fix: OpenAPI importer respects `x-examples` key by @dsinghvi in https://github.com/fern-api/fern/pull/2845 +* (fix): Add support for custom code samples by @abvthecity in https://github.com/fern-api/fern/pull/2842 +* (fix): OpenAPI importer brings in example names by @dsinghvi in https://github.com/fern-api/fern/pull/2847 +* (fix): `fern write-definition` does not remove markdown formatting by @dsinghvi in https://github.com/fern-api/fern/pull/2849 +* (feature): introduce `x-fern-resolutions` extension by @dsinghvi in https://github.com/fern-api/fern/pull/2844 + +## New Contributors +* @abvthecity made their first contribution in https://github.com/fern-api/fern/pull/2842 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.41...0.16.42 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-04.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-04.mdx new file mode 100644 index 000000000..aaf2e3d9f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-04.mdx @@ -0,0 +1,12 @@ +## 0.16.43 +**`(chore):`** ## What's Changed +* (ruby): 0.0.1 Release by @armandobelardo in https://github.com/fern-api/fern/pull/2858 +* (java): java sdk generator supports idempotency headers by @dsinghvi in https://github.com/fern-api/fern/pull/2884 +* (cli): `x-fern-streaming` respects extensions on stream property by @dsinghvi in https://github.com/fern-api/fern/pull/2853 +* (cli): list overrides win over OpenAPI and do not get combined by @dsinghvi in https://github.com/fern-api/fern/pull/2854 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.43-rc0...0.16.43-rc1 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.43-rc1...0.16.43-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-06.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-06.mdx new file mode 100644 index 000000000..382c88292 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-06.mdx @@ -0,0 +1,20 @@ +## 0.16.44-rc1 +**`(chore):`** ## What's Changed +* (feature): additional layout options for docs by @abvthecity in https://github.com/fern-api/fern/pull/2781 +* (feature): `x-fern-examples` extension in OpenAPI operation by @abvthecity in https://github.com/fern-api/fern/pull/2856 +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.43...0.16.44-rc0 +* (java): java sdk, model and spring generators now support boolean literals by @dsinghvi in https://github.com/fern-api/fern/pull/2887 +* fixes: 💎 Ruby: Fix typos, imports and several other papercuts within SDK generation by @armandobelardo in https://github.com/fern-api/fern/pull/2868 +* fix: Ruby: fix version header and file write location by @armandobelardo in https://github.com/fern-api/fern/pull/2889 +* fix: ruby: support deeply nested objects correctly by @armandobelardo in https://github.com/fern-api/fern/pull/2895 +* chore: allow releasing RCs through Actions by @armandobelardo in https://github.com/fern-api/fern/pull/2896 +* fix: update the dev release workflow to leverage full commit history by @armandobelardo in https://github.com/fern-api/fern/pull/2897 +* additional config options by @abvthecity in https://github.com/fern-api/fern/pull/2781 +* improvement: update readme to expose fastapi configs by @armandobelardo in https://github.com/fern-api/fern/pull/2901 +* fix: ruby: address potential naming conflicts within SDK by @armandobelardo in https://github.com/fern-api/fern/pull/2902 +* fix: Ruby: ensure services always have a name by @armandobelardo in https://github.com/fern-api/fern/pull/2903 +* fix: improve handling color config for dark vs light themes by @abvthecity in https://github.com/fern-api/fern/pull/2904 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.16.43...0.16.44-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-07.mdx new file mode 100644 index 000000000..2360b318c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-07.mdx @@ -0,0 +1,21 @@ +## 0.17.1 +**`(chore):`** ## What's Changed +* (fix): OpenAPI overrides replaces list of primitives but merges list of objects by @dsinghvi in https://github.com/fern-api/fern/pull/2910 +* (fix): OpenAPI overrides replaces list of primitives but merges list of objects by @dsinghvi in https://github.com/fern-api/fern/pull/2910 +* (fix): use brightness not luminance to flip the color theme by @abvthecity in https://github.com/fern-api/fern/pull/2912 +api/fern/pull/2915 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.0...0.17.1 + +## 0.17.0 +**`(chore):`** - **break**: The OpenAPI importer now considers the `title` field when generating a schema name. It only considers this field if there is no whitespace and only contains alphabetic characters. We're constantly trying to improve Fern to generate as idiomatic code as possible and naming schemas correctly is a huge part of that. + + By upgrading the Fern CLI to a `0.17.x` version, any SDKs with the following OpenAPI would receive compile breaks b/c the object would be renamed as `Bar`. + ```yaml + Foo: + title: Bar + type: object + ``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-08.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-08.mdx new file mode 100644 index 000000000..713be5f88 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-08.mdx @@ -0,0 +1,7 @@ +## 0.17.2 +**`(chore):`** ## What's Changed +* (fix): misc improvements to OpenAPI example generation by @dsinghvi in https://github.com/fern-api/fern/pull/2916 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.1...0.17.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-09.mdx new file mode 100644 index 000000000..73c21fbd9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-09.mdx @@ -0,0 +1,21 @@ +## 0.17.7 +**`(chore):`** ## What's Changed +* (fix): read nuget output mode + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.3...0.17.5 + +## 0.17.4 +**`(chore):`** ## What's Changed +* (fix): only opt in go and ruby to capitalize initialisms by @dsinghvi in https://github.com/fern-api/fern/pull/2925 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.3...0.17.4 + +## 0.17.3 +**`(chore):`** ## What's Changed +* improvement: add better numbering support for snakecasing when smartCasing is enabled by @armandobelardo in https://github.com/fern-api/fern/pull/2921 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.1...0.17.3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-11.mdx new file mode 100644 index 000000000..123df5f91 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-11.mdx @@ -0,0 +1,8 @@ +## 0.17.8 +**`(chore):`** ## What's Changed +* (feature): support whitelabeling SDKs by @dsinghvi in https://github.com/fern-api/fern/pull/2928 +* (feature): css + js + measure img size by @abvthecity in https://github.com/fern-api/fern/pull/2872 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.7...0.17.8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-13.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-13.mdx new file mode 100644 index 000000000..5708b5f38 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-13.mdx @@ -0,0 +1,20 @@ +## 0.17.10 +**`(chore):`** ## What's Changed +* (typescript): typescript generator forwards runtime information via `X-Fern-Runtime` header by @dsinghvi in https://github.com/fern-api/fern/pull/2962 +* (python): Remove literals from the function signature by @armandobelardo in https://github.com/fern-api/fern/pull/2952 +* (fix): TypeScript SDK generator no longer enables `noUnusedParameters` in tsconfg.json by @dsinghvi in https://github.com/fern-api/fern/pull/2968 +* (python): Remove support for Python 3.7 by @armandobelardo in https://github.com/fern-api/fern/pull/2967 +* (fix): OpenAPI importer appropriately handles custom json content types by @dsinghvi in https://github.com/fern-api/fern/pull/2971 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.9...0.17.10 + +## 0.17.9 +**`(chore):`** ## What's Changed +* (internal): initialize csharp AST by @dsinghvi in https://github.com/fern-api/fern/pull/2938 +* (feature): go generator supports whitelabelling by @dsinghvi in https://github.com/fern-api/fern/pull/2953 +* (feature): OpenAPI importer handles extending undiscriminated unions if they are objects by @dsinghvi in https://github.com/fern-api/fern/pull/2956 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.8...0.17.9 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-14.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-14.mdx new file mode 100644 index 000000000..d214bf597 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-14.mdx @@ -0,0 +1,8 @@ +## 0.18.0 +**`(chore):`** ## What's Changed +* (fix): handle `optional` multipart file upload parameters by @armandobelardo in https://github.com/fern-api/fern/pull/2964 +* (break): sever base paths are no longer pre-pended to endpoint URLs in OpenAPI Parser by @dsinghvi in https://github.com/fern-api/fern/pull/2972 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.17.10...0.18.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-16.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-16.mdx new file mode 100644 index 000000000..4f6ebc1bc --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-16.mdx @@ -0,0 +1,15 @@ +## 0.18.1-rc2 +**`(chore):`** ## What's Changed +* (chore, ruby): release the ruby generators to include IR compatibility fix by @armandobelardo in https://github.com/fern-api/fern/pull/2995 +* (cli, fix): `x-fern-webhook` respects sdk method and group name by @dsinghvi in https://github.com/fern-api/fern/pull/2996 +* (cli, feature): IR generation respects casing overrides by @dsinghvi in https://github.com/fern-api/fern/pull/2994 +* (python, feat): add in request options to python by @armandobelardo in https://github.com/fern-api/fern/pull/2926 +* (typescript): always use `node-fetch` when in Node.js by @dsinghvi in https://github.com/fern-api/fern/pull/2989 +* (typescript): Fetcher supports sending bytes in request body in `0.11.4` by @dsinghvi in https://github.com/fern-api/fern/pull/2991 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.0...0.18.0-rc0 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.1-rc1...0.18.1-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-21.mdx new file mode 100644 index 000000000..b23e993d7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-21.mdx @@ -0,0 +1,46 @@ +## 0.18.1 +**`(chore):`** ## What's Changed +* docs: define fern as a toolkit by @dannysheridan in https://github.com/fern-api/fern/pull/2974 +* (feature): introduce websocket channel into fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/2975 +* (fix): `fern write-overrides` uses summary to generate method name if no operation id and tag are present by @dsinghvi in https://github.com/fern-api/fern/pull/2976 +* (python, feat): add in request options to python by @armandobelardo in https://github.com/fern-api/fern/pull/2926 +* (fix): postman collection is published appropriately by @dsinghvi in https://github.com/fern-api/fern/pull/2978 +* (internal): add websocket to IR by @dsinghvi in https://github.com/fern-api/fern/pull/2981 +* (internal): register websocket schemas with fdr by @dsinghvi in https://github.com/fern-api/fern/pull/2983 +* python, fix: revert regressions in writing circular references by @armandobelardo in https://github.com/fern-api/fern/pull/2988 +* (typescript): always use `node-fetch` when in Node.js by @dsinghvi in https://github.com/fern-api/fern/pull/2989 +* (typescript): Fetcher supports sending bytes in request body in `0.11.4` by @dsinghvi in https://github.com/fern-api/fern/pull/2991 +* (feature): make sure casing overrides take affect by @dsinghvi in https://github.com/fern-api/fern/pull/2992 +* (fix): IR generation respects casing overrides by @dsinghvi in https://github.com/fern-api/fern/pull/2994 +* chore, ruby: release the ruby generators to include IR compatibility fix by @armandobelardo in https://github.com/fern-api/fern/pull/2995 +* (fix): `x-fern-webhook` respects sdk method and group name by @dsinghvi in https://github.com/fern-api/fern/pull/2996 +* (feat, openapi): add global header aliasing by @armandobelardo in https://github.com/fern-api/fern/pull/2990 +* feat, ts: add in a reference generator class by @armandobelardo in https://github.com/fern-api/fern/pull/2998 +* improvement: tweaks to how we write references by @armandobelardo in https://github.com/fern-api/fern/pull/3001 +* (feat, java): add timeout to request options by @armandobelardo in https://github.com/fern-api/fern/pull/2973 +* chore: nest Go changelog within ./go/sdk by @dannysheridan in https://github.com/fern-api/fern/pull/3004 +* docs: delete unused pages by @minaelee in https://github.com/fern-api/fern/pull/3008 +* docs: fix broken link by @minaelee in https://github.com/fern-api/fern/pull/3007 +* (chore, internal): speed up seed tests by using custom runner by @dsinghvi in https://github.com/fern-api/fern/pull/3005 +* (chore, internal): introduce telemetry for seed CLI by @dsinghvi in https://github.com/fern-api/fern/pull/3009 +* (fix): optional enum body parameters now pass check by @dsinghvi in https://github.com/fern-api/fern/pull/2914 +* (fix, python): literals are properly accepted as `query`, `path`, `header`, inlined body and referenced body parameters by @dsinghvi in https://github.com/fern-api/fern/pull/3012 +* improvement: allow files to be arrays within the IR by @armandobelardo in https://github.com/fern-api/fern/pull/2993 +* (fix, typescript): core.Stream is browser compatible by @dsinghvi in https://github.com/fern-api/fern/pull/3017 +* (chore, internal): setup browser playground for ts generator by @dsinghvi in https://github.com/fern-api/fern/pull/3019 +* build(deps): bump golang.org/x/tools from 0.17.0 to 0.18.0 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3015 +* (typescript, release): release browser compatible streaming in `0.11.5` by @dsinghvi in https://github.com/fern-api/fern/pull/3022 +* (internal) rename Websocket to WebSocket and bump fdr by @abvthecity in https://github.com/fern-api/fern/pull/3018 +* feats, ruby: add in idempotency headers and improve enum and union implementations by @armandobelardo in https://github.com/fern-api/fern/pull/3020 +* improvement, python: update python file type to be more reflective or HTTPX types and allow lists of files by @armandobelardo in https://github.com/fern-api/fern/pull/3010 +* build(deps): bump axios from 0.27.2 to 0.28.0 by @dependabot in https://github.com/fern-api/fern/pull/3024 +* fix: websocket inline jsonExample and ir-to-fdr path by @abvthecity in https://github.com/fern-api/fern/pull/3026 +* improvement, seed: reduce size of seed containers and speed up python and java tests by @armandobelardo in https://github.com/fern-api/fern/pull/3011 +* feature, python: allow for users to define custom exports from __init__.py by @armandobelardo in https://github.com/fern-api/fern/pull/3025 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.574 to 0.0.600 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3021 +* (java, fix): file upload endpoints compile when determining mime type by @dsinghvi in https://github.com/fern-api/fern/pull/3027 +* (fix): a single enum with x-fern-enum is not turned into a literal by @dsinghvi in https://github.com/fern-api/fern/pull/3028 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.0...0.18.1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-22.mdx new file mode 100644 index 000000000..2ab5d3019 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-22.mdx @@ -0,0 +1,11 @@ +## 0.18.2 +**`(chore):`** ## What's Changed +* (feature, python): introduce feature flag to simplify imports in python and remove the nested `resources` directory by @dsinghvi in https://github.com/fern-api/fern/pull/3029 +* (chore, internal): move `openapi-ir` to use local typescript sdk codegen by @dsinghvi in https://github.com/fern-api/fern/pull/3033 +* (docs): external sidebar links, filled navbar button, tab slug overrides by @abvthecity in https://github.com/fern-api/fern/pull/3034 +* (feature): Add Go snippet generation by @amckinney in https://github.com/fern-api/fern/pull/3035 +* (feature): Importer brings in Websocket Channels from `AsyncAPI` by @dsinghvi in https://github.com/fern-api/fern/pull/3037 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.1...0.18.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-26.mdx new file mode 100644 index 000000000..310fcb1ed --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-26.mdx @@ -0,0 +1,36 @@ +## 0.18.4 +**`(chore):`** ## What's Changed +* (fix): OpenAPI/AsyncAPI importer handles invalid datetime examples by @dsinghvi in https://github.com/fern-api/fern/pull/3056 +* (fix): ensure we apply audience-based filtering to examples as well by @armandobelardo in https://github.com/fern-api/fern/pull/3043 +* (feat, fern): allow headers to specify their envvar as well by @armandobelardo in https://github.com/fern-api/fern/pull/3061 +* (feat, python): support envvar scanning for headers by @armandobelardo in https://github.com/fern-api/fern/pull/3064 + +## New Contributors +* @Danwakeem made their first contribution in https://github.com/fern-api/fern/pull/3057 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.3...0.18.4 + +## 0.18.3 +**`(chore):`** ## What's Changed +* (fix, java): leverage callTimeout instead of readTimeout for RequestOptions timeout configuration by @armandobelardo in https://github.com/fern-api/fern/pull/3031 +* (fix, java): Address NPE for RequestOptions with new timeout feature by @armandobelardo in https://github.com/fern-api/fern/pull/3053 +* (fix, go): Snippets for optional primitive aliases are accurate by @amckinney in https://github.com/fern-api/fern/pull/3050 +* (fix, python): move from lists to sequences when using lists in function signatures by @armandobelardo in https://github.com/fern-api/fern/pull/3040 +* (fix, java) Use safe name to generate discriminator wrapper class by @kikones34 in https://github.com/fern-api/fern/pull/2961 +* (fix, python): just use jsonable_encoder and remove .value from enum references by @armandobelardo in https://github.com/fern-api/fern/pull/3044 +* (fix, python): fix envvars scanning by updating the ApiError usage by @armandobelardo in https://github.com/fern-api/fern/pull/3046 +* (feature): OpenAPI importer attempts to use tag order to render endpoints if possible by @dsinghvi in https://github.com/fern-api/fern/pull/3048 +* (improvement, python): make optional fields not required by default by @armandobelardo in https://github.com/fern-api/fern/pull/3041 +* (feature): Add pagination (IRv35) by @amckinney in https://github.com/fern-api/fern/pull/2985 +* (feature): support asyncapi examples via `x-fern-examples` by @dsinghvi in https://github.com/fern-api/fern/pull/3042 +* (feature): generate default examples for WebSocket Sessions by @dsinghvi in https://github.com/fern-api/fern/pull/3039 +* (fix): fern check no longer throws when an undiscriminated union is a list of primitives by @dsinghvi in https://github.com/fern-api/fern/pull/3055 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.2...0.18.3-rc0 + +## New Contributors +* @kikones34 made their first contribution in https://github.com/fern-api/fern/pull/2961 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.3-rc1...0.18.3-rc2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-02-27.mdx b/fern/products/cli-api-reference/cli-changelog/2024-02-27.mdx new file mode 100644 index 000000000..3d62b8500 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-02-27.mdx @@ -0,0 +1,10 @@ +## 0.18.5 +**`(chore):`** ## What's Changed +* (chore, go): Release fern-go-sdk 0.17.0 by @amckinney in https://github.com/fern-api/fern/pull/3066 +* (feature, go): supports multiple files in upload by @amckinney in https://github.com/fern-api/fern/pull/3070 +* (feature, ts): deep object query parameter serialization by @dsinghvi in https://github.com/fern-api/fern/pull/3060 +* (chore): CLI supports providing IR v33 to TypeScript generators by @dsinghvi in https://github.com/fern-api/fern/pull/3060 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.4...0.18.5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-05.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-05.mdx new file mode 100644 index 000000000..9d30add61 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-05.mdx @@ -0,0 +1,42 @@ +## 0.19.0-rc7 +**`(chore):`** ## What's Changed +* chore: stop checking equality when merging files by @armandobelardo in https://github.com/fern-api/fern/pull/3112 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.0-rc6...0.19.0-rc7 + +## 0.19.0-rc6 +**`(chore):`** ## What's Changed +* (fix, python): use docstrings instead of descriptions by @armandobelardo in https://github.com/fern-api/fern/pull/3108 +* (feature, go): Supports simpler unions by @amckinney in https://github.com/fern-api/fern/pull/3111 +* (fix, cli): strip trailing slash from environments list by @abvthecity in https://github.com/fern-api/fern/pull/3109 +* (feature): allow overriding type for global headers by @dsinghvi in https://github.com/fern-api/fern/pull/3101 +* (feat, python): add in max_retries with exponential backoff by @armandobelardo in https://github.com/fern-api/fern/pull/3096 +* (ts, feature): introduce custom config for `tolerateRepublish` to re publish npm versions by @dsinghvi in https://github.com/fern-api/fern/pull/3093 +* (improvement, python): swap to literals instead of enums by @armandobelardo in https://github.com/fern-api/fern/pull/3082 +* (fix, python): support generating correct code snippets when extending base client in python by @dsinghvi in https://github.com/fern-api/fern/pull/3097 +* (fix): Importer handles adding imports from api.yml by @dsinghvi in https://github.com/fern-api/fern/pull/3100 +* (fix, ruby): add missing ruby dependencies to ensure rubocop can install by @armandobelardo in https://github.com/fern-api/fern/pull/3090 +* (fix, ts): leverage the full package path for `reference.md` by @armandobelardo in https://github.com/fern-api/fern/pull/3083 +* (feature): Add option to disable OpenAPI example generation by @amckinney in https://github.com/fern-api/fern/pull/3091 +* (feature): leverage OpenAPI extension `x-tags` for schemas by @dsinghvi in https://github.com/fern-api/fern/pull/3081 +* (fix, typescript): serialize optional deep object query params correctly in the TypeScript SDK by @dsinghvi in https://github.com/fern-api/fern/pull/3071 +* (fix, ruby): Ensure the name passed into the `X-Fern-SDK-Name` header is the name of the gem, not the client class by @armandobelardo in https://github.com/fern-api/fern/pull/3073 +* (fix, typescript): sdk code snippets don't render empty dicts for parameters with default values by @dsinghvi in https://github.com/fern-api/fern/pull/3074 +* (chore): Refactor Pagination IR to support offset by @amckinney in https://github.com/fern-api/fern/pull/3072 +* (chore, internal): move `docs-config` to use local typescript sdk gen by @abvthecity in https://github.com/fern-api/fern/pull/3047 +* (feature, beta): support reading `changelog` dir from api directory by @dsinghvi in https://github.com/fern-api/fern/pull/3075 +* (fix, express): make express generator respect it's version while publishing by @armandobelardo in https://github.com/fern-api/fern/pull/3084 +* (fix): address recursive loop in example gen with a max depth and lookback by @armandobelardo in https://github.com/fern-api/fern/pull/3086 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.0-rc3...0.18.5 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.0-rc4...0.19.0-rc5 + +## New Contributors +* @mscolnick made their first contribution in https://github.com/fern-api/fern/pull/3104 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.0-rc5...0.19.0-rc6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-07.mdx new file mode 100644 index 000000000..5fe304953 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-07.mdx @@ -0,0 +1,72 @@ +## 0.19.0 +**`(chore):`** ## What's Changed +* (fix, typescript): serialize optional deep object query params correctly in the TypeScript SDK by @dsinghvi in https://github.com/fern-api/fern/pull/3071 +* fix, ruby: Ensure the name passed into the `X-Fern-SDK-Name` header is the name of the gem, not the client class by @armandobelardo in https://github.com/fern-api/fern/pull/3073 +* (fix, typescript): sdk code snippets don't render empty dicts for parameters with default values by @dsinghvi in https://github.com/fern-api/fern/pull/3074 +* (chore): Refactor Pagination IR to support offset by @amckinney in https://github.com/fern-api/fern/pull/3072 +* (chore, internal): move `docs-config` to use local typescript sdk gen by @abvthecity in https://github.com/fern-api/fern/pull/3047 +* (feature, beta): support reading `changelog` dir from api directory by @dsinghvi in https://github.com/fern-api/fern/pull/3075 +* docs: multiple site layout and page updates by @minaelee in https://github.com/fern-api/fern/pull/3052 +* docs: overview diagram newer version by @dannysheridan in https://github.com/fern-api/fern/pull/3076 +* docs: use new overview diagram image by @dannysheridan in https://github.com/fern-api/fern/pull/3077 +* docs: add info on new icon component by @minaelee in https://github.com/fern-api/fern/pull/3079 +* docs: update availability documentation by @minaelee in https://github.com/fern-api/fern/pull/3078 +* (feature): leverage OpenAPI extension `x-tags` for schemas by @dsinghvi in https://github.com/fern-api/fern/pull/3081 +* fix: make express generator respect it's version while publishing by @armandobelardo in https://github.com/fern-api/fern/pull/3084 +* fix, nit: update the name of the GH workflow step to match by @armandobelardo in https://github.com/fern-api/fern/pull/3085 +* fix: address recursive loop in example gen with a max depth and lookback by @armandobelardo in https://github.com/fern-api/fern/pull/3086 +* (internal): stop running eslint by @dsinghvi in https://github.com/fern-api/fern/pull/3087 +* (chore): upgrade mrlint and reenable eslint by @dsinghvi in https://github.com/fern-api/fern/pull/3088 +* fix: add missing ruby dependencies to ensure rubocop can install by @armandobelardo in https://github.com/fern-api/fern/pull/3090 +* fix, ts: leverage the full package path for `reference.md` by @armandobelardo in https://github.com/fern-api/fern/pull/3083 +* (feature): Add option to disable OpenAPI example generation by @amckinney in https://github.com/fern-api/fern/pull/3091 +* (ts, feature): introduce custom config for `tolerateRepublish` to re publish npm versions by @dsinghvi in https://github.com/fern-api/fern/pull/3093 +* improvement, python: swap to literals instead of enums by @armandobelardo in https://github.com/fern-api/fern/pull/3082 +* docs: add new sdks quickstarts and update docs.yml by @minaelee in https://github.com/fern-api/fern/pull/3095 +* docs: update feb 2024 changelog by @minaelee in https://github.com/fern-api/fern/pull/3092 +* (fix): republish python seed container by @dsinghvi in https://github.com/fern-api/fern/pull/3098 +* (fix): support generating correct code snippets when extending base client in python by @dsinghvi in https://github.com/fern-api/fern/pull/3097 +* (fix): Importer handles adding imports from api.yml by @dsinghvi in https://github.com/fern-api/fern/pull/3100 +* fix: build seed docker multiplatform by @armandobelardo in https://github.com/fern-api/fern/pull/3099 +* (feature): allow overriding type for global headers by @dsinghvi in https://github.com/fern-api/fern/pull/3101 +* feat, python: add in max_retries with exponential backoff by @armandobelardo in https://github.com/fern-api/fern/pull/3096 +* fix, python: use docstrings instead of descriptions by @armandobelardo in https://github.com/fern-api/fern/pull/3108 +* chore: cache docker builds in github actions by @mscolnick in https://github.com/fern-api/fern/pull/3104 +* chore: migrate to Vitest by @mscolnick in https://github.com/fern-api/fern/pull/3103 +* (feature): Go supports simpler unions by @amckinney in https://github.com/fern-api/fern/pull/3111 +* fix: strip trailing slash from environments list by @abvthecity in https://github.com/fern-api/fern/pull/3109 +* chore: stop checking equality when merging files by @armandobelardo in https://github.com/fern-api/fern/pull/3112 +* improvement: add additional reserved words to python by @armandobelardo in https://github.com/fern-api/fern/pull/3116 +* docs: add titles and descs by @minaelee in https://github.com/fern-api/fern/pull/3113 +* Revert "chore: migrate to Vitest" by @dsinghvi in https://github.com/fern-api/fern/pull/3118 +* (chore): fix our tests by @dsinghvi in https://github.com/fern-api/fern/pull/3119 +* (fix): `fern generate --docs` doesn't reupload duplicate files preventing 503s by @dsinghvi in https://github.com/fern-api/fern/pull/3120 +* (feature): introduce more layout options for docs configuration by @abvthecity in https://github.com/fern-api/fern/pull/3115 +* docs: update components docs by @minaelee in https://github.com/fern-api/fern/pull/3117 +* (beta): introduce new api configuration in generators.yml by @dsinghvi in https://github.com/fern-api/fern/pull/3121 +* (fix): `mergeWith` actually merges with incoming spec by @dsinghvi in https://github.com/fern-api/fern/pull/3124 +* build(deps): bump jose from 4.11.2 to 4.15.5 by @dependabot in https://github.com/fern-api/fern/pull/3123 + +## New Contributors +* @mscolnick made their first contribution in https://github.com/fern-api/fern/pull/3104 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.18.5...0.19.0 + +## 0.19.0-rc9 +**`(chore):`** ## What's Changed +* (fix): `mergeWith` actually merges with incoming spec by @dsinghvi in https://github.com/fern-api/fern/pull/3124 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.0-rc8...0.19.0-rc9 + +## 0.19.0-rc8 +**`(chore):`** ## What's Changed +* (improvement, python): add additional reserved words to python by @armandobelardo in https://github.com/fern-api/fern/pull/3116 +* (chore): fix our tests by @dsinghvi in https://github.com/fern-api/fern/pull/3119 +* (fix): `fern generate --docs` doesn't reupload duplicate files preventing 503s by @dsinghvi in https://github.com/fern-api/fern/pull/3120 +* (feature): introduce more layout options for docs configuration by @abvthecity in https://github.com/fern-api/fern/pull/3115 +* (beta): introduce new api configuration in generators.yml by @dsinghvi in https://github.com/fern-api/fern/pull/3121 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.0-rc7...0.19.0-rc8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-08.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-08.mdx new file mode 100644 index 000000000..92c6911fe --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-08.mdx @@ -0,0 +1,22 @@ +## 0.19.3 +**`(chore):`** ## What's Changed +* (fix, typescript): SDK generator appropriately imports `node-fetch` by @dsinghvi in https://github.com/fern-api/fern/pull/3130 +* fix: accent-primary regression (and move color validation to fern check) by @abvthecity in https://github.com/fern-api/fern/pull/3132 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.2...0.19.3 + +## 0.19.2 +**`(chore):`** ## What's Changed +* (fix): OpenAPI importer reads `deprecated: true` on operation objects by @dsinghvi in https://github.com/fern-api/fern/pull/3129 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.1...0.19.2 + +## 0.19.1 +**`(chore):`** ## What's Changed +* (fix): detect file object in OpenAPI and ignore content type by @dsinghvi in https://github.com/fern-api/fern/pull/3128 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.0...0.19.1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-09.mdx new file mode 100644 index 000000000..f7e2b0839 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-09.mdx @@ -0,0 +1,8 @@ +## 0.19.4 +**`(chore):`** ## What's Changed +* feat, python: allow extra fields not specified in model to come through by @armandobelardo in https://github.com/fern-api/fern/pull/3131 +* (fix): `x-fern-streaming` wont duplicate referenced requests causing collision by @dsinghvi in https://github.com/fern-api/fern/pull/3136 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.3...0.19.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-10.mdx new file mode 100644 index 000000000..e3552df4a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-10.mdx @@ -0,0 +1,15 @@ +## 0.19.6 +**`(chore):`** ## What's Changed +* (fix): parse frontmatter before registering docs by @dsinghvi in https://github.com/fern-api/fern/pull/3140 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.5...0.19.6 + +## 0.19.5 +**`(chore):`** ## What's Changed +* (feat, cli): add autogenerated examples for the fern definition by @armandobelardo in https://github.com/fern-api/fern/pull/3114 +* (fix, cli): don't require a schema to exist under `application/octet-stream` by @armandobelardo in https://github.com/fern-api/fern/pull/3137 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.4...0.19.5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-13.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-13.mdx new file mode 100644 index 000000000..10cb966df --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-13.mdx @@ -0,0 +1,39 @@ +## 0.19.9 +**`(chore):`** ## What's Changed +* (fix): make sure that deep object query params are reverse migrated t… by @dsinghvi in https://github.com/fern-api/fern/pull/3172 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.8...0.19.9 + +## 0.19.8 +**`(chore):`** ## What's Changed +* fix: run seed for ruby-seed by @armandobelardo in https://github.com/fern-api/fern/pull/3167 +* (fix): getReferencedMarkdownFiles should ignore http/https links by @abvthecity in https://github.com/fern-api/fern/pull/3169 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.7...0.19.8 + +## 0.19.7 +**`(chore):`** ## What's Changed +* feat: init c# playground by @armandobelardo in https://github.com/fern-api/fern/pull/3142 +* build(deps-dev): bump eslint-plugin-tailwindcss from 3.13.0 to 3.13.1 by @dependabot in https://github.com/fern-api/fern/pull/2946 +* (chore): consolidate configuration into single package by @dsinghvi in https://github.com/fern-api/fern/pull/3141 +* (feature): fern check catches invalid mdx files in docs by @dsinghvi in https://github.com/fern-api/fern/pull/3145 +* (feature): convert markdown references to slug if possible by @dsinghvi in https://github.com/fern-api/fern/pull/3146 +* fix: do not add auto-example if one exists by @armandobelardo in https://github.com/fern-api/fern/pull/3147 +* (fix): migration depends on published coordinate by @dsinghvi in https://github.com/fern-api/fern/pull/3143 +* import float as unknown from openapi spec by @buie in https://github.com/fern-api/fern/pull/3144 +* chore: add polling to feature spec by @armandobelardo in https://github.com/fern-api/fern/pull/3068 +* build(deps): bump golang.org/x/tools from 0.18.0 to 0.19.0 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3151 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.609 to 0.0.622 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3150 +* (feature): implement fileUpload and bytes type conversion to FDR by @abvthecity in https://github.com/fern-api/fern/pull/3158 +* feat, python: add snippet-based testing to Python SDKs by @armandobelardo in https://github.com/fern-api/fern/pull/3102 +* (fix): enable SSO on preview URLs by @abvthecity in https://github.com/fern-api/fern/pull/3160 +* (fix): Go snippets handle unknown examples by @amckinney in https://github.com/fern-api/fern/pull/3163 +* (fix): update IR migration gates for Python SDK by @dsinghvi in https://github.com/fern-api/fern/pull/3164 + +## New Contributors +* @buie made their first contribution in https://github.com/fern-api/fern/pull/3144 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.6...0.19.7-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-15.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-15.mdx new file mode 100644 index 000000000..51cf0bfa4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-15.mdx @@ -0,0 +1,19 @@ +## 0.19.11 +**`(chore):`** ## What's Changed +* chore: bump versions of public python sdk to produce unit tests by @armandobelardo in https://github.com/fern-api/fern/pull/3179 +* fix: small fix for python sdk gen by @armandobelardo in https://github.com/fern-api/fern/pull/3181 +* chore: remove webpack from ts generators by @mscolnick in https://github.com/fern-api/fern/pull/3180 +* build(deps): bump follow-redirects from 1.15.5 to 1.15.6 by @dependabot in https://github.com/fern-api/fern/pull/3178 +* fix: Fix code-samples deserialization from openapi-overrides.yml by @mscolnick in https://github.com/fern-api/fern/pull/3170 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.10...0.19.11 + +## 0.19.10 +**`(chore):`** ## What's Changed +* fix: add in envvar scanning for more than bearer auth by @armandobelardo in https://github.com/fern-api/fern/pull/3176 +* fixing unit tests by @armandobelardo in https://github.com/fern-api/fern/pull/3168 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.9...0.19.10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-18.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-18.mdx new file mode 100644 index 000000000..9d3697929 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-18.mdx @@ -0,0 +1,16 @@ +## 0.19.13 +**`(chore):`** ## What's Changed +* fix: tab slug override should be passed to FDR by @abvthecity in https://github.com/fern-api/fern/pull/3198 +* fix: python retry wrapper leverages the right types by @armandobelardo in https://github.com/fern-api/fern/pull/3204 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.12...0.19.13 + +## 0.19.12 +**`(chore):`** ## What's Changed +* (fix): unit tests for python now run successfully by @armandobelardo in https://github.com/fern-api/fern/pull/3187 +* (improvement): allow x-fern-sdk-group-name to be a list by @mscolnick in https://github.com/fern-api/fern/pull/3196 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.11...0.19.12 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-19.mdx new file mode 100644 index 000000000..77abd4657 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-19.mdx @@ -0,0 +1,19 @@ +## 0.19.14-rc0 +**`(chore):`** ## What's Changed +* (feature): sdk endpoint by @dsinghvi in https://github.com/fern-api/fern/pull/3197 +* feat: add in gpg signing for gradle publish by @armandobelardo in https://github.com/fern-api/fern/pull/3195 +* FER-970: Improve performance in by reducing reliance on async behavior and lazy dynamic imports by @omarrida in https://github.com/fern-api/fern/pull/3206 +* (fix): ts sdk doesn't support response property by @dsinghvi in https://github.com/fern-api/fern/pull/3208 +* (internal): `seed` runs whenever `seed.yml` config changes by @dsinghvi in https://github.com/fern-api/fern/pull/3209 +* fix: fullSlug implementation uses the wrong filepath structure by @abvthecity in https://github.com/fern-api/fern/pull/3210 +* (docs): remove $ sign from bash codeblocks content by @minaelee in https://github.com/fern-api/fern/pull/3194 +* add background-image docs by @minaelee in https://github.com/fern-api/fern/pull/3211 +* build(deps-dev): bump @ts-morph/common from 0.21.0 to 0.23.0 by @dependabot in https://github.com/fern-api/fern/pull/3202 +* build(deps-dev): bump eslint-plugin-tailwindcss from 3.14.2 to 3.15.1 by @dependabot in https://github.com/fern-api/fern/pull/3201 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.622 to 0.0.679 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3199 + +## New Contributors +* @omarrida made their first contribution in https://github.com/fern-api/fern/pull/3206 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.13...0.19.14-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-21.mdx new file mode 100644 index 000000000..fca5b5567 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-21.mdx @@ -0,0 +1,50 @@ +## 0.19.16 +**`(chore):`** ## What's Changed +* (docs): document full slug override in front matter by @minaelee in https://github.com/fern-api/fern/pull/3219 +* fix: create a pom config for publishing by @armandobelardo in https://github.com/fern-api/fern/pull/3243 +* 🤦: update final sonatype reference to allow staging url by @armandobelardo in https://github.com/fern-api/fern/pull/3244 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.16-rc0...0.19.16 + +## 0.19.15 +**`(chore):`** ## What's Changed +* fix, java: make gpg publish script executable by @armandobelardo in https://github.com/fern-api/fern/pull/3236 +* (docs): update links due to recent docs changes by @minaelee in https://github.com/fern-api/fern/pull/3233 +* fix: java publishing - wrap the multiline secret in quotes to perserv… by @armandobelardo in https://github.com/fern-api/fern/pull/3239 +* fix: update to the staging sonatype url for signing by @armandobelardo in https://github.com/fern-api/fern/pull/3240 +* fix: update java registry in cli too by @armandobelardo in https://github.com/fern-api/fern/pull/3242 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.14...0.19.15 + +## 0.19.14 +**`(chore):`** ## What's Changed +* (feature): sdk endpoint by @dsinghvi in https://github.com/fern-api/fern/pull/3197 +* feat: add in gpg signing for gradle publish by @armandobelardo in https://github.com/fern-api/fern/pull/3195 +* FER-970: Improve performance in by reducing reliance on async behavior and lazy dynamic imports by @omarrida in https://github.com/fern-api/fern/pull/3206 +* (fix): ts sdk doesn't support response property by @dsinghvi in https://github.com/fern-api/fern/pull/3208 +* (internal): `seed` runs whenever `seed.yml` config changes by @dsinghvi in https://github.com/fern-api/fern/pull/3209 +* fix: fullSlug implementation uses the wrong filepath structure by @abvthecity in https://github.com/fern-api/fern/pull/3210 +* (docs): remove $ sign from bash codeblocks content by @minaelee in https://github.com/fern-api/fern/pull/3194 +* add background-image docs by @minaelee in https://github.com/fern-api/fern/pull/3211 +* build(deps-dev): bump @ts-morph/common from 0.21.0 to 0.23.0 by @dependabot in https://github.com/fern-api/fern/pull/3202 +* build(deps-dev): bump eslint-plugin-tailwindcss from 3.14.2 to 3.15.1 by @dependabot in https://github.com/fern-api/fern/pull/3201 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.622 to 0.0.679 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3199 +* (feat): set `ir-version` override when running generators by @dsinghvi in https://github.com/fern-api/fern/pull/3212 +* bump fern version by @minaelee in https://github.com/fern-api/fern/pull/3214 +* improvement: allow ruby and python to take in byte streams by @armandobelardo in https://github.com/fern-api/fern/pull/3207 +* improvement: use AnyStr to keep intellisense for enums but allow forw… by @armandobelardo in https://github.com/fern-api/fern/pull/3216 +* (fix): Handle optional multipart references by @amckinney in https://github.com/fern-api/fern/pull/3218 +* (fix): update generator config deserialization logic in OpenAPI generator by @omarrida in https://github.com/fern-api/fern/pull/3224 +* (internal): document syntax highlighting by @abvthecity in https://github.com/fern-api/fern/pull/3220 +* (chore): Simplify heading for `max height` in a code block by @dsinghvi in https://github.com/fern-api/fern/pull/3225 +* (chore): rename `syntax highlighting` to `code snippets` by @dsinghvi in https://github.com/fern-api/fern/pull/3226 +* (docs): move `searchbar` to top to create more space by @dsinghvi in https://github.com/fern-api/fern/pull/3227 +* fix: add signature to the local zod schema as well by @armandobelardo in https://github.com/fern-api/fern/pull/3228 + +## New Contributors +* @omarrida made their first contribution in https://github.com/fern-api/fern/pull/3206 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.13...0.19.14-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-22.mdx new file mode 100644 index 000000000..eb9106362 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-22.mdx @@ -0,0 +1,9 @@ +## 0.19.17 +**`(chore):`** ## What's Changed +* (fix): fix typo in writing license by @armandobelardo in https://github.com/fern-api/fern/pull/3245 +* (internal): consolidate GeneratorNotificationService implementations by @omarrida in https://github.com/fern-api/fern/pull/3235 +* (feature): merge x-codeSamples with x-fern-examples by @abvthecity in https://github.com/fern-api/fern/pull/3246 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.16...0.19.17 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-23.mdx new file mode 100644 index 000000000..598f9dd50 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-23.mdx @@ -0,0 +1,8 @@ +## 0.19.18 +**`(chore):`** ## What's Changed +* fix: update python defaults to be the user provided number and not th… by @armandobelardo in https://github.com/fern-api/fern/pull/3248 +* fix depth check to prevent max call stack exceeded issue by @omarrida in https://github.com/fern-api/fern/pull/3247 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.17...0.19.18 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-25.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-25.mdx new file mode 100644 index 000000000..6895d2300 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-25.mdx @@ -0,0 +1,8 @@ +## 0.19.19 +**`(chore):`** ## What's Changed +* (fix): docs for `optionalImplementation` use the right key by @dsinghvi in https://github.com/fern-api/fern/pull/3254 +* (fix): support schema references in OpenAPI that aren't just Schema Ids by @omarrida in https://github.com/fern-api/fern/pull/3259 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.18...0.19.19 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-27.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-27.mdx new file mode 100644 index 000000000..0689395c3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-27.mdx @@ -0,0 +1,22 @@ +## 0.19.20 +**`(chore):`** ## What's Changed +* improvement, python: add __version__ variable by @armandobelardo in https://github.com/fern-api/fern/pull/3262 +* (docs): update fern cli commands docs by @minaelee in https://github.com/fern-api/fern/pull/3215 +* build(deps-dev): bump eslint-plugin-react from 7.31.10 to 7.34.1 by @dependabot in https://github.com/fern-api/fern/pull/3264 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.679 to 0.0.694 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3263 +* (docs): add requirements and installation instructions to fern CLI overview by @minaelee in https://github.com/fern-api/fern/pull/3269 +* (docs): preface all internal links with learn/ by @minaelee in https://github.com/fern-api/fern/pull/3270 +* build(deps): bump tar and @types/tar by @dependabot in https://github.com/fern-api/fern/pull/3266 +* build(deps-dev): bump sass from 1.71.0 to 1.72.0 by @dependabot in https://github.com/fern-api/fern/pull/3265 +* (fix): resolve fern check failures due to invalid enum name overrides and complex query params by @omarrida in https://github.com/fern-api/fern/pull/3268 +* (docs): additional internal link updates by @minaelee in https://github.com/fern-api/fern/pull/3275 +* build(deps): bump express from 4.18.2 to 4.19.2 by @dependabot in https://github.com/fern-api/fern/pull/3271 +* (docs): start react components docs by @minaelee in https://github.com/fern-api/fern/pull/3276 +* (docs): run vale linter on PR to fern/docs/pages/ by @minaelee in https://github.com/fern-api/fern/pull/3274 +* fix: make map mutable for adding environment variables by @armandobelardo in https://github.com/fern-api/fern/pull/3280 +* improvement: default literal values for unions by @armandobelardo in https://github.com/fern-api/fern/pull/3283 +* (fix): Maps are complex query params by @amckinney in https://github.com/fern-api/fern/pull/3285 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.19...0.19.20 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-28.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-28.mdx new file mode 100644 index 000000000..3a2de3987 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-28.mdx @@ -0,0 +1,14 @@ +## 0.19.22 +**`(chore):`** ## What's Changed +* (fix): use display names for services by @dsinghvi in https://github.com/fern-api/fern/pull/3289 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.21...0.19.22 + +## 0.19.21 +**`(chore):`** ## What's Changed +* feat: API navigation overrides by @abvthecity in https://github.com/fern-api/fern/pull/3205 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.20...0.19.21 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-03-29.mdx b/fern/products/cli-api-reference/cli-changelog/2024-03-29.mdx new file mode 100644 index 000000000..d8de8de1d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-03-29.mdx @@ -0,0 +1,40 @@ +## 0.19.24 +**`(chore):`** ## What's Changed +* (fix): allow specifying license in publish metadata by @dsinghvi in https://github.com/fern-api/fern/pull/3292 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.22...0.19.24 + +## 0.19.24-rc3 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.19.24-rc2...0.19.24-rc3 + +## 0.19.24-rc2 +**`(chore):`** ## What's Changed +* chore(docs): alphabetize docs components in the navigation sidebar by @abvthecity in https://github.com/fern-api/fern/pull/3278 +* fix: generate examples for multipart-form by @abvthecity in https://github.com/fern-api/fern/pull/3253 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.23...0.19.24-rc2 + +## 0.19.24-rc1 +**`(chore):`** ## What's Changed +* [(fix): openapi importer ignores duplicate enum names](https://github.com/fern-api/fern/commit/6473f3269e31ad896aecc70c03149094ecd9679c) by @dsinghvi + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.23...0.19.24-rc1 + +## 0.19.24-rc0 +**`(chore):`** ## What's Changed +* chore(docs): alphabetize docs components in the navigation sidebar by @abvthecity in https://github.com/fern-api/fern/pull/3278 +* fix: generate examples for multipart-form by @abvthecity in https://github.com/fern-api/fern/pull/3253 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.23...0.19.24-rc0 + +## 0.19.23 +**`(chore):`** ## What's Changed +* (chore): introduce to plumb through display name by @dsinghvi in https://github.com/fern-api/fern/pull/3290 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.22...0.19.23 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-01.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-01.mdx new file mode 100644 index 000000000..2e87e32a4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-01.mdx @@ -0,0 +1,14 @@ +## 0.19.26 +**`(chore):`** ## What's Changed +* (fix): fern docs use horizontal tabs by @dsinghvi in https://github.com/fern-api/fern/pull/3307 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.25...0.19.26 + +## 0.19.25 +**`(chore):`** ## What's Changed +* improvement: allow header auth extension to specify auth prefix by @armandobelardo in https://github.com/fern-api/fern/pull/3303 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.24...0.19.25 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-02.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-02.mdx new file mode 100644 index 000000000..e84931994 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-02.mdx @@ -0,0 +1,11 @@ +## 0.19.28 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.19.27...0.19.28 + +## 0.19.27 +**`(chore):`** ## What's Changed +* (chore): no icon tabs by @dsinghvi in https://github.com/fern-api/fern/pull/3309 +* fix: allow for specifying x-fern-examples as the yaml schema, not jus… by @armandobelardo in https://github.com/fern-api/fern/pull/3308 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.26...0.19.27 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-03.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-03.mdx new file mode 100644 index 000000000..8520d8ca8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-03.mdx @@ -0,0 +1,18 @@ +## 0.19.30 +**`(chore):`** ## What's Changed +* (fix): send auth prefix to docs by @dsinghvi in https://github.com/fern-api/fern/pull/3314 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.29...0.19.30 + +## 0.19.29 +**`(chore):`** ## What's Changed +* (feature): Add retainOriginalCasing option to TypeScript generators by @amckinney in https://github.com/fern-api/fern/pull/3310 +* (feature): Implement pagination by @amckinney in https://github.com/fern-api/fern/pull/3304 +* fix: revert to one ci file in python by @armandobelardo in https://github.com/fern-api/fern/pull/3237 +* (fix): Authorization header schemes aren't truncated by @amckinney in https://github.com/fern-api/fern/pull/3313 +* (fix): pass through correct maven url by @dsinghvi in https://github.com/fern-api/fern/pull/3315 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.28...0.19.29 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-05.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-05.mdx new file mode 100644 index 000000000..f611e4229 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-05.mdx @@ -0,0 +1,20 @@ +## 0.19.31 +**`(chore):`** ## What's Changed +* revert: python generator version 0.13.2 by @armandobelardo in https://github.com/fern-api/fern/pull/3316 +* break: release python generator 1.x by @armandobelardo in https://github.com/fern-api/fern/pull/3312 +* fix: force pydantic.v1 only if pydantic v2, this is needed due to a p… by @armandobelardo in https://github.com/fern-api/fern/pull/3318 +* feat: add flag to disable Pydantic validation and keep extra fields on the Pydantic model by @armandobelardo in https://github.com/fern-api/fern/pull/3311 +* fix: do not try to generate the version file if we're not generating … by @armandobelardo in https://github.com/fern-api/fern/pull/3320 +* fix: write skipping validation code the same as before to keep new lines by @armandobelardo in https://github.com/fern-api/fern/pull/3321 +* (chore): bump csharp sdk generator version by @dsinghvi in https://github.com/fern-api/fern/pull/3322 +* (feat, csharp): generate subclient files by @dsinghvi in https://github.com/fern-api/fern/pull/3325 +* (fix): misc c# fixes by @dsinghvi in https://github.com/fern-api/fern/pull/3326 +* (fix): csharp generator handles property and field level conflicts by @dsinghvi in https://github.com/fern-api/fern/pull/3327 +* (fix): remove str enum from c# by @dsinghvi in https://github.com/fern-api/fern/pull/3328 +* fix: fix pydantic skip validation by @armandobelardo in https://github.com/fern-api/fern/pull/3324 +* (feature): Generate snippets locally by @amckinney in https://github.com/fern-api/fern/pull/3323 +* (fix): send multipart upload property descriptions when registering docs by @dsinghvi in https://github.com/fern-api/fern/pull/3333 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.30...0.19.31-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-10.mdx new file mode 100644 index 000000000..b980fa887 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-10.mdx @@ -0,0 +1,26 @@ +## 0.20.0 +**`(chore):`** ## What's Changed +* (fix): code blocks are valid by @dsinghvi in https://github.com/fern-api/fern/pull/3337 +* improvement, ruby: add and run rake to run dummy test for build errors by @armandobelardo in https://github.com/fern-api/fern/pull/3330 +* add api origin to generators config by @armandobelardo in https://github.com/fern-api/fern/pull/3336 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.694 to 0.0.702 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3342 +* build(deps): bump golang.org/x/mod from 0.16.0 to 0.17.0 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3341 +* build(deps): bump golang.org/x/tools from 0.19.0 to 0.20.0 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3340 +* build(deps-dev): bump vite from 5.1.3 to 5.2.8 by @dependabot in https://github.com/fern-api/fern/pull/3339 +* fix: allow lists and sets to be complex query params by @armandobelardo in https://github.com/fern-api/fern/pull/3343 +* Update README to point to the latest generators by @armandobelardo in https://github.com/fern-api/fern/pull/3344 +* fix: commit .mock in ts-sdk by @mscolnick in https://github.com/fern-api/fern/pull/3345 +* feat: generated jest tests by @mscolnick in https://github.com/fern-api/fern/pull/3267 +* (fix): misc edits to csharp client generation by @dsinghvi in https://github.com/fern-api/fern/pull/3335 +* improvement: upgrade ts-sdk, ts-express to IR37 by @mscolnick in https://github.com/fern-api/fern/pull/3347 +* feat: add api summary markdown pages by @abvthecity in https://github.com/fern-api/fern/pull/3350 +* feat: hidden, skipurlslug, and icon by @abvthecity in https://github.com/fern-api/fern/pull/3352 +* (feat): setup root and sub client instantiations by @dsinghvi in https://github.com/fern-api/fern/pull/3351 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.31...0.20.0-rc0 +* (chore): changelog dates are ready based on mdx title by @dsinghvi in https://github.com/fern-api/fern/pull/3354 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.19.31...0.20.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-15.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-15.mdx new file mode 100644 index 000000000..4d1167690 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-15.mdx @@ -0,0 +1,22 @@ +## 0.21.0 +**`(chore):`** ## What's Changed +* improvements: misc ruby QOL changes by @armandobelardo in https://github.com/fern-api/fern/pull/3349 +* fix readme links to images that were moved from /docs/images by @harry-humanloop in https://github.com/fern-api/fern/pull/3355 +* additional ruby fixes to the 0.5.0 overhaul by @armandobelardo in https://github.com/fern-api/fern/pull/3359 +* (chore): setup docs landing page by @dsinghvi in https://github.com/fern-api/fern/pull/3361 +* (feature): Implement fern generate --preview by @amckinney in https://github.com/fern-api/fern/pull/3363 +* chore: add learn to welcome links hrefs by @dannysheridan in https://github.com/fern-api/fern/pull/3369 +* build(deps): bump tar from 4.4.19 to 6.2.1 by @dependabot in https://github.com/fern-api/fern/pull/3348 +* fix, ruby: call json.parse before iterating through response by @armandobelardo in https://github.com/fern-api/fern/pull/3367 +* feat: introduce snippets for Ruby SDKs by @armandobelardo in https://github.com/fern-api/fern/pull/3370 +* (chore): fix title in front matter for docs by @dannysheridan in https://github.com/fern-api/fern/pull/3375 +* improvement: pass snippets version to fdr to register docs with snippets at a specific version by @armandobelardo in https://github.com/fern-api/fern/pull/3374 +* (feat): redo SDKs documentation by @dsinghvi in https://github.com/fern-api/fern/pull/3365 +* (feat, docs): explain registering and depending on api artifacts by @dsinghvi in https://github.com/fern-api/fern/pull/3377 +* fix: update IR for the TS SDK by @armandobelardo in https://github.com/fern-api/fern/pull/3378 + +## New Contributors +* @harry-humanloop made their first contribution in https://github.com/fern-api/fern/pull/3355 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.20.0...0.21.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-19.mdx new file mode 100644 index 000000000..e2c725e5d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-19.mdx @@ -0,0 +1,29 @@ +## 0.22.0 +**`(chore):`** ## What's Changed +* (chore, docs): document automated registry publishing) by @dsinghvi in https://github.com/fern-api/fern/pull/3379 +* (feature): Add allowExtraFields configuration to TypeScript generators by @amckinney in https://github.com/fern-api/fern/pull/3368 +* fix: address parsed_json instantiation for serializable object types by @armandobelardo in https://github.com/fern-api/fern/pull/3382 +* Fix typo in SDK docs page by @zachkirsch in https://github.com/fern-api/fern/pull/3383 +* (chore): upgrade fern version by @dannysheridan in https://github.com/fern-api/fern/pull/3376 +* fix: support multiple request and response examples automatically by @abvthecity in https://github.com/fern-api/fern/pull/3384 +* (fix): discriminated union schema examples don't contain discriminants by @dsinghvi in https://github.com/fern-api/fern/pull/3386 +* (fix): make sure versioned tabbed config works by @dsinghvi in https://github.com/fern-api/fern/pull/3387 +* (fix): Go path parameter order by @amckinney in https://github.com/fern-api/fern/pull/3385 +* (feature): Go supports environment variable scanning by @amckinney in https://github.com/fern-api/fern/pull/3389 +* (fix): only generate unit tests when enabled by @dsinghvi in https://github.com/fern-api/fern/pull/3390 +* (fix): update `node-fetch` import to be dynamic by @dsinghvi in https://github.com/fern-api/fern/pull/3391 +* (fix): Generate TS snippets for file download by @bsinghvi in https://github.com/fern-api/fern/pull/3394 +* (feat): support sse with arbitrary terminators by @dsinghvi in https://github.com/fern-api/fern/pull/3395 +* (improvement): add return type for getAuthorizationHeader by @bsinghvi in https://github.com/fern-api/fern/pull/3396 +* (feat): make module imports directly point to index.js by @dsinghvi in https://github.com/fern-api/fern/pull/3397 +* (fix): generate basic tests when integration tests disabled by @dsinghvi in https://github.com/fern-api/fern/pull/3398 +* (fix, typescript): do file upload snippet generation by @dsinghvi in https://github.com/fern-api/fern/pull/3399 +* (feature): Add OAuth YAML and validator by @amckinney in https://github.com/fern-api/fern/pull/3403 +* (feat, python): support sse by @dsinghvi in https://github.com/fern-api/fern/pull/3402 +* (fix): inline discriminated union props by @dsinghvi in https://github.com/fern-api/fern/pull/3404 + +## New Contributors +* @bsinghvi made their first contribution in https://github.com/fern-api/fern/pull/3394 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.21.0...0.22.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-23.mdx new file mode 100644 index 000000000..25c07a336 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-23.mdx @@ -0,0 +1,70 @@ +## 0.23.0-rc6 +**`(chore):`** ## What's Changed +* improvement, oas: do not require schema to be present to parse response objects by @armandobelardo in https://github.com/fern-api/fern/pull/3438 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.0-rc5...0.23.0-rc6 + +## 0.23.0-rc5 +**`(chore):`** ## What's Changed +* (feat): add `format` to the `x-fern-streaming` extension to support sse by @dsinghvi in https://github.com/fern-api/fern/pull/3407 +* Revert "(fix): inline discriminated union props" by @dsinghvi in https://github.com/fern-api/fern/pull/3408 +* (fix): python generator imports `json` when deserializing server sent events by @dsinghvi in https://github.com/fern-api/fern/pull/3409 +* (feature): Add OAuth to IR by @amckinney in https://github.com/fern-api/fern/pull/3410 +* (feat, ts): support server-sent events by @dsinghvi in https://github.com/fern-api/fern/pull/3411 +* (feat, docs): create a api definition tab before sdks and docs by @dsinghvi in https://github.com/fern-api/fern/pull/3413 +* (fix): setup local cli by @dsinghvi in https://github.com/fern-api/fern/pull/3416 +* (fix): fixes trailing slash parsing in openapi-parser, updates tests by @franklinharvey in https://github.com/fern-api/fern/pull/3418 +* (fix): fixes trailing slash additional test by @franklinharvey in https://github.com/fern-api/fern/pull/3419 +* (internal, seed): heavy rewrite of seed by @dsinghvi in https://github.com/fern-api/fern/pull/3297 +* feat: register snippet templates by @armandobelardo in https://github.com/fern-api/fern/pull/3400 +* (feat): release python sdk generator by @dsinghvi in https://github.com/fern-api/fern/pull/3423 +* internal: add logging to python template generation by @armandobelardo in https://github.com/fern-api/fern/pull/3424 +* fix: fix debug log in template generator by @armandobelardo in https://github.com/fern-api/fern/pull/3426 +* fix, internal: leverage the union factory to create the generic templ… by @armandobelardo in https://github.com/fern-api/fern/pull/3427 +* fix, python: add best-case formatting to snippet templates by @armandobelardo in https://github.com/fern-api/fern/pull/3428 +* (fix, typescript): respect stream terminator by @dsinghvi in https://github.com/fern-api/fern/pull/3429 +* fix: use relative location for containers, not it's parent's location by @armandobelardo in https://github.com/fern-api/fern/pull/3431 +* fix: do not stringify null headers by @armandobelardo in https://github.com/fern-api/fern/pull/3433 +* fix: parse map example by @abvthecity in https://github.com/fern-api/fern/pull/3434 +* fix: skipUrlSlug in api section by @abvthecity in https://github.com/fern-api/fern/pull/3435 +* Fixes validation rules for path and base-path by @franklinharvey in https://github.com/fern-api/fern/pull/3420 +* (fix): get ci to green by @dsinghvi in https://github.com/fern-api/fern/pull/3437 +* chore, python: follow redirects by default by @armandobelardo in https://github.com/fern-api/fern/pull/3436 +* (feature, python): Add OAuth token provider by @amckinney in https://github.com/fern-api/fern/pull/3439 + +## New Contributors +* @franklinharvey made their first contribution in https://github.com/fern-api/fern/pull/3418 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.22.0...0.23.0-rc5 + +## 0.23.0-rc4 +**`(chore):`** ## What's Changed +* (feat): add `format` to the `x-fern-streaming` extension to support sse by @dsinghvi in https://github.com/fern-api/fern/pull/3407 +* Revert "(fix): inline discriminated union props" by @dsinghvi in https://github.com/fern-api/fern/pull/3408 +* (fix): python generator imports `json` when deserializing server sent events by @dsinghvi in https://github.com/fern-api/fern/pull/3409 +* (feature): Add OAuth to IR by @amckinney in https://github.com/fern-api/fern/pull/3410 +* (feat, ts): support server-sent events by @dsinghvi in https://github.com/fern-api/fern/pull/3411 +* (feat, docs): create a api definition tab before sdks and docs by @dsinghvi in https://github.com/fern-api/fern/pull/3413 +* (fix): setup local cli by @dsinghvi in https://github.com/fern-api/fern/pull/3416 +* (fix): fixes trailing slash parsing in openapi-parser, updates tests by @franklinharvey in https://github.com/fern-api/fern/pull/3418 +* (fix): fixes trailing slash additional test by @franklinharvey in https://github.com/fern-api/fern/pull/3419 +* (internal, seed): heavy rewrite of seed by @dsinghvi in https://github.com/fern-api/fern/pull/3297 +* feat: register snippet templates by @armandobelardo in https://github.com/fern-api/fern/pull/3400 +* (feat): release python sdk generator by @dsinghvi in https://github.com/fern-api/fern/pull/3423 +* internal: add logging to python template generation by @armandobelardo in https://github.com/fern-api/fern/pull/3424 +* fix: fix debug log in template generator by @armandobelardo in https://github.com/fern-api/fern/pull/3426 +* fix, internal: leverage the union factory to create the generic templ… by @armandobelardo in https://github.com/fern-api/fern/pull/3427 +* fix, python: add best-case formatting to snippet templates by @armandobelardo in https://github.com/fern-api/fern/pull/3428 +* (fix, typescript): respect stream terminator by @dsinghvi in https://github.com/fern-api/fern/pull/3429 +* fix: use relative location for containers, not it's parent's location by @armandobelardo in https://github.com/fern-api/fern/pull/3431 +* fix: do not stringify null headers by @armandobelardo in https://github.com/fern-api/fern/pull/3433 +* fix: parse map example by @abvthecity in https://github.com/fern-api/fern/pull/3434 +* fix: skipUrlSlug in api section by @abvthecity in https://github.com/fern-api/fern/pull/3435 +* Fixes validation rules for path and base-path by @franklinharvey in https://github.com/fern-api/fern/pull/3420 +* (fix): get ci to green by @dsinghvi in https://github.com/fern-api/fern/pull/3437 + +## New Contributors +* @franklinharvey made their first contribution in https://github.com/fern-api/fern/pull/3418 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.22.0...0.23.0-rc4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-25.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-25.mdx new file mode 100644 index 000000000..321ce41a5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-25.mdx @@ -0,0 +1,74 @@ +## 0.23.1-rc1 +**`(chore):`** ## What's Changed +* fix: run seed to get CI to green by @armandobelardo in https://github.com/fern-api/fern/pull/3463 +* (feature, go): Add support for extra properties by @amckinney in https://github.com/fern-api/fern/pull/3462 +* fix: try ignoring the .mock folder, whos diff doesn't matter by @armandobelardo in https://github.com/fern-api/fern/pull/3465 +* feat: support multiple custom domains by @abvthecity in https://github.com/fern-api/fern/pull/3466 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.0...0.23.1-rc1 + +## 0.23.1-rc0 +**`(chore):`** ## What's Changed +* fix: run seed to get CI to green by @armandobelardo in https://github.com/fern-api/fern/pull/3463 +* (feature, go): Add support for extra properties by @amckinney in https://github.com/fern-api/fern/pull/3462 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.0...0.23.1-rc0 + +## 0.23.0 +**`(chore):`** ## What's Changed +* (feat): add `format` to the `x-fern-streaming` extension to support sse by @dsinghvi in https://github.com/fern-api/fern/pull/3407 +* Revert "(fix): inline discriminated union props" by @dsinghvi in https://github.com/fern-api/fern/pull/3408 +* (fix): python generator imports `json` when deserializing server sent events by @dsinghvi in https://github.com/fern-api/fern/pull/3409 +* (feature): Add OAuth to IR by @amckinney in https://github.com/fern-api/fern/pull/3410 +* (feat, ts): support server-sent events by @dsinghvi in https://github.com/fern-api/fern/pull/3411 +* (feat, docs): create a api definition tab before sdks and docs by @dsinghvi in https://github.com/fern-api/fern/pull/3413 +* (fix): setup local cli by @dsinghvi in https://github.com/fern-api/fern/pull/3416 +* (fix): fixes trailing slash parsing in openapi-parser, updates tests by @franklinharvey in https://github.com/fern-api/fern/pull/3418 +* (fix): fixes trailing slash additional test by @franklinharvey in https://github.com/fern-api/fern/pull/3419 +* (internal, seed): heavy rewrite of seed by @dsinghvi in https://github.com/fern-api/fern/pull/3297 +* feat: register snippet templates by @armandobelardo in https://github.com/fern-api/fern/pull/3400 +* (feat): release python sdk generator by @dsinghvi in https://github.com/fern-api/fern/pull/3423 +* internal: add logging to python template generation by @armandobelardo in https://github.com/fern-api/fern/pull/3424 +* fix: fix debug log in template generator by @armandobelardo in https://github.com/fern-api/fern/pull/3426 +* fix, internal: leverage the union factory to create the generic templ… by @armandobelardo in https://github.com/fern-api/fern/pull/3427 +* fix, python: add best-case formatting to snippet templates by @armandobelardo in https://github.com/fern-api/fern/pull/3428 +* (fix, typescript): respect stream terminator by @dsinghvi in https://github.com/fern-api/fern/pull/3429 +* fix: use relative location for containers, not it's parent's location by @armandobelardo in https://github.com/fern-api/fern/pull/3431 +* fix: do not stringify null headers by @armandobelardo in https://github.com/fern-api/fern/pull/3433 +* fix: parse map example by @abvthecity in https://github.com/fern-api/fern/pull/3434 +* fix: skipUrlSlug in api section by @abvthecity in https://github.com/fern-api/fern/pull/3435 +* Fixes validation rules for path and base-path by @franklinharvey in https://github.com/fern-api/fern/pull/3420 +* (fix): get ci to green by @dsinghvi in https://github.com/fern-api/fern/pull/3437 +* chore, python: follow redirects by default by @armandobelardo in https://github.com/fern-api/fern/pull/3436 +* (feature, python): Add OAuth token provider by @amckinney in https://github.com/fern-api/fern/pull/3439 +* improvement, oas: do not require schema to be present to parse response objects by @armandobelardo in https://github.com/fern-api/fern/pull/3438 +* feat: show error schemas in docs by @abvthecity in https://github.com/fern-api/fern/pull/3401 +* (fix): OAuth is migrated back to bearer by @amckinney in https://github.com/fern-api/fern/pull/3440 +* chore: transition snippets api to monorepo by @armandobelardo in https://github.com/fern-api/fern/pull/3442 +* Update what-is-an-api-definition.mdx by @bsinghvi in https://github.com/fern-api/fern/pull/3443 +* (fix, python): OAuthTokenProvider initializes all private member variables by @amckinney in https://github.com/fern-api/fern/pull/3444 +* (fix): seed run with custom fixture works by @dsinghvi in https://github.com/fern-api/fern/pull/3445 +* (feature): Add support for extra-properties by @amckinney in https://github.com/fern-api/fern/pull/3441 +* chore: add a lot of logging and attempt to optimize rubocop config by @armandobelardo in https://github.com/fern-api/fern/pull/3447 +* (fix): ts seed debugging works by @dsinghvi in https://github.com/fern-api/fern/pull/3446 +* (feat): support text responses in typescript by @dsinghvi in https://github.com/fern-api/fern/pull/3451 +* fix: subpackage uses original name by @abvthecity in https://github.com/fern-api/fern/pull/3452 +* (fix, python): Use kwargs for all httpx params by @amckinney in https://github.com/fern-api/fern/pull/3454 +* fix: do not fail hard if FDR is having problems by @armandobelardo in https://github.com/fern-api/fern/pull/3455 +* (chore): Update all seed snapshots by @amckinney in https://github.com/fern-api/fern/pull/3456 +* (chore): Add better Python CHANGELOG.md entry by @amckinney in https://github.com/fern-api/fern/pull/3457 +* (fix, typescript): handle empty sse events by @dsinghvi in https://github.com/fern-api/fern/pull/3458 +* (improvement): appending type for type exports by @bsinghvi in https://github.com/fern-api/fern/pull/3405 +* Updating TS seed generated files by @bsinghvi in https://github.com/fern-api/fern/pull/3459 +* Fixing API First Development box link by @bsinghvi in https://github.com/fern-api/fern/pull/3460 +* Switching product card ordering on welcome by @bsinghvi in https://github.com/fern-api/fern/pull/3461 +* feat, ts: introduce snippet template creation by @armandobelardo in https://github.com/fern-api/fern/pull/3450 +* (fix): openapi converter handles missing schemas by @dsinghvi in https://github.com/fern-api/fern/pull/3464 + +## New Contributors +* @franklinharvey made their first contribution in https://github.com/fern-api/fern/pull/3418 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.22.0...0.23.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-26.mdx new file mode 100644 index 000000000..4f88f6e78 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-26.mdx @@ -0,0 +1,62 @@ +## 0.23.1-rc6 +**`(chore):`** ## What's Changed +* fix: run seed to get CI to green by @armandobelardo in https://github.com/fern-api/fern/pull/3463 +* (feature, go): Add support for extra properties by @amckinney in https://github.com/fern-api/fern/pull/3462 +* fix: try ignoring the .mock folder, whos diff doesn't matter by @armandobelardo in https://github.com/fern-api/fern/pull/3465 +* feat: support multiple custom domains by @abvthecity in https://github.com/fern-api/fern/pull/3466 +* fix: migrating docs.yml to 0.15.0-rc0 should fail if custom-domain is an array by @abvthecity in https://github.com/fern-api/fern/pull/3467 +* (feat): introduce an audiences config to load filtered OpenAPIs by @dsinghvi in https://github.com/fern-api/fern/pull/3468 +* add logging to ts snippet template generation by @armandobelardo in https://github.com/fern-api/fern/pull/3469 +* fix: fix indentation level for ts templates by @armandobelardo in https://github.com/fern-api/fern/pull/3470 +* (fix, go): Only use omitempty for nil-able types by @amckinney in https://github.com/fern-api/fern/pull/3471 +* (fix): backfill SSE events as streaming json by @dsinghvi in https://github.com/fern-api/fern/pull/3472 +* Add image parsing to cli by @jhpak22 in https://github.com/fern-api/fern/pull/3193 +* (docs): add docs about defining webhooks in the fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/3473 +* Fix typo in forward-compatibility.mdx by @zachkirsch in https://github.com/fern-api/fern/pull/3474 +* fix: broken docs post-processor by @abvthecity in https://github.com/fern-api/fern/pull/3475 + +## New Contributors +* @jhpak22 made their first contribution in https://github.com/fern-api/fern/pull/3193 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.0...0.23.1-rc6 + +## 0.23.1 +**`(chore):`** Release 0.23.1 + +## 0.23.1-rc5 +**`(chore):`** ## What's Changed +* fix: run seed to get CI to green by @armandobelardo in https://github.com/fern-api/fern/pull/3463 +* (feature, go): Add support for extra properties by @amckinney in https://github.com/fern-api/fern/pull/3462 +* fix: try ignoring the .mock folder, whos diff doesn't matter by @armandobelardo in https://github.com/fern-api/fern/pull/3465 +* feat: support multiple custom domains by @abvthecity in https://github.com/fern-api/fern/pull/3466 +* fix: migrating docs.yml to 0.15.0-rc0 should fail if custom-domain is an array by @abvthecity in https://github.com/fern-api/fern/pull/3467 +* (feat): introduce an audiences config to load filtered OpenAPIs by @dsinghvi in https://github.com/fern-api/fern/pull/3468 +* add logging to ts snippet template generation by @armandobelardo in https://github.com/fern-api/fern/pull/3469 +* fix: fix indentation level for ts templates by @armandobelardo in https://github.com/fern-api/fern/pull/3470 +* (fix, go): Only use omitempty for nil-able types by @amckinney in https://github.com/fern-api/fern/pull/3471 +* (fix): backfill SSE events as streaming json by @dsinghvi in https://github.com/fern-api/fern/pull/3472 +* Add image parsing to cli by @jhpak22 in https://github.com/fern-api/fern/pull/3193 +* (docs): add docs about defining webhooks in the fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/3473 +* Fix typo in forward-compatibility.mdx by @zachkirsch in https://github.com/fern-api/fern/pull/3474 + +## New Contributors +* @jhpak22 made their first contribution in https://github.com/fern-api/fern/pull/3193 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.0...0.23.1-rc5 + +## 0.23.1-rc4 +**`(chore):`** ## What's Changed +* fix: run seed to get CI to green by @armandobelardo in https://github.com/fern-api/fern/pull/3463 +* (feature, go): Add support for extra properties by @amckinney in https://github.com/fern-api/fern/pull/3462 +* fix: try ignoring the .mock folder, whos diff doesn't matter by @armandobelardo in https://github.com/fern-api/fern/pull/3465 +* feat: support multiple custom domains by @abvthecity in https://github.com/fern-api/fern/pull/3466 +* fix: migrating docs.yml to 0.15.0-rc0 should fail if custom-domain is an array by @abvthecity in https://github.com/fern-api/fern/pull/3467 +* (feat): introduce an audiences config to load filtered OpenAPIs by @dsinghvi in https://github.com/fern-api/fern/pull/3468 +* add logging to ts snippet template generation by @armandobelardo in https://github.com/fern-api/fern/pull/3469 +* fix: fix indentation level for ts templates by @armandobelardo in https://github.com/fern-api/fern/pull/3470 +* (fix, go): Only use omitempty for nil-able types by @amckinney in https://github.com/fern-api/fern/pull/3471 +* (fix): backfill SSE events as streaming json by @dsinghvi in https://github.com/fern-api/fern/pull/3472 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.0...0.23.1-rc4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-04-30.mdx b/fern/products/cli-api-reference/cli-changelog/2024-04-30.mdx new file mode 100644 index 000000000..e839e5079 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-04-30.mdx @@ -0,0 +1,23 @@ +## 0.23.3 +**`(chore):`** ## What's Changed +* (fix): send file arrays to fdr by @dsinghvi in https://github.com/fern-api/fern/pull/3492 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.2...0.23.3 + +## 0.23.2 +**`(chore):`** ## What's Changed +* improvement: throw a better error when an invalid version is used by @armandobelardo in https://github.com/fern-api/fern/pull/3477 +* (fix, go): Discriminated unions always include discriminant by @amckinney in https://github.com/fern-api/fern/pull/3479 +* (internal, feat): add mode to seed for running the generators directly from source by @dsinghvi in https://github.com/fern-api/fern/pull/3421 +* (fix, docs): improve docs overview by @dsinghvi in https://github.com/fern-api/fern/pull/3480 +* (docs, quickstart): rewrite the docs quickstart by @dsinghvi in https://github.com/fern-api/fern/pull/3481 +* docs: add pages for api reference navigation and summary markdown by @abvthecity in https://github.com/fern-api/fern/pull/3482 +* (chore): parse file upload and their descriptions by @dsinghvi in https://github.com/fern-api/fern/pull/3485 +* (feature, go): Add cursor and offset pagination by @amckinney in https://github.com/fern-api/fern/pull/3486 +* (fix): redo docs for accordion, accordion groups, callouts, card groups, etc. by @dsinghvi in https://github.com/fern-api/fern/pull/3489 +* (fix, docs): document frames and endpoint req/res snippets by @dsinghvi in https://github.com/fern-api/fern/pull/3490 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.1...0.23.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-01.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-01.mdx new file mode 100644 index 000000000..0c8631faa --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-01.mdx @@ -0,0 +1,33 @@ +## 0.23.6 +**`(chore):`** ## What's Changed +* docs: Add services to entities with `availability` by @jackfischer in https://github.com/fern-api/fern/pull/3500 +* fix typo in docs by @rnz269 in https://github.com/fern-api/fern/pull/3502 +* fix: filter allOf schemas to look for objects instead of malformed bl… by @armandobelardo in https://github.com/fern-api/fern/pull/3503 + +## New Contributors +* @rnz269 made their first contribution in https://github.com/fern-api/fern/pull/3502 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.5...0.23.6 + +## 0.23.5 +**`(chore):`** ## What's Changed +* (fix): literal descriptions from OpenAPI by @dsinghvi in https://github.com/fern-api/fern/pull/3501 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.4...0.23.5 + +## 0.23.4 +**`(chore):`** ## What's Changed +* improvements, python: update docstrings to match numpydoc convention by @armandobelardo in https://github.com/fern-api/fern/pull/3487 +* feat, python: introduce flag to inline request params in function sig… by @armandobelardo in https://github.com/fern-api/fern/pull/3491 +* (fix, go): Add URL encoding to path parameters by @amckinney in https://github.com/fern-api/fern/pull/3488 +* (feat, internal): introduce default custom config and use in express generator by @dsinghvi in https://github.com/fern-api/fern/pull/3493 +* (fix, python): re-add inlining union properties by @armandobelardo in https://github.com/fern-api/fern/pull/3476 +* feat: tabs with href by @abvthecity in https://github.com/fern-api/fern/pull/3497 +* feat: in docs.yml, allow api reference to be "flattened" by @abvthecity in https://github.com/fern-api/fern/pull/3498 +* fix, ts: remove duplicate quotation marks from snippet templates by @armandobelardo in https://github.com/fern-api/fern/pull/3495 +* fix: address formatting issues with python templates by @armandobelardo in https://github.com/fern-api/fern/pull/3499 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.3...0.23.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-02.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-02.mdx new file mode 100644 index 000000000..5a05a38e5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-02.mdx @@ -0,0 +1,21 @@ +## 0.23.7 +**`(chore):`** ## What's Changed +* fix: The vanilla pydantic base model now respects the by @armandobelardo in https://github.com/fern-api/fern/pull/3504 +* (fix): support parsing path parameters in asyncapi v2 by @dsinghvi in https://github.com/fern-api/fern/pull/3505 +* (internal, test): Stop testing IR generation snapshots by @dsinghvi in https://github.com/fern-api/fern/pull/3508 +* fix, python: pipe through the whole kit and caboodle for inlined unions by @armandobelardo in https://github.com/fern-api/fern/pull/3507 +* fix, python: the SDK generator now generates discriminated unions correctly by @armandobelardo in https://github.com/fern-api/fern/pull/3509 +* internal: release python generator RC by @armandobelardo in https://github.com/fern-api/fern/pull/3510 +* fix, ts, python: snippet template paper cuts by @armandobelardo in https://github.com/fern-api/fern/pull/3511 +* (fix, ts): Prefer user-provided examples by @amckinney in https://github.com/fern-api/fern/pull/3496 +* (fix, ts): Add URL encoding to path parameters by @amckinney in https://github.com/fern-api/fern/pull/3494 +* (docs) aside component by @dannysheridan in https://github.com/fern-api/fern/pull/3512 +* internal: update public api docs by @armandobelardo in https://github.com/fern-api/fern/pull/3513 +* (feature, ts): Add JSDoc docs to client methods by @amckinney in https://github.com/fern-api/fern/pull/3515 +* improvement: add in sync templates for python (in addition to async) by @armandobelardo in https://github.com/fern-api/fern/pull/3516 +* (chore, python): Ignore core_utilities in mypy by @amckinney in https://github.com/fern-api/fern/pull/3517 +* (feature): expose `x-fern-property-name` extension by @dsinghvi in https://github.com/fern-api/fern/pull/3518 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.6...0.23.7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-06.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-06.mdx new file mode 100644 index 000000000..17b75f9ae --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-06.mdx @@ -0,0 +1,11 @@ +## 0.24.0 +**`(chore):`** ## What's Changed +* (fix): remove `api.yml` not found error when the openapi folder is present by @dsinghvi in https://github.com/fern-api/fern/pull/3519 +* add example snippet syntax by @abvthecity in https://github.com/fern-api/fern/pull/3523 +* (fix, internal): fix preview docs and move props to left side in docs by @dsinghvi in https://github.com/fern-api/fern/pull/3525 +* fix, python: check for nulls before dereferencing in unchecked base m… by @armandobelardo in https://github.com/fern-api/fern/pull/3528 +* (feature, openapi): Add x-fern-base-path extension by @amckinney in https://github.com/fern-api/fern/pull/3530 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.23.7...0.24.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-07.mdx new file mode 100644 index 000000000..9965d7f60 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-07.mdx @@ -0,0 +1,60 @@ +## 0.25.0-rc3 +**`(chore):`** ## What's Changed +* (express): Release 0.12.0-rc2 by @amckinney in https://github.com/fern-api/fern/pull/3555 +* fix, java: do not require non-auth headers if auth is mandatory by @armandobelardo in https://github.com/fern-api/fern/pull/3549 +* (fix): OpenAPI converter only adds unique error examples by @dsinghvi in https://github.com/fern-api/fern/pull/3556 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.25.0-rc2...0.25.0-rc3 + +## 0.25.0-rc2 +**`(chore):`** ## What's Changed +* feat: add origin and ability to update API spec via CLI by @armandobelardo in https://github.com/fern-api/fern/pull/3533 +* internal: add in tags and labels for docker images for use in upgrade… by @armandobelardo in https://github.com/fern-api/fern/pull/3542 +* Bump @fern-api/fdr-sdk from 0.82.1-32d571a0d to 0.82.1-6020e1266 by @dependabot in https://github.com/fern-api/fern/pull/3540 +* (improvement, express): Remove unnecessary console.error by @amckinney in https://github.com/fern-api/fern/pull/3541 +* fix: update docker cli usage for ts sdks by @armandobelardo in https://github.com/fern-api/fern/pull/3544 +* (feat, cli): introduce error examples in the fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/3546 +* (feat, ir): add example errors to ir and fdr by @dsinghvi in https://github.com/fern-api/fern/pull/3548 +* (feature, ts): Support upload endpoints with file arrays by @amckinney in https://github.com/fern-api/fern/pull/3543 +* (fix): ete tests are green by @dsinghvi in https://github.com/fern-api/fern/pull/3550 +* (fix): openapi ir to fern carries through error examples by @dsinghvi in https://github.com/fern-api/fern/pull/3551 +* (fix): pass in example.value to error converter by @dsinghvi in https://github.com/fern-api/fern/pull/3554 +* (fix, openapi): Recursively visit nested anyOf schemas by @amckinney in https://github.com/fern-api/fern/pull/3536 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.24.0...0.25.0-rc2 + +## 0.25.0-rc1 +**`(chore):`** ## What's Changed +* feat: add origin and ability to update API spec via CLI by @armandobelardo in https://github.com/fern-api/fern/pull/3533 +* internal: add in tags and labels for docker images for use in upgrade… by @armandobelardo in https://github.com/fern-api/fern/pull/3542 +* Bump @fern-api/fdr-sdk from 0.82.1-32d571a0d to 0.82.1-6020e1266 by @dependabot in https://github.com/fern-api/fern/pull/3540 +* (improvement, express): Remove unnecessary console.error by @amckinney in https://github.com/fern-api/fern/pull/3541 +* fix: update docker cli usage for ts sdks by @armandobelardo in https://github.com/fern-api/fern/pull/3544 +* (feat, cli): introduce error examples in the fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/3546 +* (feat, ir): add example errors to ir and fdr by @dsinghvi in https://github.com/fern-api/fern/pull/3548 +* (feature, ts): Support upload endpoints with file arrays by @amckinney in https://github.com/fern-api/fern/pull/3543 +* (fix): ete tests are green by @dsinghvi in https://github.com/fern-api/fern/pull/3550 +* (fix): openapi ir to fern carries through error examples by @dsinghvi in https://github.com/fern-api/fern/pull/3551 +* (fix): pass in example.value to error converter by @dsinghvi in https://github.com/fern-api/fern/pull/3554 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.24.0...0.25.0-rc1 + +## 0.25.0-rc0 +**`(chore):`** ## What's Changed +* feat: add origin and ability to update API spec via CLI by @armandobelardo in https://github.com/fern-api/fern/pull/3533 +* internal: add in tags and labels for docker images for use in upgrade… by @armandobelardo in https://github.com/fern-api/fern/pull/3542 +* Bump @fern-api/fdr-sdk from 0.82.1-32d571a0d to 0.82.1-6020e1266 by @dependabot in https://github.com/fern-api/fern/pull/3540 +* (improvement, express): Remove unnecessary console.error by @amckinney in https://github.com/fern-api/fern/pull/3541 +* fix: update docker cli usage for ts sdks by @armandobelardo in https://github.com/fern-api/fern/pull/3544 +* (feat, cli): introduce error examples in the fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/3546 +* (feat, ir): add example errors to ir and fdr by @dsinghvi in https://github.com/fern-api/fern/pull/3548 +* (feature, ts): Support upload endpoints with file arrays by @amckinney in https://github.com/fern-api/fern/pull/3543 +* (fix): ete tests are green by @dsinghvi in https://github.com/fern-api/fern/pull/3550 +* (fix): openapi ir to fern carries through error examples by @dsinghvi in https://github.com/fern-api/fern/pull/3551 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.24.0...0.25.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-08.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-08.mdx new file mode 100644 index 000000000..a9608534e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-08.mdx @@ -0,0 +1,40 @@ +## 0.25.0 +**`(chore):`** ## What's Changed +* feat: add origin and ability to update API spec via CLI by @armandobelardo in https://github.com/fern-api/fern/pull/3533 +* internal: add in tags and labels for docker images for use in upgrade… by @armandobelardo in https://github.com/fern-api/fern/pull/3542 +* Bump @fern-api/fdr-sdk from 0.82.1-32d571a0d to 0.82.1-6020e1266 by @dependabot in https://github.com/fern-api/fern/pull/3540 +* (improvement, express): Remove unnecessary console.error by @amckinney in https://github.com/fern-api/fern/pull/3541 +* fix: update docker cli usage for ts sdks by @armandobelardo in https://github.com/fern-api/fern/pull/3544 +* (feat, cli): introduce error examples in the fern definition by @dsinghvi in https://github.com/fern-api/fern/pull/3546 +* (feat, ir): add example errors to ir and fdr by @dsinghvi in https://github.com/fern-api/fern/pull/3548 +* (feature, ts): Support upload endpoints with file arrays by @amckinney in https://github.com/fern-api/fern/pull/3543 +* (fix): ete tests are green by @dsinghvi in https://github.com/fern-api/fern/pull/3550 +* (fix): openapi ir to fern carries through error examples by @dsinghvi in https://github.com/fern-api/fern/pull/3551 +* (fix): pass in example.value to error converter by @dsinghvi in https://github.com/fern-api/fern/pull/3554 +* (fix, openapi): Recursively visit nested anyOf schemas by @amckinney in https://github.com/fern-api/fern/pull/3536 +* (express): Release 0.12.0-rc2 by @amckinney in https://github.com/fern-api/fern/pull/3555 +* fix, java: do not require non-auth headers if auth is mandatory by @armandobelardo in https://github.com/fern-api/fern/pull/3549 +* (fix): add `node-gyp` to make yarn installs faster by @dsinghvi in https://github.com/fern-api/fern/pull/3552 +* Revert "(fix): add `node-gyp` to make yarn installs faster" by @dsinghvi in https://github.com/fern-api/fern/pull/3558 +* (fix): OpenAPI converter only adds unique error examples by @dsinghvi in https://github.com/fern-api/fern/pull/3556 +* (fix, go): Disable url tags for in-lined body properties by @amckinney in https://github.com/fern-api/fern/pull/3557 +* (feat, express): add `skipRequestValidation` configuration to the express generator by @dsinghvi in https://github.com/fern-api/fern/pull/3560 +* (fix) [wip] java empty response body instead of null by @dcb6 in https://github.com/fern-api/fern/pull/3545 +* Document new `background` prop for `Frame` component by @KenzoBenzo in https://github.com/fern-api/fern/pull/3559 +* (improvement, ir): Improve OAuth IR customizability by @amckinney in https://github.com/fern-api/fern/pull/3563 +* (docs) consolidate code snippets and code block markdown pages by @abvthecity in https://github.com/fern-api/fern/pull/3562 +* fix: deduplicate image filepaths to upload by @abvthecity in https://github.com/fern-api/fern/pull/3564 +* (fix, internal): seed exits when docker fails to build by @dsinghvi in https://github.com/fern-api/fern/pull/3568 +* (internal, fix): rewrite inputs and run seed on ir changes by @dsinghvi in https://github.com/fern-api/fern/pull/3569 +* fix: do not add header to java map unless not null by @armandobelardo in https://github.com/fern-api/fern/pull/3567 +* (fix, docs): improve docs on augmenting generators with customization by @dsinghvi in https://github.com/fern-api/fern/pull/3570 +* docs: sidebar icons by @abvthecity in https://github.com/fern-api/fern/pull/3574 +* fix: perform the correct null check on headers by @armandobelardo in https://github.com/fern-api/fern/pull/3571 +* fix, ir: fall back to the generated name when creating schemas if the… by @armandobelardo in https://github.com/fern-api/fern/pull/3572 + +## New Contributors +* @dcb6 made their first contribution in https://github.com/fern-api/fern/pull/3545 +* @KenzoBenzo made their first contribution in https://github.com/fern-api/fern/pull/3559 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.24.0...0.25.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-09.mdx new file mode 100644 index 000000000..4edd9b4c8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-09.mdx @@ -0,0 +1,29 @@ +## 0.26.3 +**`(chore):`** ## What's Changed +* fix: upgrade gen version now pulls image correctly by @armandobelardo in https://github.com/fern-api/fern/pull/3584 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.2...0.26.3 + +## 0.26.2 +**`(chore):`** ## What's Changed +* feat, cli: add `fern generator upgrade` command by @armandobelardo in https://github.com/fern-api/fern/pull/3535 +* (fix, internal): typescript generators depend on latest ir by @dsinghvi in https://github.com/fern-api/fern/pull/3583 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.1...0.26.2 + +## 0.26.1 +**`(chore):`** ## What's Changed +* (feat, docs): send status code to fdr by @dsinghvi in https://github.com/fern-api/fern/pull/3582 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.0...0.26.1 + +## 0.26.0 +**`(chore):`** ## What's Changed +* (feat, definition): support response status codes by @dsinghvi in https://github.com/fern-api/fern/pull/3580 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.25.0...0.26.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-13.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-13.mdx new file mode 100644 index 000000000..2435ce38f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-13.mdx @@ -0,0 +1,39 @@ +## 0.26.5 +**`(chore):`** ## What's Changed +* (fix): eslint passes by @dsinghvi in https://github.com/fern-api/fern/pull/3603 +* (fix, typescript): ensure formdata utils work cross-runtime by @armandobelardo in https://github.com/fern-api/fern/pull/3601 +* (improvement, yaml): Update default OAuth configuration by @amckinney in https://github.com/fern-api/fern/pull/3573 +* (feature): support `skipResponseValidation` in express handlers by @dsinghvi in https://github.com/fern-api/fern/pull/3611 +* (fix, changelog): relativize changelog paths, and properly handle in tabbed docs by @abvthecity in https://github.com/fern-api/fern/pull/3610 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.4...0.26.5 + +## 0.26.4 +**`(chore):`** ## What's Changed +* (docs) Add intro section by @dannysheridan in https://github.com/fern-api/fern/pull/3547 +* (chore, fastapi, ruby sdk) release versions by @dannysheridan in https://github.com/fern-api/fern/pull/3587 +* (chore, pydantic): Release 0.9.0 by @dannysheridan in https://github.com/fern-api/fern/pull/3586 +* (document) reusable code snippets by @dannysheridan in https://github.com/fern-api/fern/pull/3524 +* remove page that does not exist from docs by @armandobelardo in https://github.com/fern-api/fern/pull/3589 +* improvement: add `extra_dev_dependencies` to python generator by @armandobelardo in https://github.com/fern-api/fern/pull/3585 +* feat: support Stream and SSE in ExampleResponseSchema by @abvthecity in https://github.com/fern-api/fern/pull/3577 +* improvement: also run fetch latest version on `fern init` by @armandobelardo in https://github.com/fern-api/fern/pull/3588 +* improvement: allow a break the glass override of the min-python version by @armandobelardo in https://github.com/fern-api/fern/pull/3591 +* feat: allow overriding api reference slug in docs by @abvthecity in https://github.com/fern-api/fern/pull/3575 +* break: release python 2.x by @armandobelardo in https://github.com/fern-api/fern/pull/3590 +* fix: treat multipart form as form by @abvthecity in https://github.com/fern-api/fern/pull/3553 +* (feat, csharp): several fixes including arbitrary nested subpackage clients by @dsinghvi in https://github.com/fern-api/fern/pull/3593 +* (fix, csharp): support sending inlined requests that are entirely bodies by @dsinghvi in https://github.com/fern-api/fern/pull/3594 +* chore: document naming and env overrides for basic and bearer auth in… by @armandobelardo in https://github.com/fern-api/fern/pull/3596 +* feat: streaming and sse examples by @abvthecity in https://github.com/fern-api/fern/pull/3592 +* fix issue#3566 by @last-developer in https://github.com/fern-api/fern/pull/3597 +* (fix, docs) webhook indentation by @dannysheridan in https://github.com/fern-api/fern/pull/3600 +* (fix):`ir.json` are not out of date for seed by @dsinghvi in https://github.com/fern-api/fern/pull/3598 +* (fix): `fern add` with a new `--group` works by @dsinghvi in https://github.com/fern-api/fern/pull/3602 + +## New Contributors +* @last-developer made their first contribution in https://github.com/fern-api/fern/pull/3597 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.3...0.26.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-14.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-14.mdx new file mode 100644 index 000000000..7fb641c67 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-14.mdx @@ -0,0 +1,28 @@ +## 0.26.8 +**`(chore):`** ## What's Changed +* (fix, openapi): Fix nameOverride resolution by @amckinney in https://github.com/fern-api/fern/pull/3622 +* (docs): Add OAuth SDK docs by @amckinney in https://github.com/fern-api/fern/pull/3615 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.7...0.26.8 + +## 0.26.7 +**`(chore):`** ## What's Changed +* [WIP] Upgrade Java Generator to IR 42 by @dcb6 in https://github.com/fern-api/fern/pull/3608 +* (improvement, fern): Add better error for invalid generators.yml by @amckinney in https://github.com/fern-api/fern/pull/3521 +* fix: fern-aware pydantic models now effectively 'exclude_optional' in… by @armandobelardo in https://github.com/fern-api/fern/pull/3618 +* feat: introduce pagination to python by @armandobelardo in https://github.com/fern-api/fern/pull/3604 +* (fix, ir): Fix undiscriminated union examples by @amckinney in https://github.com/fern-api/fern/pull/3619 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.6...0.26.7 + +## 0.26.6 +**`(chore):`** ## What's Changed +* (fix, openapi): Consolidate enums into discriminants by @amckinney in https://github.com/fern-api/fern/pull/3607 +* (feature, ts): Support oauth client credentials flow by @amckinney in https://github.com/fern-api/fern/pull/3578 +* (fix, openapi): OpenAPI importer now parses list examples that are specific to a field by @dsinghvi in https://github.com/fern-api/fern/pull/3613 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.5...0.26.6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-15.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-15.mdx new file mode 100644 index 000000000..a0de4c7b0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-15.mdx @@ -0,0 +1,31 @@ +## 0.26.9 +**`(chore):`** ## What's Changed +* (fix, ts): Client credentials are optional with env vars by @amckinney in https://github.com/fern-api/fern/pull/3617 +* fix: upload images in changelogs by @abvthecity in https://github.com/fern-api/fern/pull/3623 +* fix: batch image and file upload by @abvthecity in https://github.com/fern-api/fern/pull/3624 +* chore: add nuget config for csharp sdks by @armandobelardo in https://github.com/fern-api/fern/pull/3621 +* (feat): add java oauth generation by @dcb6 in https://github.com/fern-api/fern/pull/3614 +* (fix): generate unknown examples as primitive by @dsinghvi in https://github.com/fern-api/fern/pull/3626 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.8...0.26.9 + +## 0.26.9-rc2 +**`(chore):`** Release 0.26.9-rc2 + +## 0.26.9-rc1 +**`(chore):`** ## What's Changed +* fix: batch image and file upload by @abvthecity in https://github.com/fern-api/fern/pull/3624 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.9-rc0...0.26.9-rc1 + +## 0.26.9-rc0 +**`(chore):`** ## What's Changed +* (fix, ts): Client credentials are optional with env vars by @amckinney in https://github.com/fern-api/fern/pull/3617 +* fix: upload images in changelogs by @abvthecity in https://github.com/fern-api/fern/pull/3623 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.8...0.26.9 + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-17.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-17.mdx new file mode 100644 index 000000000..cecf545b3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-17.mdx @@ -0,0 +1,17 @@ +## 0.26.10-rc0 +**`(chore):`** ## What's Changed +* chore: clean up some nuget references by @armandobelardo in https://github.com/fern-api/fern/pull/3627 +* (fix, ts): OAuth provides an optional token by @amckinney in https://github.com/fern-api/fern/pull/3633 +* improvement, java: stop generating extra semicolon by @dcb6 in https://github.com/fern-api/fern/pull/3631 +* chore, python: improve snippets for streaming by @armandobelardo in https://github.com/fern-api/fern/pull/3630 +* improvement: python now respects deep object query parameters by @armandobelardo in https://github.com/fern-api/fern/pull/3629 +* fix: fern cli now appropriately awaits docker pull by @armandobelardo in https://github.com/fern-api/fern/pull/3636 +* (docs, improvement): add guide on how to publish public sdks by @dsinghvi in https://github.com/fern-api/fern/pull/3638 +* (feat): Add default values, validation rules, and big integer to primitives by @dsinghvi in https://github.com/fern-api/fern/pull/3625 +* feat: add seo and metadata configuration in docs.yml by @abvthecity in https://github.com/fern-api/fern/pull/3635 +* Update welcome.mdx by @dannysheridan in https://github.com/fern-api/fern/pull/3637 +* fix formatting of our own java code by @dcb6 in https://github.com/fern-api/fern/pull/3641 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.9...0.26.10-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-19.mdx new file mode 100644 index 000000000..ed7f63873 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-19.mdx @@ -0,0 +1,27 @@ +## 0.26.10 +**`(chore):`** ## What's Changed +* (fix): `fern docs preview` -> `fern docs dev` by @dsinghvi in https://github.com/fern-api/fern/pull/3647 +* (fix): docs preview server is fault tolerant to invalid `docs.yml` files by @dsinghvi in https://github.com/fern-api/fern/pull/3648 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.10-rc2...0.26.10 + +## 0.26.10-rc2 +**`(chore):`** ## What's Changed +* (fix): improve local preview responsiveness by @dsinghvi in https://github.com/fern-api/fern/pull/3646 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.10-rc1...0.26.10-rc2 + +## 0.26.10-rc1 +**`(chore):`** ## What's Changed +* chore: document auto-pagination configuration by @armandobelardo in https://github.com/fern-api/fern/pull/3644 +* Tidy up python generator docs by @fabubaker in https://github.com/fern-api/fern/pull/3645 +* (feat, local preview): setup dynamic local preview by @dsinghvi in https://github.com/fern-api/fern/pull/3634 +* refactor: share common logic between publishDocs and previewDocs by @abvthecity in https://github.com/fern-api/fern/pull/3639 + +## New Contributors +* @fabubaker made their first contribution in https://github.com/fern-api/fern/pull/3645 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.10-rc0...0.26.10-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-20.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-20.mdx new file mode 100644 index 000000000..dcac6db24 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-20.mdx @@ -0,0 +1,21 @@ +## 0.27.0 +**`(chore):`** ## What's Changed +- (feature): support local preview of docs via `fern docs dev` + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.11...0.27.0 + +## 0.26.11 +**`(chore):`** ## What's Changed +* (feat, docs): document local previews by @dsinghvi in https://github.com/fern-api/fern/pull/3649 +* chore: add identifier override to further specify snippets by @armandobelardo in https://github.com/fern-api/fern/pull/3642 +* fixed broken internal links on docs site by @atwooddc in https://github.com/fern-api/fern/pull/3656 +* chore: add v1 websocket events in local docs preview by @abvthecity in https://github.com/fern-api/fern/pull/3655 +* fix, python: deconflict parameter names when inlining request parameters by @armandobelardo in https://github.com/fern-api/fern/pull/3650 +* (fix): support running docs dev server on a port by @dsinghvi in https://github.com/fern-api/fern/pull/3657 + +## New Contributors +* @atwooddc made their first contribution in https://github.com/fern-api/fern/pull/3656 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.26.10...0.26.11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-21.mdx new file mode 100644 index 000000000..aff884285 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-21.mdx @@ -0,0 +1,27 @@ +## 0.28.0 +**`(chore):`** ## What's Changed +* (feature): Add support for default values and validation rules by @amckinney in https://github.com/fern-api/fern/pull/3640 +* improvement: add in config to enrich pypi metadata by @armandobelardo in https://github.com/fern-api/fern/pull/3660 +* (fix, csharp): `.csproj` generation includes license, version, and github url by @dsinghvi in https://github.com/fern-api/fern/pull/3659 +* feat: allow users to configure pypi details by @armandobelardo in https://github.com/fern-api/fern/pull/3662 +* (fix, python): include project URLs in generated pyproject toml by @armandobelardo in https://github.com/fern-api/fern/pull/3663 +* (fix, python): change author format and fix query encoder by @armandobelardo in https://github.com/fern-api/fern/pull/3664 +* chore: update docs on using overrides.yml by @armandobelardo in https://github.com/fern-api/fern/pull/3666 +* (feature, ts): Add inlineFileProperties configuration by @amckinney in https://github.com/fern-api/fern/pull/3661 +* (chore, readme): add csharp sdk generator by @dannysheridan in https://github.com/fern-api/fern/pull/3665 +* docs fixed typos by @atwooddc in https://github.com/fern-api/fern/pull/3668 +* (feature, go): Expose extra response properties by @amckinney in https://github.com/fern-api/fern/pull/3669 +* (feature): Add SAML and SSO to common initialisms by @amckinney in https://github.com/fern-api/fern/pull/3670 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.27.0...0.28.0 + +## 0.27.1-rc0 +**`(chore):`** ## What's Changed +* (feature): Add support for default values and validation rules by @amckinney in https://github.com/fern-api/fern/pull/3640 +* improvement: add in config to enrich pypi metadata by @armandobelardo in https://github.com/fern-api/fern/pull/3660 +* (fix, csharp): `.csproj` generation includes license, version, and github url by @dsinghvi in https://github.com/fern-api/fern/pull/3659 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.27.0...0.27.1-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-22.mdx new file mode 100644 index 000000000..feaf269b8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-22.mdx @@ -0,0 +1,11 @@ +## 0.29.0 +**`(chore):`** ## What's Changed +* (fix, python): fix naming conflicts with inlined body parameters by @armandobelardo in https://github.com/fern-api/fern/pull/3673 +* (fix, python): correct snippets for optional referenced requests when… by @armandobelardo in https://github.com/fern-api/fern/pull/3676 +* fix, java: make java compatible with java 8 by @dcb6 in https://github.com/fern-api/fern/pull/3671 +* (fix, python): use safe names wherever there's no string concat by @armandobelardo in https://github.com/fern-api/fern/pull/3674 +* (feature, openapi): Map additionalProperties to extra-properties by @amckinney in https://github.com/fern-api/fern/pull/3675 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.28.0...0.29.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-24.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-24.mdx new file mode 100644 index 000000000..6ad53a640 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-24.mdx @@ -0,0 +1,26 @@ +## 0.29.1-rc0 +**`(chore):`** ## What's Changed +* (feat, csharp): generate `Environments.cs` and populate default `BaseURL` by @dsinghvi in https://github.com/fern-api/fern/pull/3677 +* (fix, csharp): package in LICENSE in `.csproj` by @dsinghvi in https://github.com/fern-api/fern/pull/3678 +* (fix, python): re-add python unit tests by @armandobelardo in https://github.com/fern-api/fern/pull/3609 +* (chore, python): fix typo in generated comments by @armandobelardo in https://github.com/fern-api/fern/pull/3680 +* fix, python: do not run `fern test` in CI yet by @armandobelardo in https://github.com/fern-api/fern/pull/3683 +* docs changed trivial anchor text by @atwooddc in https://github.com/fern-api/fern/pull/3687 +* docs: unbolded sections for seo by @atwooddc in https://github.com/fern-api/fern/pull/3686 +* docs: api definition docs and mdx descriptions for seo by @atwooddc in https://github.com/fern-api/fern/pull/3685 +* (fix, csharp): scan `EnumMember` annotations when serializing to string by @dsinghvi in https://github.com/fern-api/fern/pull/3688 +* fix, python: request bodies respect literals again by @armandobelardo in https://github.com/fern-api/fern/pull/3689 +* (fix, python): support endpoint method names by @dsinghvi in https://github.com/fern-api/fern/pull/3690 +* (fix, csharp): inlined requests that are 1:1 with HTTP bodies now have JSON annotations by @dsinghvi in https://github.com/fern-api/fern/pull/3691 +* docs cli UI changed to Accordion Group by @atwooddc in https://github.com/fern-api/fern/pull/3681 +* docs: fixing broken links by @atwooddc in https://github.com/fern-api/fern/pull/3667 +* Update extensions.mdx by @dannysheridan in https://github.com/fern-api/fern/pull/3658 +* feat: markdown-in-markdown - load markdown from another markdown file. by @abvthecity in https://github.com/fern-api/fern/pull/3693 +* java: oauth improvements including token refresh by @dcb6 in https://github.com/fern-api/fern/pull/3682 +* (feat, typescript): accept abort signals as request options by @dsinghvi in https://github.com/fern-api/fern/pull/3694 +* (fix, typescript): pass abort signal to SSE/JSON streams by @dsinghvi in https://github.com/fern-api/fern/pull/3695 +* (feat, express): pass `next` into express handlers by @dsinghvi in https://github.com/fern-api/fern/pull/3696 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.0...0.29.1-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-28.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-28.mdx new file mode 100644 index 000000000..41d3bda0a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-28.mdx @@ -0,0 +1,23 @@ +## 0.29.1 +**`(chore):`** ## What's Changed +* fix, python: do not manually specify custom license file by @armandobelardo in https://github.com/fern-api/fern/pull/3697 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.817 to 0.0.823 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3653 +* fix, fastapi: fixes path prefixes and construction by @armandobelardo in https://github.com/fern-api/fern/pull/3699 +* (docs) Add Building Your Docs section by @dannysheridan in https://github.com/fern-api/fern/pull/3698 +* docs: individualized title tags by @atwooddc in https://github.com/fern-api/fern/pull/3704 +* docs: add img alt attributes by @atwooddc in https://github.com/fern-api/fern/pull/3703 +* docs fixed tabs meta description typo by @atwooddc in https://github.com/fern-api/fern/pull/3702 +* (docs) Add custom subdomain and subpath instructions by @dannysheridan in https://github.com/fern-api/fern/pull/3705 +* (fix, docs): add missing dashes for “--instance” in CLI docs by @zachkirsch in https://github.com/fern-api/fern/pull/3709 +* build(deps): bump github.com/fern-api/generator-exec-go from 0.0.823 to 0.0.874 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3707 +* fix: ruby snippets now respect the full module path of the function call by @armandobelardo in https://github.com/fern-api/fern/pull/3706 +* (fix, csharp): make C# sdk .NET 6 compatible by @dsinghvi in https://github.com/fern-api/fern/pull/3711 +* (fix, csharp): generated GitHub workflows use `.NET` 8.x by @dsinghvi in https://github.com/fern-api/fern/pull/3712 +* fix: fastapi now has all pydantic utilities it needs by @armandobelardo in https://github.com/fern-api/fern/pull/3713 +* fix, python: add typing lib for dateutils by @armandobelardo in https://github.com/fern-api/fern/pull/3714 +* Docs remove redirect links by @atwooddc in https://github.com/fern-api/fern/pull/3701 +* (fix): `x-fern-base-path` impacts endpoint paths instead of `api.yml` base path by @dsinghvi in https://github.com/fern-api/fern/pull/3720 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.1-rc0...0.29.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-29.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-29.mdx new file mode 100644 index 000000000..4ac149301 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-29.mdx @@ -0,0 +1,20 @@ +## 0.29.2 +**`(chore):`** ## What's Changed +* docs: fix broken links and anchor text by @atwooddc in https://github.com/fern-api/fern/pull/3718 +* docs: nested tabs auto pagination page bug by @atwooddc in https://github.com/fern-api/fern/pull/3717 +* (fix, internal): do deploys of fern docs to dev by @dsinghvi in https://github.com/fern-api/fern/pull/3529 +* fix, python: flatten optional pagination return types by @armandobelardo in https://github.com/fern-api/fern/pull/3721 +* java, fix: de-conflict undiscriminated unions by @dcb6 in https://github.com/fern-api/fern/pull/3719 +* improvement, python: literal fields are now defaulted by @armandobelardo in https://github.com/fern-api/fern/pull/3724 +* (fix, csharp): enum deserialization by @armandobelardo in https://github.com/fern-api/fern/pull/3725 +* docs: added subtitle documentation on frontmatter page by @atwooddc in https://github.com/fern-api/fern/pull/3723 +* docs: added api reference summary by @atwooddc in https://github.com/fern-api/fern/pull/3716 +* docs: fixed broken links and updated openapi generator info by @atwooddc in https://github.com/fern-api/fern/pull/3700 +* (fix, seed): Fix snapshots by @dcb6 in https://github.com/fern-api/fern/pull/3726 +* (fix, csharp): streamline enum + union serde by @dsinghvi in https://github.com/fern-api/fern/pull/3727 +* (fix, typescript): remove `node:stream` import to play nicely with webpack by @dsinghvi in https://github.com/fern-api/fern/pull/3728 +* (fix, ts): Support OAuth for SDKs that set neverThrowErrors by @amckinney in https://github.com/fern-api/fern/pull/3729 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.1...0.29.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-30.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-30.mdx new file mode 100644 index 000000000..0a885ef9d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-30.mdx @@ -0,0 +1,7 @@ +## 0.29.3 +**`(chore):`** ## What's Changed +* (fix): write mock definition by @dsinghvi in https://github.com/fern-api/fern/pull/3730 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.2...0.29.3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-05-31.mdx b/fern/products/cli-api-reference/cli-changelog/2024-05-31.mdx new file mode 100644 index 000000000..18bb19b2f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-05-31.mdx @@ -0,0 +1,31 @@ +## 0.29.6 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.29.5...0.29.6 + +## 0.29.5 +**`(chore):`** ## What's Changed +* (fix, ts): Throw an error upon OAuth refresh failure by @amckinney in https://github.com/fern-api/fern/pull/3737 +* (fix, openapi): Preserve descriptions in anyOf by @amckinney in https://github.com/fern-api/fern/pull/3748 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.4...0.29.5 + +## 0.29.4 +**`(chore):`** ## What's Changed +* (fix, typescript): disable integration test generation by @dsinghvi in https://github.com/fern-api/fern/pull/3731 +* (fix, typescript): generated GitHub workflows do not assume `fern` present by @dsinghvi in https://github.com/fern-api/fern/pull/3732 +* fix, python: add type annotations to test vars by @armandobelardo in https://github.com/fern-api/fern/pull/3733 +* (feature, typescript): support `extraPeerDependencies` and `extraPeerDependenciesMeta` in custom config by @dsinghvi in https://github.com/fern-api/fern/pull/3739 +* docs: add note on GFM support by @chdeskur in https://github.com/fern-api/fern/pull/3738 +* Bump eslint-plugin-jest from 27.0.4 to 27.9.0 by @dependabot in https://github.com/fern-api/fern/pull/3539 +* Bump golang.org/x/tools from 0.20.0 to 0.21.0 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3538 +* (feat, python): support optional python deps + extras by @dsinghvi in https://github.com/fern-api/fern/pull/3742 +* java, improvement: run seed faster using local mode by @dcb6 in https://github.com/fern-api/fern/pull/3741 +* java, fix: generate builders even when types have no fields by @dcb6 in https://github.com/fern-api/fern/pull/3744 +* (fix, csharp): support `List` deserialization by @dsinghvi in https://github.com/fern-api/fern/pull/3745 +* (feat, openapi): add support for `x-fern-idempotency-headers` by @dsinghvi in https://github.com/fern-api/fern/pull/3746 + +## New Contributors +* @chdeskur made their first contribution in https://github.com/fern-api/fern/pull/3738 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.3...0.29.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-03.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-03.mdx new file mode 100644 index 000000000..59d8014c9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-03.mdx @@ -0,0 +1,39 @@ +## 0.30.0 +**`(chore):`** ## What's Changed +* fix: address a number of papercuts in the mock server and python unit tests by @armandobelardo in https://github.com/fern-api/fern/pull/3749 +* (fix, ts): Simplify OAuth error handling by @amckinney in https://github.com/fern-api/fern/pull/3752 +* docs: add java examples by @dcb6 in https://github.com/fern-api/fern/pull/3755 +* (feat, python): write out example ids in generated snippets by @dsinghvi in https://github.com/fern-api/fern/pull/3750 +* docs: remove maxHeight prop by @chdeskur in https://github.com/fern-api/fern/pull/3734 +* (fix, typescript): peer dependencies are always persisted by @dsinghvi in https://github.com/fern-api/fern/pull/3758 +* docs: added custom css & js page by @atwooddc in https://github.com/fern-api/fern/pull/3753 +* (fix, typescript): example identifiers are added to generated snippets by @dsinghvi in https://github.com/fern-api/fern/pull/3759 +* improvement, python: clean up endpoint functions by centralizing logic by @armandobelardo in https://github.com/fern-api/fern/pull/3761 +* improvement: add literal example type and add id to example by @armandobelardo in https://github.com/fern-api/fern/pull/3756 +* improvement: filter out nulls after merging API specs by @armandobelardo in https://github.com/fern-api/fern/pull/3710 +* (docs): Add discriminated union section by @amckinney in https://github.com/fern-api/fern/pull/3763 +* improvement: add a flag to allow python to generate discriminated unions as undiscriminated unions by @armandobelardo in https://github.com/fern-api/fern/pull/3740 +* (feature): Add keywords configuration by @amckinney in https://github.com/fern-api/fern/pull/3769 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.5...0.30.0 + +## 0.30.0-rc0 +**`(chore):`** ## What's Changed +* fix: address a number of papercuts in the mock server and python unit tests by @armandobelardo in https://github.com/fern-api/fern/pull/3749 +* (fix, ts): Simplify OAuth error handling by @amckinney in https://github.com/fern-api/fern/pull/3752 +* docs: add java examples by @dcb6 in https://github.com/fern-api/fern/pull/3755 +* (feat, python): write out example ids in generated snippets by @dsinghvi in https://github.com/fern-api/fern/pull/3750 +* docs: remove maxHeight prop by @chdeskur in https://github.com/fern-api/fern/pull/3734 +* (fix, typescript): peer dependencies are always persisted by @dsinghvi in https://github.com/fern-api/fern/pull/3758 +* docs: added custom css & js page by @atwooddc in https://github.com/fern-api/fern/pull/3753 +* (fix, typescript): example identifiers are added to generated snippets by @dsinghvi in https://github.com/fern-api/fern/pull/3759 +* improvement, python: clean up endpoint functions by centralizing logic by @armandobelardo in https://github.com/fern-api/fern/pull/3761 +* improvement: add literal example type and add id to example by @armandobelardo in https://github.com/fern-api/fern/pull/3756 +* improvement: filter out nulls after merging API specs by @armandobelardo in https://github.com/fern-api/fern/pull/3710 +* (docs): Add discriminated union section by @amckinney in https://github.com/fern-api/fern/pull/3763 +* improvement: add a flag to allow python to generate discriminated unions as undiscriminated unions by @armandobelardo in https://github.com/fern-api/fern/pull/3740 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.29.5...0.30.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-06.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-06.mdx new file mode 100644 index 000000000..95c8969e8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-06.mdx @@ -0,0 +1,28 @@ +## 0.30.1-rc1 +**`(chore):`** ## What's Changed +* fix, python: update timeout parameter docs by @armandobelardo in https://github.com/fern-api/fern/pull/3771 +* fix, python: mypy variance check by @armandobelardo in https://github.com/fern-api/fern/pull/3772 +* java: make sure oauth gated properly by @dcb6 in https://github.com/fern-api/fern/pull/3757 +* Bump validate-npm-package-name from 4.0.0 to 5.0.1 by @dependabot in https://github.com/fern-api/fern/pull/3765 +* Bump jwks-rsa from 3.0.0 to 3.1.0 by @dependabot in https://github.com/fern-api/fern/pull/3767 +* clean up step text by @chdeskur in https://github.com/fern-api/fern/pull/3774 +* Bump qs and @types/qs by @dependabot in https://github.com/fern-api/fern/pull/3768 +* feat: skip-slug in tabs by @abvthecity in https://github.com/fern-api/fern/pull/3780 +* (docs): Add Go and Ruby snippet sections by @amckinney in https://github.com/fern-api/fern/pull/3775 +* (feature): Add ReadmeConfig IR and generators.yml schema by @amckinney in https://github.com/fern-api/fern/pull/3781 +* improvement, python: unit tests are now run in CI if configured by @armandobelardo in https://github.com/fern-api/fern/pull/3783 +* java, improvement: error types by @dcb6 in https://github.com/fern-api/fern/pull/3779 +* java, feat: support response properties in sdk by @dcb6 in https://github.com/fern-api/fern/pull/3785 +* fix, python: the new client ensures there's a slash on the base path by @armandobelardo in https://github.com/fern-api/fern/pull/3787 +* (fix, python): generated python snippets respect trailing slashes by @dsinghvi in https://github.com/fern-api/fern/pull/3789 +* (chore, ts): Upgrade to IRv46 by @amckinney in https://github.com/fern-api/fern/pull/3788 +* (feat): run mypy on non integration tests by @dsinghvi in https://github.com/fern-api/fern/pull/3794 +* fix, python: regressions with client clean up by @armandobelardo in https://github.com/fern-api/fern/pull/3797 +* fix: address a number of unit test issues by @armandobelardo in https://github.com/fern-api/fern/pull/3800 +* java, fix: use `@java.lang.Override` in all generated code by @dcb6 in https://github.com/fern-api/fern/pull/3799 +* (eslint): check for `no-misused-promises` by @dsinghvi in https://github.com/fern-api/fern/pull/3801 +* upgrade: fdr-sdk by @abvthecity in https://github.com/fern-api/fern/pull/3792 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.0...0.30.1-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-07.mdx new file mode 100644 index 000000000..186e00aae --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-07.mdx @@ -0,0 +1,35 @@ +## 0.30.1 +**`(chore):`** ## What's Changed +* fix, python: update timeout parameter docs by @armandobelardo in https://github.com/fern-api/fern/pull/3771 +* fix, python: mypy variance check by @armandobelardo in https://github.com/fern-api/fern/pull/3772 +* java: make sure oauth gated properly by @dcb6 in https://github.com/fern-api/fern/pull/3757 +* Bump validate-npm-package-name from 4.0.0 to 5.0.1 by @dependabot in https://github.com/fern-api/fern/pull/3765 +* Bump jwks-rsa from 3.0.0 to 3.1.0 by @dependabot in https://github.com/fern-api/fern/pull/3767 +* clean up step text by @chdeskur in https://github.com/fern-api/fern/pull/3774 +* Bump qs and @types/qs by @dependabot in https://github.com/fern-api/fern/pull/3768 +* feat: skip-slug in tabs by @abvthecity in https://github.com/fern-api/fern/pull/3780 +* (docs): Add Go and Ruby snippet sections by @amckinney in https://github.com/fern-api/fern/pull/3775 +* (feature): Add ReadmeConfig IR and generators.yml schema by @amckinney in https://github.com/fern-api/fern/pull/3781 +* improvement, python: unit tests are now run in CI if configured by @armandobelardo in https://github.com/fern-api/fern/pull/3783 +* java, improvement: error types by @dcb6 in https://github.com/fern-api/fern/pull/3779 +* java, feat: support response properties in sdk by @dcb6 in https://github.com/fern-api/fern/pull/3785 +* fix, python: the new client ensures there's a slash on the base path by @armandobelardo in https://github.com/fern-api/fern/pull/3787 +* (fix, python): generated python snippets respect trailing slashes by @dsinghvi in https://github.com/fern-api/fern/pull/3789 +* (chore, ts): Upgrade to IRv46 by @amckinney in https://github.com/fern-api/fern/pull/3788 +* (feat): run mypy on non integration tests by @dsinghvi in https://github.com/fern-api/fern/pull/3794 +* fix, python: regressions with client clean up by @armandobelardo in https://github.com/fern-api/fern/pull/3797 +* fix: address a number of unit test issues by @armandobelardo in https://github.com/fern-api/fern/pull/3800 +* java, fix: use `@java.lang.Override` in all generated code by @dcb6 in https://github.com/fern-api/fern/pull/3799 +* (eslint): check for `no-misused-promises` by @dsinghvi in https://github.com/fern-api/fern/pull/3801 +* upgrade: fdr-sdk by @abvthecity in https://github.com/fern-api/fern/pull/3792 +* improvement: add local configuration for python by @armandobelardo in https://github.com/fern-api/fern/pull/3803 +* (fix): Publish ir-types-latest by @amckinney in https://github.com/fern-api/fern/pull/3806 +* Add Extra Field Support for FastAPI by @jmedway614 in https://github.com/fern-api/fern/pull/3804 +* java, fix: initialize `RequestOptions` `timeout` field correctly to `Optional.empty()` by @dcb6 in https://github.com/fern-api/fern/pull/3807 +* (fix, typescript): prefer `TextDecoder` when deserializing stream data by @dsinghvi in https://github.com/fern-api/fern/pull/3791 + +## New Contributors +* @jmedway614 made their first contribution in https://github.com/fern-api/fern/pull/3804 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.0...0.30.1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-10.mdx new file mode 100644 index 000000000..3c9738d12 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-10.mdx @@ -0,0 +1,26 @@ +## 0.30.3 +**`(chore):`** ## What's Changed +* (feature, ts): Add generator-cli client to generate README.md by @amckinney in https://github.com/fern-api/fern/pull/3817 +* (fix, python): Unions with single element and/or no properties by @amckinney in https://github.com/fern-api/fern/pull/3822 +* (fix, openapi): Handle more `allow-multiple` oneOf cases by @amckinney in https://github.com/fern-api/fern/pull/3830 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.2...0.30.3 + +## 0.30.2 +**`(chore):`** ## What's Changed +* (fix): snippet templates for discriminated unions specify `template_inputs` by @dsinghvi in https://github.com/fern-api/fern/pull/3808 +* fix python seed by @dsinghvi in https://github.com/fern-api/fern/pull/3809 +* (feature): Write ReameConfig in IR by @amckinney in https://github.com/fern-api/fern/pull/3786 +* python: improve seed setup script by @dcb6 in https://github.com/fern-api/fern/pull/3810 +* (fix): fern definition overview repetition by @chdeskur in https://github.com/fern-api/fern/pull/3812 +* fix: unchecked base model respects dicts as well as objects by @armandobelardo in https://github.com/fern-api/fern/pull/3813 +* (feat): C# is `.NET 4` compatible by @dsinghvi in https://github.com/fern-api/fern/pull/3816 +* add query encoder tests for value and for None by @jmedway614 in https://github.com/fern-api/fern/pull/3818 +* (internal, python): python generator uses python 3.9 and pins mypy by @dsinghvi in https://github.com/fern-api/fern/pull/3819 +* (internal, ir-sdk): generate ir sdk with pydantic v1 by @dsinghvi in https://github.com/fern-api/fern/pull/3820 +* (chore, ts): Pin IRv46 TypeScript migrator versions by @amckinney in https://github.com/fern-api/fern/pull/3821 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.1...0.30.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-11.mdx new file mode 100644 index 000000000..5cd45406e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-11.mdx @@ -0,0 +1,8 @@ +## 0.30.4 +**`(chore):`** ## What's Changed +* fix: pagination is 1-based not 0 by @armandobelardo in https://github.com/fern-api/fern/pull/3835 +* (fix, openapi): fall back to default status code if none provided by @dsinghvi in https://github.com/fern-api/fern/pull/3834 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.3...0.30.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-13.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-13.mdx new file mode 100644 index 000000000..3c6263568 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-13.mdx @@ -0,0 +1,38 @@ +## 0.30.7 +**`(chore):`** ## What's Changed +* fix: after parsing the paths, replace the image paths with file ids by @abvthecity in https://github.com/fern-api/fern/pull/3847 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.6...0.30.7 + +## 0.30.6 +**`(chore):`** ## What's Changed +* (feature, openapi): Add better support for OpenAPI webhooks by @amckinney in https://github.com/fern-api/fern/pull/3846 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.5...0.30.6 + +## 0.30.5 +**`(chore):`** ## What's Changed +* (fix, go): Handle deepObject query parameter arrays by @amckinney in https://github.com/fern-api/fern/pull/3836 +* [FER-1986] Fix two DiscriminatedUnion bugs in dynamic Typescript snippets by @ppod1991 in https://github.com/fern-api/fern/pull/3833 +* added custom package json config by @jmedway614 in https://github.com/fern-api/fern/pull/3832 +* (release, typescript): version `0.23.0-rc1` by @dsinghvi in https://github.com/fern-api/fern/pull/3838 +* (fix, ts): Support README.md generation in local mode by @amckinney in https://github.com/fern-api/fern/pull/3839 +* Chdeskur/streamline audiences by @chdeskur in https://github.com/fern-api/fern/pull/3815 +* Bump boxen from 7.0.0 to 7.1.1 by @dependabot in https://github.com/fern-api/fern/pull/3827 +* Bump inquirer and @types/inquirer by @dependabot in https://github.com/fern-api/fern/pull/3828 +* Bump braces from 3.0.2 to 3.0.3 by @dependabot in https://github.com/fern-api/fern/pull/3837 +* Bump github.com/fern-api/generator-exec-go from 0.0.874 to 0.0.877 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3825 +* Bump golang.org/x/mod from 0.17.0 to 0.18.0 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3824 +* integration docs by @chdeskur in https://github.com/fern-api/fern/pull/3795 +* fix, python: the unchecked base model stops special casing pydantic v2 by @armandobelardo in https://github.com/fern-api/fern/pull/3840 +* (fix, ts): Handle undiscriminated union map key examples by @amckinney in https://github.com/fern-api/fern/pull/3844 +* java: upgrade to IR 46 + BigInteger support by @dcb6 in https://github.com/fern-api/fern/pull/3814 +* fix: image path parsing from markdown considers MDX children by @abvthecity in https://github.com/fern-api/fern/pull/3843 + +## New Contributors +* @ppod1991 made their first contribution in https://github.com/fern-api/fern/pull/3833 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.4...0.30.5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-14.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-14.mdx new file mode 100644 index 000000000..1fcf8c425 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-14.mdx @@ -0,0 +1,41 @@ +## 0.30.8-rc6 +**`(chore):`** ## What's Changed +* feat: api navigation reorder by @abvthecity in https://github.com/fern-api/fern/pull/3841 +* (fix, webhooks): support audiences for webhooks and payload properties by @dsinghvi in https://github.com/fern-api/fern/pull/3851 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.8-rc2...0.30.8-rc6 + +## 0.30.8-rc5 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.30.8-rc4...0.30.8-rc5 + +## 0.30.8-rc4 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.30.8-rc3...0.30.8-rc4 + +## 0.30.8-rc3 +**`(chore):`** ## What's Changed +* (fix): handle code samples without accompanying examples by @dsinghvi in https://github.com/fern-api/fern/pull/3849 +* (fix, ts): Add environment property to snippets by @amckinney in https://github.com/fern-api/fern/pull/3850 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.8-rc1...0.30.8-rc3 + +## 0.30.8-rc2 +**`(chore):`** ## What's Changed +* java, feature: pagination by @dcb6 in https://github.com/fern-api/fern/pull/3845 +* (fix): handle code samples without accompanying examples by @dsinghvi in https://github.com/fern-api/fern/pull/3849 +* (fix, ts): Add environment property to snippets by @amckinney in https://github.com/fern-api/fern/pull/3850 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.7...0.30.8-rc2 + +## 0.30.8-rc1 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.30.8-rc0...0.30.8-rc1 + +## 0.30.8-rc0 +**`(chore):`** ## What's Changed +* java, feature: pagination by @dcb6 in https://github.com/fern-api/fern/pull/3845 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.7...0.30.8-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-18.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-18.mdx new file mode 100644 index 000000000..7ed70ea58 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-18.mdx @@ -0,0 +1,45 @@ +## 0.30.8 +**`(chore):`** ## What's Changed +* java, feature: pagination by @dcb6 in https://github.com/fern-api/fern/pull/3845 +* (fix): handle code samples without accompanying examples by @dsinghvi in https://github.com/fern-api/fern/pull/3849 +* (fix, ts): Add environment property to snippets by @amckinney in https://github.com/fern-api/fern/pull/3850 +* feat: api navigation reorder by @abvthecity in https://github.com/fern-api/fern/pull/3841 +* (fix, webhooks): support audiences for webhooks and payload properties by @dsinghvi in https://github.com/fern-api/fern/pull/3851 +* fix: merge and filter children within non-visited subpackage by @abvthecity in https://github.com/fern-api/fern/pull/3854 +* (fix, docs): Update OAuth section by @amckinney in https://github.com/fern-api/fern/pull/3856 +* build(deps): bump idna from 3.6 to 3.7 in /generators/python by @dependabot in https://github.com/fern-api/fern/pull/3364 +* (fix, ts): Snippets and GitHub publish workflow by @amckinney in https://github.com/fern-api/fern/pull/3858 +* docs: fix broken links to cli commands by @atwooddc in https://github.com/fern-api/fern/pull/3782 +* docs: add openapi and asyncapi overrides by @dannysheridan in https://github.com/fern-api/fern/pull/3863 +* build(deps): bump @fern-fern/ir-v1-model from 0.0.1 to 0.0.2 by @dependabot in https://github.com/fern-api/fern/pull/3861 +* build(deps): bump @fern-fern/ir-v16-model from 0.0.1 to 0.0.4 by @dependabot in https://github.com/fern-api/fern/pull/3860 +* feat, ruby: enable oauth client generation by @armandobelardo in https://github.com/fern-api/fern/pull/3842 +* docs: add fern definition display-name property by @chdeskur in https://github.com/fern-api/fern/pull/3864 +* (feature, IRv48): Add offset pagination step by @amckinney in https://github.com/fern-api/fern/pull/3865 +* bump ir to account for ruby upgrade by @armandobelardo in https://github.com/fern-api/fern/pull/3868 +* [FER-1985] Adds support for templatized Client Generation parameters in Dynamic Snippets by @ppod1991 in https://github.com/fern-api/fern/pull/3848 +* fix, ruby: deeply nested from_json functions now respect whether to call to_json or not by @armandobelardo in https://github.com/fern-api/fern/pull/3870 +* fix: subpackages should recursively expand its children by @abvthecity in https://github.com/fern-api/fern/pull/3875 +* docs: update how to specify servers with FastAPI by @minaelee in https://github.com/fern-api/fern/pull/3874 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.7...0.30.8 + +## 0.30.8-rc7 +**`(chore):`** ## What's Changed +* fix: merge and filter children within non-visited subpackage by @abvthecity in https://github.com/fern-api/fern/pull/3854 +* (fix, docs): Update OAuth section by @amckinney in https://github.com/fern-api/fern/pull/3856 +* build(deps): bump idna from 3.6 to 3.7 in /generators/python by @dependabot in https://github.com/fern-api/fern/pull/3364 +* (fix, ts): Snippets and GitHub publish workflow by @amckinney in https://github.com/fern-api/fern/pull/3858 +* docs: fix broken links to cli commands by @atwooddc in https://github.com/fern-api/fern/pull/3782 +* docs: add openapi and asyncapi overrides by @dannysheridan in https://github.com/fern-api/fern/pull/3863 +* build(deps): bump @fern-fern/ir-v1-model from 0.0.1 to 0.0.2 by @dependabot in https://github.com/fern-api/fern/pull/3861 +* build(deps): bump @fern-fern/ir-v16-model from 0.0.1 to 0.0.4 by @dependabot in https://github.com/fern-api/fern/pull/3860 +* feat, ruby: enable oauth client generation by @armandobelardo in https://github.com/fern-api/fern/pull/3842 +* docs: add fern definition display-name property by @chdeskur in https://github.com/fern-api/fern/pull/3864 +* (feature, IRv48): Add offset pagination step by @amckinney in https://github.com/fern-api/fern/pull/3865 +* bump ir to account for ruby upgrade by @armandobelardo in https://github.com/fern-api/fern/pull/3868 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.8-rc6...0.30.8-rc7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-19.mdx new file mode 100644 index 000000000..91de26f0c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-19.mdx @@ -0,0 +1,19 @@ +## 0.30.10 +**`(chore):`** ## What's Changed +* (chore, python): Upgrade to IRv46 by @amckinney in https://github.com/fern-api/fern/pull/3880 +* feat: add basepath to preview generation by @abvthecity in https://github.com/fern-api/fern/pull/3877 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.9...0.30.10 + +## 0.30.9 +**`(chore):`** ## What's Changed +* fix: bold text on “comparison with openapi” docs by @zachkirsch in https://github.com/fern-api/fern/pull/3876 +* (fix, typescript): snippet templates include client import by @dsinghvi in https://github.com/fern-api/fern/pull/3878 +* (fix, ts): Update README.md snippets to call nested methods by @amckinney in https://github.com/fern-api/fern/pull/3873 +* fix: python and ts generators only add publish block if they have cre… by @armandobelardo in https://github.com/fern-api/fern/pull/3871 +* (fix, openapi): generate examples for discriminated unions by @dsinghvi in https://github.com/fern-api/fern/pull/3879 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.8...0.30.9 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-20.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-20.mdx new file mode 100644 index 000000000..1bd0a1a97 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-20.mdx @@ -0,0 +1,16 @@ +## 0.31.0-rc0 +**`(chore):`** ## What's Changed +* (fix, csharp): revert to .NET 6+ compatibility by @dsinghvi in https://github.com/fern-api/fern/pull/3882 +* (fix, ts): Fix environment import in snippets by @amckinney in https://github.com/fern-api/fern/pull/3885 +* (feat, internal): setup csharp seed scripts by @dsinghvi in https://github.com/fern-api/fern/pull/3884 +* (feature, ts): Merge README.md files by @amckinney in https://github.com/fern-api/fern/pull/3881 +* (fix, csharp): ToString() Datetimes must be explicitly iso encoded by @dsinghvi in https://github.com/fern-api/fern/pull/3886 +* (feat, internal): run seed with audiences by @dsinghvi in https://github.com/fern-api/fern/pull/3887 +* (fix, csharp): handle discriminated unions + header literal parameters by @dsinghvi in https://github.com/fern-api/fern/pull/3888 +* (fix, csharp): handle optional datetime encoding by @dsinghvi in https://github.com/fern-api/fern/pull/3889 +* (fix): add seed test case for optional datetime query parameters by @dsinghvi in https://github.com/fern-api/fern/pull/3890 +* (fix): remove sdk language toggle for new unions by @dsinghvi in https://github.com/fern-api/fern/pull/3891 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.30.10...0.31.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-22.mdx new file mode 100644 index 000000000..2049b0b9a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-22.mdx @@ -0,0 +1,29 @@ +## 0.31.0-rc2 +**`(chore):`** ## What's Changed +* (fix, csharp): concatenate `baseURL` and endpoint path together by @dsinghvi in https://github.com/fern-api/fern/pull/3906 +* (fix, cli): literal examples are generated correctly in the IR by @dsinghvi in https://github.com/fern-api/fern/pull/3907 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.0-rc1...0.31.0-rc2 + +## 0.31.0-rc1 +**`(chore):`** ## What's Changed +* fix, ruby: leverage a types module by @armandobelardo in https://github.com/fern-api/fern/pull/3893 +* (fix, typescript): generate streaming endpoint snippets by @dsinghvi in https://github.com/fern-api/fern/pull/3895 +* fix: new ruby generator config matches class reference and class decl… by @armandobelardo in https://github.com/fern-api/fern/pull/3896 +* fix, python: readme is not specified in pyproject if not made by @armandobelardo in https://github.com/fern-api/fern/pull/3894 +* (fix, csharp): query params for datetimes index `Value` by @dsinghvi in https://github.com/fern-api/fern/pull/3892 +* (feature, python): Generate better README.md by @amckinney in https://github.com/fern-api/fern/pull/3897 +* (fix, typescript): remove fs dependency in browser runtimes by @dsinghvi in https://github.com/fern-api/fern/pull/3899 +* (fix, csharp): sdk respects service level path and path parameters by @dsinghvi in https://github.com/fern-api/fern/pull/3900 +* fix: validate files to be uploaded by @trevorblades in https://github.com/fern-api/fern/pull/3872 +* (feat, csharp): support sending bytes requests by @dsinghvi in https://github.com/fern-api/fern/pull/3901 +* (fix, csharp): safe join url and base path by @dsinghvi in https://github.com/fern-api/fern/pull/3902 +* Revert "fix: validate files to be uploaded" by @abvthecity in https://github.com/fern-api/fern/pull/3904 +* feat: changelog on tabs and sections by @abvthecity in https://github.com/fern-api/fern/pull/3903 + +## New Contributors +* @trevorblades made their first contribution in https://github.com/fern-api/fern/pull/3872 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.0-rc0...0.31.0-rc1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-24.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-24.mdx new file mode 100644 index 000000000..13156e55d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-24.mdx @@ -0,0 +1,34 @@ +## 0.31.0 +**`(chore):`** **Full Changelog**: https://github.com/fern-api/fern/compare/0.31.0-rc5...0.31.0 + +## 0.31.0-rc5 +**`(chore):`** ## What's Changed +* (fix): set when uploading a mock server definition by @dsinghvi in https://github.com/fern-api/fern/pull/3926 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.0-rc4...0.31.0-rc5 + +## 0.31.0-rc4 +**`(chore):`** ## What's Changed +* (feat, IR): support streaming code generation with the parameter by @dsinghvi in https://github.com/fern-api/fern/pull/3914 +* (feat): update frontmatter docs by @chdeskur in https://github.com/fern-api/fern/pull/3916 +* (fix, cli): examples don't print out where the missing property is by @dsinghvi in https://github.com/fern-api/fern/pull/3919 +* (fix): don't error if required literal parameters are unspecified by @dsinghvi in https://github.com/fern-api/fern/pull/3921 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.0-rc3...0.31.0-rc4 + +## 0.31.0-rc3 +**`(chore):`** ## What's Changed +* (fix, python): SDK doesn't leak `JSONDecodeError` to users by @dsinghvi in https://github.com/fern-api/fern/pull/3908 +* (fix, python): python sdk generator handles stream termination like `[[DONE]]` by @dsinghvi in https://github.com/fern-api/fern/pull/3909 +* (feature, readme): Add support for configurable introduction by @amckinney in https://github.com/fern-api/fern/pull/3898 +* build(deps): bump ws from 8.17.0 to 8.17.1 by @dependabot in https://github.com/fern-api/fern/pull/3866 +* (internal, refactor): make `OSSWorkspace` and `FernWorkspace` classes by @dsinghvi in https://github.com/fern-api/fern/pull/3910 +* (refactor, internal): generate fern workspace before calling generate by @dsinghvi in https://github.com/fern-api/fern/pull/3911 +* (refactor, internal): clean up how OpenAPI parser deals with settings by @dsinghvi in https://github.com/fern-api/fern/pull/3912 +* (feat, cli): support customizing api settings per generator by @dsinghvi in https://github.com/fern-api/fern/pull/3913 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.0-rc2...0.31.0-rc3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-26.mdx new file mode 100644 index 000000000..684dd244b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-26.mdx @@ -0,0 +1,36 @@ +## 0.31.3 +**`(chore):`** ## What's Changed +* fix: the python sdk sends additional properties to the correct request… by @armandobelardo in https://github.com/fern-api/fern/pull/3936 +* java, improvement: improve java exception naming by @dcb6 in https://github.com/fern-api/fern/pull/3938 +* Bump golang.org/x/tools from 0.21.0 to 0.22.0 in /generators/go by @dependabot in https://github.com/fern-api/fern/pull/3823 +* (fix): make sure that `exclusiveMaximum` and `exclusiveMinimum` are always booleans by @dsinghvi in https://github.com/fern-api/fern/pull/3940 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.2...0.31.3 + +## 0.31.2 +**`(chore):`** ## What's Changed +* (fix): openapi parser gets boolean values safely by @dsinghvi in https://github.com/fern-api/fern/pull/3937 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.1...0.31.2 + +## 0.31.1 +**`(chore):`** ## What's Changed +* fix: ruby RC respects header prefixes again by @armandobelardo in https://github.com/fern-api/fern/pull/3927 +* (feat, cli): add support for `--mode pull-request` in the CLI when running `fern generate` by @dsinghvi in https://github.com/fern-api/fern/pull/3928 +* fix, ruby: add one missed prefix fix by @armandobelardo in https://github.com/fern-api/fern/pull/3929 +* docs: add java example for oauth by @dcb6 in https://github.com/fern-api/fern/pull/3930 +* (improvement, python): add in root client templates for python snippets by @armandobelardo in https://github.com/fern-api/fern/pull/3931 +* Update generate-api-ref.mdx by @dannysheridan in https://github.com/fern-api/fern/pull/3933 +* improvement: add streaming and pagination sections to generated readme by @armandobelardo in https://github.com/fern-api/fern/pull/3932 +* java: make base api error class name configurable by @dcb6 in https://github.com/fern-api/fern/pull/3934 +* (chore, internal): upgrade python generator to use ir v49 by @dsinghvi in https://github.com/fern-api/fern/pull/3915 +* build(deps-dev): bump @types/jest-specific-snapshot from 0.5.7 to 0.5.9 by @dependabot in https://github.com/fern-api/fern/pull/3925 +* build(deps-dev): bump jsonc-parser from 2.2.1 to 3.3.0 by @dependabot in https://github.com/fern-api/fern/pull/3924 +* build(deps-dev): bump @types/is-ci from 3.0.2 to 3.0.4 by @dependabot in https://github.com/fern-api/fern/pull/3922 +* (fix, typescript): upgrade generators to `v46.2.0` by @dsinghvi in https://github.com/fern-api/fern/pull/3935 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.0...0.31.1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-27.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-27.mdx new file mode 100644 index 000000000..2ff699c09 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-27.mdx @@ -0,0 +1,26 @@ +## 0.31.6 +**`(chore):`** ## What's Changed +* (improvement, typescript): support overriding global headers by @dsinghvi in https://github.com/fern-api/fern/pull/3945 +* feat, python: introduce `reference.md` generation by @armandobelardo in https://github.com/fern-api/fern/pull/3946 +* (fix, csharp): json serialize enums before sending over the wire by @dsinghvi in https://github.com/fern-api/fern/pull/3947 +* (fix, cli): remove out of range number validations in `openapi-ir-to-fern` + remove husky by @dcb6 in https://github.com/fern-api/fern/pull/3948 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.5...0.31.6 + +## 0.31.5 +**`(chore):`** ## What's Changed +* fix: api update command now works with unioned + nested APIs by @armandobelardo in https://github.com/fern-api/fern/pull/3944 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.4...0.31.5 + +## 0.31.4 +**`(chore):`** ## What's Changed +* (feat, typescript): support automatic cursor based pagination by @dsinghvi in https://github.com/fern-api/fern/pull/3941 +* (fix, typescript): auto pagination handles optional results arrays by @dsinghvi in https://github.com/fern-api/fern/pull/3942 +* (fix, openapi): `x-fern-global-headers` works with predefined types by @dsinghvi in https://github.com/fern-api/fern/pull/3943 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.3...0.31.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-06-28.mdx b/fern/products/cli-api-reference/cli-changelog/2024-06-28.mdx new file mode 100644 index 000000000..d4f9b652a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-06-28.mdx @@ -0,0 +1,9 @@ +## 0.31.7 +**`(chore):`** ## What's Changed +* fix: validate files to be uploaded by @trevorblades in https://github.com/fern-api/fern/pull/3917 +* fix: python list allowlist is now case insensitive by @armandobelardo in https://github.com/fern-api/fern/pull/3950 +* improvement: add x-fern-base-path to asyncapi extensions by @armandobelardo in https://github.com/fern-api/fern/pull/3953 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.6...0.31.7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-01.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-01.mdx new file mode 100644 index 000000000..a3068a783 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-01.mdx @@ -0,0 +1,24 @@ +## 0.31.9 +**`(chore):`** ## What's Changed +* improvement: python async snippets now leverage asyncio run by @armandobelardo in https://github.com/fern-api/fern/pull/3961 +* improvement: allow adding extra dependencies to Ruby SDK by @armandobelardo in https://github.com/fern-api/fern/pull/3960 +* fix: Mark CSS files as 'will not be uploaded' by @trevorblades in https://github.com/fern-api/fern/pull/3964 +* (fix, cli): make sure `js` file checking works by @dsinghvi in https://github.com/fern-api/fern/pull/3963 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.8...0.31.9 + +## 0.31.8 +**`(chore):`** ## What's Changed +* fix: generator upgrade cli upgrades in place by @armandobelardo in https://github.com/fern-api/fern/pull/3951 +* feat: add reviewers blocks to generators.yml by @armandobelardo in https://github.com/fern-api/fern/pull/3952 +* Use all FormData headers and don't stringify stream.Readable by @williamluer in https://github.com/fern-api/fern/pull/3956 +* (feat, csharp): support extra dependencies by @dsinghvi in https://github.com/fern-api/fern/pull/3957 +* improvement: allow specifying if taking major in flag by @armandobelardo in https://github.com/fern-api/fern/pull/3958 +* fix: include css alongside js when validating UTF8 files by @abvthecity in https://github.com/fern-api/fern/pull/3959 + +## New Contributors +* @williamluer made their first contribution in https://github.com/fern-api/fern/pull/3956 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.7...0.31.8 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-03.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-03.mdx new file mode 100644 index 000000000..85bd614d9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-03.mdx @@ -0,0 +1,16 @@ +## 0.31.10 +**`(chore):`** ## What's Changed +* improvement: add advanced section to python readme by @armandobelardo in https://github.com/fern-api/fern/pull/3970 +* (feat): customize status code for typescript express generator by @dsinghvi in https://github.com/fern-api/fern/pull/3971 +* fix, python: allow offsets to start at 0 by @armandobelardo in https://github.com/fern-api/fern/pull/3972 +* fix: python pagination helper types now share generic type by @armandobelardo in https://github.com/fern-api/fern/pull/3973 +* chore: update python seed after generator-cli update by @armandobelardo in https://github.com/fern-api/fern/pull/3974 +* (csharp, fix): Empty Root Client Methods + `.Core` namespace issue by @dcb6 in https://github.com/fern-api/fern/pull/3975 +* (java, improvement): change default `JsonInclude` behavior by @dcb6 in https://github.com/fern-api/fern/pull/3978 +* (csharp, fix): base client requests not generated by @dcb6 in https://github.com/fern-api/fern/pull/3976 +* chore: plumb through ruby snippets config to FDR by @armandobelardo in https://github.com/fern-api/fern/pull/3980 +* improvement: allow boolean defaults within IR by @armandobelardo in https://github.com/fern-api/fern/pull/3981 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.9...0.31.10 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-04.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-04.mdx new file mode 100644 index 000000000..af52c7861 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-04.mdx @@ -0,0 +1,31 @@ +## 0.31.14 +**`(chore):`** ## What's Changed +* (fix, go): Don't send 'null' for nil request body by @amckinney in https://github.com/fern-api/fern/pull/3987 +* (fix): fern generate --preview doesn't check for env variables by @dsinghvi in https://github.com/fern-api/fern/pull/3988 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.13...0.31.14 + +## 0.31.13 +**`(chore):`** ## What's Changed +* (fix): allow ISO-8859-1 encoded files by @dsinghvi in https://github.com/fern-api/fern/pull/3986 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.12...0.31.13 + +## 0.31.12 +**`(chore):`** ## What's Changed +* (fix, cli): Remove default value checks for boolean, long, and bigint by @amckinney in https://github.com/fern-api/fern/pull/3985 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.11...0.31.12 + +## 0.31.11 +**`(chore):`** ## What's Changed +* fix: ruby snippets for dates have correct quotes by @armandobelardo in https://github.com/fern-api/fern/pull/3983 +* improvement: python respects ir50, inserts defaults by @armandobelardo in https://github.com/fern-api/fern/pull/3982 +* (fix, openapi): Prefer security schemes in order by @amckinney in https://github.com/fern-api/fern/pull/3984 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.10...0.31.11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-05.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-05.mdx new file mode 100644 index 000000000..0f560fbac --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-05.mdx @@ -0,0 +1,46 @@ +## 0.31.17 +**`(chore):`** ## What's Changed +* (chore): Replace CircleCI with GitHub workflows by @amckinney in https://github.com/fern-api/fern/pull/3991 +* (fix): Update NPM token environment variable by @amckinney in https://github.com/fern-api/fern/pull/3992 +* (fix): Update git-version.sh script by @amckinney in https://github.com/fern-api/fern/pull/3993 +* (fix): Use github.ref_name by @amckinney in https://github.com/fern-api/fern/pull/3996 +* (fix): Add POSTHOG_API_KEY to live-test job by @amckinney in https://github.com/fern-api/fern/pull/3998 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.15...0.31.17 + +## 0.31.17-rc2 +**`(chore):`** ## What's Changed +* (fix): Add POSTHOG_API_KEY to live-test job by @amckinney in https://github.com/fern-api/fern/pull/3998 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.17-rc1...0.31.17-rc2 + +## 0.31.17-rc1 +**`(chore):`** ## What's Changed +* (fix): Use github.ref_name by @amckinney in https://github.com/fern-api/fern/pull/3996 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.17-rc0...0.31.17-rc1 + +## 0.31.17-rc0 +**`(chore):`** ## What's Changed +* (chore): Replace CircleCI with GitHub workflows by @amckinney in https://github.com/fern-api/fern/pull/3991 +* (fix): Update NPM token environment variable by @amckinney in https://github.com/fern-api/fern/pull/3992 +* (fix): Update git-version.sh script by @amckinney in https://github.com/fern-api/fern/pull/3993 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.15...0.31.17-rc0 + +## 0.31.16 +**`(chore):`** ## What's Changed +* (chore): update availability.mdx by @chdeskur in https://github.com/fern-api/fern/pull/3989 +* (fix, openapi): Fix allOf object filtering by @amckinney in https://github.com/fern-api/fern/pull/3990 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.14...0.31.16 + +## 0.31.15 +**`(chore):`** ## What's Changed +* (chore): update availability.mdx by @chdeskur in https://github.com/fern-api/fern/pull/3989 +* (fix, openapi): Fix allOf object filtering by @amckinney in https://github.com/fern-api/fern/pull/3990 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.14...0.31.15 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-09.mdx new file mode 100644 index 000000000..411c2232c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-09.mdx @@ -0,0 +1,66 @@ +## 0.31.22-rc1 +**`(chore):`** ## What's Changed +* Fix core-utilities typescript tests by @williamluer in https://github.com/fern-api/fern/pull/4022 +* experimental: scan files to include react in mdx by @abvthecity in https://github.com/fern-api/fern/pull/4015 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.22-rc0...0.31.22-rc1 + +## 0.31.22-rc2 +**`(chore):`** ## What's Changed +* (feat, typescript): make `zurg` completely synchronous by @dsinghvi in https://github.com/fern-api/fern/pull/4024 +* (chore): add xml type by @chdeskur in https://github.com/fern-api/fern/pull/4025 +* fix: (regression) parseDocsConfiguration accidentally calls loadAllPages with absolutePathToDocsConfig by @abvthecity in https://github.com/fern-api/fern/pull/4026 +* (feature, typescript): Add offset step pagination with IRv48 by @amckinney in https://github.com/fern-api/fern/pull/4028 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.22-rc1...0.31.22-rc2 + +## 0.31.22-rc0 +**`(chore):`** ## What's Changed +* Revert "Revert "feat: landing page in docs"" by @abvthecity in https://github.com/fern-api/fern/pull/4023 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.21...0.31.22-rc0 + +## 0.31.21 +**`(chore):`** ## What's Changed +* (chore, typescript): Release 0.28.0-rc0 by @amckinney in https://github.com/fern-api/fern/pull/4019 +* Revert "feat: landing page in docs" by @dsinghvi in https://github.com/fern-api/fern/pull/4021 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.20...0.31.21 + +## 0.31.20 +**`(chore):`** ## What's Changed +* (feature, typescript): Add offset pagination by @amckinney in https://github.com/fern-api/fern/pull/4008 +* (fix, internal): `template/codegen` repo plays nicely with mrlint by @dsinghvi in https://github.com/fern-api/fern/pull/4018 +* (fix): CI is green by @amckinney in https://github.com/fern-api/fern/pull/4017 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.19...0.31.20 + +## 0.31.19 +**`(chore):`** ## What's Changed +* (fix): Pagination works with imported type references by @amckinney in https://github.com/fern-api/fern/pull/4014 +* Template for creating a new SDK generator by @mikemilla in https://github.com/fern-api/fern/pull/4010 + +## New Contributors +* @mikemilla made their first contribution in https://github.com/fern-api/fern/pull/4010 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.18...0.31.19 + +## 0.31.18 +**`(chore):`** ## What's Changed +* feat: landing page in docs by @abvthecity in https://github.com/fern-api/fern/pull/3999 +* (feature, typescript): Add support for alpha/beta dist tags by @amckinney in https://github.com/fern-api/fern/pull/4000 +* fix: allowed text encodings by @abvthecity in https://github.com/fern-api/fern/pull/4005 +* (internal): get ci to green by @dsinghvi in https://github.com/fern-api/fern/pull/4009 +* (feat, typescript): support jsr publish by @dsinghvi in https://github.com/fern-api/fern/pull/4007 +* (chore, python): Update README.md snapshots by @amckinney in https://github.com/fern-api/fern/pull/4012 +* (chore, check): Add pagination test cases by @amckinney in https://github.com/fern-api/fern/pull/4011 +* (fix, typescript): readme correctly displays advanced sections by @dsinghvi in https://github.com/fern-api/fern/pull/4013 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.17...0.31.18-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-10.mdx new file mode 100644 index 000000000..ba8df10d5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-10.mdx @@ -0,0 +1,17 @@ +## 0.31.22 +**`(chore):`** ## What's Changed +* Revert "Revert "feat: landing page in docs"" by @abvthecity in https://github.com/fern-api/fern/pull/4023 +* Fix core-utilities typescript tests by @williamluer in https://github.com/fern-api/fern/pull/4022 +* experimental: scan files to include react in mdx by @abvthecity in https://github.com/fern-api/fern/pull/4015 +* (feat, typescript): make `zurg` completely synchronous by @dsinghvi in https://github.com/fern-api/fern/pull/4024 +* (chore): add xml type by @chdeskur in https://github.com/fern-api/fern/pull/4025 +* fix: (regression) parseDocsConfiguration accidentally calls loadAllPages with absolutePathToDocsConfig by @abvthecity in https://github.com/fern-api/fern/pull/4026 +* (feature, typescript): Add offset step pagination with IRv48 by @amckinney in https://github.com/fern-api/fern/pull/4028 +* csharp, fix, feature, improvement: Target .NET Standard + Framework, fix various bugs, many small improvements by @dcb6 in https://github.com/fern-api/fern/pull/4030 +* fix: update unchecked base model to not coerce none by @armandobelardo in https://github.com/fern-api/fern/pull/4029 +* fix: unreserve `set` name for python methods by @armandobelardo in https://github.com/fern-api/fern/pull/4031 +* add in swift to seed runner by @armandobelardo in https://github.com/fern-api/fern/pull/4034 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.21...0.31.22 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-11.mdx new file mode 100644 index 000000000..dad01095c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-11.mdx @@ -0,0 +1,27 @@ +## 0.31.23 +**`(chore):`** ## What's Changed +* (feature, typescript): Add setObjectProperty core utility by @amckinney in https://github.com/fern-api/fern/pull/4032 +* c#, fix: increase supported union size + handle double optionals by @dcb6 in https://github.com/fern-api/fern/pull/4033 +* (fix): Handle circular references in serialization layer by @amckinney in https://github.com/fern-api/fern/pull/4036 +* fix: fastapi generation does not duplicate descriptions anymore by @armandobelardo in https://github.com/fern-api/fern/pull/4037 +* Move use_str_enums to base by @jochs in https://github.com/fern-api/fern/pull/4040 +* (chore): remove generator upgrade docs by @chdeskur in https://github.com/fern-api/fern/pull/4043 +* (feature, openapi): Add support for x-fern-property-name on request body by @amckinney in https://github.com/fern-api/fern/pull/4042 +* (feat, typescript): refactor `Fetcher` and add unit tests by @williamluer in https://github.com/fern-api/fern/pull/3977 + +## New Contributors +* @jochs made their first contribution in https://github.com/fern-api/fern/pull/4040 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.22...0.31.23 + +## 0.31.23-rc0 +**`(chore):`** ## What's Changed +* (feature, typescript): Add setObjectProperty core utility by @amckinney in https://github.com/fern-api/fern/pull/4032 +* c#, fix: increase supported union size + handle double optionals by @dcb6 in https://github.com/fern-api/fern/pull/4033 +* (fix): Handle circular references in serialization layer by @amckinney in https://github.com/fern-api/fern/pull/4036 +* fix: fastapi generation does not duplicate descriptions anymore by @armandobelardo in https://github.com/fern-api/fern/pull/4037 +* (feat): ir now adds a TypeReference for container types that makes it easier to generate snippets by @dcb6 in https://github.com/fern-api/fern/pull/4038 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.22...0.31.23-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-12.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-12.mdx new file mode 100644 index 000000000..a1de38e3b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-12.mdx @@ -0,0 +1,18 @@ +## 0.31.25-rc1 +**`(chore):`** ## What's Changed +* fix: ignore data urls in parseImagePaths by @abvthecity in https://github.com/fern-api/fern/pull/4053 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.25-rc0...0.31.25-rc1 + +## 0.31.25-rc0 +**`(chore):`** ## What's Changed +* (fix, openapi): Resolve 'refs' specified in overrides by @amckinney in https://github.com/fern-api/fern/pull/4049 +* Initial Swift Codegen by @armandobelardo in https://github.com/fern-api/fern/pull/4035 +* (fix): Swift generator and template by @amckinney in https://github.com/fern-api/fern/pull/4050 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.24...0.31.25-rc0 + +## 0.31.24 +**`(chore):`** Release 0.31.24 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-16.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-16.mdx new file mode 100644 index 000000000..73f646c6b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-16.mdx @@ -0,0 +1,22 @@ +## 0.32.0 +**`(chore):`** ## What's Changed +* (fix, openapi): Resolve 'refs' specified in overrides by @amckinney in https://github.com/fern-api/fern/pull/4049 +* Initial Swift Codegen by @armandobelardo in https://github.com/fern-api/fern/pull/4035 +* (fix): Swift generator and template by @amckinney in https://github.com/fern-api/fern/pull/4050 +* fix: ignore data urls in parseImagePaths by @abvthecity in https://github.com/fern-api/fern/pull/4053 +* (feature, typescript): Add omitUndefined option by @amckinney in https://github.com/fern-api/fern/pull/4052 +* docs: Inspiration from Conjure, Smithy, and Stripe Docs by @dannysheridan in https://github.com/fern-api/fern/pull/4054 +* feature: add Penguin AI and Koala to our docs website by @dannysheridan in https://github.com/fern-api/fern/pull/3962 +* (fix): eslint works by @dsinghvi in https://github.com/fern-api/fern/pull/4055 +* fix: python snippet and template recursion errors by @armandobelardo in https://github.com/fern-api/fern/pull/4057 +* (feature, typescript): Use generator-cli to generate reference.md by @amckinney in https://github.com/fern-api/fern/pull/4062 +* fix: analytics scripts by @abvthecity in https://github.com/fern-api/fern/pull/4063 +* fix analytics 2 by @abvthecity in https://github.com/fern-api/fern/pull/4064 +* fix: fern docs publishing by @abvthecity in https://github.com/fern-api/fern/pull/4065 +* feature: add tracking via rb2b by @dannysheridan in https://github.com/fern-api/fern/pull/4061 +* chore: add back x-readme code samples by @armandobelardo in https://github.com/fern-api/fern/pull/4060 +* (feature): Add ApiVersionSchema type by @amckinney in https://github.com/fern-api/fern/pull/4068 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.31.24...0.32.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-17.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-17.mdx new file mode 100644 index 000000000..10e1e79d2 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-17.mdx @@ -0,0 +1,19 @@ +## 0.33.1 +**`(chore):`** ## What's Changed +* :improvement: update seed's script runner to fail if any of the commands exit 1 by @armandobelardo in https://github.com/fern-api/fern/pull/4075 +* (fix, openapi): Deduplicate API version scheme header by @amckinney in https://github.com/fern-api/fern/pull/4076 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.0...0.33.1 + +## 0.33.0 +**`(chore):`** ## What's Changed +* fix: python sdk serializes bytes within JSON by @armandobelardo in https://github.com/fern-api/fern/pull/4070 +* (fix, typescript): multipart form upload on Node 19+ by @dsinghvi in https://github.com/fern-api/fern/pull/4056 +* (feat): `ir` now adds a `TypeReference` for container types that makes it easier to generate snippets + autogenerated type examples by @dsinghvi in https://github.com/fern-api/fern/pull/4038 +* (fix): fix `ir-sdk-latest` `generators.yml` by @dcb6 in https://github.com/fern-api/fern/pull/4074 +* (feature, typescript): Generarte API version scheme by @amckinney in https://github.com/fern-api/fern/pull/4071 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.32.0...0.33.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-19.mdx new file mode 100644 index 000000000..deca98096 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-19.mdx @@ -0,0 +1,26 @@ +## 0.33.2 +**`(chore):`** ## What's Changed +* fix, python: only check the oauth expiry if there is a specified field by @armandobelardo in https://github.com/fern-api/fern/pull/4077 +* fix: python now requires an environment be specified if a default is not provided by @armandobelardo in https://github.com/fern-api/fern/pull/4078 +* (feat): support `fs.CreateReadStream` on Node 19+ form data uploads by @dsinghvi in https://github.com/fern-api/fern/pull/4073 +* (fix): support audiences on query parameters by @dsinghvi in https://github.com/fern-api/fern/pull/4067 +* (feat, cli): Add "-", "/", "|" to supported non-alphanumeric generated names for Enums by @dsinghvi in https://github.com/fern-api/fern/pull/4084 +* improvement: update 'any object' examples to be flatter by @armandobelardo in https://github.com/fern-api/fern/pull/4083 +* improvement: global headers are not extracted out for docs by @armandobelardo in https://github.com/fern-api/fern/pull/4085 +* chore: implement stream-parameter IR change by @armandobelardo in https://github.com/fern-api/fern/pull/4072 +* (chore, csharp): Generate latest test snapshots by @amckinney in https://github.com/fern-api/fern/pull/4087 +* improvement: Add Availability to OpenApi Parser and OpenApi IR to Fern IR by @armandobelardo in https://github.com/fern-api/fern/pull/4086 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.1...0.33.2 + +## 0.33.2-rc0 +**`(chore):`** ## What's Changed +* fix, python: only check the oauth expiry if there is a specified field by @armandobelardo in https://github.com/fern-api/fern/pull/4077 +* fix: python now requires an environment be specified if a default is not provided by @armandobelardo in https://github.com/fern-api/fern/pull/4078 +* (feat): support `fs.CreateReadStream` on Node 19+ form data uploads by @dsinghvi in https://github.com/fern-api/fern/pull/4073 +* (fix): support audiences on query parameters by @dsinghvi in https://github.com/fern-api/fern/pull/4067 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.1...0.33.2-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-21.mdx new file mode 100644 index 000000000..bccad34c6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-21.mdx @@ -0,0 +1,8 @@ +## 0.33.3 +**`(chore):`** ## What's Changed +* feat, csharp: Unit Test Generation + IR Bump by @dcb6 in https://github.com/fern-api/fern/pull/4047 +* (fix): remove `jest-specific-snapshot` by @dsinghvi in https://github.com/fern-api/fern/pull/4088 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.2...0.33.3 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-22.mdx new file mode 100644 index 000000000..e26a6a668 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-22.mdx @@ -0,0 +1,9 @@ +## 0.33.4 +**`(chore):`** ## What's Changed +* adding readme alternative page by @chdeskur in https://github.com/fern-api/fern/pull/4091 +* fix: the ruby SDK now returns the parsed json instead of openstruct if no JSON serializer is specified by @armandobelardo in https://github.com/fern-api/fern/pull/4092 +* (fix): OpenAPI parser handles generating examples when no request or response required by @dsinghvi in https://github.com/fern-api/fern/pull/4096 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.3...0.33.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-23.mdx new file mode 100644 index 000000000..d4c953497 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-23.mdx @@ -0,0 +1,11 @@ +## 0.33.5 +**`(chore):`** ## What's Changed +* (fix, go): Fix error handling for property-name error discrimination by @amckinney in https://github.com/fern-api/fern/pull/4098 +* improvement: support pydantic v2 outright by @armandobelardo in https://github.com/fern-api/fern/pull/3805 +* fix: int64 format is correctly parsed to long by @armandobelardo in https://github.com/fern-api/fern/pull/4099 +* c#, fix: fix datetime serialization, stop generating empty serialization unit tests by @dcb6 in https://github.com/fern-api/fern/pull/4097 +* [FER-2339] Pass OpenAPI request parameter examples through Fern IR Schema examples by @RohinBhargava in https://github.com/fern-api/fern/pull/4095 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.4...0.33.5 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-24.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-24.mdx new file mode 100644 index 000000000..847c11be1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-24.mdx @@ -0,0 +1,38 @@ +## 0.35.0-rc0 +**`(chore):`** ## What's Changed +* (feat): support `default-url` and url override on imports by @dsinghvi in https://github.com/fern-api/fern/pull/4116 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.34.0...0.35.0-rc0 + +## 0.34.0 +**`(chore):`** ## What's Changed +* (chore): add SEO frontmatter section by @chdeskur in https://github.com/fern-api/fern/pull/4101 +* fix: update typing of `expected_types` to tuple to satisfy mypy by @armandobelardo in https://github.com/fern-api/fern/pull/4100 +* (chore): document nuget api key by @chdeskur in https://github.com/fern-api/fern/pull/4103 +* (chore): pypi styling update by @chdeskur in https://github.com/fern-api/fern/pull/4105 +* c#, improvement: datetime serialization by @dcb6 in https://github.com/fern-api/fern/pull/4106 +* feat: disable batch/stream toggle by @abvthecity in https://github.com/fern-api/fern/pull/4108 +* fix: update forward refs continues to be silent by @armandobelardo in https://github.com/fern-api/fern/pull/4110 +* java, improvement: allow builder methods for optional fields to accept null by @dcb6 in https://github.com/fern-api/fern/pull/4107 +* [FER-2381] CLI Forbidden Error Message Improvement by @RohinBhargava in https://github.com/fern-api/fern/pull/4109 +* (feat, typescript): copy over `zurg` unit tests to the generated SDK by @williamluer in https://github.com/fern-api/fern/pull/4045 +* java, fix: don't prematurely close okhttp response by @dcb6 in https://github.com/fern-api/fern/pull/4112 +* (feat, typescript): generate tests for `auth` and `fetcher` utilities by @dsinghvi in https://github.com/fern-api/fern/pull/4115 +* (feature): Add IRv52: uint and enum default values by @amckinney in https://github.com/fern-api/fern/pull/4102 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.5...0.34.0 + +## 0.33.6-rc0 +**`(chore):`** ## What's Changed +* (chore): add SEO frontmatter section by @chdeskur in https://github.com/fern-api/fern/pull/4101 +* fix: update typing of `expected_types` to tuple to satisfy mypy by @armandobelardo in https://github.com/fern-api/fern/pull/4100 +* (chore): document nuget api key by @chdeskur in https://github.com/fern-api/fern/pull/4103 +* (chore): pypi styling update by @chdeskur in https://github.com/fern-api/fern/pull/4105 +* c#, improvement: datetime serialization by @dcb6 in https://github.com/fern-api/fern/pull/4106 +* feat: disable batch/stream toggle by @abvthecity in https://github.com/fern-api/fern/pull/4108 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.33.5...0.33.6-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-25.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-25.mdx new file mode 100644 index 000000000..f86dd6e94 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-25.mdx @@ -0,0 +1,8 @@ +## 0.35.0 +**`(chore):`** ## What's Changed +* (feat): support `default-url` and url override on imports by @dsinghvi in https://github.com/fern-api/fern/pull/4116 +* (fix, openapi): set unauthed appropriately in openapi parser by @dsinghvi in https://github.com/fern-api/fern/pull/4117 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.34.0...0.35.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-26.mdx new file mode 100644 index 000000000..a7beb53c7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-26.mdx @@ -0,0 +1,25 @@ +## 0.36.0-rc1 +**`(chore):`** ## What's Changed +* java, fix: match java local config to publish config by @dcb6 in https://github.com/fern-api/fern/pull/4127 +* follow up: release java sdk 1.0.5 by @dcb6 in https://github.com/fern-api/fern/pull/4129 +* fix: Add Stream Wrappers for use with various environments by @RohinBhargava in https://github.com/fern-api/fern/pull/4118 +* chore: add changelog and version for stream wrapper polyfill by @RohinBhargava in https://github.com/fern-api/fern/pull/4130 +* feat: enable arbitrary code snippets in docs by @abvthecity in https://github.com/fern-api/fern/pull/4131 +* fix: add start stream on pipe by @RohinBhargava in https://github.com/fern-api/fern/pull/4132 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.36.0-rc0...0.36.0-rc1 + +## 0.36.0-rc0 +**`(chore):`** ## What's Changed +* improvement, python: export the root client from the root init file by @armandobelardo in https://github.com/fern-api/fern/pull/4111 +* (feat): support multi url environments in C# by @dsinghvi in https://github.com/fern-api/fern/pull/4120 +* (fix, csharp): MultiUrl environments now compile by @dsinghvi in https://github.com/fern-api/fern/pull/4121 +* c#, improvement: Add header suppliers to `RawClient` constructor parameters by @dcb6 in https://github.com/fern-api/fern/pull/4119 +* (fix, csharp): uuids are now generated as strings by @dsinghvi in https://github.com/fern-api/fern/pull/4122 +* (fix): regenerate c# model snapshots by @dsinghvi in https://github.com/fern-api/fern/pull/4123 +* feat: header tabs by @abvthecity in https://github.com/fern-api/fern/pull/4124 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.35.0...0.36.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-29.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-29.mdx new file mode 100644 index 000000000..79b02c3a9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-29.mdx @@ -0,0 +1,23 @@ +## 0.36.0 +**`(chore):`** ## What's Changed +* improvement, python: export the root client from the root init file by @armandobelardo in https://github.com/fern-api/fern/pull/4111 +* (feat): support multi url environments in C# by @dsinghvi in https://github.com/fern-api/fern/pull/4120 +* (fix, csharp): MultiUrl environments now compile by @dsinghvi in https://github.com/fern-api/fern/pull/4121 +* c#, improvement: Add header suppliers to `RawClient` constructor parameters by @dcb6 in https://github.com/fern-api/fern/pull/4119 +* (fix, csharp): uuids are now generated as strings by @dsinghvi in https://github.com/fern-api/fern/pull/4122 +* (fix): regenerate c# model snapshots by @dsinghvi in https://github.com/fern-api/fern/pull/4123 +* feat: header tabs by @abvthecity in https://github.com/fern-api/fern/pull/4124 +* java, fix: match java local config to publish config by @dcb6 in https://github.com/fern-api/fern/pull/4127 +* follow up: release java sdk 1.0.5 by @dcb6 in https://github.com/fern-api/fern/pull/4129 +* fix: Add Stream Wrappers for use with various environments by @RohinBhargava in https://github.com/fern-api/fern/pull/4118 +* chore: add changelog and version for stream wrapper polyfill by @RohinBhargava in https://github.com/fern-api/fern/pull/4130 +* feat: enable arbitrary code snippets in docs by @abvthecity in https://github.com/fern-api/fern/pull/4131 +* fix: add start stream on pipe by @RohinBhargava in https://github.com/fern-api/fern/pull/4132 +* GH Workflow for Checking Generator Version Consistency by @dcb6 in https://github.com/fern-api/fern/pull/4133 +* fix: updated stream wrapper test paths by @RohinBhargava in https://github.com/fern-api/fern/pull/4134 +* fix: SSE Streaming Bifurcation by @RohinBhargava in https://github.com/fern-api/fern/pull/4136 +* (fix): global headers case insensitive comparison by @dsinghvi in https://github.com/fern-api/fern/pull/4137 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.35.0...0.36.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-07-31.mdx b/fern/products/cli-api-reference/cli-changelog/2024-07-31.mdx new file mode 100644 index 000000000..02830ca78 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-07-31.mdx @@ -0,0 +1,29 @@ +## 0.37.1 +**`(chore):`** ## What's Changed +* make @dcb6 codeowner for java + csharp by @dcb6 in https://github.com/fern-api/fern/pull/4163 +* (beta, typescript): feature flag test generation that actually works by @dsinghvi in https://github.com/fern-api/fern/pull/4164 +* fix: add images from frontmatter as well by @RohinBhargava in https://github.com/fern-api/fern/pull/4156 +* (fix, docs): ir to fdr converter sends global headers by @dsinghvi in https://github.com/fern-api/fern/pull/4170 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.0...0.37.1 + +## 0.37.0 +**`(chore):`** ## What's Changed +* chore: bump typescript version and changelog by @RohinBhargava in https://github.com/fern-api/fern/pull/4143 +* feat: introduce typeddicts for request objects by @armandobelardo in https://github.com/fern-api/fern/pull/4113 +* fix, python: get api error through external import by @armandobelardo in https://github.com/fern-api/fern/pull/4145 +* fix: Fix unit test path and add CI check for this by @RohinBhargava in https://github.com/fern-api/fern/pull/4148 +* [c#, improvement]: add explicit namespaces to custom config by @dcb6 in https://github.com/fern-api/fern/pull/4144 +* c#, improvement: `set` instead of `init` field accessors in types by @dcb6 in https://github.com/fern-api/fern/pull/4151 +* (feature): Add IRv53; float type by @amckinney in https://github.com/fern-api/fern/pull/4146 +* c#, improvement: make datetime deserialization more lenient + include millis in datetime serialization by @dcb6 in https://github.com/fern-api/fern/pull/4149 +* chore: ci workflow gating on ts-sdk changes by @RohinBhargava in https://github.com/fern-api/fern/pull/4152 +* (fix, csharp): `map` values are nullable by @amckinney in https://github.com/fern-api/fern/pull/4153 +* fix: incorrect code block indentation in api-yml.mdx by @abvthecity in https://github.com/fern-api/fern/pull/4158 +* (feature, csharp): Add support for allow-multiple query params by @amckinney in https://github.com/fern-api/fern/pull/4157 +* internal: update IR to have the FDR API definition ID by @armandobelardo in https://github.com/fern-api/fern/pull/4161 +* (feature, csharp): Support uint, ulong, and float by @amckinney in https://github.com/fern-api/fern/pull/4160 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.36.0...0.37.0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-01.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-01.mdx new file mode 100644 index 000000000..4550bc25f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-01.mdx @@ -0,0 +1,37 @@ +## 0.37.5 +**`(chore):`** ## What's Changed +* chore, ts: generate union v2 templates by @armandobelardo in https://github.com/fern-api/fern/pull/4169 +* (feature, csharp): Add customizable exception class names by @amckinney in https://github.com/fern-api/fern/pull/4181 +* (fix, typescript): introduce no scripts option by @dsinghvi in https://github.com/fern-api/fern/pull/4179 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.4...0.37.5 + +## 0.37.4 +**`(chore):`** ## What's Changed +* (fix, docs): validate api workspaces as in addition to docs workspaces by @dsinghvi in https://github.com/fern-api/fern/pull/4178 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.3...0.37.4 + +## 0.37.3 +**`(chore):`** ## What's Changed +* (fix): handle loggable fern cli error by @dsinghvi in https://github.com/fern-api/fern/pull/4175 +* (fix): add tests for alias extends by @dsinghvi in https://github.com/fern-api/fern/pull/4176 +* (fix): docs preview server falls back to previous bundle by @dsinghvi in https://github.com/fern-api/fern/pull/4177 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.2...0.37.3 + +## 0.37.2 +**`(chore):`** ## What's Changed +* (feature, csharp): Add RequestOptions by @amckinney in https://github.com/fern-api/fern/pull/4166 +* c#, improvement: error parsing by @dcb6 in https://github.com/fern-api/fern/pull/4168 +* (fix): introduce extended properties into the IR by @dsinghvi in https://github.com/fern-api/fern/pull/4171 +* fix: OSS workspace settings propogate to APIs with dependencies by @armandobelardo in https://github.com/fern-api/fern/pull/4147 +* chore, python: generate union v2 templates by @armandobelardo in https://github.com/fern-api/fern/pull/4167 +* c# improvement: text responses + inlined request body inheritance by @dcb6 in https://github.com/fern-api/fern/pull/4172 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.1...0.37.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-02.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-02.mdx new file mode 100644 index 000000000..88674af02 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-02.mdx @@ -0,0 +1,11 @@ +## 0.37.6 +**`(chore):`** ## What's Changed +* fix: add literal properties back to typeddict snippets by @armandobelardo in https://github.com/fern-api/fern/pull/4173 +* (fix, typescript): wire `noScripts` into a PersistedProject and introduce a test by @dsinghvi in https://github.com/fern-api/fern/pull/4185 +* (feat, fastapi): introduce endpoint specific async handlers in fastapi by @dsinghvi in https://github.com/fern-api/fern/pull/4188 +* fix: python readme references request options correctly by @armandobelardo in https://github.com/fern-api/fern/pull/4189 +* fix: replace referenced markdown by @abvthecity in https://github.com/fern-api/fern/pull/4191 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.5...0.37.6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-06.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-06.mdx new file mode 100644 index 000000000..84fd45b01 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-06.mdx @@ -0,0 +1,45 @@ +## 0.37.10 +**`(chore):`** ## What's Changed +* fix: if audience is filtering and no audiences exist on environments, add all environments by @RohinBhargava in https://github.com/fern-api/fern/pull/4220 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.9...0.37.10 + +## 0.37.9 +**`(chore):`** ## What's Changed +* (fix): support base properties when filtering for audiences by @dsinghvi in https://github.com/fern-api/fern/pull/4221 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.8...0.37.9 + +## 0.37.8 +**`(chore):`** ## What's Changed +* (feat): cli caches api dependencies by @dsinghvi in https://github.com/fern-api/fern/pull/4201 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.7...0.37.8 + +## 0.37.7 +**`(chore):`** ## What's Changed +* fix: python readme generation regression by @armandobelardo in https://github.com/fern-api/fern/pull/4193 +* fix, python: allow extending alias types by @armandobelardo in https://github.com/fern-api/fern/pull/4190 +* (internal): setup flamegraph generation for python generator by @dsinghvi in https://github.com/fern-api/fern/pull/4196 +* fix, python: Optional and aliased literals are populated in snippets by @armandobelardo in https://github.com/fern-api/fern/pull/4184 +* (feat, python): upgrade python generator to pydantic v2 by @dsinghvi in https://github.com/fern-api/fern/pull/4197 +* fix: add async iterable symbol to Stream Wrapper implementations by @RohinBhargava in https://github.com/fern-api/fern/pull/4195 +* feat: environment filter by audience by @RohinBhargava in https://github.com/fern-api/fern/pull/4187 +* (feat, python): use ruff for formatting by @dsinghvi in https://github.com/fern-api/fern/pull/4199 +* Revert "(feat, python): use ruff for formatting" by @dsinghvi in https://github.com/fern-api/fern/pull/4200 +* fix, python + ts: additional template bugs by @armandobelardo in https://github.com/fern-api/fern/pull/4198 +* fix: remove reserved properties from function signatures by @armandobelardo in https://github.com/fern-api/fern/pull/4205 +* fix, ir-generation: put fully substituted path in `url` field of auto-generated `EndpointExampleCall`s by @dcb6 in https://github.com/fern-api/fern/pull/4211 +* fix, python: allow typing any to be wrapped in optional to match Pydantic v2 by @armandobelardo in https://github.com/fern-api/fern/pull/4203 +* improvement: bring back wrapped aliases and custom root validators in… by @armandobelardo in https://github.com/fern-api/fern/pull/4204 +* fix: typehinting on unions with visitors has been corrected by @armandobelardo in https://github.com/fern-api/fern/pull/4213 +* Update speakeasy.mdx by @dannysheridan in https://github.com/fern-api/fern/pull/4215 +* improvement: allow pydantic generator to specify package name by @armandobelardo in https://github.com/fern-api/fern/pull/4217 +* (feature): Add Protobuf mapper types by @amckinney in https://github.com/fern-api/fern/pull/4210 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.6...0.37.7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-07.mdx new file mode 100644 index 000000000..cffad9d6e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-07.mdx @@ -0,0 +1,24 @@ +## 0.37.13 +**`(chore):`** ## What's Changed +* (fix): reload docs preview server on specs outside of the fern folder by @dsinghvi in https://github.com/fern-api/fern/pull/4227 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.12...0.37.13 + +## 0.37.12 +**`(chore):`** ## What's Changed +* update cli to use default language by @abarrell in https://github.com/fern-api/fern/pull/4218 +* (fix, openapi parser): generated fern definitions respect OpenAPI tag casing by @dsinghvi in https://github.com/fern-api/fern/pull/4225 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.11...0.37.12 + +## 0.37.11 +**`(chore):`** ## What's Changed +* Fix issue where misconfigured directory could cause unhelpful error message by @abarrell in https://github.com/fern-api/fern/pull/4206 + +## New Contributors +* @abarrell made their first contribution in https://github.com/fern-api/fern/pull/4206 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.10...0.37.11 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-08.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-08.mdx new file mode 100644 index 000000000..11c47de81 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-08.mdx @@ -0,0 +1,34 @@ +## 0.37.15 +**`(chore):`** ## What's Changed +* improvement: respect returning nested properties in python by @armandobelardo in https://github.com/fern-api/fern/pull/4236 +* (feature): Add support for `.proto` inputs by @amckinney in https://github.com/fern-api/fern/pull/4223 +* custom segment write key by @abarrell in https://github.com/fern-api/fern/pull/4238 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.14...0.37.15 + +## 0.37.14 +**`(chore):`** ## What's Changed +* fix: address TS UT fetcher flakiness by @RohinBhargava in https://github.com/fern-api/fern/pull/4226 +* chore: bump ir sdk to new Python generator by @armandobelardo in https://github.com/fern-api/fern/pull/4214 +* feat: hide TOC on docs home page by @zachkirsch in https://github.com/fern-api/fern/pull/4230 +* (fix, go): Required properties don't specify omitempty by @amckinney in https://github.com/fern-api/fern/pull/4231 +* (feat, in progress): ir supports user agent headers by @dsinghvi in https://github.com/fern-api/fern/pull/4232 +* (fix): LaTeX by @abvthecity in https://github.com/fern-api/fern/pull/4233 +* (feat, typescript): send user agent header `/` by @dsinghvi in https://github.com/fern-api/fern/pull/4234 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.13...0.37.14 + +## 0.37.14-rc0 +**`(chore):`** ## What's Changed +* fix: address TS UT fetcher flakiness by @RohinBhargava in https://github.com/fern-api/fern/pull/4226 +* chore: bump ir sdk to new Python generator by @armandobelardo in https://github.com/fern-api/fern/pull/4214 +* feat: hide TOC on docs home page by @zachkirsch in https://github.com/fern-api/fern/pull/4230 +* (fix, go): Required properties don't specify omitempty by @amckinney in https://github.com/fern-api/fern/pull/4231 +* (feat, in progress): ir supports user agent headers by @dsinghvi in https://github.com/fern-api/fern/pull/4232 +* (fix): LaTeX by @abvthecity in https://github.com/fern-api/fern/pull/4233 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.13...0.37.14-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-09.mdx new file mode 100644 index 000000000..dbdd34b53 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-09.mdx @@ -0,0 +1,13 @@ +## 0.37.16 +**`(chore):`** ## What's Changed +* fix, python: make circular references more robust by @armandobelardo in https://github.com/fern-api/fern/pull/4216 +* improvement: allow naming for asyncapi messages to pull message name by @armandobelardo in https://github.com/fern-api/fern/pull/4228 +* c#, fix: class names + namespace conflicts by @dcb6 in https://github.com/fern-api/fern/pull/4229 +* Add support for anonymous usage of the generate CLI by @antoniomdk in https://github.com/fern-api/fern/pull/4239 +* (fix, docs): filter referenced subpackages appropriately by @dsinghvi in https://github.com/fern-api/fern/pull/4242 + +## New Contributors +* @antoniomdk made their first contribution in https://github.com/fern-api/fern/pull/4239 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.15...0.37.16 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-12.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-12.mdx new file mode 100644 index 000000000..6decb7fec --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-12.mdx @@ -0,0 +1,58 @@ +## 0.38.0 +**`(chore):`** ## What's Changed +* (fix): retrigger typescript sdk publishing by @dsinghvi in https://github.com/fern-api/fern/pull/4289 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.38.0-rc1...0.38.0 + +## 0.38.0-rc1 +**`(chore):`** ## What's Changed +* (feat, typescript): support `hasNextPage` property for offset pagination by @dsinghvi in https://github.com/fern-api/fern/pull/4288 +* (feature, cli): Upload source files to S3 by @amckinney in https://github.com/fern-api/fern/pull/4286 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.38.0-rc0...0.38.0-rc1 + +## 0.38.0-rc0 +**`(chore):`** ## What's Changed +* (feat, python): move to ruff for formatting by @dsinghvi in https://github.com/fern-api/fern/pull/4219 +* improvement: improve discriminated union object naming by @armandobelardo in https://github.com/fern-api/fern/pull/4243 +* (feature): Add encoding and source nodes by @amckinney in https://github.com/fern-api/fern/pull/4240 +* (feat, cli): add `has-next-page` property to IR by @dsinghvi in https://github.com/fern-api/fern/pull/4241 +* feat (wip): add playground settings for API playground by @RohinBhargava in https://github.com/fern-api/fern/pull/4245 +* fix: remove wraps from fastapi validators by @armandobelardo in https://github.com/fern-api/fern/pull/4246 +* fix: make model_validator take kwargs by @armandobelardo in https://github.com/fern-api/fern/pull/4247 +* (feat): refactor how pagination properties are checked in `fern check` by @dsinghvi in https://github.com/fern-api/fern/pull/4250 +* (feature): Add support for x-fern-encoding by @amckinney in https://github.com/fern-api/fern/pull/4249 +* (chore): Remove fhir.json by @amckinney in https://github.com/fern-api/fern/pull/4253 +* c#, improvements: small improvements including marking files `internal` + client classes `partial` by @dcb6 in https://github.com/fern-api/fern/pull/4248 +* c#, improvement: Use `FluentAssertions` in unit tests by @dcb6 in https://github.com/fern-api/fern/pull/4254 +* (feat): wire through api workspaces to docs validator by @dsinghvi in https://github.com/fern-api/fern/pull/4255 +* (feat): upgrade to yarn v4 by @dsinghvi in https://github.com/fern-api/fern/pull/4257 +* c#, improvements: breaking change with several small improvements by @dcb6 in https://github.com/fern-api/fern/pull/4260 +* feat, python: add in true forward compat enums by @armandobelardo in https://github.com/fern-api/fern/pull/4262 +* (feature): Copy source files in seed tests by @amckinney in https://github.com/fern-api/fern/pull/4258 +* c#, improvement: use string response directly in generic exception by @dcb6 in https://github.com/fern-api/fern/pull/4264 +* (internal): `pnpm` migration by @dsinghvi in https://github.com/fern-api/fern/pull/4261 +* Remove old documentation references from README by @armandobelardo in https://github.com/fern-api/fern/pull/4265 +* Fix typo in pr-preview.mdx by @zachkirsch in https://github.com/fern-api/fern/pull/4235 +* (chore): Update pnpm-lock.yaml by @amckinney in https://github.com/fern-api/fern/pull/4266 +* (fix): run compile on every PR by @dsinghvi in https://github.com/fern-api/fern/pull/4267 +* (fix): live tests continue to work in the pnpm era by @dsinghvi in https://github.com/fern-api/fern/pull/4268 +* (chore): Remove all yarn files by @amckinney in https://github.com/fern-api/fern/pull/4269 +* (chore, ir): Use latest TypeScript generator by @amckinney in https://github.com/fern-api/fern/pull/4271 +* (chore, ruby): Remove ir-sdk from generator-commons by @amckinney in https://github.com/fern-api/fern/pull/4272 +* (fix): bump to 53.6.x by @dsinghvi in https://github.com/fern-api/fern/pull/4273 +* (fix): get seed working by deleting yarn ref by @dsinghvi in https://github.com/fern-api/fern/pull/4274 +* (feature, csharp): Write Protobuf dependencies in .csproj by @amckinney in https://github.com/fern-api/fern/pull/4270 +* c#, fix: fix type conflicts by @dcb6 in https://github.com/fern-api/fern/pull/4244 +* (fix): ir generation for examples is stable so that ete tests work by @dsinghvi in https://github.com/fern-api/fern/pull/4276 +* fix: add validation around selectable environments for playground settings by @RohinBhargava in https://github.com/fern-api/fern/pull/4252 +* (chore, csharp): Release 1.2.1 by @amckinney in https://github.com/fern-api/fern/pull/4284 +* (followup): add tests for playground validation messages by @dsinghvi in https://github.com/fern-api/fern/pull/4283 +* ir: add `shape` to `ExampleQueryParameter` by @dcb6 in https://github.com/fern-api/fern/pull/4222 +* (fix): eslint is now a required check and will pass by @dsinghvi in https://github.com/fern-api/fern/pull/4285 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.37.16...0.38.0-rc0 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-13.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-13.mdx new file mode 100644 index 000000000..079576f9b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-13.mdx @@ -0,0 +1,17 @@ +## 0.39.1 +**`(chore):`** ## What's Changed +* chore: update fern logo by @dannysheridan in https://github.com/fern-api/fern/pull/4295 +* fix (mock server): make date comparison against true dates as opposed to string comp by @armandobelardo in https://github.com/fern-api/fern/pull/4278 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.38.1...0.39.1 + +## 0.38.1 +**`(chore):`** ## What's Changed +* (feat, docs): add docs on `api.yml` and environment audiences by @dsinghvi in https://github.com/fern-api/fern/pull/4292 +* (fix): ir generation respects disable examples by @dsinghvi in https://github.com/fern-api/fern/pull/4293 +* (fix, python): check autogenerated examples before indexing by @dsinghvi in https://github.com/fern-api/fern/pull/4294 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.38.0...0.38.1 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-14.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-14.mdx new file mode 100644 index 000000000..b65219aa1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-14.mdx @@ -0,0 +1,27 @@ +## 0.39.3 +**`(chore):`** ## What's Changed +* (fix, docs): docs now respect ir base path by @dsinghvi in https://github.com/fern-api/fern/pull/4310 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.39.2...0.39.3 + +## 0.39.2 +**`(chore):`** ## What's Changed +* feat: allow namespacing an API from generators.yml by @armandobelardo in https://github.com/fern-api/fern/pull/4290 +* fix: unions with utils re-force update refs by @armandobelardo in https://github.com/fern-api/fern/pull/4296 +* (feature, csharp): Generate gRPC core utilities by @amckinney in https://github.com/fern-api/fern/pull/4298 +* Update publish-docs command post-migration by @armandobelardo in https://github.com/fern-api/fern/pull/4300 +* Run publish-docs.yml if it's updated by @armandobelardo in https://github.com/fern-api/fern/pull/4301 +* document redirects by @chdeskur in https://github.com/fern-api/fern/pull/4299 +* (docs): add to our Welcome page that this docs site is built with Fern by @dannysheridan in https://github.com/fern-api/fern/pull/4307 +* add information on regex redirects by @chdeskur in https://github.com/fern-api/fern/pull/4306 +* fix: read templated env vars in the docs generator config by @pujitm in https://github.com/fern-api/fern/pull/4287 +* improvement: improve `.dict` speed by limiting dict calls by @armandobelardo in https://github.com/fern-api/fern/pull/4302 +* improvement: python handles arrays of deep object query parameters by @armandobelardo in https://github.com/fern-api/fern/pull/4304 +* (fix): docs take into account global path params and now we add tests by @dsinghvi in https://github.com/fern-api/fern/pull/4309 + +## New Contributors +* @pujitm made their first contribution in https://github.com/fern-api/fern/pull/4287 + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.39.1...0.39.2 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-15.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-15.mdx new file mode 100644 index 000000000..c4d1d797a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-15.mdx @@ -0,0 +1,20 @@ +## 0.39.5 +**`(chore):`** ## What's Changed +* (fix): add docs for webhook inlining by @dsinghvi in https://github.com/fern-api/fern/pull/4314 +* (chore): add any-auth test definition by @dsinghvi in https://github.com/fern-api/fern/pull/4297 +* (docs): hide a page from sidebar nav and search by @dannysheridan in https://github.com/fern-api/fern/pull/4312 +* (fix): fdr test update snapshots by @dsinghvi in https://github.com/fern-api/fern/pull/4318 +* feat: add schema definitions for popular analytics providers to the docs generator config by @pujitm in https://github.com/fern-api/fern/pull/4291 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.39.4...0.39.5 + +## 0.39.4 +**`(chore):`** ## What's Changed +* (fix): update ete test snapshots by @dsinghvi in https://github.com/fern-api/fern/pull/4311 +* bump Python generator versions by @armandobelardo in https://github.com/fern-api/fern/pull/4308 +* fix: add in asyncapi tagging with namespaces by @armandobelardo in https://github.com/fern-api/fern/pull/4313 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.39.3...0.39.4 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-16.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-16.mdx new file mode 100644 index 000000000..26905e76d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-16.mdx @@ -0,0 +1,11 @@ +## 0.39.6 +**`(chore):`** ## What's Changed +* fix (ir): upgrade pydantic generator by @dsinghvi in https://github.com/fern-api/fern/pull/4320 +* fix(ir): autogenerate ir sdks on version bump by @dsinghvi in https://github.com/fern-api/fern/pull/4321 +* fix(python): upgrade ir sdk to handle null unknown types by @dsinghvi in https://github.com/fern-api/fern/pull/4322 +* fix: add names to form data files by @RohinBhargava in https://github.com/fern-api/fern/pull/4323 +* fix(docs): global path parameter examples are respected by @dsinghvi in https://github.com/fern-api/fern/pull/4325 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.39.5...0.39.6 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-18.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-18.mdx new file mode 100644 index 000000000..0042b76b7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-18.mdx @@ -0,0 +1,9 @@ +## 0.39.7 +**`(chore):`** ## What's Changed +* (feature, csharp): Generate well-known types by @amckinney in https://github.com/fern-api/fern/pull/4319 +* fix: fix seed, move unit test to right CoreUtility by @RohinBhargava in https://github.com/fern-api/fern/pull/4324 +* fix(openapi): generate examples with latest schemas by @dsinghvi in https://github.com/fern-api/fern/pull/4329 + + +**Full Changelog**: https://github.com/fern-api/fern/compare/0.39.6...0.39.7 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-19.mdx new file mode 100644 index 000000000..29ffc3df5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-19.mdx @@ -0,0 +1,6 @@ +## 0.39.10 +**`(chore):`** Release 0.39.10 + +## 0.39.9 +**`(chore):`** Release 0.39.9 + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-20.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-20.mdx new file mode 100644 index 000000000..ffef589f6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-20.mdx @@ -0,0 +1,27 @@ +## 0.39.12 +**`(fix):`** The mock folder now includes source files, and the CLI no longer hard fails if it cannot resolve source files that are of OpenAPI type. + +## 0.39.11 +**`(fix):`** The Fern CLI now handles parsing `x-fern-parameter-name` on path parameters in an OpenAPI spec. + +### What's been fixed +- Fix: The Fern CLI now handles parsing `x-fern-parameter-name` on path parameters in an OpenAPI spec. For example, +if you want to rename a path parameter in the generated SDK, you can now do: + +```yml +paths: + "/user": + get: + operationId: list_user + parameters: + - in: header + name: X-API-Version + x-fern-parameter-name: version + schema: + type: string + required: true +``` + +For more information, please check out the [docs](https://buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names). + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-21.mdx new file mode 100644 index 000000000..982c54f63 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-21.mdx @@ -0,0 +1,12 @@ +## 0.39.15 +**`(internal):`** Introduce `generator list` and `organization` commands to facilitate actions taken by `fern-bot` + +## 0.39.14 +**`(fix):`** Format validation is enforced on `date` fields that are specified in examples specified in an api defintion. + +## 0.39.13 +**`(fix):`** Generated examples in the Intermediate Representation not respect root level path parameter examples. + +### What's been fixed +- Generated examples in the Intermediate Representation not respect root level path parameter examples. Previously, when ignored, this would result in invalid cURL examples in documentation. + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-22.mdx new file mode 100644 index 000000000..935745e5a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-22.mdx @@ -0,0 +1,3 @@ +## 0.39.16 +**`(chore):`** Support running 0.2.x versions of the Postman Generator with IR V53 or above. + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-23.mdx new file mode 100644 index 000000000..1970a59aa --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-23.mdx @@ -0,0 +1,31 @@ +## 0.39.18 +**`(fix):`** Produce IR v53.8.0 with raw datetime examples. + +### What's been fixed +- Produce IR v53.8.0 with raw datetime examples. The raw datetime examples help when generating test fixtures to assert conditions about the original datetime. + +## 0.39.17 +**`(fix):`** object declarations with extends and no properties now has examples propagating in the Docs and SDKs + +### What's been fixed +- Previously, object declarations with extends and no properties did not have examples +propagating in the Docs and SDKs. The core issue was in IR generation which has now +been resolved. + +The following will now work as expected: + +```yaml +types: + + ObjectWithNoProperties: + extends: + - ParentA + - ParentB + examples: + - name: Default + value: + propertyFromParentA: foo + propertyFromParentB: bar +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-25.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-25.mdx new file mode 100644 index 000000000..aedffdbb0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-25.mdx @@ -0,0 +1,12 @@ +## 0.39.19 +**`(fix):`** The OpenAPI importer now appropriately generates examples for circular `oneOf` schemas. + +### What's been fixed +- The OpenAPI importer now handles generating examples for referenced `oneOf` schemas. Previously, examples generation would fail. +- The OpenAPI importer now handles generating examples for circular `oneOf` schemas. Previously, the +the converter would only default to generating examples for the first `oneOf` schema. If the first variant, +circularly referenced itself, this would make terminating the example impossible. +Now, the example generator tries every schema in order, guaranteeing that a termination condition will be +reached. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-08-28.mdx b/fern/products/cli-api-reference/cli-changelog/2024-08-28.mdx new file mode 100644 index 000000000..fa5247177 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-08-28.mdx @@ -0,0 +1,9 @@ +## 0.40.2 +**`(internal):`** Release IR v53.9.0 which includes a publishing configuration. + +## 0.40.1 +**`(feat):`** Enable specifying whether redirect in docs.yml is permanent or temporary. + +## 0.40.0 +**`(feat):`** Update the `fern generator upgrade` command to leverage the Generator registry API as opposed to Docker and dockerode. + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-02.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-02.mdx new file mode 100644 index 000000000..07486d125 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-02.mdx @@ -0,0 +1,26 @@ +## 0.41.0-rc0 +**`(break):`** Every fern folder that is using OpenAPI must configure an explicit location to the +OpenAPI spec. The location can be configured in your `generators.yml`: + +```yml +api: + path: path/to/openapi.yml +``` + +If you run **fern upgrade**, the CLI will automatically run a migration for you to +ensure that you are compliant! + + +## 0.40.4 +**`(fix):`** `fern check` allows the service base-path to be a slash. For example, the following +would be valid: + +```yml +service: + base-path: "/" +``` + + +## 0.40.3 +**`(fix):`** Now `fern generator upgrade` respects the `--group` flag and only upgrades generators within a particular group. + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-03.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-03.mdx new file mode 100644 index 000000000..36229979b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-03.mdx @@ -0,0 +1,5 @@ +## 0.41.0-rc1 +**`(fix):`** Fix an issue where some postman environment variables (e.g. API key) were not substituted +when running fern generate. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx new file mode 100644 index 000000000..44eee0021 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-04.mdx @@ -0,0 +1,62 @@ +## 0.41.1 +**`(feat):`** Adds a V2 configuration for the `api` block that is more flexible and allows +OpenAPI users to consume Fern Definition features. + +For example, now you can override environments directly in the api configuration: +```yml +api: + environments: + Production: https://prod.com + Staging: https://staging.com + specs: + - openapi: path/to/openapi + overrides: path/to/overrides +``` + +If you want to define, multi-url environments, those can be done by configuring the following generators.yml: +```yml +api: + environments: + Production: + urls: + api: https://api.com + auth: https://auth.com + Staging: + api: https://stagingapi.com + auth: https://stagingauth.com + specs: + - openapi: path/to/openapi + overrides: path/to/overrides +``` + +Note that you will need to use the `x-fern-server-name` annotation on each endpoint to assign it to a relevant server. For example, + +```yml +paths: + /api/users/: + get: + x-fern-server-name: api + /token: + post: + x-fern-server-name: auth +``` + + +## 0.41.0 +**`(feat):`** Adds generic object declarations to the fern definition. Now we can define generics and +use them in alias declarations to minimize code duplication: + +```yml +types: + GenericTest: + properties: + value: T + other-value: string + + GenericApplication: + type: GenericTest +``` + +More information can be found here: https://buildwithfern.com/learn/api-definition/fern/types#generics. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-05.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-05.mdx new file mode 100644 index 000000000..a77287bb1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-05.mdx @@ -0,0 +1,21 @@ +## 0.41.2 +**`(fix):`** Fixes an issue introduced in `0.41.1` that ignored server urls for docs generation. + + +**`(feat):`** Adds a `auth-schemes` and `auth` block where you can override auth for an existing spec. +See below: + +```generators.yml +auth-schemes: + Oauth: + scheme: oauth + type: client-credentials + get-token: + endpoint: auth.get-token +api: + auth: Oauth # overrides auth scheme + specs: + - openapi: path/to/openapi +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-06.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-06.mdx new file mode 100644 index 000000000..c937e6505 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-06.mdx @@ -0,0 +1,33 @@ +## 0.41.5 +**`(fix):`** Fix an issue with non-deterministic file ordering when OpenAPI is used as input. + + +## 0.41.4 +**`(feat):`** The Fern OpenAPI importer now handles importing an array for the `type` key. + +``` +User: + properties: + name: + type: ["string"] + id: + type: ["string", "number"] +``` + + +## 0.41.3 +**`(feat):`** Allow referencing by method and path. For example, when configuring an +oauth scheme you can now do: + +```oauth.yml +auth-schemes: + OAuth: + scheme: oauth + type: client-credentials + get-token: + endpoint: POST /oauth/token +api: + auth: OAuth +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-07.mdx new file mode 100644 index 000000000..6f1d8bfa0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-07.mdx @@ -0,0 +1,27 @@ +## 0.41.6 +**`(feat):`** The Fern Docs CLI now supports OAuth 2.0 Client Credentials injection in API playgrounds. +To enable this feature, you can define the OAuth Authorization Scheme in your API configuration, +and enable the feature in your docs configuration. + +API configuration: +```yml +api: + auth-schemes: + OAuth: + scheme: oauth + type: client-credentials + get-token: + endpoint: endpoint.authorization +``` +[More Information](https://buildwithfern.com/learn/api-definition/fern/authentication#oauth-client-credentials) + +Docs configuration: +```yml +navigation: + section: API Reference + playground: + oauth: true +``` +[More Information](https://buildwithfern.com/learn/docs/api-references/api-explorer) + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-08.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-08.mdx new file mode 100644 index 000000000..49f8e87b8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-08.mdx @@ -0,0 +1,5 @@ +## 0.41.7 +**`(fix):`** Previously we weren't always awaiting PostHog API calls directly. Now the CLI +awaits these calls so that we can ensure that events are sent. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-09.mdx new file mode 100644 index 000000000..2c4f37619 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-09.mdx @@ -0,0 +1,18 @@ +## 0.41.8 +**`(feat):`** The Fern generators.yml configuration now supports a new format for namespacing APIs for additional flexibility: + +```yml +api: + specs: + - openapi: path/to/v1/openapi + overrides: path/to/v1/overrides + namespace: v1 + - openapi: path/to/v2/openapi + overrides: path/to/v2/overrides + namespace: v2 +``` + +Through namespacing your API, you can have multiple objects and endpoints with the same name across different namespaces. You can think of them +as the equivalent to Python modules or TypeScript packages. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-10.mdx new file mode 100644 index 000000000..d795db8b0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-10.mdx @@ -0,0 +1,5 @@ +## 0.41.9 +**`(internal):`** Adds a `bundle-path` hidden parameter for `fern docs dev` for use with `fern-platform` testing. You can pass the +path on the command line as an optional parameter. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-11.mdx new file mode 100644 index 000000000..74352f729 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-11.mdx @@ -0,0 +1,19 @@ +## 0.41.10 +**`(feat):`** Adds availability and display-names to discriminated union values. Now, in your docs, you can mark your union values +with custom names and show their availability. You can do so by adding the following to your API definition: +```yml +MyUnionType: + union: + UnionValue1: + docs: The first union value + type: string + display-name: Union Value One + availability: beta + UnionValue2: + docs: The second union value + type: integer + display-name: Union Value Two + availability: deprecated +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-14.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-14.mdx new file mode 100644 index 000000000..5ca1d6fb9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-14.mdx @@ -0,0 +1,60 @@ +## 0.41.14-rc0 +**`(fix):`** The Fern CLI now safely handles a npx file exists error by retrying the command on failure. +This error typically happens when two or more instances of the Fern CLI are running `npx` +at the same time. + + +## 0.41.13 +**`(fix):`** `fern generate --local` no longer crashes on large API Definitions because we +stream the JSON to file instead of calling `JSON.stringify`. See [PR 4640](https://github.com/fern-api/fern/pull/4640). + + +## 0.41.12 +**`(feat):`** Adds availability to inlined properties for HTTP Requests, Webhooks, and WebSockets for Fern Definition and OpenAPI. +You can add availability like so: + +Fern Definition: + +```yml +Request: + name: InlineRequest + properties: + random: + type: string + availability: pre-release +``` + +OpenAPI: + +```yml +requestBody: +content: + application/json: + schema: + type: object + properties: + random: + type: string + x-fern-availability: beta +``` + + +## 0.41.11 +**`(feat):`** Adds availability and display-names to discriminated union values. Now, in your docs, you can mark your union values +with custom names and show their availability. You can do so by adding the following to your API definition: +```yml +MyUnionType: + union: + UnionValue1: + docs: The first union value + type: string + display-name: Union Value One + availability: beta + UnionValue2: + docs: The second union value + type: integer + display-name: Union Value Two + availability: deprecated +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-15.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-15.mdx new file mode 100644 index 000000000..5bc099a1a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-15.mdx @@ -0,0 +1,18 @@ +## 0.41.14-rc2 +**`(internal):`** Remove bang operator and fix eslint warning in `compatible-ir-versions.ts`. + +## 0.41.14-rc1 +**`(feat):`** Running `fern check` will now check to confirm that the generator versions you are running are compatible with your Fern CLI version. + +Each version of SDK generators depends on a version of a library that is exported by the Fern CLI, and as a result, each generator has a minimum +compatible version of the Fern CLI. As an example, if you were to run `fern check` while leveraging `fernapi/fern-python-sdk` version `2.0.0`, on CLI version `0.1.3`, you'd receive the following error: + +`The generator fernapi/fern-python-sdk requires CLI version 0.23.0-rc4 or later (current version: 0.1.3-rc0).` + +Indicating that you must upgrade your CLI in order to leverage the current generator. + + +### What's new +- Running `fern check` will now check to confirm that the generator versions you are running are compatible with your Fern CLI version. +- Fern commands now print out generator upgrades, in addition to CLI upgrades. + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-16.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-16.mdx new file mode 100644 index 000000000..8b82ac145 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-16.mdx @@ -0,0 +1,21 @@ +## 0.42.0-rc0 +**`(feat):`** The Fern Definition now supports `conten-type` on multipart request properties. +For example, to specify an `application/octet-stream` and `application/json` +contnet types, use the snippet below: + +```ts +service: + endpoints: + upload: + request: + body: + properties: + file: + type: file + content-type: application/octet-stream + metadata: + type: unknown + content-type: application/json +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-17.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-17.mdx new file mode 100644 index 000000000..e069128e8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-17.mdx @@ -0,0 +1,41 @@ +## 0.42.1 +**`(fix):`** Make sure to check for optionality when parsing stdout and stderr in CLI. This +removes the error: `Cannot read properties of undefined (reading 'includes')`. + + +## 0.42.0 +**`(fix):`** If you merge multiple OpenAPI specs with namespaces, `fern check` will no longer +complain about duplicate schema names across namespaces. +In the example below, both OpenAPI specs can have duplicative schema names and +that is okay. +```yml +api: + specs: + - openapi: openapi-bar.yml + namespace: bar + - openapi: openapi-foo.yml + namespace: foo +``` + + +## 0.41.16 +**`(fix):`** Previously the OpenAPI converter would incorrectly mark +the values of `additionalProperties` as optional. Now, we have +introduced a feature flag to turn this behavior off. + +The feature flag can be configured in generators.yml: +```yml +api: + specs: + - openapi: /path/to/openapi + settings: + optional-additional-properties: false +``` + + +## 0.41.15 +**`(internal):`** Performance improvements for stringifiying large Intermediate Representations. If +you have a large OpenAPI spec or Fern Definition, this can potentially shave off +minutes from `fern generate`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-18.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-18.mdx new file mode 100644 index 000000000..14f931b12 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-18.mdx @@ -0,0 +1,85 @@ +## 0.42.8 +**`(fix):`** The API V2 configuration (in beta) now supports global header overrides. +This fixes a bug where those header overrides were getting dropped in +certain cases. + +```yml generators.yml +api: + headers: + X-API-VERSION: string + specs: + - openapi: /path/to/openapi + overrides: /path/to/overrides +``` + + +## 0.42.7 +**`(feat):`** The API V2 configuration (in beta) now supports global header +overrides. To specify global headers that are not in your +OpenAPI spec, simply add the following block in your `generators.yml`: + +```yml generators.yml +api: + headers: + X-API-VERSION: string + specs: + - openapi: /path/to/openapi + overrides: /path/to/overrides +``` + + +## 0.42.6 +**`(fix):`** Removes extraneous conditional error within namespacing configuration + +## 0.42.5 +**`(feat):`** Adds additional metadata retrievable by `fern generator get` so you can now get the language and the target repo. + +## 0.42.4 +**`(fix):`** Namespaced APIs now: + - No longer contain duplicative nesting of some endpoint within another package of the same name as the namespace + - Respect the `x-fern-sdk-group-name` annotation for endpoints + + +## 0.42.3 +**`(fix):`** The OpenAPI importer now supports handling encoding on multipart requests. +Previously, the generators would not respect the `contentType` field for +each form input. But, now they do. +```yml +requestBody: + content: + multipart/form-data: + schema: + type: object + properties: + file: + type: string + format: binary + description: The file to upload + encoding: + file: + contentType: "application/octet-stream" +``` + + +**`(fix):`** The OpenAPI importer now correctly parses descriptions of multipart +form requests. Previously these descriptions would be ignored. + +For example, previously the description `The file to upload` would be +ignored in the example below. +```yml +requestBody: + content: + multipart/form-data: + schema: + type: object + properties: + file: + type: string + format: binary + description: The file to upload +``` + + +## 0.42.2 +**`(fix):`** Error bodies are now appropriately namespaced as well! + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-19.mdx new file mode 100644 index 000000000..f97aa35c7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-19.mdx @@ -0,0 +1,32 @@ +## 0.42.11 +**`(fix):`** The API V2 configuration now supports disabling using titles as schema +names. You may want to disable this flag if your OpenAPI adds the same +title to multiple schemas. + +``` +api: + specs: + - openapi: /path/to/openapi + settings: + use-title-as-schema-name: false +``` + + +## 0.42.10 +**`(fix):`** Previously, the OpenAPI converter would bring over `title` on every +single property. This field is extraneous, so now we ignore it. + + +## 0.42.9 +**`(fix):`** Previously, the OpenAPI importer would ignore skip parsing arbitrary +content types "*/*". Now it treats this content type as application/json. + +```json openapi.json +"responses": { + "200": { + "description": "Success reply", + "content": { + "*/*": { +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-20.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-20.mdx new file mode 100644 index 000000000..112d73fe4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-20.mdx @@ -0,0 +1,11 @@ +## 0.42.13 +**`(fix):`** Example generation now intelligently truncates container examples, for example if the depth limit will be reached on a list of objects, +the list will be returned as an empty list, as opposed the previous behavior where an unknown object would be created. + + +## 0.42.12 +**`(fix):`** Previously, deploying docs from Windows machines led to bad asset paths. +Now, the CLI respects Windows paths during run and web paths for retrieving +assets. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-21.mdx new file mode 100644 index 000000000..f84053674 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-21.mdx @@ -0,0 +1,4 @@ +## 0.42.14 +**`(fix):`** The OpenAPI importer now correctly propagates the title field on `oneof` schemas. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-23.mdx new file mode 100644 index 000000000..c23ae08e8 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-23.mdx @@ -0,0 +1,9 @@ +## 0.42.15 +**`(internal):`** The documentation resolver now appropriately creates a unique identifier for changelog sections. Previously, if you had multiple +changelogs within the same section, despite their title and slug being different, they would be treated as the same section since the ID +only took into account the parents' slug, appended the word "changelog" and that was all. + +As a result previously all changelogs within the same section would get highlighted when one was selected, now only the selected changelog +is highlighted. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-24.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-24.mdx new file mode 100644 index 000000000..60b5fa98f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-24.mdx @@ -0,0 +1,4 @@ +## 0.43.0 +**`(feat):`** The CLI now recognizes the fern-php-sdk generator. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-25.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-25.mdx new file mode 100644 index 000000000..b679a0703 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-25.mdx @@ -0,0 +1,4 @@ +## 0.43.1 +**`(feat):`** The CLI now supports running OpenAPI generator 0.1.0 with IR version 53. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-26.mdx new file mode 100644 index 000000000..0583d1a7d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-26.mdx @@ -0,0 +1,29 @@ +## 0.43.5 +**`(fix):`** If you use the `x-fern-streaming` extension and want to provide different descriptions +for the streaming endpoint, then you can now specify `streaming-description`. + +```yml openapi.yml +x-fern-streaming: + stream-condition: $request.stream + stream-description: The streaming version of this endpoint returns a series of chunks ... + response: + $ref: #/components/schemas/Response + stream-response: + $ref: #/components/schemas/ResponseChunk +``` + + +## 0.43.4 +**`(fix):`** The OpenAPI parser now respects the content type in your OpenAPI spec, instead of always sending +`application/json`. With this upgrade, your SDKs will also start to send the correct content type. + + +## 0.43.3 +**`(chore):`** The CLI now passes in the API definition ID once again, this is necessary so that generated snippet templates +may reference schemas within the API. This was a regression that was recently introduced. + + +## 0.43.2 +**`(fix):`** The CLI now prints which API cannot be registered if `fern generate --docs` fails. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-27.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-27.mdx new file mode 100644 index 000000000..b4d577698 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-27.mdx @@ -0,0 +1,6 @@ +## 0.43.6 +**`(fix):`** The OpenAPI importer now appropriately brings in responses that are under the `text/event-stream` +Content-Type if your endpoint is annotated with `x-fern-streaming`. +If your endpoint is not annotated with `x-fern-streaming`, then the response will be ignored. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-28.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-28.mdx new file mode 100644 index 000000000..e423a24b4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-28.mdx @@ -0,0 +1,6 @@ +## 0.43.7 +**`(fix):`** The `valid-markdown` rule has been updated to try and parse the markdown file into a +valid AST. If the file fails to parse, `fern check` will log an error as well +as the path to the markdown. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-09-30.mdx b/fern/products/cli-api-reference/cli-changelog/2024-09-30.mdx new file mode 100644 index 000000000..180f43b20 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-09-30.mdx @@ -0,0 +1,5 @@ +## 0.43.8 +**`(fix):`** Any markdown files that have custom components are also pushed up to the Fern Docs +platform. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-02.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-02.mdx new file mode 100644 index 000000000..2cb0c10af --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-02.mdx @@ -0,0 +1,7 @@ +## 0.44.0-rc0 +**`(feat):`** The Fern CLI now supports parsing [Conjure](https://github.com/palantir/conjure), Palantir's +home-grown API Definition format. + +If you know a company that is using Conjure that wants API Docs + SDKs, send them our way! + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-05.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-05.mdx new file mode 100644 index 000000000..2c2953792 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-05.mdx @@ -0,0 +1,16 @@ +## 0.44.1 +**`(feat):`** The OpenAPI importer used to try and coerce all enums into a literals. +In some cases this is not desirable, so we now expose an option called +`coerce-enums-to-literals` in your generators.yml. + +```yml generators.yml +api: + specs: + - openapi: ../openapi.json + overrides: ../openapi-overrides.yml + settings: + title-as-schema-name: false + coerce-enums-to-literals: false +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-06.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-06.mdx new file mode 100644 index 000000000..791afc11a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-06.mdx @@ -0,0 +1,35 @@ +## 0.44.6 +**`(fix):`** The Fern Definition respects endpoint level base-path overrides when validating examples. + + +## 0.44.5 +**`(feat):`** The Fern Definition now supports overriding `base-path` at the endpoint level. +This is useful if you have subset of endpoints that do not live at the +configured base-path. + +```yml imdb.yml +service: + endpoints: + getMovie: + method: POST + base-path: "latest/" # overrides the base-path configured in api.yml + path: "movies/{movieId}" +``` + + +## 0.44.4 +**`(fix):`** Fern's OpenAPI importer will now handle generating examples for declared +errors so that they show up in the generated documentation. + + +## 0.44.3 +**`(feat):`** Fern's OpenAPI importer can now handle `readOnly` properties in the top level +request schema. Note that Fern does not handle nested `readOnly` properties +just yet; please file a GitHub issue if this is important! + + +## 0.44.2 +**`(fix):`** Fern's OpenAPI importer can now handle multiple error schemas for the +same status code. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-07.mdx new file mode 100644 index 000000000..06aae34b9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-07.mdx @@ -0,0 +1,19 @@ +## 0.44.10 +**`(fix):`** API update now supports consuming the API origin from spec V2 configurations. + + +## 0.44.9 +**`(feat):`** The fern definition now supports descriptions supplied on request and response bodies. +You can enable this by simply supplying `docs` in your fern definition, or `description` +in your OpenAPI spec. + + +## 0.44.8 +**`(fix):`** API Configuration V2 schema now takes in `origin` as well, allowing `fern api update` to function as expected in the new config. + + +## 0.44.7 +**`(internal):`** The Fern CLI command `fern generator list` now accepts filters for the output mode, for example, you may now specify `fern generator list --excluded-modes local-file-system` +in order to filter any generators from the list that are outputting locally. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-09.mdx new file mode 100644 index 000000000..9b157191d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-09.mdx @@ -0,0 +1,3 @@ +## 0.44.11 +**`(fix):`** Several improvements to the conjure importer. + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-10.mdx new file mode 100644 index 000000000..b838cb6a0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-10.mdx @@ -0,0 +1,12 @@ +## 0.45.0-rc2 +**`(fix):`** The CLI now generates endpoint examples for undiscriminated unions that are recursive. + + +## 0.45.0-rc1 +**`(fix):`** The OpenAPI importer now generates streaming examples based on OpenAPI examples. + + +## 0.45.0-rc0 +**`(fix):`** The Docs now support rendering `additionalProperties` in the API Playground so that users can send out arbitrary key,value pairs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-11.mdx new file mode 100644 index 000000000..8d79ead2a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-11.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc3 +**`(fix):`** Numerous fixes to the Conjure API Importer such as reading in request bodies and query parameters. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-16.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-16.mdx new file mode 100644 index 000000000..d53892571 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-16.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc4 +**`(chore):`** SCIM has been added as a common initialism. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-19.mdx new file mode 100644 index 000000000..b3a73ccc3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-19.mdx @@ -0,0 +1,9 @@ +## 0.45.0-rc5 +**`(feat):`** Introduce a new command `fern jsonschema --type ` +that outputs the JSON Schema for a given type in your Fern Definition. + +```sh +fern jsonschema ./schema.json --type MyType +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-20.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-20.mdx new file mode 100644 index 000000000..89d5b18e0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-20.mdx @@ -0,0 +1,12 @@ +## 0.45.0-rc8 +**`(internal):`** Add `#!/usr/bin/env node` to the CLI to prevent runtime errors. + + +## 0.45.0-rc7 +**`(internal):`** Stop minifying the CLI to prevent javascript runtime errors. + + +## 0.45.0-rc6 +**`(fix):`** Update the CLI package.json to include the correct files. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-21.mdx new file mode 100644 index 000000000..74b745c56 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-21.mdx @@ -0,0 +1,29 @@ +## 0.45.0-rc14 +**`(fix):`** The Fern CLI now uses a longer timeout to make HTTP requests, which should fix some flakyness with the docs registration process. + + +## 0.45.0-rc13 +**`(fix):`** The Fern CLI now uses a longer timeout to make HTTP requests, which should fix some flakyness with the docs registration process. + + +## 0.45.0-rc12 +**`(fix):`** Undiscriminated unions are now represented using `anyOf` in the generated JSON Schema +Nullable properties are now correctly propagated to the JSON Schema + + +## 0.45.0-rc11 +**`(fix):`** Improved JSON Schema generation for object inheritance: +- Removed the use of `allOf` for representing object extensions +- Properties from parent objects are now directly added to the child object in the JSON Schema + + +## 0.45.0-rc10 +**`(fix):`** Added support for `additionalProperties` on export to JSON Schema. + + +## 0.45.0-rc9 +**`(fix):`** Improved JSON Schema generation for object extensions and const values: +- Object extensions are now properly represented using `allOf` in the JSON Schema +- Literal values (string and boolean) are now correctly represented using `const` in the JSON Schema + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-22.mdx new file mode 100644 index 000000000..39df85e1f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-22.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc15 +**`(fix):`** The Conjure importer now correctly imports base-path and docs from your conjure definition. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-23.mdx new file mode 100644 index 000000000..d66c4e560 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-23.mdx @@ -0,0 +1,32 @@ +## 0.45.0-rc17 +**`(fix):`** - Improved union example generation by increasing depth for better handling of recursive structures. +- Updated Conjure importer to represent binary types as bytes for requests and file for responses in Fern. +- Added detailed error messages when 'fern docs dev' fails, accessible with --log-level debug. + + +## 0.45.0-rc16 +**`(fix):`** The Conjure importer now correctly keys the union subvariant by the property of the discriminant. + +```conjure +union: + discriminant: type + union: + square: Square + circle: Circle +``` + +is equal to the following Fern Definition: + +```yml fern +union: + discriminant: type + types: + square: + type: Square + key: square + circle: + type: Circle + key: circle +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-24.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-24.mdx new file mode 100644 index 000000000..d279e7e99 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-24.mdx @@ -0,0 +1,25 @@ +## 0.45.0-rc20 +**`(feat):`** The Fern CLI now supports audiences in your docs configuration: + +```yml docs.yml +# all audiences must be declared at the top level +audiences: + - internal + +navigation: + - section: Internal Section + audience: internal # audience is optional + contents: + - page: Internal Page + path: ./internal/page.mdx +``` + + +## 0.45.0-rc19 +**`(fix):`** - Respect `x-fern-ignore` extension in OpenAPI parameters. + + +## 0.45.0-rc18 +**`(fix):`** - Add additional debug logging to the CLI when downloading docs preview bundle + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-25.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-25.mdx new file mode 100644 index 000000000..4e3c18373 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-25.mdx @@ -0,0 +1,32 @@ +## 0.45.0-rc24 +**`(fix):`** `fern docs dev` now runs in Node 16 - Node 22 environments. + + +## 0.45.0-rc23 +**`(fix):`** The docs dev server now correctly handles base paths. + + +## 0.45.0-rc22 +**`(fix):`** Fixes bug introduced in 0.45.0-rc20 where section children were dropped from the docs definition. + + +## 0.45.0-rc21 +**`(feat):`** The Fern CLI now supports orphaned pages in your docs configuration. + + +**`(fix):`** The RBAC config model is now renamed to `roles` and `viewers`: + +```yml docs.yml +roles: + - internal + +navigation: + - section: Internal Section + viewers: + - internal + contents: + - page: Internal Page + path: ./internal/page.mdx +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-26.mdx new file mode 100644 index 000000000..fa52b239b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-26.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc25 +**`(internal):`** The Fern CLI temporarily does not support RBAC/Audiences (they will be added in again shortly). + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-10-29.mdx b/fern/products/cli-api-reference/cli-changelog/2024-10-29.mdx new file mode 100644 index 000000000..6f20a60dd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-10-29.mdx @@ -0,0 +1,12 @@ +## 0.45.0-rc28 +**`(feat):`** The OpenAPI importer now skips headers in a case-insensitive way (e.g. both "Content-Type" and "content-type" are skipped). + + +## 0.45.0-rc27 +**`(feat):`** The Conjure importer now brings in endpoint level descriptions. + + +## 0.45.0-rc26 +**`(feat):`** `fern check` handles validating unions that contain base properties. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-01.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-01.mdx new file mode 100644 index 000000000..35dfd27f0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-01.mdx @@ -0,0 +1,12 @@ +## 0.45.0-rc31 +**`(fix):`** The OpenAPI importer now parses webhook examples and generates examples for webhooks when none are provided. + + +## 0.45.0-rc30 +**`(fix):`** The OpenAPI importer now parses the `examples` field for primitive schema types like `string`, `number`, `array` and `boolean`. + + +## 0.45.0-rc29 +**`(feat):`** The OpenAPI importer now parses the `examples` field that may be present on OpenAPI 3.1 schemas. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-05.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-05.mdx new file mode 100644 index 000000000..e6991ecf5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-05.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc32 +**`(fix):`** The OpenAPI importer now supports reading endpoints that have application/x-www-form-urlencoded requests + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-06.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-06.mdx new file mode 100644 index 000000000..185d25a4b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-06.mdx @@ -0,0 +1,19 @@ +## 0.45.0-rc33 +**`(feat):`** The Fern CLI now supports roles and viewers in your docs configuration, if you are on the enterprise plan for docs: + +```yml docs.ym +roles: + - internal + - beta-users + - enterprise-users + +navigation: + - section: Internal Section + viewers: + - internal + contents: + - page: Internal Page + path: ./internal/page.mdx +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-07.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-07.mdx new file mode 100644 index 000000000..5c44faea9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-07.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc34 +**`(internal):`** The CLI now recognizes the versions of the Go generator that require IRv53. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-08.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-08.mdx new file mode 100644 index 000000000..f6794bbcd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-08.mdx @@ -0,0 +1,29 @@ +## 0.45.0-rc38 +**`(fix):`** The OpenAPI importer now supports respecting readonly properties in schemas. When enabled, readonly properties will be excluded from request bodies for +POST/PUT/PATCH endpoints. To enable this, configure the setting in your `generators.yml`: + +```yml +api: + specs: + - openapi: ./path/to/openapi.yml + settings: + respect-readonly-schemas: true +``` + + +## 0.45.0-rc37 +**`(internal):`** Support parsing alpha and beta version numbers of Fern generators + +## 0.45.0-rc36 +**`(fix):`** The OpenAPI importer now supports importing deep object query parameters. To do this, you will +need to configure a setting in your `generators.yml` + +```yml +api: + specs: + - openapi: ./path/to/openapi.yml + settings: + object-query-paramaters: true +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-11.mdx new file mode 100644 index 000000000..e4cbdcffd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-11.mdx @@ -0,0 +1,5 @@ +## 0.45.0-rc39 +**`(fix):`** The OpenAPI importer now supports correlating request and response examples by name. When an example name is shared +between a request body and response, they will be paired together in the generated Fern definition. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-12.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-12.mdx new file mode 100644 index 000000000..7a95b239a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-12.mdx @@ -0,0 +1,11 @@ +## 0.45.0-rc42 +**`(fix):`** Log error message logging when encountering doc errors during preview server initiation. + + +## 0.45.0-rc41 +**`(fix):`** Fixes bug introduced in 0.45.0-rc33 where version slugs were not being generated correctly. + +## 0.45.0-rc40 +**`(fix):`** Fixed bug in the Conjure importer where query parameters were overwritten during endpoint parameter parsing. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-13.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-13.mdx new file mode 100644 index 000000000..1db737ec3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-13.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc43 +**`(fix):`** Support non-standard HTTP code 498; Validate `x-fern-examples` during schema parsing. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-14.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-14.mdx new file mode 100644 index 000000000..3e4c87f28 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-14.mdx @@ -0,0 +1,5 @@ +## 0.45.0-rc44 +**`(fix):`** Update the IR's `ServiceTypeReferenceInfo` to include all transitive types +referenced by a service. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-18.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-18.mdx new file mode 100644 index 000000000..358c07d1c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-18.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc46 +**`(fix):`** The IR handles converting example unions that are aliases. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-19.mdx new file mode 100644 index 000000000..c11923be5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-19.mdx @@ -0,0 +1,19 @@ +## 0.45.0-rc48 +**`(feat):`** OAuth Client Credential Auth Scheme now supports the ability to optionally +set token header and prefix fields for use with docs playground. + +```yml api.yml +auth-schemes: + OAuth: + scheme: oauth + type: client-credentials + token-header: Fern-Authorization + token-prefix: Fern-Bearer + ... +``` + + +## 0.45.0-rc47 +**`(fix):`** Support SDK generation provided comma-delineated content-type values in OpenAPI specs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-20.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-20.mdx new file mode 100644 index 000000000..e88de1ca9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-20.mdx @@ -0,0 +1,4 @@ +## 0.45.0-rc49 +**`(fix):`** Add 'list' to reserved keywords for use in PHP generator. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-21.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-21.mdx new file mode 100644 index 000000000..782261ac3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-21.mdx @@ -0,0 +1,17 @@ +## 0.45.0-rc53 +**`(internal):`** Add support for the `smart-casing` flags in the IR commands. + + +## 0.45.0-rc52 +**`(fix):`** Fix bug where max length validation for strings were incorrectly plumbed. + + +## 0.45.0-rc51 +**`(feat):`** Add support for the `inline-path-parameters` setting in the OpenAPI +importer. + + +## 0.45.0-rc50 +**`(fix):`** Increase max recursive depth allowed for example validation. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-22.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-22.mdx new file mode 100644 index 000000000..0867dfa79 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-22.mdx @@ -0,0 +1,8 @@ +## 0.45.0-rc55 +**`(internal):`** Docs generation now preserves original model schema names. + + +## 0.45.0-rc54 +**`(internal):`** Removes errant minimum and maximums for 'float' types for docs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-23.mdx new file mode 100644 index 000000000..9838d06e4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-23.mdx @@ -0,0 +1,4 @@ +## 0.45.0 +**`(internal):`** Several improvements to docs, conjure importer, and the cli. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-27.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-27.mdx new file mode 100644 index 000000000..14dfd4139 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-27.mdx @@ -0,0 +1,5 @@ +## 0.45.1 +**`(internal):`** Add `inline` field to type declarations in the Fern definition and IR. +Add support for importing inline types from OpenAPI into Fern definition and IR. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-11-29.mdx b/fern/products/cli-api-reference/cli-changelog/2024-11-29.mdx new file mode 100644 index 000000000..604e6f91b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-11-29.mdx @@ -0,0 +1,4 @@ +## 0.45.1-rc0 +**`(fix):`** Generate valid examples using spec validation information; respect `null` entries during example generation. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-03.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-03.mdx new file mode 100644 index 000000000..fb5c31729 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-03.mdx @@ -0,0 +1,4 @@ +## 0.45.2 +**`(fix):`** Example generation now respects read-only schemas when generating request examples. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-05.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-05.mdx new file mode 100644 index 000000000..4aa53ac13 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-05.mdx @@ -0,0 +1,4 @@ +## 0.45.3 +**`(fix):`** Unknown schemas are no longer incorrectly marked as `additionalProperties: true`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-09.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-09.mdx new file mode 100644 index 000000000..9097d84cb --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-09.mdx @@ -0,0 +1,4 @@ +## 0.45.4-rc0 +**`(fix):`** The CLI prompts the user to confirm output directory overwrites on fern generate. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-10.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-10.mdx new file mode 100644 index 000000000..dfceddb44 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-10.mdx @@ -0,0 +1,4 @@ +## 0.45.4-rc1 +**`(chore):`** Unknown schemas are no longer incorrectly marked as `additionalProperties: true`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-11.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-11.mdx new file mode 100644 index 000000000..85f6208fd --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-11.mdx @@ -0,0 +1,19 @@ +## 0.46.0-rc1 +**`(fix):`** * Set `inline: true` for inline enums imported from OpenAPI. +* Set `inline: true` for maps generated from OpenAPI additionalProperties. + + +## 0.46.0-rc0 +**`(feat):`** The Fern Definition now supports `bytes` as a response type. + +```yml service.yml + endpoints: + download: + response: bytes +``` + + +## 0.45.4 +**`(fix):`** Defaults are no longer set on datetimes when converting to docs shapes. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-12.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-12.mdx new file mode 100644 index 000000000..8f5c0025f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-12.mdx @@ -0,0 +1,8 @@ +## 0.46.1 +**`(fix):`** Add support for setting the `User-Agent` header value for Go generators. + + +## 0.46.0 +**`(internal):`** No changes; promote `0.46.0-rc1` release candidate to minor version. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-14.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-14.mdx new file mode 100644 index 000000000..e2c7950d1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-14.mdx @@ -0,0 +1,22 @@ +## 0.46.2 +**`(feat):`** The Fern CLI now supports parsing a `logo` option from your frontmatter. If +you would like to override logo on a specific page you can do so by adding +the following: + +```markdown intro.mdx +--- +logo: /path/to/my/logo +--- +``` + +or + +```markdown intro.mdx +--- +logo: + light: /path/to/my/light/logo + dark: /path/to/my/dark/logo +--- +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-15.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-15.mdx new file mode 100644 index 000000000..dcee67649 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-15.mdx @@ -0,0 +1,5 @@ +## 0.46.3 +**`(fix):`** The Fern CLI now supports generating examples for streaming SSE (server-sent-event) +endpoints. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-16.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-16.mdx new file mode 100644 index 000000000..c2a82dc61 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-16.mdx @@ -0,0 +1,4 @@ +## 0.46.4 +**`(fix):`** The generated SSE examples always have `data` and `event` keys so that they are correct. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-17.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-17.mdx new file mode 100644 index 000000000..070483a93 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-17.mdx @@ -0,0 +1,5 @@ +## 0.46.5 +**`(fix):`** The OpenAPI parser now deduplicates headers that appear in both security schemes and +operation-level headers to avoid duplicate header declarations. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-19.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-19.mdx new file mode 100644 index 000000000..612d351f9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-19.mdx @@ -0,0 +1,9 @@ +## 0.46.7 +**`(fix):`** The generated Fern Definition now properly supports default values for query parameters. + + +## 0.46.6 +**`(fix):`** The audiences property on WebSocket channels is now respected when filtering +the IR graph based on configured audiences. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-20.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-20.mdx new file mode 100644 index 000000000..7ae4b4630 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-20.mdx @@ -0,0 +1,13 @@ +## 0.46.10 +**`(fix):`** Correctly support AdditionalProperties on object schemas. + + +## 0.46.9 +**`(fix):`** SDK generation no longer hard-fails on single example generation errors. + + +## 0.46.8 +**`(fix):`** The CLI now auto generates SSE and JSON Streaming examples even if those are +not provided in the OpenAPI Spec or Fern Definition. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-23.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-23.mdx new file mode 100644 index 000000000..72d976a77 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-23.mdx @@ -0,0 +1,21 @@ +## 0.46.12 +**`(fix):`** The CLI now handles parsing service level path parameters with descriptions. +This fixes a regression introduced in the CLI since versions 0.45.x. + + +## 0.46.11 +**`(fix):`** Allow for configuring the depth of example generation in API Docs. For example, +if you want to generate optional properties that are 5 levels deep, you can add +the following configuration in your `generators.yml` + +```yml generators.yml +api: + specs: + - openapi: ./openapi.json + settings: + example-generation: + response: + max-depth: 10 +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-26.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-26.mdx new file mode 100644 index 000000000..790e8687a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-26.mdx @@ -0,0 +1,4 @@ +## 0.46.13 +**`(fix):`** Correctly omits readOnly query parameters during openapi to fern definition generation. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-27.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-27.mdx new file mode 100644 index 000000000..8f5694277 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-27.mdx @@ -0,0 +1,8 @@ +## 0.46.15 +**`(fix):`** Fixed issue where user specified examples would be omitted in favor of autogenerated examples. + + +## 0.46.14 +**`(fix):`** Boolean default values are now propagated from the Fern Definition through to docs generation. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-28.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-28.mdx new file mode 100644 index 000000000..bab4d4295 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-28.mdx @@ -0,0 +1,6 @@ +## 0.46.16 +**`(fix):`** Improve parsing of OpenAPI schemas with an array in the `type` property. +* If the array contains `"null"`, it is interpreted as nullable, and removed from the array. +* If there is only a single item in the array (after removing "null"), it previously defaulted to `unknown`, but now the specified type is used. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2024-12-30.mdx b/fern/products/cli-api-reference/cli-changelog/2024-12-30.mdx new file mode 100644 index 000000000..d30a223db --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2024-12-30.mdx @@ -0,0 +1,5 @@ +## 0.46.17 +**`(fix):`** Support parsing string values for boolean defaults in OpenAPI schemas. +* String values like "true" and "false" are now correctly parsed as boolean defaults. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-03.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-03.mdx new file mode 100644 index 000000000..27ec45e8c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-03.mdx @@ -0,0 +1,46 @@ +## 0.46.19 +**`(fix):`** If a schema in OpenAPI or AsyncAPI has `additionalProperties: true` then the Fern CLI will now respect bringing in +example properties that are not defined in the schema. Previously, the CLI would skip them. + + +## 0.46.18 +**`(fix):`** If an object or request is annotated with `extra-properties: true` then the user can provide an example that includes +extra properties that are no longer in the schema. + +For example, check out this fern definition + +```yml service.yml +types: + Item: + extra-properties: true + properties: + id: string + + +service: + auth: false + base-path: "" + endpoints: + create: + method: POST + path: /item + request: + name: CreateItemRequest + body: + extra-properties: true + properties: + id: string + response: + type: Item + examples: + - name: "Item" + request: + id: "123" + foo: "bar" # extra property in the example + response: + body: + id: "123" + foo: "bar" # extra property in the example +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-05.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-05.mdx new file mode 100644 index 000000000..e2f7050fb --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-05.mdx @@ -0,0 +1,6 @@ +## 0.46.20 +**`(feat):`** The `fern init` command now supports a `--mintlify` option. You can pass in +the path to your `mint.json` and the Fern CLI will generate a fern documentation +website. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-06.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-06.mdx new file mode 100644 index 000000000..47163cfb2 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-06.mdx @@ -0,0 +1,8 @@ +## 0.46.22 +**`(feat):`** Support configuration of Google Analytics and Google Tag Manager in API Docs. + + +## 0.46.21 +**`(fix):`** The CLI now supports the `prefer-undiscriminated-unions-with-literals` setting in OpenAPI settings. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-08.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-08.mdx new file mode 100644 index 000000000..fb38f79f5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-08.mdx @@ -0,0 +1,4 @@ +## 0.46.23 +**`(feat):`** The CLI now validates that method and group name overrides in OpenAPI settings are not duplicated. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-09.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-09.mdx new file mode 100644 index 000000000..707528905 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-09.mdx @@ -0,0 +1,17 @@ +## 0.47.1 +**`(feat):`** Fixes a bug where the OpenAPI parser stopped respecting the =`unions: v1` setting in your `generators.yml` which configures the parser to generate more +idiomatic discriminated unions. +```yml +api: + specs: + - openapi: ./path/to/openapi.yml + settings: + unions: v1 +``` + + +## 0.47.0 +**`(feat):`** The CLI now supports publishing docs using the improved OpenAPI v2 parser. You can set `openapi-parser-v2: true` +in your `docs.yml` to use the new parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-10.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-10.mdx new file mode 100644 index 000000000..400604167 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-10.mdx @@ -0,0 +1,7 @@ +## 0.47.2 +**`(feat):`** The CLI now supports checking for broken links in your docs. You will see warnings in `fern check` if your docs link to any +page that can't be resolved, and the `--strict-broken-links` option will cause the command to fail (exit with a non-zero exit code) if +any broken links are found. You can also run the new command `fern docs broken-links` to only check for broken links (ignoring +other possible errors), with the `--strict` option to cause the command to fail if any broken links are found. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-12.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-12.mdx new file mode 100644 index 000000000..29d1a6474 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-12.mdx @@ -0,0 +1,4 @@ +## 0.47.3 +**`(feat):`** Add the JSON schema to the generators.yml file for validation and autocomplete. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-13.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-13.mdx new file mode 100644 index 000000000..72405cbcf --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-13.mdx @@ -0,0 +1,12 @@ +## 0.47.6 +**`(feat):`** The IR now pulls in additional request properties from the OAuth getToken endpoint to support custom OAuth schemas. + + +## 0.47.5 +**`(feat):`** Fixes an issue with broken link checking in the OpenAPI v2 parser. + + +## 0.47.4 +**`(feat):`** Allows for creating nullable types and pass formats on strings using the OpenAPI v2 parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx new file mode 100644 index 000000000..7aa62fa3a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-14.mdx @@ -0,0 +1,30 @@ +## 0.49.0 +**`(feat):`** The OpenAPI importer now supports respecting nullable properties in schemas. When enabled, nullable properties will +be preserved in the generated SDK. By default (without this setting), nullable properties are treated as `optional`. +To enable this, configure the setting in your `generators.yml`: + +```yml +api: + specs: + - openapi: ./path/to/openapi.yml + settings: + respect-nullable-schemas: true +``` + + +## 0.48.1 +**`(fix):`** The Mintlify docs importer now correctly generates the proper display-name key in the docs.yml file. + + +## 0.48.0 +**`(feat):`** Adds support for nullable types in the Fern definition, such as the following: + +```yaml +types: + User: + properties: + name: string + email: nullable +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx new file mode 100644 index 000000000..5dfca6fc7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-15.mdx @@ -0,0 +1,31 @@ +## 0.50.3 +**`(internal):`** Fixes an issue where optional, nullable properties resulted in a double optional in the +IRv55 -> IRv54 migration. + + +## 0.50.2 +**`(fix):`** The docs now includes alpha support for parsing openrpc specs. To leverage this feature, +simply define an API section in your docs.yml and point at an openrpc spec. + +```yml docs.yml +navigation: + - api: API Reference + openrpc: +``` + + +## 0.50.1 +**`(fix):`** Fixes an issue where nullable schemas were not coerced into optional values. + + +**`(fix):`** Fixes an issue where `fern check` would fail for optional, nullable properties. + + +## 0.50.0 +**`(internal):`** The CLI is capable of migrating the latest TypeScript generator to IRv55. + + +## 0.49.1 +**`(fix):`** The OpenAPI v2 parser now supports `x-fern-global-headers` and fixes an issue with generating webhook content. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-16.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-16.mdx new file mode 100644 index 000000000..70420c867 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-16.mdx @@ -0,0 +1,28 @@ +## 0.50.5 +**`(fix):`** The Fern CLI is updated to create the organization if it doesn't exist when `fern token` is called. + + +## 0.50.4 +**`(internal):`** The docs.yml now supports a separate configuration for `feature-flags` which allows Fern to render +pieces of content depending on whether or not certain feature flags are enabled for particular user. + +This feature is in alpha stage; please contact support@buildwithfern.com to learn more! + +```yml docs.yml +navigation: + - page: Page 1 + feature-flag: my-feature-flag-a # single boolean flag + - page: Page 2 + feature: # multiple boolean flags + - flag: my-feature-flag-a + - flag: my-feature-flag-b + - section: Section Title + viewers: role-a + feature-flag: # configurable match + flag: my-feature-flag-a + fallback-value: "ga" + match: "beta" + layout: [] +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-17.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-17.mdx new file mode 100644 index 000000000..85b88d5d3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-17.mdx @@ -0,0 +1,4 @@ +## 0.50.6 +**`(fix):`** The broken link checker is updated to reduce false positives. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-18.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-18.mdx new file mode 100644 index 000000000..4254ce843 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-18.mdx @@ -0,0 +1,10 @@ +## 0.50.8 +**`(fix):`** An additional fix to the OpenRPC parser for respecting tags when +organizing methods in the API Reference. + + +## 0.50.7 +**`(fix):`** The OpenRPC parser now respects method names as well as tags for +organization the navigation. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-19.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-19.mdx new file mode 100644 index 000000000..41c9cebed --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-19.mdx @@ -0,0 +1,17 @@ +## 0.50.12 +**`(fix):`** Increase undici timeouts to make sure that `fern generate --docs` completes. + + +## 0.50.11 +**`(fix):`** The CLI now supports a `--log-level trace` option to filter out noise from the +debug log level. + + +## 0.50.10 +**`(fix):`** An addition to the broken link checker to further reduce false positives. + +## 0.50.9 +**`(fix):`** The Fern CLI no longer logs the full API request when finishing docs registration, +reducing unnecessary log output. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-20.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-20.mdx new file mode 100644 index 000000000..940565068 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-20.mdx @@ -0,0 +1,4 @@ +## 0.50.13 +**`(fix):`** Fixes a bug where `--log-level debug` does not include trace logs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-21.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-21.mdx new file mode 100644 index 000000000..3c41f3571 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-21.mdx @@ -0,0 +1,16 @@ +## 0.50.16 +**`(fix):`** This PR improves the performance of `fern docs dev`: + - Fern does not generate examples if the user has provided them to us + - Temporarily comment out broken link checker until we make it faster + + +## 0.50.15 +**`(fix):`** Move example generation failure logs to trace level since they are not relevant +for users and add noise to debug logs. + + +## 0.50.14 +**`(fix):`** Fixes a bug where duplicate types in undiscriminated unions (`oneOf` in OpenAPI) +were not being deduped, which could lead to invalid generated code. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-22.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-22.mdx new file mode 100644 index 000000000..7fed0639d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-22.mdx @@ -0,0 +1,20 @@ +## 0.51.1 +**`(fix):`** Fixed x-fern-resolutions to properly handle escaped forward slashes ("~1") in schema references, +correctly converting them to "/" when resolving references. + + +## 0.51.0 +**`(feat):`** The CLI now supports a --readme flag pointing to the URL of a Readme generated docs site and +migrates existing documentation to a fern-compatible repository. + +To use this feature: +```bash +fern init --readme https://url-to-readme-docs.com +``` + + +## 0.50.17 +**`(fix):`** Improve performance of `fern docs dev` by only reloading the markdown content when +only markdown files are changed, avoiding unnecessary recompilation of the full docs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-23.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-23.mdx new file mode 100644 index 000000000..ff93500eb --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-23.mdx @@ -0,0 +1,5 @@ +## 0.51.2 +**`(fix):`** Improved error messages when docs.yml doesn't match schema by showing more specific +validation errors and including the path where the error occurred. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-24.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-24.mdx new file mode 100644 index 000000000..6cfd610ad --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-24.mdx @@ -0,0 +1,10 @@ +## 0.51.4 +**`(fix):`** Various improvements to the Mintlify and Readme importers, including better default styling +and spec imports for Mintlify migrations. + + +## 0.51.3 +**`(fix):`** The OpenAPI parser now prefers the JSON Content-Type variant over +others (e.g. application/x-www-form-urlencoded). + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-27.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-27.mdx new file mode 100644 index 000000000..2b8f6405f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-27.mdx @@ -0,0 +1,14 @@ +## 0.51.7 +**`(fix):`** Added better error messages when markdown files reference non-existent MDX files, showing the relative path +to the missing file rather than just indicating an invalid reference. + + +## 0.51.6 +**`(fix):`** Fixed OpenAPI importer to properly handle string enums that are specified as integers by coercing them to strings. + + +## 0.51.5 +**`(fix):`** Added a new rule to validate frontmatter parsing across markdown files, ensuring frontmatter +is properly formatted and can be parsed without errors. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-29.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-29.mdx new file mode 100644 index 000000000..5600e6f86 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-29.mdx @@ -0,0 +1,18 @@ +## 0.51.11 +**`(fix):`** The OpenAPI parser generates response examples that are `{}` for 204 response types. + + +## 0.51.10 +**`(fix):`** The OpenAPI parser generates response examples that are `{}` for 204 response types. + + +## 0.51.9 +**`(fix):`** Fixed OpenAPI importer to properly handle response status codes in documentation by propagating +the status code from the OpenAPI spec through the IR and FDR layers. + + +## 0.51.8 +**`(fix):`** Fixed OpenAPI importer to properly handle response status codes in documentation by propagating +the status code from the OpenAPI spec through the IR and FDR layers. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-30.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-30.mdx new file mode 100644 index 000000000..1164123a3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-30.mdx @@ -0,0 +1,25 @@ +## 0.51.13 +**`(fix):`** OpenAPI overrides now support resolving file references from the location of the +OpenAPI overrides file itself. Previously, relative paths were only resolved from +the OpenAPI source file. + +Most users will experience no change, but this will enable a wider set of file +directory layouts depending on the user's preference. + + +## 0.51.12 +**`(fix):`** The Fern Definition now allows you to declare status codes for the response without having a type. +This is useful for `204` response status codes. + +```yml users.yml +service: + auth: false + base-path: /users + endpoints: + update: + path: "" + response: + status-code: 204 +``` + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-01-31.mdx b/fern/products/cli-api-reference/cli-changelog/2025-01-31.mdx new file mode 100644 index 000000000..cff806df7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-01-31.mdx @@ -0,0 +1,12 @@ +## 0.51.17 +**`(fix):`** The OpenRPC parser now handles displaying parameters as object examples. + + +## 0.51.15 +**`(fix):`** The OpenRPC parser now handles displaying optional parameters in the request. + + +## 0.51.14 +**`(fix):`** Updates `whatwg` so that users eliminate punycode deprecation warning. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-02.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-02.mdx new file mode 100644 index 000000000..ca286a43f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-02.mdx @@ -0,0 +1,5 @@ +## 0.51.18 +**`(fix):`** The docs will now display errors by default. Previously, errors were hidden by default and needed to be explicitly +enabled with `displayErrors: true`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-03.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-03.mdx new file mode 100644 index 000000000..df1196abb --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-03.mdx @@ -0,0 +1,8 @@ +## 0.51.20 +**`(fix):`** The OpenRPC parser now supports generating code snippets in the API Explorer. + + +## 0.51.19 +**`(fix):`** The OpenRPC parser now supports generating code snippets in the API Explorer. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-04.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-04.mdx new file mode 100644 index 000000000..0807fc62e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-04.mdx @@ -0,0 +1,25 @@ +## 0.51.25 +**`(fix):`** Literal property values are now accepted as deep object query parameters. Previously, if a query parameter was a deep object +with a literal property value (e.g. `{ type: "foo" }`), the CLI would reject it as too complex. Now literal values are +allowed since they can be safely serialized. + + +## 0.51.24 +**`(fix):`** The OpenAPI parser now parses path parameters that are present in the URL but not explicitly declared in the OpenAPI spec. +Previously, if a path parameter was used in the URL (e.g. `/users/{userId}`) but not declared in the `parameters` section, +the parser would fail. Now it automatically adds these path parameters as required string parameters. + + +## 0.51.23 +**`(fix):`** The CLI now considers `false` and `true` as keywords for the Java generators. + + +## 0.51.22 +**`(fix):`** The OpenAPI parser now ignores request bodies on `GET` requests since Fern does not support that. +This is not a breaking change, since previously the `fern check` would just fail. + + +## 0.51.21 +**`(fix):`** The `fern init` command now respects JSON formatting when parsing from an external URL. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-05.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-05.mdx new file mode 100644 index 000000000..8539704b6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-05.mdx @@ -0,0 +1,31 @@ +## 0.51.31 +**`(internal):`** The IR migrator now recognizes that the PHP SDK generator requires IR version 55. + + +## 0.51.30 +**`(fix):`** The OpenAPI v2 parser now provides better naming and more robust payloads for examples. + + +## 0.51.29 +**`(fix):`** The images will be rendered to browser in the format of image ID that matches FileV2. +It ensure images will be displayed properly in dev environment. + + +## 0.51.28 +**`(fix):`** The IR generator now optimizes SDK generation by skipping automatic example generation when manual examples are provided. +Previously, it would generate additional examples even when manual examples were specified for an operation. +This change improves generation performance by avoiding unnecessary example generation work. + + +## 0.51.27 +**`(fix):`** The OpenAPI parser now optimizes discriminated union example generation by using the first successful variant. +Previously, it would continue trying other variants even after finding a valid one. Now it stops after finding +the first valid variant, making example generation more efficient. + + +## 0.51.26 +**`(fix):`** The OpenAPI parser now correctly generates examples for discriminated unions where a variant may itself be a union. +Previously, if a discriminated union variant was itself a union (e.g. `{ type: "foo", value: { type: "bar" } }`), +the example generation would skip. Now it recursively handles nested unions to generate valid examples. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-06.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-06.mdx new file mode 100644 index 000000000..8392d2662 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-06.mdx @@ -0,0 +1,6 @@ +## 0.51.32 +**`(fix):`** The Conjure Importer now handles replacing 'rid' types more safely by checking if an import alias starts with 'rid'. +Previously, it would replace any 'rid' text with 'string', which could incorrectly modify import aliases that happened to start with 'rid'. +Now it only replaces 'rid' when it appears as a standalone type or generic parameter. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-07.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-07.mdx new file mode 100644 index 000000000..07ff37fa7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-07.mdx @@ -0,0 +1,16 @@ +## 0.51.35 +**`(fix):`** The cli will now respect examples with `null` values in OpenAPI specs. This will allow for null properties to show up when using +OpenAPI parser v2. + + +## 0.51.34 +**`(fix):`** The IR generator now correctly handles exploded form parameters in the docs, ensuring that curl code snippets +accurately reflect the expected request format. Previously, exploded parameters were not properly formatted in the documentation, which +could lead to incorrect API usage. This fix ensures that array parameters marked as "exploded" are properly expanded in the generated curl examples. + + +## 0.51.33 +**`(fix):`** The OpenAPI parser v2 now handles `null` values in examples, parses request and response bodies as unions if multiple, handles required +properties for global headers and improves upon example generation for APIs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-08.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-08.mdx new file mode 100644 index 000000000..f02497b18 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-08.mdx @@ -0,0 +1,4 @@ +## 0.51.36 +**`(fix):`** Type reference example generation now handles extends and base properties correctly, as well as in-lined Alias types. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-10.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-10.mdx new file mode 100644 index 000000000..a72c89974 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-10.mdx @@ -0,0 +1,4 @@ +## 0.51.37 +**`(fix):`** Fixed handling of Windows filepaths in the docs generator by ensuring consistent path separators and proper absolute path handling. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-14.mdx new file mode 100644 index 000000000..55d1469a5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-14.mdx @@ -0,0 +1,34 @@ +## 0.53.1 +**`(fix):`** The OpenAPI v2 parser now parses Server specifications with variables. + + +## 0.53.0 +**`(feat):`** Users can now specify the `idiomatic-request-names` option in the `generators.yml` to adapt the behavior of the +autogenerated request names. The verb is now in front of the noun (e.g. `UsersListRequest` becomes `ListUsersRequest`). + +This is disabled by default (for backwards compatibility), and can be enabled with the following: + +```yaml +# generators.yml +api: + specs: + - openapi: ./openapi/openapi.json + settings: + idiomatic-request-names: true +``` + + +## 0.52.0 +**`(fix):`** Introduce the AsyncAPI 3.0.0 parser, which enables conditional parsing of both 2.x and 3.x AsyncAPI specs. + + +## 0.51.39 +**`(fix):`** The OpenAPI v2 parser now respects object properties as optional, generates display names for undiscriminated union object +types, and fixes minor issues with docs dev when using specific navigation locators in docs.yml specification. + + +## 0.51.38 +**`(fix):`** The OpenAPI v2 parser now ignores optional parameters when generating requests. It also improves upon generation with +better fallback logic for sparse requests. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-15.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-15.mdx new file mode 100644 index 000000000..2999237de --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-15.mdx @@ -0,0 +1,5 @@ +## 0.53.2 +**`(fix):`** The OpenAPI parser now prefers the `source` extension set in the OpenAPI spec, and only writes +it if it is not already set. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-16.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-16.mdx new file mode 100644 index 000000000..0c910bb3b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-16.mdx @@ -0,0 +1,4 @@ +## 0.53.3 +**`(fix):`** `noindex` property in the frontmatter of a page is now implemented for site navigation + `llms.txt`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-17.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-17.mdx new file mode 100644 index 000000000..4c2291370 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-17.mdx @@ -0,0 +1,8 @@ +## 0.53.5 +**`(fix):`** Support validation schemas in detailed Union types. + + +## 0.53.4 +**`(fix):`** Improve error logging on `downloadLocalDocsBundle` failure. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-18.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-18.mdx new file mode 100644 index 000000000..3bfc6067c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-18.mdx @@ -0,0 +1,16 @@ +## 0.53.9 +**`(fix):`** Fix an issue with the OpenAPI v2 parser where incorrect slugs were being generated. + + +## 0.53.8 +**`(fix):`** Fix noindex behavior for section overview pages. + + +## 0.53.7 +**`(fix):`** Regenerate changelog. + + +## 0.53.6 +**`(fix):`** Correctly parse out channel address for v3 AsyncAPI specs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-19.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-19.mdx new file mode 100644 index 000000000..39ec35bed --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-19.mdx @@ -0,0 +1,17 @@ +## 0.53.13 +**`(fix):`** Resolve error where `fern docs dev` failed in Windows environments. + + +## 0.53.12 +**`(fix):`** Dynamically deconflict AsyncAPI message names when generating Fern Definition Types to preserve original naming +wherever possible. + + +## 0.53.11 +**`(fix):`** Fix an issue with the OpenAPI v2 parser where schemas with single value arrays were being incorrectly parsed. + + +## 0.53.10 +**`(fix):`** Support differentiated server URLs in WebSocket channels and correctly generate multi-url environments. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-20.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-20.mdx new file mode 100644 index 000000000..55691e877 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-20.mdx @@ -0,0 +1,46 @@ +## 0.54.0-rc2 +**`(feat):`** Add the `x-fern-optional` extension to the AsyncAPI v3 parser to allow for optional channel parameters. + + +**`(chore):`** Improve the violations summary displayed by `fern check` and include elapsed time when available. + + +## 0.54.0-rc1 +**`(fix):`** Update CLI-side markdown parsing to detect more hrefs and src's (where src files are automatically uploaded), +enabling the `Download me` pattern to work. + + +**`(fix):`** Update `fern docs broken-links` to handle links within the current directory. + + +## 0.54.0-rc0 +**`(fix):`** Fix issue where the CLI would not parse asyncapi specs within the `api.specs` array in generators.yml. + + +**`(feat):`** Migrate old spec configuration in generators.yml to the `api.specs[]` format. + + +**`(feat):`** Log warnings when old generators.yml syntax is used during parsing. + + +## 0.53.18 +**`(fix):`** Fix an issue where de-conflicting message names in AsyncAPI v3 parser would only update subsequent message names, +but not the first occurrence. + + +## 0.53.17 +**`(fix):`** Fix an issue with the OpenAPI v2 parser where recursive subpackage slugs would not generate correctly. + + +## 0.53.16 +**`(fix):`** Enable `x-fern-sdk-group-name` extension in AsyncAPI v3 parser. + + +## 0.53.15 +**`(fix):`** Disable broken link checker until it is ready to release. + + +## 0.53.14 +**`(fix):`** Fixes an issue with the OpenAPI v2 parser where docs configs with no navigation structure would generate incorrect slugs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-21.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-21.mdx new file mode 100644 index 000000000..77be26204 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-21.mdx @@ -0,0 +1,12 @@ +## 0.54.0-rc5 +**`(feat):`** Bump `docs-resolvers` to `0.0.64` to fix an issue with endpoint-level server parsing. + + +## 0.54.0-rc4 +**`(fix):`** Handle comments that include '*/' literal values. This previously caused any generator that uses c-style comments to fail. + + +## 0.54.0-rc3 +**`(feat):`** Modify the `x-fern-examples` extension to support Websocket session examples for AsyncAPI v3 specs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-22.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-22.mdx new file mode 100644 index 000000000..ba02a15e1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-22.mdx @@ -0,0 +1,3 @@ +## 0.54.0-rc6 +**`(fix):`** Improve generators.yml migration to `api.specs` syntax. + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-25.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-25.mdx new file mode 100644 index 000000000..5e1dbea66 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-25.mdx @@ -0,0 +1,12 @@ +## 0.54.0-rc10 +**`(chore):`** Migrate generators.yml without any specs. + +## 0.54.0-rc9 +**`(chore):`** Detect swagger as OpenAPI files when migrating to specs configuration in generators.yml. + +## 0.54.0-rc8 +**`(chore):`** Migration to specs configuration handles yaml/json files and checks for file existence. + +## 0.54.0-rc7 +**`(chore):`** Add Java generator versions to migrations file from v55 to v54 + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-26.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-26.mdx new file mode 100644 index 000000000..fef9d615d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-26.mdx @@ -0,0 +1,12 @@ +## 0.55.0 +**`(feat):`** The Fern definition now supports specifying object properties as `read-only` or `write-only`. + +## 0.54.1 +**`(feat):`** Add support for the `x-fern-enum` extension in the AsyncAPI v3 parser. + +## 0.54.0-rc12 +**`(feat):`** Add support for specifying C# snippets in the `generators.yml` file. + +## 0.54.0-rc11 +**`(fix):`** Improve error logging in AsyncAPI v3 parser when parsing location headers. + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-27.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-27.mdx new file mode 100644 index 000000000..61b1396d0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-27.mdx @@ -0,0 +1,26 @@ +## 0.56.0-rc2 +**`(fix):`** Fix an issue where channel binding parameters with complex schemas were generated with conflicting names. + + +## 0.56.0-rc1 +**`(internal):`** Add support for a new option `--from-openapi` to the `fern ir` command. This command +will allow you to test early versions of the new OpenAPI parser which goes directly from +OpenAPI to IR. + +```bash +fern ir ir.json --from-openapi +``` + + +## 0.56.0-rc0 +**`(feat):`** Improve the `fern docs broken-links` output to make it easier to +understand. Logged violations now include clickable links to the +affected source files (in supported terminals). + +Added a `--broken-links` flag to the `fern check` and `fern docs dev` +commands. If set, broken links will be logged. + + +## 0.55.1 +**`(fix):`** The Conjure Importer now correctly handles the `auth` property in endpoint definitions. + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-02-28.mdx b/fern/products/cli-api-reference/cli-changelog/2025-02-28.mdx new file mode 100644 index 000000000..8188c434f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-02-28.mdx @@ -0,0 +1,5 @@ +## 0.56.0-rc3 +**`(feat):`** You can now specify custom pagination on your API and endpoints. +This lets you implement your own pagination strategy in the generated SDKs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-02.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-02.mdx new file mode 100644 index 000000000..ea1001ea9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-02.mdx @@ -0,0 +1,7 @@ +## 0.56.0-rc4 +**`(feat):`** If experimental.openapi-parser-v3 is enabled in docs.yml, OpenAPI documents will now be +converted directly to IR, bypassing the intermediate Fern Definition step. + +This makes sure that the old code path is completely ignored if the flag is enabled. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-03.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-03.mdx new file mode 100644 index 000000000..a54b7ec56 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-03.mdx @@ -0,0 +1,36 @@ +## 0.56.4 +**`(fix):`** Re-releasing the Fern CLI to fix an issue with the published package. + + +## 0.56.3 +**`(internal):`** Make the latest C# SDK generator consume IR v56. + + +## 0.56.2 +**`(fix):`** Re-releasing the Fern CLI to fix an issue with the published package. + + +## 0.56.1 +**`(fix):`** Re-releasing the Fern CLI to fix an issue with the published package. + + +## 0.56.0 +**`(fix):`** Fixed several issues with broken link detection in docs: +- Fixed handling of redirects to ensure broken links aren't reported when valid redirects exist +- Added proper handling of relative paths from different slugs +- Improved URL validation and error messages + +Running `fern docs broken-links` will now scan your docs site and log any broken internal links. + + +## 0.56.0-rc6 +**`(fix):`** Hidden sections are now removed from the docs sitemap. + + +## 0.56.0-rc5 +**`(fix):`** Fixed duplicate validation messages in docs validation by deduplicating violations +that have the same message, node path, file path, and severity. + +This prevents showing the same broken link error multiple times. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-04.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-04.mdx new file mode 100644 index 000000000..2af2e7311 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-04.mdx @@ -0,0 +1,14 @@ +## 0.56.7 +**`(internal):`** The CLI now recognizes that the latest C# SDK uses IRv57. + + +## 0.56.6 +**`(internal):`** The CLI now recognizes that the latest PHP SDK uses IRv57. + + +## 0.56.5 +**`(fix):`** Updated the CLI to gracefully handle unsupported security schemes (e.g. cookie-based auth) by skipping them +instead of throwing an error. This allows the CLI to continue processing the rest of the API definition even when +it encounters security schemes it cannot convert. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-05.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-05.mdx new file mode 100644 index 000000000..12cc94a31 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-05.mdx @@ -0,0 +1,8 @@ +## 0.56.9 +**`(fix):`** Fix an issue where default values for query parameters would occasionally be omitted during parsing. + + +## 0.56.8 +**`(feat):`** OpenAPI file properties can now support descriptions. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-06.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-06.mdx new file mode 100644 index 000000000..24505cdd4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-06.mdx @@ -0,0 +1,19 @@ +## 0.56.13 +**`(fix):`** Correctly parse channel descriptions in AsyncAPI v2 and v3 specs. + + +## 0.56.12 +**`(fix):`** Updated the OpenAPI parser to: +- Support parsing references that point to external files (e.g. https://github.com/...) +- Enable merging Intermediate Representations (IRs) when APIs have multiple OpenAPI specs +- Skip legacy parsers when openapi-parser-v3 is enabled for cleaner CLI logging + + +## 0.56.11 +**`(fix):`** Add `x-fern-address` extension for AsyncAPI v2.x.x specs to specify the channel address. + + +## 0.56.10 +**`(fix):`** Enable correct environment generation when only provided an AsyncAPI spec. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-10.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-10.mdx new file mode 100644 index 000000000..ab3ce08f1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-10.mdx @@ -0,0 +1,8 @@ +## 0.56.15 +**`(fix):`** Only construct an enum when all parameter subtypes are literal string values. + + +## 0.56.14 +**`(fix):`** Correctly assign a versioned slug to the landing page when applicable. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-11.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-11.mdx new file mode 100644 index 000000000..dabbc86f2 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-11.mdx @@ -0,0 +1,4 @@ +## 0.56.16 +**`(fix):`** Revert only construct an enum when all parameter subtypes are literal string values. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-13.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-13.mdx new file mode 100644 index 000000000..1812073ec --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-13.mdx @@ -0,0 +1,16 @@ +## 0.56.20 +**`(internal):`** Include examples by default for dynamic IR generation (replace dynamic-ir --include-examples option with --disable-examples). + + +## 0.56.19 +**`(internal):`** The CLI now recognizes that the latest Go SDK uses IRv57. + + +## 0.56.18 +**`(fix):`** Minor v3 parser bugfixes pertaining to document importing and message parsing. + + +## 0.56.17 +**`(feat):`** The v3 parser now supports parsing and merging AsyncAPI specs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-14.mdx new file mode 100644 index 000000000..63752a9f5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-14.mdx @@ -0,0 +1,4 @@ +## 0.56.21 +**`(fix):`** Correctly evaluate SDK groupName for AsyncAPI channels. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-17.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-17.mdx new file mode 100644 index 000000000..07f230bce --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-17.mdx @@ -0,0 +1,14 @@ +## 0.56.24 +**`(chore):`** Minor cleanup to simple type schema constructions. + + +## 0.56.23 +**`(fix):`** CLI now passes validation from OpenAPI to Fern Definition. + + +## 0.56.22 +**`(fix):`** The `fern init --openapi` command now references the OpenAPI file in +place using the new `specs` syntax in generators.yml instead of copying the file into the +Fern directory. This makes it easier to maintain the source OpenAPI file separately from the Fern configuration. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-18.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-18.mdx new file mode 100644 index 000000000..98286b70b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-18.mdx @@ -0,0 +1,4 @@ +## 0.56.25 +**`(internal):`** The CLI now recognizes that the latest Python SDK uses IRv57. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-19.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-19.mdx new file mode 100644 index 000000000..32851f742 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-19.mdx @@ -0,0 +1,4 @@ +## 0.56.26 +**`(feat):`** The V2 Parser now handles environment merging across multiple OpenAPI specs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-20.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-20.mdx new file mode 100644 index 000000000..926b99410 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-20.mdx @@ -0,0 +1,8 @@ +## 0.56.28 +**`(fix):`** Remove Fern definition generation warnings when openapi-parser-v3 is enabled for docs dev. + + +## 0.56.27 +**`(feat):`** This update includes minor improvements and bugfixes to the v2 AsyncAPI parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-22.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-22.mdx new file mode 100644 index 000000000..b1cc77534 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-22.mdx @@ -0,0 +1,4 @@ +## 0.56.29 +**`(fix):`** Fix an edge case in the OpenAPI converter where unused types were being incorrectly added to the Fern definition. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-23.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-23.mdx new file mode 100644 index 000000000..c66d6e6b5 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-23.mdx @@ -0,0 +1,5 @@ +## 0.56.30 +**`(feat):`** The default behavior of `fern generate` now excludes broken link checking by default. +This can be overridden by passing `--broken-links` or `--strict-broken-links`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-24.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-24.mdx new file mode 100644 index 000000000..85eea120e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-24.mdx @@ -0,0 +1,16 @@ +## 0.56.34 +**`(fix):`** Fix websocket session example generation for 3.x specs. + + +## 0.56.33 +**`(fix):`** Refactor out schema converter nodes into the `v2-importer-commons` package. + + +## 0.56.32 +**`(feat):`** Improvements to channel parsing for v3 AsyncAPI specs. + + +## 0.56.31 +**`(feat):`** Added support for default values in example generation to prevent SDK generation failures due to corrupted OpenAPI examples. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-25.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-25.mdx new file mode 100644 index 000000000..7b6680945 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-25.mdx @@ -0,0 +1,4 @@ +## 0.56.35 +**`(fix):`** Parse inlined websocket message properties during Fern Definition -> IR. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-26.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-26.mdx new file mode 100644 index 000000000..fb039cd84 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-26.mdx @@ -0,0 +1,15 @@ +## 0.57.1 +**`(feat):`** Add AI chat config block to docs.yml for model/system prompt customization. Example: + +ai-chat: + model: Claude 3.5 + system prompt: | + You are an AI assistant. + Only respond to questions using information from the documents. + Include markdown footnotes to the sources of your information. + + +## 0.57.0 +**`(feat):`** Add `use-bytes-for-binary-response` configuration option to specify whether to use the `bytes` type for binary responses. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-27.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-27.mdx new file mode 100644 index 000000000..34b677523 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-27.mdx @@ -0,0 +1,29 @@ +## 0.57.5 +**`(fix):`** Fix an issue where endpoint ids were not globally unique because they didn't take into account namespaces. This only affects +the new OpenAPI -> IR parser. + + +## 0.57.4 +**`(feat):`** Add support for namespaces in OpenAPI imports. This allows for organizing multiple OpenAPI specs into different namespaces within a single API definition. Example: + +```yml +api: + specs: + - namespace: petsV1 + openapi: ./openapi-v1.json + - namespace: petsV2 + openapi: ./openapi-v2.json +``` + +Each namespace creates a separate package in the generated IR, allowing for clear separation between different versions or components of your API. + + +## 0.57.3 +**`(feat):`** Add support for Cohere's Command R+ model in AI chat - model ID: command-r-plus + + +## 0.57.2 +**`(feat):`** Add support for parsing `type: enum` in OpenAPI schemas. This allows for proper conversion of enum types that use the +non-standard `type: enum` format instead of the standard `type: string` with `enum` values. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-28.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-28.mdx new file mode 100644 index 000000000..dca5122c4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-28.mdx @@ -0,0 +1,16 @@ +## 0.57.9 +**`(fix):`** Add support for reading common properties across all oneOf variants in the new OpenAPI parser. When a schema uses `oneOf` with a discriminator, the parser now correctly extracts and includes properties defined at the root level of the schema as base properties of the discriminated union. This ensures that common fields shared by all variants are properly represented in the generated IR. + + +## 0.57.8 +**`(fix):`** Bump undici timeouts to make sure docs sites get published. This addresses an issue where large documentation sites were timing out during the publishing process. By increasing the timeout values for the undici HTTP client, we ensure that even complex documentation sites have enough time to complete the publishing process. + + +## 0.57.7 +**`(fix):`** Add support for `anyOf` in the new OpenAPI parser. This allows for undiscriminated unions in the OpenAPI schema, where a type can be one of several possible types without a discriminator field. The parser now handles both `oneOf` and `anyOf` schemas in the same way, converting them to undiscriminated unions in the IR. + + +## 0.57.6 +**`(fix):`** Reduce CLI output from the legacy OpenAPI parser when using the experimental `openapiParserV3` option. This makes the logs cleaner and more focused on relevant information when using the newer parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-03-31.mdx b/fern/products/cli-api-reference/cli-changelog/2025-03-31.mdx new file mode 100644 index 000000000..d6f61a257 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-03-31.mdx @@ -0,0 +1,8 @@ +## 0.57.11 +**`(fix):`** Add support for `respect-forward-compatible-enums` configuration option to specify whether to respect forward compatible enums in OpenAPI specifications. + + +## 0.57.10 +**`(fix):`** Add support for handling integer types without a specified format in the new OpenAPI parser. When a schema defines a property with `type: integer` but doesn't specify a format (like int32, int64, etc.), the parser now defaults to treating it as a standard integer type. This ensures consistent behavior for integer fields regardless of whether a format is explicitly provided. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-01.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-01.mdx new file mode 100644 index 000000000..f68188795 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-01.mdx @@ -0,0 +1,9 @@ +## 0.57.13 +**`(chore):`** Updates parameter parsing in asyncapi-to-ir to correctly handle enum parameters, along with native support for the x-fern-optional and x-fern-type extensions + + +## 0.57.12 +**`(feat):`** Add `additional-properties-defaults-to` setting for OpenAPI specs in generators.yml. +This setting lets you change the default value for the `additionalProperties` field in the generated IR. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-02.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-02.mdx new file mode 100644 index 000000000..64e37bd84 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-02.mdx @@ -0,0 +1,4 @@ +## 0.57.14 +**`(chore):`** Adds support for the `command-a` model in AI chat, while removing support for the `command-r-plus` model. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-03.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-03.mdx new file mode 100644 index 000000000..d11300b68 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-03.mdx @@ -0,0 +1,8 @@ +## 0.57.16 +**`(fix):`** Fix an issue where environment URLs would be incorrectly remapped during the merge IR step. + + +## 0.57.15 +**`(fix):`** Add support for handling nullable and optional references in the OpenAPI parser. When a reference is marked with `nullable: true` or is not included in the required properties list, the parser now correctly wraps the referenced type in a nullable or optional container. This ensures that references respect the same nullability and optionality rules as inline schemas. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-07.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-07.mdx new file mode 100644 index 000000000..44282e0e4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-07.mdx @@ -0,0 +1,4 @@ +## 0.57.17 +**`(fix):`** Prevent combinatorial explosion of oneOf types when provided a nullable type array in the OpenAPI parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-09.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-09.mdx new file mode 100644 index 000000000..56557ce71 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-09.mdx @@ -0,0 +1,14 @@ +## 0.57.20 +**`(fix):`** Correctly parse primitive type arrays in the v3 OpenAPI parser. + + +## 0.57.19 +**`(fix):`** Fix an issue in the OpenAPI parser where array references were not being properly resolved. The parser now correctly resolves references +within array schemas, ensuring that arrays of referenced types are properly handled throughout the API definition. + + +## 0.57.18 +**`(fix):`** Improve the ReadMe migrator to respect the original navigation structure when creating the file hierarchy. Previously, nested navigation groups were +flattened, but now the file structure will mirror the navigation hierarchy, preserving the original organization of documentation. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-10.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-10.mdx new file mode 100644 index 000000000..7b9db64a0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-10.mdx @@ -0,0 +1,4 @@ +## 0.57.21 +**`(fix):`** Correctly parse schema-valued additionalProperties in the v3 OpenAPI parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-11.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-11.mdx new file mode 100644 index 000000000..12827c1e0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-11.mdx @@ -0,0 +1,8 @@ +## 0.57.23 +**`(fix):`** Correctly package webhooks in the `webhooks` section into IR groups. + + +## 0.57.22 +**`(fix):`** Parse `anyOf` and `oneOf` schemas with "null" in a first class manner in the v3 OpenAPI parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-12.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-12.mdx new file mode 100644 index 000000000..00bdfa31d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-12.mdx @@ -0,0 +1,5 @@ +## 0.57.24 +**`(fix):`** Fix an issue in the OpenAPI importer where discriminated unions with literal discriminant values in the variants would render the discriminant property twice. +The importer now correctly checks if union variants contain the discriminant property as a literal value and handles them appropriately. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-14.mdx new file mode 100644 index 000000000..8cc6b3645 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-14.mdx @@ -0,0 +1,4 @@ +## 0.57.25 +**`(fix):`** Parse schema-level examples in the v3 OpenAPI parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-17.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-17.mdx new file mode 100644 index 000000000..88b49b864 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-17.mdx @@ -0,0 +1,4 @@ +## 0.57.26 +**`(fix):`** Correctly parse non-string enum values; remove dependency on Fern Definition for v3 Parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-18.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-18.mdx new file mode 100644 index 000000000..45336a1d2 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-18.mdx @@ -0,0 +1,12 @@ +## 0.57.29 +**`(feat):`** The V3 OpenAPI parser now supports rendering user specified and autogenerated examples in Docs. + + +## 0.57.28 +**`(fix):`** Support OpenRPC specs as first class APIs in generators.yml and in the `apis` folder. + + +## 0.57.27 +**`(fix):`** Fix an issue where deeply wrapped file request properties were not being parsed correctly. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-20.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-20.mdx new file mode 100644 index 000000000..3b05cfec0 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-20.mdx @@ -0,0 +1,8 @@ +## 0.57.31 +**`(feat):`** Enable the `--from-openapi` flag for `fdr generate` to generate a FDR API definition from an OpenAPI spec. + + +## 0.57.30 +**`(feat):`** Attempt to treat non-array examples as single-element arrays in the v3 ExampleConverter. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-21.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-21.mdx new file mode 100644 index 000000000..04c2da0a4 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-21.mdx @@ -0,0 +1,18 @@ +## 0.57.34 +**`(feat):`** Objects use property schema examples when generating examples; request and response examples are generated with +optional properties included. + +Single element type arrays will resolve to the single element in the example. + + +## 0.57.33 +**`(feat):`** Improve OpenRPC response example generation by wrapping example payloads in JSON-RPC 2.0 format with metadata +(jsonrpc version and request id). This ensures generated examples match the actual JSON-RPC response format. + + +## 0.57.32 +**`(feat):`** Improve server handling in OpenAPI imports by exploding servers with enum variables into multiple servers, +one for each enum value. For example, a server with URL "https://{region}.example.com" where region +is an enum ["us", "eu"] will be exploded into two servers: "https://us.example.com" and "https://eu.example.com". + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-22.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-22.mdx new file mode 100644 index 000000000..a395899c3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-22.mdx @@ -0,0 +1,7 @@ +## 0.57.35 +**`(feat):`** Improve OpenAPI response handling for 204 status codes by respecting schema definitions. +When a 204 (No Content) response includes a schema, the importer now properly processes +and preserves this schema information, ensuring accurate API documentation and SDK generation +even for endpoints that don't return content in successful responses. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-23.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-23.mdx new file mode 100644 index 000000000..cf60446c9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-23.mdx @@ -0,0 +1,8 @@ +## 0.58.0-rc1 +**`(feat):`** Local development mode for app router is available in alpha for `fern`. + + +## 0.58.0-rc0 +**`(feat):`** Local development mode for app router is available in alpha for `fern-dev`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-24.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-24.mdx new file mode 100644 index 000000000..3c7f3cf5c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-24.mdx @@ -0,0 +1,15 @@ +## 0.58.0 +**`(feat):`** Add support for the `x-fern-sdk-namespace` extension, which allows users to define schemas +with the same name across different namespaces. This is particularly relevant if you have +multiple API Definitions that have overlapping schema names or operation names. + + +**`(fix):`** Fix an issue where custom Content-Type headers were not respected for file upload endpoints. + + +## 0.57.37 +**`(feat):`** Improve OpenRPC request example generation by not wrapping request payloads in JSON-RPC 2.0 format. +This ensures generated request examples match the expected format for the API's method parameters +without the additional JSON-RPC envelope. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-25.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-25.mdx new file mode 100644 index 000000000..9c655c557 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-25.mdx @@ -0,0 +1,4 @@ +## 0.58.1 +**`(fix):`** Add support for OpenRPC example parsing and rendering realistic requests and responses. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-26.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-26.mdx new file mode 100644 index 000000000..01bf1d797 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-26.mdx @@ -0,0 +1,7 @@ +## 0.58.2 +**`(feat):`** Enhance example generation to consider default values when generating examples for primitive types. +When a string primitive type has a default value specified, the example generator now uses this +default value instead of a generic example. This produces more realistic and contextually +appropriate examples in generated SDKs and documentation. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-27.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-27.mdx new file mode 100644 index 000000000..46c561d1e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-27.mdx @@ -0,0 +1,12 @@ +## 0.58.3 +**`(feat):`** Enhance OpenAPI security scheme handling in the parser to support both global and endpoint-level security requirements. +The parser now properly converts security schemes from OpenAPI's `securitySchemes` component into appropriate authentication +headers, supporting bearer tokens, basic auth, and custom API key headers. Global security requirements defined at the +document level are applied to all endpoints, while endpoint-specific security requirements override or supplement the +global configuration, ensuring accurate authentication representation in generated SDKs. + + +## 0.58.4-rc0 +**`(feat):`** Local development is now available for all machines using `fern-dev`. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-28.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-28.mdx new file mode 100644 index 000000000..170d50818 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-28.mdx @@ -0,0 +1,8 @@ +## 0.58.5 +**`(feat):`** Local development is now available in beta for all machines. + + +## 0.58.4 +**`(feat):`** Local development now supports adjusting the backend server to use open ports. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-29.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-29.mdx new file mode 100644 index 000000000..723199a16 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-29.mdx @@ -0,0 +1,20 @@ +## 0.59.2 +**`(fix):`** Add ping/pong to keep websocket connection alive in local development mode. + + +## 0.59.1 +**`(feat):`** Enhance OpenAPI -> IR parser to better handle inlined oneOf schemas. The parser now uses the schema ID when +generating names for oneOf variants, resulting in more predictable and consistent type names in the generated SDKs. + + +## 0.59.0 +**`(feat):`** Add the `fern sdk version` command to generate the next semantic version based on your API changes. +This command is in-development; changes are expected. + + +## 0.58.6 +**`(feat):`** Add support for schema conversion in OpenRPC importer. The importer now properly converts schemas defined in the +OpenRPC document's components section into Fern types, enabling full type definitions for request and response +objects. This enhancement allows for more complete and accurate SDK generation from OpenRPC specifications. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-04-30.mdx b/fern/products/cli-api-reference/cli-changelog/2025-04-30.mdx new file mode 100644 index 000000000..53dc11836 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-04-30.mdx @@ -0,0 +1,12 @@ +## 0.59.4 +**`(fix):`** Enhance OpenAPI -> IR conversion to properly handle default values in schemas. The converter now correctly extracts +and preserves default values from OpenAPI schemas, ensuring they are properly represented in the generated SDKs. +This improvement allows API providers to specify meaningful defaults that will be respected in client implementations. + + +## 0.59.3 +**`(fix):`** Improve OpenRPC importer to generate more unique schema IDs for request parameters by combining method name, +"Param" keyword, and parameter name. This prevents naming conflicts when different methods have parameters +with the same name, resulting in more reliable and consistent type generation in the SDKs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-01.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-01.mdx new file mode 100644 index 000000000..c4f8dd2f9 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-01.mdx @@ -0,0 +1,24 @@ +## 0.60.3 +**`(feat):`** Query parameter and path parameter generation in the new OpenAPI parser now respects the skipOptionalProperties flag. This ensures that optional +parameters are properly handled during example generation, resulting in cleaner and more accurate examples that better reflect real-world API usage. + + +## 0.60.2 +**`(fix):`** Fix a bug where the v3 parser would throw an error upon receiving an object property schema that is not an object. + + +## 0.60.1 +**`(fix):`** Fix an issue where example generation would not correctly merge allOf schemas with parent object schemas. + + +## 0.60.0 +**`(feat):`** Promotes `fern docs dev --beta` to `fern docs dev`; local development now better reflects the production version of docs. To use the legacy version, use the `--legacy` flag. + + +## 0.59.6 +**`(fix):`** Add support for local SDK generation with a Fern token. When a valid Fern token is provided, +users can now generate complete SDKs locally using Docker, without requiring remote generation. +This enhancement improves the development workflow by allowing for faster iteration and testing +of SDK changes in local environments. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-02.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-02.mdx new file mode 100644 index 000000000..b8a10fb95 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-02.mdx @@ -0,0 +1,21 @@ +## 0.60.7 +**`(feat):`** Add support for auth descriptions in generated documentation. Auth schemes can now include descriptive text that explains authentication requirements, +which is properly displayed in the generated documentation. This enhancement improves API usability by providing clearer guidance on authentication +methods directly within the documentation. + + +## 0.60.6 +**`(feat):`** Enable v2 example injection for multipart form upload endpoints. + + +## 0.60.5 +**`(feat):`** Several improvements to AsyncAPI package and channel generation. Add support for 2.x specific extensions. + + +## 0.60.4 +**`(feat):`** Add support for custom parameters in OpenRPC through the `x-fern-parameters` extension. This extension allows OpenRPC +definitions to specify path parameters, query parameters, and headers that aren't natively supported in the OpenRPC +specification. Parameters defined with this extension are properly converted to the Fern IR format and included in +endpoint definitions, enabling more complete API representations when importing from OpenRPC sources. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-03.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-03.mdx new file mode 100644 index 000000000..d6b348066 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-03.mdx @@ -0,0 +1,8 @@ +## 0.60.8 +**`(feat):`** Add support for environment and auth overrides from generators.yml in the OpenAPI parser. When importing OpenAPI specifications, +the parser now checks for environment and auth configurations in the generators.yml file and uses these settings to override +the environments and authentication schemes defined in the OpenAPI document. This enhancement provides more flexibility in +customizing imported APIs without modifying the original OpenAPI specification, allowing for environment-specific configurations +and standardized authentication schemes across different API versions. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-05.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-05.mdx new file mode 100644 index 000000000..083dce133 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-05.mdx @@ -0,0 +1,24 @@ +## 0.60.12 +**`(fix):`** Rerelease the Fern CLI. + + +## 0.60.11 +**`(fix):`** Fix `fern generate --local` to ask for `FERN_TOKEN` if trying to output to GitHub Enterprise. + + +## 0.60.10 +**`(fix):`** Local development mode no longer depends on `pnpm` being pre-installed. + + +## 0.60.10-rc1 +**`(feat):`** Bump Java generator to use v57 of IR. + + +## 0.60.10-rc0 +**`(feat):`** Adding alpha support for SDK generation to GitHub Enterprise (self hosted). + + +## 0.60.9 +**`(feat):`** Prettify `ir` output in the `fern ir` command; correctly extract error schemas from converted error responses. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-06.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-06.mdx new file mode 100644 index 000000000..bb42b7e0b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-06.mdx @@ -0,0 +1,28 @@ +## 0.60.19 +**`(feat):`** Update subpackage naming to achieve parity with the v1 parser; update docs resolver to support both camelcased and lower-cased subpackage names. + + +## 0.60.18 +**`(feat):`** If a local directory is not specified, generate the SDK in the workspace path. + + +## 0.60.17 +**`(feat):`** Add `--local` flag to `fern check` command to reduce RPC calls when validating workspaces locally. + + +## 0.60.16 +**`(feat):`** Support environment variable substitution in self-hosted mode for GitHub configurations. + + +## 0.60.15 +**`(feat):`** Correctly support `readOnly` and `writeOnly` object properties during request and response example generation. + + +## 0.60.14 +**`(fix):`** Dont clear tmp dir with generated code in self hosted mode. + + +## 0.60.13 +**`(fix):`** Set snippet output filepath in generated SDKs. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-07.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-07.mdx new file mode 100644 index 000000000..677e94cac --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-07.mdx @@ -0,0 +1,8 @@ +## 0.60.21 +**`(chore):`** OpenAPI V3 parser handles converting converting schemas that have a singular non-object `allOf`. + + +## 0.60.20 +**`(chore):`** Move subset of customers off of legacy docs development pin and onto latest. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-08.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-08.mdx new file mode 100644 index 000000000..601fd9cd1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-08.mdx @@ -0,0 +1,20 @@ +## 0.60.26 +**`(fix):`** The v3 parser now supports filtering endpoints by audiences. + + +## 0.60.25 +**`(fix):`** Endpoints that are referenced for oauth can now have special characters (previously the CLI would throw on this). + + +## 0.60.24 +**`(fix):`** Endpoints that are referenced for oauth can now have special characters (previously the CLI would throw on this). + + +## 0.60.23 +**`(chore):`** Auto-detect the `expires_in` property if it exists in the OAuth response. + + +## 0.60.22 +**`(chore):`** Parse and render errors in the OpenAPI V3 parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-09.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-09.mdx new file mode 100644 index 000000000..0b4c61947 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-09.mdx @@ -0,0 +1,14 @@ +## 0.60.29 +**`(feat):`** Add support for `propertyAccess` in the IR -> FDR SDK conversion. + + +## 0.60.28 +**`(fix):`** Fixed an issue where local generation could produce invalid build files (like pyproject.toml) when +GitHub configuration was missing a repository URL. The CLI now ensures a repository URL is always set when possible. + + +## 0.60.27 +**`(fix):`** Added support for using Podman as a container runner with `fern generate --runner podman`. +This allows users to run generators locally using Podman instead of Docker. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-13.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-13.mdx new file mode 100644 index 000000000..072277b2e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-13.mdx @@ -0,0 +1,25 @@ +## 0.61.3 +**`(fix):`** Fix a bug where streaming response examples would not be rendered correctly in the API Reference. + + +## 0.61.2 +**`(fix):`** Improve the naming for nested primitive types in union schemas. + + +## 0.61.1 +**`(fix):`** Fix a bug where unknown identifiers in the API Reference layout would not be resolved correctly. + + +## 0.61.0 +**`(feat):`** Implement the first iteration of the `fern diff` command, which can be used +to verify backwards compatibility between API changes. + + +## 0.60.31 +**`(fix):`** Various bugfixes and improvements to the v3 parser. + + +## 0.60.30 +**`(feat):`** Add support for products and versioned products in the docs config file. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-14.mdx new file mode 100644 index 000000000..730008f9c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-14.mdx @@ -0,0 +1,31 @@ +## 0.61.10 +**`(fix):`** Fix a bug where the docs resolver would throw an error when encountering missing or duplicate endpoints. + + +## 0.61.9 +**`(fix):`** String parameter examples will use the parameter name as the example value if no example is provided. + + +## 0.61.8 +**`(fix):`** Fix a bug where the broken link checker would incorrectly flag links to llms.txt and llms-full.txt files as broken. +The checker now properly recognizes these file paths as valid. + + +## 0.61.7 +**`(fix):`** Support text/plain content type response examples in the v3 parser. +Skip certain headers from being added to the IR. + + +## 0.61.6 +**`(fix):`** Support text/plain content type responses in the v3 parser. + + +## 0.61.5 +**`(fix):`** Fix a bug where the CLI upgrade message was written to stdout. This made it difficult to write shell +scripts that act upon the output of the CLI. The upgrade message is now written to stderr. + + +## 0.61.4 +**`(fix):`** Support application/octet-stream content type requests in the OpenAPI parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-15.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-15.mdx new file mode 100644 index 000000000..933caf2e7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-15.mdx @@ -0,0 +1,27 @@ +## 0.61.16 +**`(fix):`** Fix docs preview server by properly killing the Next.js process on exit and setting +a memory limit (--max-old-space-size=2048) to prevent out-of-memory errors during development. + + +## 0.61.15 +**`(fix):`** Example pairing operates on example summary fields. + + +## 0.61.14 +**`(fix):`** Exclude deprecated fields from examples. + + +## 0.61.13 +**`(fix):`** Introduce `fern check --from-openapi` which prints out validation errors directly from OpenAPI +as well as the corresponding line numbers originating the errors. + + +## 0.61.12 +**`(feat):`** When you set `type-dates-as-strings` to `false` in the OpenAPI `settings` in _generators.yml_, +schemas of type `string` with format `date` will be converted to a Fern `date` type, instead of a `string` type. + + +## 0.61.11 +**`(fix):`** Fix an issue where a singular allOf circular reference would lead to an infinite loop in the v3 parser. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-16.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-16.mdx new file mode 100644 index 000000000..a46243b8d --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-16.mdx @@ -0,0 +1,17 @@ +## 0.61.19 +**`(fix):`** Correctly build paths for `x-fern-examples` when compiling v2 examples. +AsyncAPI endpoints now have the correct associated path parameters. + + +## 0.61.18 +**`(fix):`** Fix OpenRPC converter to use proper breadcrumbs when generating request and response schemas. +This ensures that schemas with the same name but different contexts (such as parameters and results) +don't overwrite each other during conversion, maintaining the integrity of the API definition. + + +## 0.61.17 +**`(fix):`** Add support for preserving `maxLines` and `focus` attributes when using `` components in docs. +These attributes are now properly carried over to the generated code blocks, allowing you to control +the display of referenced code snippets with features like line limits and syntax highlighting focus. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-17.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-17.mdx new file mode 100644 index 000000000..34267b119 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-17.mdx @@ -0,0 +1,6 @@ +## 0.61.20 +**`(fix):`** Add logging of filepaths when markdown parsing fails to help with debugging. This includes logging the +absolute filepath of the markdown file being parsed and any associated image paths that were +being processed when the error occurred. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-19.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-19.mdx new file mode 100644 index 000000000..5bffe6e74 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-19.mdx @@ -0,0 +1,8 @@ +## 0.61.22 +**`(fix):`** Fix an issue where multiple auth schemes would not be converted during IR -> FDR conversion. + + +## 0.61.21 +**`(fix):`** Fix AsyncAPI parser to properly handle reference objects in headers and query parameters. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-20.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-20.mdx new file mode 100644 index 000000000..050041e70 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-20.mdx @@ -0,0 +1,35 @@ +## 0.62.3 +**`(fix):`** Support optional parameters in OpenRPC imports by properly handling the `required` field in parameter definitions. + + +## 0.62.2 +**`(fix):`** Correctly merge services when parsing multiple specs; standardize namespaced service naming. + + +## 0.62.1 +**`(internal):`** No changes. + + +## 0.62.0 +**`(feat):`** Add `--quiet` (-q) flag to `fern diff` command to suppress output written to stderr. + + +**`(feat):`** Add `--disable-examples` flag to `fern ir` command to disable automatic example generation. + + +**`(fix):`** Fix an issue where the `fern diff` command mistakenly reported breaking changes +for API types that defined multiple errors with the same status code. + + +**`(fix):`** Fix an issue where the `fern diff` command mistakenly reported breaking changes +for APIs that contain literal type references. + + +## 0.61.24 +**`(fix):`** Standardize package, service, and endpoint naming in the v3 parser. + + +## 0.61.23 +**`(fix):`** Remove warning for unrecognized PHP SDK generator name. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-21.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-21.mdx new file mode 100644 index 000000000..6b956995e --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-21.mdx @@ -0,0 +1,42 @@ +## 0.62.10 +**`(internal):`** Add support for overriding auth in generators.yml. You can now specify auth for a specific generator by adding an `api` field with an `auth` property. For example: + +```yaml +- name: fernapi/fern-typescript-node-sdk + version: 0.48.5 + api: + auth: bearer +``` + +This will override the auth configuration for that specific generator while keeping the original auth configuration for other generators. + + +## 0.62.9 +**`(internal):`** Re-release `0.62.7` + + +## 0.62.8 +**`(internal):`** Re-release `0.62.7` + + +## 0.62.7 +**`(fix):`** Remove `respect-readonly-schemas` for the legacy OpenAPI parser since it can block docs +generation. Anyone who wants to enable this can turn it on in `generators.yml` or upgrade +to the latest OpenAPI parser. + + +## 0.62.6 +**`(fix):`** Code samples provided via `x-fern-examples` will now be joined with autogenerated examples. + + +## 0.62.5 +**`(fix):`** Parse `number` types as `double` instead of `integer`. +Empty objects are now interpreted as unnamed primitives in union schemas. +Update `x-fern-examples` to extract codeSamples in isolation from example request & responses. +Propagate `x-fern-examples` name to generated code samples. + + +## 0.62.4 +**`(fix):`** Improve naming for discriminated unions based on title/discriminator key. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-22.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-22.mdx new file mode 100644 index 000000000..407be6384 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-22.mdx @@ -0,0 +1,25 @@ +## 0.63.5 +**`(fix):`** Fix a bug where stream endpoint response types would not be stored in the IR. + + +## 0.63.4 +**`(fix):`** Fix a bug where array property examples would not be used in favor of item examples. +Correctly process `additionalProperties: true` case for empty object schemas. + + +## 0.63.3 +**`(internal):`** Re-release `0.63.2` + + +## 0.63.2 +**`(fix):`** The CLI now recognizes that Go `1.1.0` requires IRv58. + + +## 0.63.1 +**`(feat):`** Add support for rendering and parsing multiple endpoint baseUrls in the v3 parser. + + +## 0.63.0 +**`(feat):`** Add support for `HEAD` HTTP methods and validate that they define no response body. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-23.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-23.mdx new file mode 100644 index 000000000..fbdd4d71c --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-23.mdx @@ -0,0 +1,4 @@ +## 0.63.6 +**`(fix):`** Union variant names use 'display-name' for Fern definitions, and fallback to the type name for all others + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-27.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-27.mdx new file mode 100644 index 000000000..967ae2f85 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-27.mdx @@ -0,0 +1,26 @@ +## 0.63.10 +**`(fix):`** Fix missing properties from base schemas in example generation. + +## 0.63.9 +**`(internal):`** Rerelease CLI at 0.63.8-rc1 + +## 0.63.8-rc3 +**`(fix):`** Fix a bug where `additionalProperties: false` would lead to objects still being converted as maps. + + +## 0.63.8-rc2 +**`(internal):`** Rerelease CLI at 0.63.8-rc1 + + +## 0.63.8-rc1 +**`(fix):`** Support retrieving subpackages in the ApiDefinitionHolder by both the id locator and tag locator. + + +## 0.63.8-rc0 +**`(feat):`** Beta support for custom React components in local development mode. + + +## 0.63.7 +**`(fix):`** Support running python generators with v58 of IR. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-28.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-28.mdx new file mode 100644 index 000000000..94802f3f7 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-28.mdx @@ -0,0 +1,44 @@ +## 0.63.16 +**`(fix):`** Added support for `oneOf` within `allOf` schemas in OpenAPI conversion. When an `allOf` schema contains a `oneOf` schema, we now properly merge the properties while preserving the union type structure. For example: + +```yaml +allOf: + - type: object + properties: + name: string + - oneOf: + - type: object + properties: + type: string + - type: object + properties: + kind: number +``` + +This will be converted to a Fern type that combines the base properties with the union type options. + + +## 0.63.15 +**`(fix):`** The `` component now supports more flexible prop ordering and additional properties. You can now specify `maxLines` and `focus` props in any order relative to the `src` prop. For example: + +```mdx + + +``` + +Both formats will work the same way, preserving the specified properties in the generated markdown. The component will automatically detect and include any additional props in the code block's metastring. + + +## 0.63.14 +**`(fix):`** Fix duplicate properties in example IR generation. + +## 0.63.13 +**`(fix):`** Make nullable properties optional in examples in the Fern Definition. + +## 0.63.12 +**`(fix):`** Fix parameter name collisions for enums + +## 0.63.11-rc0 +**`(fix):`** Mark readonly fields as optional in the IR. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-29.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-29.mdx new file mode 100644 index 000000000..ef916128f --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-29.mdx @@ -0,0 +1,19 @@ +## 0.63.21 +**`(fix):`** `allOf` schemas that share properties with the parent schema's required properties will now be parsed as an inline `allOf` schema. + + +## 0.63.20 +**`(fix):`** Implement V3 parser support for streamCondition endpoints. + + +## 0.63.19 +**`(fix):`** Added automatic display names for undiscriminated union members based on their type names for the original OpenAPI parser. + + +## 0.63.18 +**`(fix):`** Parse the `x-fern-global-headers` extension to add global headers to the IR. + + +## 0.63.17 +**`(fix):`** Encode path parameters appropriately when constructing URLs. + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-05-30.mdx b/fern/products/cli-api-reference/cli-changelog/2025-05-30.mdx new file mode 100644 index 000000000..029e00500 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-05-30.mdx @@ -0,0 +1,17 @@ +## 0.63.25 +**`(fix):`** Remove trailing slashes from base environment URLs if they are not empty. + + +## 0.63.24 +**`(fix):`** This fixes an error where the IR would be serialized to a string first and throw the following error: `Cannot create a string longer than 0x1fffffe8 characters`. +Now the IR is streamed to the file. + + +## 0.63.23 +**`(fix):`** Aggregate all code samples from user-specified examples when populating v2 examples. + + +## 0.63.22 +**`(fix):`** Support v2Examples in parsed webhooks. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-02.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-02.mdx new file mode 100644 index 000000000..c0a0ce136 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-02.mdx @@ -0,0 +1,6 @@ +## 0.63.26 +**`(fix):`** Implicitly interpert a request body as a multipart-form if it contains a property with a file, list of files, and optional file. + +**`(fix):`** Multiple auth schemes in the same API from difference spec files will be merged and deduplicated. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-03.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-03.mdx new file mode 100644 index 000000000..065be8db1 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-03.mdx @@ -0,0 +1,15 @@ +## 0.63.29 +**`(fix):`** The v3 OpenAPI parser now appropriately creates inlined types for references to +inlined schemas like `$ref: /components/schemas/MySchema/properties/foo` + + +**`(internal):`** Bump all generators to IR v58. + +## 0.63.28 +**`(feat):`** Add support for overriding FDR server origin via OVERRIDE_FDR_ORIGIN environment variable. + + +## 0.63.27 +**`(fix):`** Improvements to development server download and shutdown logic. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-04.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-04.mdx new file mode 100644 index 000000000..f0cb3e557 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-04.mdx @@ -0,0 +1,4 @@ +## 0.63.30 +**`(feat):`** Support endpoint-level servers in OpenRPC. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-05.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-05.mdx new file mode 100644 index 000000000..f2955151a --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-05.mdx @@ -0,0 +1,25 @@ +## 0.63.36 +**`(feat):`** Add `openapi-parser-v3` to the docs config upon initialization. + + +## 0.63.35 +**`(fix):`** Also add referenced parameter types to the audience-filtered IR. + + +## 0.63.34 +**`(internal):`** Bump CLI version. + + +## 0.63.33 +**`(feat):`** Add support for Anthropic Claude Sonnet 4.0. + + +## 0.63.32 +**`(fix):`** Disable v1 example generation for v3 docs IR generation. +Correctly handle `x-fern-availability` extension in v3 parsing. + + +## 0.63.31 +**`(chore):`** Manual redeployment to release changes from 0.63.29 and 0.63.30 + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-06.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-06.mdx new file mode 100644 index 000000000..716937e7b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-06.mdx @@ -0,0 +1,9 @@ +## 0.63.38 +**`(feat):`** Don't hard fail on non-string $ref values. +Limit ExampleConverter depth to prevent heap exhaustion. + + +## 0.63.37 +**`(fix):`** Correctly filter audience-specific websocket channels when constructing the filtered IR. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-09.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-09.mdx new file mode 100644 index 000000000..2e85bdd23 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-09.mdx @@ -0,0 +1,13 @@ +## 0.63.41 +**`(fix):`** Generate parameter examples for idempotency and global headers. +Generate v2Examples for headers specified by the `x-fern-global-headers` extension. + + +## 0.63.40 +**`(fix):`** The V3 parser will only specify example names for endpoints that have more than one example. + + +## 0.63.39 +**`(fix):`** The V3 parser will use the underlying tag displayName, if available. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-10.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-10.mdx new file mode 100644 index 000000000..c830411b6 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-10.mdx @@ -0,0 +1,4 @@ +## 0.64.0 +**`(feat):`** The OpenAPI v3 Parser will now be used on default for all docs generation codepaths. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-11.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-11.mdx new file mode 100644 index 000000000..e09fbc613 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-11.mdx @@ -0,0 +1,24 @@ +## 0.64.4 +**`(fix):`** Don't use posthog when CLI is running from self-hosted container. + + +## 0.64.3 +**`(fix):`** The OpenAPI v3 Parser now uniquely stores schemas across endpoint parameters to prevent overwriting. Previously, +schemas with the same name across different parameters would overwrite each other, leading to potential data loss +and incorrect type definitions. This fix ensures that each parameter's schema is properly preserved and referenced +throughout the API specification. + + +## 0.64.2 +**`(fix):`** The AsyncAPI v3 importer now properly detects query parameters by analyzing the channel address specification. +When a channel address contains a parameter reference in the format `={paramName}`, the importer will automatically +identify it as a query parameter. This allows for more accurate parameter type detection and better handling of +WebSocket channel parameters in AsyncAPI v3 specifications. + + +## 0.64.1 +**`(fix):`** The AsyncAPI importer now supports parameter references and computing location of the parameter based on the address. +This allows for more flexible parameter definitions in AsyncAPI specifications, where parameters can be referenced from other +parts of the specification and their location can be dynamically determined based on the channel address. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-12.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-12.mdx new file mode 100644 index 000000000..bee17df42 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-12.mdx @@ -0,0 +1,14 @@ +## 0.64.7 +**`(fix):`** Further support for docs with multiple custom subpaths + + +## 0.64.6 +**`(fix):`** The Readme importer now downloads MDX files from the source documentation. +This allows for better handling of React components and dynamic content in the imported documentation. +The importer will preserve the MDX syntax and structure while converting the content to a format compatible with Fern's documentation system. + + +## 0.64.5 +**`(fix):`** Relative links between markdown files now works for docs using custom subpaths. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-14.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-14.mdx new file mode 100644 index 000000000..948e55537 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-14.mdx @@ -0,0 +1,4 @@ +## 0.64.8 +**`(fix):`** Support hot-reloading for changes to OpenRPC specs in local development mode. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-16.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-16.mdx new file mode 100644 index 000000000..b26d7d571 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-16.mdx @@ -0,0 +1,8 @@ +## 0.64.10 +**`(feat):`** Add configuration option to disable snippets in docs generation, speeding up generation time. + + +## 0.64.9 +**`(fix):`** Update CLI for sites pinned to the legacy deployment. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-17.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-17.mdx new file mode 100644 index 000000000..0c71773c3 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-17.mdx @@ -0,0 +1,4 @@ +## 0.64.11 +**`(fix):`** Fix handling of legacy webhook examples snippets. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-18.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-18.mdx new file mode 100644 index 000000000..0dd6bc021 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-18.mdx @@ -0,0 +1,4 @@ +## 0.64.12 +**`(feat):`** Add configuration option to preserve oneOfs with a single schema. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-19.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-19.mdx new file mode 100644 index 000000000..4a14ead89 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-19.mdx @@ -0,0 +1,9 @@ +## 0.64.14 +**`(fix):`** Separate nullable and optional property handling in IR conversion. + + +## 0.64.13 +**`(fix):`** Respect additional properties in docs example generation by preserving them in generated examples instead of +stripping unknown properties. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-21.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-21.mdx new file mode 100644 index 000000000..d5236db65 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-21.mdx @@ -0,0 +1,4 @@ +## 0.64.15 +**`(fix):`** Fixed ExampleTypeFactory to ignore generating parameters in example when that parameter is both optional and deprecated + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-23.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-23.mdx new file mode 100644 index 000000000..6ef5f8095 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-23.mdx @@ -0,0 +1,7 @@ +## 0.64.17-rc0 +**`(feat):`** + +## 0.64.16 +**`(feat):`** Add `fern export` command to export API to an OpenAPI spec. + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-24.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-24.mdx new file mode 100644 index 000000000..a95fe6578 --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-24.mdx @@ -0,0 +1,25 @@ +## 0.64.21 +**`(feat):`** Introduce `x-fern-discriminated` extension to configure oneOf union behavior in OpenAPI specs. + +```yaml +# Example usage in OpenAPI schema +oneOf: + - $ref: '#/components/schemas/Circle' + - $ref: '#/components/schemas/Square' +x-fern-discriminated: false # Treat as undiscriminated union +``` + +When `x-fern-discriminated` is set to `false`, the oneOf will be treated as an undiscriminated union instead of a discriminated union. + + +## 0.64.20 +**`(fix):`** Remove 'fern-check' error for global header examples included with 'x-fern-examples' + + +## 0.64.19 +**`(fix):`** Pin Windows to legacy preview mode. + + +## 0.64.18 +**`(fix):`** + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-25.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-25.mdx new file mode 100644 index 000000000..a41340aca --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-25.mdx @@ -0,0 +1,10 @@ +## 0.64.23 +**`(fix):`** Global headers are now used to create endpoint examples. When building endpoint examples, global headers +are automatically included in the headers section of each example. This ensures that all endpoints have consistent +header examples that match the global header configuration. + + +## 0.64.22 +**`(feat):`** Make proto file target field optional in generators.yml + + diff --git a/fern/products/cli-api-reference/cli-changelog/2025-06-26.mdx b/fern/products/cli-api-reference/cli-changelog/2025-06-26.mdx new file mode 100644 index 000000000..daa5a303b --- /dev/null +++ b/fern/products/cli-api-reference/cli-changelog/2025-06-26.mdx @@ -0,0 +1,4 @@ +## 0.64.24 +**`(fix):`** When a part in a multipart form request has `Content-Type: application/json` in OpenAPI or Fern Definition, interpret it as `style: json`. + + diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml index ad22b2a5e..d029dfab2 100644 --- a/fern/products/docs/docs.yml +++ b/fern/products/docs/docs.yml @@ -73,17 +73,19 @@ navigation: path: ./pages/component-library/custom-components/reusable-markdown.mdx - page: Custom React Components path: ./pages/component-library/custom-components/custom-react-components.mdx - - section: Configuration + - section: Customization collapsed: true contents: - page: What is docs.yml - path: ./pages/configuration/what-is-docs-yml.mdx + path: ./pages/customization/what-is-docs-yml.mdx - page: Project Structure - path: ./pages/configuration/project-structure.mdx + path: ./pages/customization/project-structure.mdx - page: Frontmatter - path: ./pages/configuration/frontmatter.mdx + path: ./pages/customization/frontmatter.mdx - page: Search - path: ./pages/configuration/search.mdx + path: ./pages/customization/search.mdx + - page: User Feedback + path: ./pages/customization/user-feedback.mdx - page: Custom CSS & JS path: ./pages/component-library/custom-components/custom-css-js.mdx - section: Preview & Publish diff --git a/fern/products/docs/pages/configuration/edit-this-page.png b/fern/products/docs/pages/customization/edit-this-page.png similarity index 100% rename from fern/products/docs/pages/configuration/edit-this-page.png rename to fern/products/docs/pages/customization/edit-this-page.png diff --git a/fern/products/docs/pages/configuration/frontmatter.mdx b/fern/products/docs/pages/customization/frontmatter.mdx similarity index 100% rename from fern/products/docs/pages/configuration/frontmatter.mdx rename to fern/products/docs/pages/customization/frontmatter.mdx diff --git a/fern/products/docs/pages/configuration/global-configuration.mdx b/fern/products/docs/pages/customization/global-configuration.mdx similarity index 100% rename from fern/products/docs/pages/configuration/global-configuration.mdx rename to fern/products/docs/pages/customization/global-configuration.mdx diff --git a/fern/products/docs/pages/configuration/max-toc.png b/fern/products/docs/pages/customization/max-toc.png similarity index 100% rename from fern/products/docs/pages/configuration/max-toc.png rename to fern/products/docs/pages/customization/max-toc.png diff --git a/fern/products/docs/pages/configuration/nav-link.png b/fern/products/docs/pages/customization/nav-link.png similarity index 100% rename from fern/products/docs/pages/configuration/nav-link.png rename to fern/products/docs/pages/customization/nav-link.png diff --git a/fern/products/docs/pages/configuration/on-page-feedback.png b/fern/products/docs/pages/customization/on-page-feedback.png similarity index 100% rename from fern/products/docs/pages/configuration/on-page-feedback.png rename to fern/products/docs/pages/customization/on-page-feedback.png diff --git a/fern/products/docs/pages/configuration/project-structure.mdx b/fern/products/docs/pages/customization/project-structure.mdx similarity index 100% rename from fern/products/docs/pages/configuration/project-structure.mdx rename to fern/products/docs/pages/customization/project-structure.mdx diff --git a/fern/products/docs/pages/configuration/search.mdx b/fern/products/docs/pages/customization/search.mdx similarity index 100% rename from fern/products/docs/pages/configuration/search.mdx rename to fern/products/docs/pages/customization/search.mdx diff --git a/fern/products/docs/pages/configuration/table-of-contents.png b/fern/products/docs/pages/customization/table-of-contents.png similarity index 100% rename from fern/products/docs/pages/configuration/table-of-contents.png rename to fern/products/docs/pages/customization/table-of-contents.png diff --git a/fern/products/docs/pages/customization/user-feedback.mdx b/fern/products/docs/pages/customization/user-feedback.mdx new file mode 100644 index 000000000..5d375b5ae --- /dev/null +++ b/fern/products/docs/pages/customization/user-feedback.mdx @@ -0,0 +1,32 @@ +--- +title: Collecting feedback and suggestions from users +slug: user-feedback +--- + +Fern offers a variety of ways to track feedback and suggested improvements from users. + +## On-page feedback +By default, every Markdown page of your docs contains a feedback component at the bottom of the page: + + + + + +This feature is available on the Basic plan and above. [Contact us](https://buildwithfern.com/contact) to get set up. + +The feedback can be sent to you in real-time via the method of your choosing (e.g. Slack, email). + +To disable this feature on a page, set `hide-feedback: true` in the frontmatter of that page. You can read more about the frontmatter configuration [here](/learn/docs/content/frontmatter#on-page-feedback). + +## Edit this page +Allow users to open directly to the current page in your GitHub repository and suggest changes. + + + + + +You can configure this feature for the entire site in the [global configuration](/learn/docs/getting-started/global-configuration#instances-configuration), or for an individual page in the [frontmatter of that page](/learn/docs/content/frontmatter#edit-this-page). + + +This feature works in preview links but does not work in local development. + diff --git a/fern/products/docs/pages/configuration/what-is-docs-yml.mdx b/fern/products/docs/pages/customization/what-is-docs-yml.mdx similarity index 100% rename from fern/products/docs/pages/configuration/what-is-docs-yml.mdx rename to fern/products/docs/pages/customization/what-is-docs-yml.mdx diff --git a/fern/products/sdks/overview/dotnet/assets/dotnet-package.png b/fern/products/sdks/overview/csharp/assets/dotnet-package.png similarity index 100% rename from fern/products/sdks/overview/dotnet/assets/dotnet-package.png rename to fern/products/sdks/overview/csharp/assets/dotnet-package.png diff --git a/fern/products/sdks/overview/dotnet/assets/new-api-key.png b/fern/products/sdks/overview/csharp/assets/new-api-key.png similarity index 100% rename from fern/products/sdks/overview/dotnet/assets/new-api-key.png rename to fern/products/sdks/overview/csharp/assets/new-api-key.png diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-10.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-10.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-10.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-10.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-15.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-15.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-15.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-15.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-20.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-20.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-20.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-20.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-22.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-22.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-22.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-22.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-23.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-23.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-23.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-23.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-28.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-28.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-28.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-28.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-29.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-29.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-29.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-29.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-05-31.mdx b/fern/products/sdks/overview/csharp/changelog/2024-05-31.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-05-31.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-05-31.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-06-07.mdx b/fern/products/sdks/overview/csharp/changelog/2024-06-07.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-06-07.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-06-07.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-06-19.mdx b/fern/products/sdks/overview/csharp/changelog/2024-06-19.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-06-19.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-06-19.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-06-20.mdx b/fern/products/sdks/overview/csharp/changelog/2024-06-20.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-06-20.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-06-20.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-06-21.mdx b/fern/products/sdks/overview/csharp/changelog/2024-06-21.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-06-21.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-06-21.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-02.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-02.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-02.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-02.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-09.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-09.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-09.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-09.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-10.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-10.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-10.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-10.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-17.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-17.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-17.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-17.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-22.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-22.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-22.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-22.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-23.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-23.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-23.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-23.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-25.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-25.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-25.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-25.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-29.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-29.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-29.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-29.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-30.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-30.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-30.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-30.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-07-31.mdx b/fern/products/sdks/overview/csharp/changelog/2024-07-31.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-07-31.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-07-31.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-01.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-01.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-01.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-01.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-07.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-07.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-07.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-07.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-09.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-09.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-09.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-09.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-10.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-10.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-10.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-10.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-11.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-11.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-11.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-11.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-12.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-12.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-12.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-12.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-22.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-22.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-22.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-22.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-26.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-26.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-26.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-26.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-28.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-28.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-28.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-28.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-08-29.mdx b/fern/products/sdks/overview/csharp/changelog/2024-08-29.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-08-29.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-08-29.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-10-08.mdx b/fern/products/sdks/overview/csharp/changelog/2024-10-08.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-10-08.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-10-08.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-10-28.mdx b/fern/products/sdks/overview/csharp/changelog/2024-10-28.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-10-28.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-10-28.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-10-30.mdx b/fern/products/sdks/overview/csharp/changelog/2024-10-30.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-10-30.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-10-30.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-05.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-05.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-05.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-05.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-06.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-06.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-06.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-06.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-07.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-07.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-07.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-07.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-08.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-08.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-08.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-08.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-09.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-09.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-09.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-09.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-12.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-12.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-12.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-12.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-14.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-14.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-14.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-14.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-19.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-19.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-19.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-19.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-20.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-20.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-20.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-20.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2024-11-25.mdx b/fern/products/sdks/overview/csharp/changelog/2024-11-25.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2024-11-25.mdx rename to fern/products/sdks/overview/csharp/changelog/2024-11-25.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-01-22.mdx b/fern/products/sdks/overview/csharp/changelog/2025-01-22.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-01-22.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-01-22.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-02.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-02.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-02.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-02.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-03.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-03.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-03.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-03.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-06.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-06.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-06.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-06.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-14.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-14.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-14.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-14.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-15.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-15.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-15.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-15.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-24.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-24.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-24.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-24.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-26.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-26.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-26.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-26.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-27.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-27.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-27.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-27.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-02-28.mdx b/fern/products/sdks/overview/csharp/changelog/2025-02-28.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-02-28.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-02-28.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-02.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-02.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-02.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-02.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-03.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-03.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-03.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-03.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-04.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-04.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-04.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-04.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-05.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-05.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-05.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-05.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-07.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-07.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-07.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-07.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-09.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-09.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-09.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-09.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-10.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-10.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-10.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-10.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-13.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-13.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-13.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-13.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-14.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-14.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-14.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-14.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-17.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-17.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-17.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-17.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-18.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-18.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-18.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-18.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-19.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-19.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-19.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-19.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-21.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-21.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-21.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-21.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-22.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-22.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-22.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-22.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-25.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-25.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-25.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-25.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-03-31.mdx b/fern/products/sdks/overview/csharp/changelog/2025-03-31.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-03-31.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-03-31.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-04-01.mdx b/fern/products/sdks/overview/csharp/changelog/2025-04-01.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-04-01.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-04-01.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-04-07.mdx b/fern/products/sdks/overview/csharp/changelog/2025-04-07.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-04-07.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-04-07.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-04-10.mdx b/fern/products/sdks/overview/csharp/changelog/2025-04-10.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-04-10.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-04-10.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-04-11.mdx b/fern/products/sdks/overview/csharp/changelog/2025-04-11.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-04-11.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-04-11.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-04-22.mdx b/fern/products/sdks/overview/csharp/changelog/2025-04-22.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-04-22.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-04-22.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-04-23.mdx b/fern/products/sdks/overview/csharp/changelog/2025-04-23.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-04-23.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-04-23.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-05-01.mdx b/fern/products/sdks/overview/csharp/changelog/2025-05-01.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-05-01.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-05-01.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-05-04.mdx b/fern/products/sdks/overview/csharp/changelog/2025-05-04.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-05-04.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-05-04.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-05-13.mdx b/fern/products/sdks/overview/csharp/changelog/2025-05-13.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-05-13.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-05-13.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-05-16.mdx b/fern/products/sdks/overview/csharp/changelog/2025-05-16.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-05-16.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-05-16.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-06-03.mdx b/fern/products/sdks/overview/csharp/changelog/2025-06-03.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-06-03.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-06-03.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-06-05.mdx b/fern/products/sdks/overview/csharp/changelog/2025-06-05.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-06-05.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-06-05.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-06-17.mdx b/fern/products/sdks/overview/csharp/changelog/2025-06-17.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-06-17.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-06-17.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-06-23.mdx b/fern/products/sdks/overview/csharp/changelog/2025-06-23.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-06-23.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-06-23.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-06-24.mdx b/fern/products/sdks/overview/csharp/changelog/2025-06-24.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-06-24.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-06-24.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-06-27.mdx b/fern/products/sdks/overview/csharp/changelog/2025-06-27.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-06-27.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-06-27.mdx diff --git a/fern/products/sdks/overview/dotnet/changelog/2025-07-09.mdx b/fern/products/sdks/overview/csharp/changelog/2025-07-09.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/changelog/2025-07-09.mdx rename to fern/products/sdks/overview/csharp/changelog/2025-07-09.mdx diff --git a/fern/products/sdks/overview/dotnet/configuration.mdx b/fern/products/sdks/overview/csharp/configuration.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/configuration.mdx rename to fern/products/sdks/overview/csharp/configuration.mdx diff --git a/fern/products/sdks/overview/dotnet/custom-code.mdx b/fern/products/sdks/overview/csharp/custom-code.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/custom-code.mdx rename to fern/products/sdks/overview/csharp/custom-code.mdx diff --git a/fern/products/sdks/overview/dotnet/customer-showcase.mdx b/fern/products/sdks/overview/csharp/customer-showcase.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/customer-showcase.mdx rename to fern/products/sdks/overview/csharp/customer-showcase.mdx diff --git a/fern/products/sdks/overview/dotnet/design.mdx b/fern/products/sdks/overview/csharp/design.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/design.mdx rename to fern/products/sdks/overview/csharp/design.mdx diff --git a/fern/products/sdks/overview/dotnet/publishing-to-nuget.mdx b/fern/products/sdks/overview/csharp/publishing-to-nuget.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/publishing-to-nuget.mdx rename to fern/products/sdks/overview/csharp/publishing-to-nuget.mdx diff --git a/fern/products/sdks/overview/dotnet/quickstart.mdx b/fern/products/sdks/overview/csharp/quickstart.mdx similarity index 100% rename from fern/products/sdks/overview/dotnet/quickstart.mdx rename to fern/products/sdks/overview/csharp/quickstart.mdx diff --git a/fern/products/sdks/sdks.yml b/fern/products/sdks/sdks.yml index 0dca0692b..84727cd59 100644 --- a/fern/products/sdks/sdks.yml +++ b/fern/products/sdks/sdks.yml @@ -74,20 +74,21 @@ navigation: # - link: Customer Showcase # href: https://buildwithfern.com/showcase - section: .NET + slug: csharp contents: - page: Quickstart - path: ./overview/dotnet/quickstart.mdx + path: ./overview/csharp/quickstart.mdx - page: Design Decisions hidden: true - path: ./overview/dotnet/design.mdx + path: ./overview/csharp/design.mdx - page: Configuration - path: ./overview/dotnet/configuration.mdx - - changelog: ./overview/dotnet/changelog + path: ./overview/csharp/configuration.mdx + - changelog: ./overview/csharp/changelog - page: Publishing to Nuget - path: ./overview/dotnet/publishing-to-nuget.mdx + path: ./overview/csharp/publishing-to-nuget.mdx - page: Adding custom code hidden: true - path: ./overview/dotnet/custom-code.mdx + path: ./overview/csharp/custom-code.mdx # - link: Customer Showcase # href: https://buildwithfern.com/showcase - section: PHP From e2dc96ac3b01737cb51349dcaa8ba0da79d8d2ba Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 21:02:33 -0400 Subject: [PATCH 11/34] feat: cleaned up redirects --- fern/footer-dist/output.js | 2 +- fern/products/home/pages/images/fern-logo.svg | 3 + fern/products/home/pages/welcome.mdx | 57 +++++++++++++------ fern/products/sdks/sdks.yml | 1 + footer/src/FernFooter.tsx | 6 +- 5 files changed, 48 insertions(+), 21 deletions(-) create mode 100644 fern/products/home/pages/images/fern-logo.svg diff --git a/fern/footer-dist/output.js b/fern/footer-dist/output.js index 781855886..ba3c1f7ff 100644 --- a/fern/footer-dist/output.js +++ b/fern/footer-dist/output.js @@ -316,4 +316,4 @@ Error generating stack: `+o.message+` min-width: 200px; } } - `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/v2/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/v2/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/learn/v2/ask-fern",className:"footer-link",children:"Ask Fern"}),f.jsx("a",{href:"/learn/v2/api-definition/introduction/what-is-an-api-definition",className:"footer-link",children:"API Definition"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); + `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/v2/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/v2/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/learn/v2/ask-fern",className:"footer-link",children:"Ask Fern"}),f.jsx("a",{href:"/learn/v2/openapi/overview",className:"footer-link",children:"OpenAPI"}),f.jsx("a",{href:"/learn/v2/fern-def/overview",className:"footer-link",children:"Fern Definition"}),f.jsx("a",{href:"/learn/v2/cli-api-reference/cli-reference/overview",className:"footer-link",children:"CLI Reference"}),f.jsx("a",{href:"/learn/v2/cli-api-reference/api-reference/overview",className:"footer-link",children:"API Reference"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); diff --git a/fern/products/home/pages/images/fern-logo.svg b/fern/products/home/pages/images/fern-logo.svg new file mode 100644 index 000000000..3d592a6c3 --- /dev/null +++ b/fern/products/home/pages/images/fern-logo.svg @@ -0,0 +1,3 @@ + + + diff --git a/fern/products/home/pages/welcome.mdx b/fern/products/home/pages/welcome.mdx index 5a7a5b8e0..784c4341f 100644 --- a/fern/products/home/pages/welcome.mdx +++ b/fern/products/home/pages/welcome.mdx @@ -92,10 +92,6 @@ import { FernFooter } from "../../../components/FernFooter"; Java - {/* Ruby */} - - Ruby - {/* C# */} C# @@ -104,6 +100,10 @@ import { FernFooter } from "../../../components/FernFooter"; PHP + {/* Ruby */} + + Ruby +
{/* Action Buttons */} @@ -113,7 +113,7 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right light Arrow right light - + Configure Arrow right light Arrow right light @@ -148,7 +148,7 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right Arrow right - + Configure your docs site Arrow right light Arrow right light @@ -168,7 +168,7 @@ import { FernFooter } from "../../../components/FernFooter"; Arrow right light Arrow right light - + See all available components Arrow right light Arrow right light @@ -222,11 +222,38 @@ import { FernFooter } from "../../../components/FernFooter";

See our most recent product updates.

-
- View - Arrow right dark - Arrow right dark - +
+ + Docs + + + TypeScript + + {/* Python */} + + Python + + {/* Go */} + + Go + + {/* Java */} + + Java + + {/* C# */} + + C# + + {/* PHP */} + + PHP + + {/* Ruby */} + + Ruby + +
@@ -239,8 +266,6 @@ import { FernFooter } from "../../../components/FernFooter";

View - Arrow right dark - Arrow right dark
@@ -254,8 +279,6 @@ import { FernFooter } from "../../../components/FernFooter";

View - Twitter Preview - Twitter Preview @@ -271,8 +294,6 @@ import { FernFooter } from "../../../components/FernFooter";

View - Twitter Preview - Twitter Preview diff --git a/fern/products/sdks/sdks.yml b/fern/products/sdks/sdks.yml index 84727cd59..0c6b556a7 100644 --- a/fern/products/sdks/sdks.yml +++ b/fern/products/sdks/sdks.yml @@ -10,6 +10,7 @@ navigation: - section: Generators contents: - section: TypeScript + slug: typescript contents: - page: Quickstart path: ./overview/typescript/quickstart.mdx diff --git a/footer/src/FernFooter.tsx b/footer/src/FernFooter.tsx index abaaa2cb3..fa9ba273c 100644 --- a/footer/src/FernFooter.tsx +++ b/footer/src/FernFooter.tsx @@ -283,8 +283,10 @@ export const FernFooter: React.FC = () => { SDKs Docs Ask Fern - API Definition - + OpenAPI + Fern Definition + CLI Reference + API Reference From 35a4dc898acad50bbe0479b1ce815e62eb526b39 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 21:06:40 -0400 Subject: [PATCH 12/34] feat: fixed more redirects --- fern/docs.yml | 4 +- footer/check_urls_output.txt | 90 ++++++++++++++++++++++++++++++++++++ 2 files changed, 92 insertions(+), 2 deletions(-) create mode 100644 footer/check_urls_output.txt diff --git a/fern/docs.yml b/fern/docs.yml index e378ae50a..6d1638fd8 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -203,7 +203,7 @@ redirects: destination: /learn/sdks/guides/publish-to-package-managers/:slug* permanent: true - source: /learn/sdks/guides/publish-to-package-managers/npm-type-script - destination: /learn/sdks/generators/type-script/publishing-to-npm + destination: /learn/sdks/generators/typescript/publishing-to-npm permanent: true - source: /learn/sdks/guides/publish-to-package-managers/pypi destination: /learn/sdks/generators/python/publishing-to-py-pi @@ -238,7 +238,7 @@ redirects: destination: /learn/sdks/customer-showcase permanent: true - source: /learn/sdks/introduction/changelog/ts/:slug* - destination: /learn/sdks/generators/type-script/changelog/:slug* + destination: /learn/sdks/generators/typescript/changelog/:slug* permanent: true - source: /learn/sdks/introduction/changelog/python/:slug* destination: /learn/sdks/generators/python/changelog/:slug* diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt new file mode 100644 index 000000000..33ee70edb --- /dev/null +++ b/footer/check_urls_output.txt @@ -0,0 +1,90 @@ +📝 Output will be saved to: check_urls_output.txt +🚀 Fern Docs URL Checker +============================================================ +🔍 Checking 1308 URLs... +⚙️ Using 10 workers with 0.1s delay +============================================================ +🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-the-fern-folder +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/30 +Progress: 50/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/14 From 879cf87979c98d395ddb0fdb21922da32af72db9 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 21:12:35 -0400 Subject: [PATCH 13/34] feat: removed cyclical redirect for sdks --- fern/docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 6d1638fd8..33f5811df 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -169,7 +169,7 @@ redirects: - source: /learn/docs/api-references/api-explorer destination: /learn/docs/api-references/api-explorer/overview - source: /learn/docs/api-references/api-playground/:slug* - destination: learn/docs/api-references/api-explorer/:slug* + destination: /learn/docs/api-references/api-explorer/:slug* permanent: true - source: /learn/docs/api-references/api-playground destination: /learn/docs/api-references/api-explorer/overview @@ -301,10 +301,10 @@ redirects: permanent: true # General SDK guides pattern - source: /learn/sdks/getting-started/:slug* - destination: /learn/sdks/guides/:slug* + destination: /learn/sdks/overview/introduction permanent: true - source: /learn/sdks/guides/:slug* - destination: /learn/sdks/getting-started/:slug* + destination: /learn/sdks/overview/introduction permanent: true # ============================================================================ From c4652507d108abd24e030dc7149de8f8be1571a7 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 21:23:50 -0400 Subject: [PATCH 14/34] feat: removed uncessary redirects --- fern/assets/styles.css | 18 ------------------ fern/docs.yml | 27 ++++++--------------------- 2 files changed, 6 insertions(+), 39 deletions(-) diff --git a/fern/assets/styles.css b/fern/assets/styles.css index fe6b5bcda..9286ce973 100644 --- a/fern/assets/styles.css +++ b/fern/assets/styles.css @@ -90,24 +90,6 @@ grid-row: 2; } - /* > a[href*="api-definition"]:before { - content: "Utilities"; - font-weight: 500; - position: absolute; - top: -2rem; - left: 0.5rem; - } - - > a[href*="api-definition"] { - grid-column: 3; - grid-row: 1; - - .fern-selection-item-icon { - width: 1.5rem; - height: 1.5rem; - } - } */ - > a[href*="openapi"]:before { content: "Supported Specs"; font-weight: 500; diff --git a/fern/docs.yml b/fern/docs.yml index 33f5811df..df9a3d69d 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -168,6 +168,7 @@ redirects: permanent: true - source: /learn/docs/api-references/api-explorer destination: /learn/docs/api-references/api-explorer/overview + permanent: true - source: /learn/docs/api-references/api-playground/:slug* destination: /learn/docs/api-references/api-explorer/:slug* permanent: true @@ -202,6 +203,9 @@ redirects: - source: /learn/sdks/package-managers/:slug* destination: /learn/sdks/guides/publish-to-package-managers/:slug* permanent: true + - source: /learn/sdks/guides/publish-to-package-managers/:slug* + destination: /learn/sdks/generators/:slug* + permanent: true - source: /learn/sdks/guides/publish-to-package-managers/npm-type-script destination: /learn/sdks/generators/typescript/publishing-to-npm permanent: true @@ -237,28 +241,9 @@ redirects: - source: /learn/sdks/introduction/customer-showcase destination: /learn/sdks/customer-showcase permanent: true - - source: /learn/sdks/introduction/changelog/ts/:slug* - destination: /learn/sdks/generators/typescript/changelog/:slug* - permanent: true - - source: /learn/sdks/introduction/changelog/python/:slug* - destination: /learn/sdks/generators/python/changelog/:slug* - permanent: true - - source: /learn/sdks/introduction/changelog/csharp/:slug* - destination: /learn/sdks/generators/csharp/changelog/:slug* - permanent: true - - source: /learn/sdks/introduction/changelog/go/:slug* - destination: /learn/sdks/generators/go/changelog/:slug* - permanent: true - - source: /learn/sdks/introduction/changelog/java/:slug* - destination: /learn/sdks/generators/java/changelog/:slug* - permanent: true - - source: /learn/sdks/introduction/changelog/ruby/:slug* - destination: /learn/sdks/generators/ruby/changelog/:slug* - permanent: true - - source: /learn/sdks/introduction/changelog/php/:slug* - destination: /learn/sdks/generators/php/changelog/:slug* + - source: /learn/sdks/introduction/changelog/:slug* + destination: /learn/sdks/generators/:slug* permanent: true - # SDK Capabilities - remaining general redirects (after specific overrides above) - source: /learn/sdks/capabilities/idiomatic-method-names From 8382d14d8dcbac809fbae95f5621549ab13dc0b8 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 21:31:35 -0400 Subject: [PATCH 15/34] feat: added new changelog slug --- fern/docs.yml | 6 +- footer/check_urls_output.txt | 853 +++++++++++++++++++++++++++++++++-- 2 files changed, 807 insertions(+), 52 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index df9a3d69d..4b30ea83c 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -51,7 +51,7 @@ products: path: ./products/fern-def/fern-def.yml icon: fa-regular fa-seedling image: ./images/product-switcher/fern-def.png - slug: fern-def + slug: fern-definition - display-name: CLI & API Reference path: ./products/cli-api-reference/cli-api-reference.yml @@ -241,8 +241,8 @@ redirects: - source: /learn/sdks/introduction/customer-showcase destination: /learn/sdks/customer-showcase permanent: true - - source: /learn/sdks/introduction/changelog/:slug* - destination: /learn/sdks/generators/:slug* + - source: /learn/sdks/introduction/changelog/:slug*/:slug2* + destination: /learn/sdks/generators/:slug*/changelog/:slug2* permanent: true # SDK Capabilities - remaining general redirects (after specific overrides above) diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index 33ee70edb..2d3ccf2ba 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -4,87 +4,842 @@ 🔍 Checking 1308 URLs... ⚙️ Using 10 workers with 0.1s delay ============================================================ +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-the-fern-folder 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/10 +Progress: 50/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/30 -Progress: 50/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/11/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/11/22 +Progress: 100/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +Progress: 150/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +Progress: 200/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +Progress: 250/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +Progress: 300/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +Progress: 350/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 +Progress: 400/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 +Progress: 450/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 +Progress: 500/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 +Progress: 550/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 +Progress: 600/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central +Progress: 650/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +Progress: 700/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog +Progress: 750/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 - Exceeded 30 redirects. +Progress: 800/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 - Exceeded 30 redirects. From 81e888bc82c2e498c03714c4e45fbfc4216f783d Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Tue, 22 Jul 2025 21:36:32 -0400 Subject: [PATCH 16/34] feat: updated changelogs for sdks --- fern/docs.yml | 22 +- footer/check_urls_output.txt | 1119 +++++++++------------------------- 2 files changed, 324 insertions(+), 817 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 4b30ea83c..9274a034a 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -241,8 +241,26 @@ redirects: - source: /learn/sdks/introduction/customer-showcase destination: /learn/sdks/customer-showcase permanent: true - - source: /learn/sdks/introduction/changelog/:slug*/:slug2* - destination: /learn/sdks/generators/:slug*/changelog/:slug2* + - source: /learn/sdks/introduction/changelog/ts/:slug* + destination: /learn/sdks/generators/typescript/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/python/:slug* + destination: /learn/sdks/generators/python/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/csharp/:slug* + destination: /learn/sdks/generators/csharp/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/go/:slug* + destination: /learn/sdks/generators/go/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/java/:slug* + destination: /learn/sdks/generators/java/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/ruby/:slug* + destination: /learn/sdks/generators/ruby/changelog/:slug* + permanent: true + - source: /learn/sdks/introduction/changelog/php/:slug* + destination: /learn/sdks/generators/php/changelog/:slug* permanent: true # SDK Capabilities - remaining general redirects (after specific overrides above) diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index 2d3ccf2ba..126fe9402 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -4,842 +4,331 @@ 🔍 Checking 1308 URLs... ⚙️ Using 10 workers with 0.1s delay ============================================================ -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-the-fern-folder -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/4 Progress: 50/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/7/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2025/1/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/11/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/11/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/5/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/5/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/5/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/21/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/7/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/21/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/31/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/28/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/3/changelog Progress: 100/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/type-script/changelog/2024/12/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/21/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/10/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/28/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/7/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/12/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/1/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/29/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/31/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/12/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/30/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/12/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/31/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/29/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/30/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/7/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/25/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/30/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/14/changelog Progress: 150/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/3/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/3/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/3/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/15/changelog 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/25/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/7/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/29/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/1/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/30/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/25/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/10/changelog Progress: 200/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/7/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/25/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/1/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/28/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/2/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/2/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/1/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/12/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/12/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/2/12/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/10/21/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/10/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/28/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/12/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/28/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/13/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/2/changelog Progress: 250/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/25/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/1/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/31/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/29/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/1/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/25/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/7/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/12/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/31/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/5/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/6/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/30/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/21/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/28/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/29/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/16/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/1/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/29/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/17/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/9/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/24/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/21/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/3/changelog Progress: 300/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -Progress: 350/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -Progress: 400/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -Progress: 450/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 -Progress: 500/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 -Progress: 550/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -Progress: 600/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central -Progress: 650/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner -✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside -Progress: 700/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog -Progress: 750/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 - Exceeded 30 redirects. -Progress: 800/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 - Exceeded 30 redirects. +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/30/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/28/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/25/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/18/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/19/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/8/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/11/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/4/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/26/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/27/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/20/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/22/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/21/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/23/changelog From 7b6c14ddad74815bcfb3c2ec09c8798494980a6e Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 00:12:44 -0400 Subject: [PATCH 17/34] feat: updated slug to openapi-definition --- fern/docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 9274a034a..403e2f0de 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -45,7 +45,7 @@ products: path: ./products/openapi-def/openapi-def.yml icon: fa-regular fa-book image: ./images/product-switcher/openapi-def.png - slug: openapi + slug: openapi-definition - display-name: Fern Definition path: ./products/fern-def/fern-def.yml @@ -530,10 +530,10 @@ redirects: # API Definition Introduction redirects - source: /learn/api-definition/introduction/what-is-an-api-definition - destination: /learn/api-definition/what-is-an-api-definition + destination: /learn/openapi-definition/overview permanent: true - source: /learn/api-definition/introduction/what-is-the-fern-folder - destination: /learn/api-definition/what-is-the-fern-folder + destination: /learn/sdks/overview/set-up-the-fern-folder permanent: true - source: /learn/api-definition/introduction/:slug* destination: /learn/api-definition/:slug* From 71ce4bdfb13668856e2e9e995c2beddc6ecb7185 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 00:27:59 -0400 Subject: [PATCH 18/34] feat: fixed more redirects --- fern/docs.yml | 17 +- fern/products/docs/docs.yml | 2 +- .../{launchdarkly.mdx => feature-flags.mdx} | 0 footer/check_urls_output.txt | 2933 +++++++++++++++-- 4 files changed, 2643 insertions(+), 309 deletions(-) rename fern/products/docs/pages/integrations/{launchdarkly.mdx => feature-flags.mdx} (100%) diff --git a/fern/docs.yml b/fern/docs.yml index 403e2f0de..89016c1ed 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -440,11 +440,7 @@ redirects: destination: /learn/docs/guides/reference/:slug* permanent: true - # Docs Integrations redirects - specific case first - - source: /learn/docs/integrations/feature-flags - destination: /learn/docs/integrations/launchdarkly - permanent: true - # General integrations pattern +# General integrations pattern - source: /learn/docs/integrations/:slug* destination: /learn/docs/guides/integrations/:slug* permanent: true @@ -483,6 +479,15 @@ redirects: - source: /learn/cli-reference/get-started destination: /learn/cli-reference/overview permanent: true + - source: /learn/cli-reference/overview + destination: /learn/cli-api-reference/cli-reference/overview + permanent: true + - source: /learn/cli-reference/commands + destination: /learn/cli-api-reference/cli-reference/commands + permanent: true + - source: /learn/cli-reference/options + destination: /learn/cli-api-reference/cli-reference/options + permanent: true # CLI patterns - source: /learn/cli-api/cli-reference/:slug* destination: /learn/cli-reference/:slug* @@ -494,7 +499,7 @@ redirects: destination: /learn/cli-reference/:slug* permanent: true - source: /learn/cli-reference/changelog/:slug* - destination: /learn/cli-reference/changelog/:slug* + destination: learn/cli-api-reference/cli-reference/changelog/:slug* permanent: true # ============================================================================ diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml index d029dfab2..3a2bcb871 100644 --- a/fern/products/docs/docs.yml +++ b/fern/products/docs/docs.yml @@ -197,7 +197,7 @@ navigation: - page: Postman path: ./pages/integrations/postman.mdx - page: LaunchDarkly Feature Flags - path: ./pages/integrations/launchdarkly.mdx + path: ./pages/integrations/feature-flags.mdx - section: Developer Tools collapsed: true contents: diff --git a/fern/products/docs/pages/integrations/launchdarkly.mdx b/fern/products/docs/pages/integrations/feature-flags.mdx similarity index 100% rename from fern/products/docs/pages/integrations/launchdarkly.mdx rename to fern/products/docs/pages/integrations/feature-flags.mdx diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index b903c94f6..e982d1edd 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -4,332 +4,2661 @@ 🔍 Checking 1308 URLs... ⚙️ Using 10 workers with 0.1s delay ============================================================ -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-the-fern-folder -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/api-definition/what-is-an-api-definition 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 Progress: 50/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/5/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/5/3/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/5/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/21/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/6/3/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/4/7/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/21/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/3/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/31/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2025/1/28/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/23/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/12/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 Progress: 100/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/21/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/23/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/10/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/11/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/28/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/7/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/9/12/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/1/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/8/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/29/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/31/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/12/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/7/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/30/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/12/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/31/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/29/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/30/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/7/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/25/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/30/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/14/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 Progress: 150/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/6/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/4/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/3/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/3/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/3/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/2/15/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ts/2024/5/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/3/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/25/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/7/7/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/6/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/29/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/1/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/5/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/30/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/25/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/23/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/10/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 Progress: 200/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/7/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/3/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/25/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/4/1/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/28/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/2/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/2/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/1/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/12/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/3/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/12/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2025/2/12/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/10/21/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/10/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/28/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/23/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/11/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/12/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/28/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/9/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/13/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/2/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 Progress: 250/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/25/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/8/1/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/31/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/29/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/23/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/1/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/7/3/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/25/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/7/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/12/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/31/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/5/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/6/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/6/3/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/30/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/21/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/28/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/29/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/16/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/23/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/15/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/1/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/29/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/17/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/5/9/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/24/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/21/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/3/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 Progress: 300/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/30/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/28/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/23/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/4/10/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/25/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/18/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/19/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/8/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/11/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/4/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/26/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/27/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/3/2/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/20/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/22/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/21/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/14/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/2024/2/23/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +Progress: 350/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +Progress: 400/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 +Progress: 450/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +Progress: 500/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 +Progress: 550/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 +Progress: 600/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems +Progress: 650/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview +Progress: 700/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview +Progress: 750/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 - Exceeded 30 redirects. +Progress: 800/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 - Exceeded 30 redirects. +Progress: 850/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 - Exceeded 30 redirects. +Progress: 900/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 - Exceeded 30 redirects. +Progress: 950/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 - Exceeded 30 redirects. +Progress: 1000/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 - Exceeded 30 redirects. +Progress: 1050/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +Progress: 1100/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 - Exceeded 30 redirects. +Progress: 1150/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 - Exceeded 30 redirects. +Progress: 1200/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 - Exceeded 30 redirects. +Progress: 1250/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 - Exceeded 30 redirects. +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 - Exceeded 30 redirects. +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate +Progress: 1300/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 - Exceeded 30 redirects. +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 - Exceeded 30 redirects. +Progress: 1308/1308 URLs checked +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 - Exceeded 30 redirects. + +============================================================ +📊 SUMMARY +============================================================ +Total URLs checked: 1308 +✅ Successful (200): 758 +🔄 Redirects: 751 +🏠 Home page redirects: 1 +❌ Failed/Errors: 550 + +❌ FAILED URLS (550): +---------------------------------------- +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 - Exceeded 30 redirects. + +🏠 HOME PAGE REDIRECTS (1): +---------------------------------------- +⚠️ These URLs redirect to the home page instead of specific content: +https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home + +🔄 OTHER REDIRECTED URLS (751): +---------------------------------------- +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps +https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors +https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor +https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog +https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt +https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab +https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly +https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke + +📁 Results saved to: check_urls_output.txt From 5d4014860db7956949b97002bee9a9f7523c1199 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 00:39:50 -0400 Subject: [PATCH 19/34] feat: merged --- fern/docs.yml | 88 +++++++++------------------------------------------ 1 file changed, 15 insertions(+), 73 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 89016c1ed..afdd506a8 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -166,15 +166,6 @@ redirects: - source: /learn/api-definition/fern/api-yml-reference destination: /learn/api-definition/fern/api-yml/overview permanent: true - - source: /learn/docs/api-references/api-explorer - destination: /learn/docs/api-references/api-explorer/overview - permanent: true - - source: /learn/docs/api-references/api-playground/:slug* - destination: /learn/docs/api-references/api-explorer/:slug* - permanent: true - - source: /learn/docs/api-references/api-playground - destination: /learn/docs/api-references/api-explorer/overview - permanent: true # ============================================================================ # SDK REDIRECTS @@ -335,10 +326,6 @@ redirects: - source: /learn/docs/getting-started/publish-your-docs destination: /learn/docs/preview-publish/publishing-your-docs permanent: true - # General getting started pattern - # - source: /learn/docs/getting-started/:slug* - # destination: /learn/docs/guides/getting-started/:slug* - # permanent: true # Building and Customizing Your Docs redirects - specific cases first - source: /learn/docs/building-and-customizing-your-docs/navigation @@ -366,7 +353,7 @@ redirects: destination: /learn/docs/navigation/products permanent: true - source: /learn/docs/building-and-customizing-your-docs/custom-css-global-js - destination: /learn/docs/component-library/custom-components/custom-css-js + destination: /learn/docs/customization/custom-css-js permanent: true - source: /learn/docs/building-and-customizing-your-docs/custom-domain destination: /learn/docs/getting-started/setting-up-your-domain @@ -378,85 +365,40 @@ redirects: destination: /learn/docs/customization/search permanent: true - # Content Section redirects - specific cases first - source: /learn/docs/content/write-markdown - destination: /learn/docs/component-library/writing-content/markdown - permanent: true - - source: /learn/docs/content/components/button - destination: /learn/docs/component-library/default-components/callouts + destination: /learn/docs/writing-content/markdown permanent: true - - source: /learn/docs/content/components/request-snippet - destination: /learn/docs/component-library/default-components/endpoint-request-snippet - permanent: true - - source: /learn/docs/content/components/response-snippet - destination: /learn/docs/component-library/default-components/endpoint-response-snippet - permanent: true - - source: /learn/docs/content/components/schema-snippet - destination: /learn/docs/component-library/default-components/endpoint-schema-snippet - permanent: true - - source: /learn/docs/content/components/paramfield - destination: /learn/docs/component-library/default-components/parameter-fields + - source: /learn/docs/content/components/:slug* + destination: /learn/docs/writing-content/components/:slug* permanent: true - source: /learn/docs/content/custom-react-components - destination: /learn/docs/component-library/custom-components/custom-react-components + destination: /learn/docs/writing-content/custom-react-components permanent: true - source: /learn/docs/content/frontmatter destination: /learn/docs/customization/frontmatter permanent: true - source: /learn/docs/content/reusable-snippets - destination: /learn/docs/component-library/custom-components/reusable-snippets + destination: /learn/docs/writing-content/reusable-markdown permanent: true - source: /learn/docs/content/changelog destination: /learn/docs/navigation/changelogs permanent: true - source: /learn/docs/content/visual-editor - destination: /learn/docs/component-library/writing-content/visual-editor - permanent: true - # General content components pattern - - source: /learn/docs/content/components/:slug* - destination: /learn/docs/component-library/default-components/:slug* - permanent: true - - # Components redirects - - source: /learn/docs/components/:slug* - destination: /learn/docs/component-library/default-components/:slug* - permanent: true - - # API References specific page redirects - specific cases first - - source: /learn/docs/api-references/api-explorer/auto-populate-api-keys - destination: /learn/docs/api-references/autopopulate-api-key - permanent: true - - source: /learn/docs/api-references/customize-api-reference-layout - destination: /learn/docs/api-references/customize-api-ref - permanent: true - - source: /learn/docs/api-references/write-markdown-in-api-reference - destination: /learn/docs/api-references/api-ref-content - permanent: true - - source: /learn/docs/api-references/generate-webhook-reference - destination: /learn/docs/api-references/generate-webhook-ref - permanent: true - # General API references pattern - - source: /learn/docs/api-references/:slug* - destination: /learn/docs/guides/reference/:slug* + destination: /learn/docs/writing-content/visual-editor permanent: true -# General integrations pattern - - source: /learn/docs/integrations/:slug* - destination: /learn/docs/guides/integrations/:slug* + - source: /learn/docs/getting-started/changelog/:slug* + destination: /learn/docs/changelogs/:slug* permanent: true - # Developer tools redirects - - source: /learn/docs/developer-tools/:slug* - destination: /learn/docs/guides/developer-tools/:slug* + - source: /learn/docs/api-references/api-explorer + destination: /learn/docs/api-references/api-explorer/overview permanent: true - - # Writing content redirects - - source: /learn/docs/writing-content/visual-editor-beta - destination: /learn/docs/writing-content/visual-editor + - source: /learn/docs/api-references/api-playground/:slug* + destination: /learn/docs/api-references/api-explorer/:slug* permanent: true - - - source: /learn/docs/getting-started/changelog/:slug* - destination: /learn/docs/changelogs/:slug* + - source: /learn/docs/api-references/api-playground + destination: /learn/docs/api-references/api-explorer/overview permanent: true # ============================================================================ From 5fd80785262c3b092a3f5f707cb002bcdf27f5d7 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 00:52:20 -0400 Subject: [PATCH 20/34] feat: added cli changelog --- .../cli-api-reference/cli-api-reference.yml | 2 +- footer/check_urls_output.txt | 3150 +++++++---------- 2 files changed, 1292 insertions(+), 1860 deletions(-) diff --git a/fern/products/cli-api-reference/cli-api-reference.yml b/fern/products/cli-api-reference/cli-api-reference.yml index 79b97069c..a97fe348f 100644 --- a/fern/products/cli-api-reference/cli-api-reference.yml +++ b/fern/products/cli-api-reference/cli-api-reference.yml @@ -9,7 +9,7 @@ navigation: slug: options - page: Commands path: ./pages/commands.mdx - - changelog: ./pages/changelogs/cli-changelog + - changelog: ./cli-changelog - api: API Reference api-name: public-api icon: fa-regular fa-pro diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index cbe25e22c..31f3e5586 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -4,2665 +4,2097 @@ 🔍 Checking 1308 URLs... ⚙️ Using 10 workers with 0.1s delay ============================================================ -🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis Progress: 50/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 -Progress: 100/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +Progress: 100/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 Progress: 150/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 Progress: 200/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 Progress: 250/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 -Progress: 300/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 +Progress: 300/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 Progress: 350/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 Progress: 400/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -Progress: 450/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +Progress: 450/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -Progress: 500/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +Progress: 500/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 Progress: 550/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 -Progress: 600/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +Progress: 600/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems -Progress: 650/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +Progress: 650/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content ✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview Progress: 700/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview -Progress: 750/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands +Progress: 750/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 Progress: 800/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 Progress: 850/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 Progress: 900/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 Progress: 950/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 Progress: 1000/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 Progress: 1050/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 Progress: 1100/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 Progress: 1150/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 Progress: 1200/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 Progress: 1250/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 - Exceeded 30 redirects. -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate -Progress: 1300/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get +Progress: 1300/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 - Exceeded 30 redirects. -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 - Exceeded 30 redirects. +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) Progress: 1308/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 - Exceeded 30 redirects. +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) ============================================================ 📊 SUMMARY ============================================================ Total URLs checked: 1308 -✅ Successful (200): 758 -🔄 Redirects: 751 +✅ Successful (200): 1299 +🔄 Redirects: 728 🏠 Home page redirects: 1 -❌ Failed/Errors: 550 +❌ Failed/Errors: 9 -❌ FAILED URLS (550): +❌ FAILED URLS (9): ---------------------------------------- -ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 - Exceeded 30 redirects. -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 - Exceeded 30 redirects. +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) 🏠 HOME PAGE REDIRECTS (1): ---------------------------------------- ⚠️ These URLs redirect to the home page instead of specific content: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 OTHER REDIRECTED URLS (751): +🔄 OTHER REDIRECTED URLS (728): ---------------------------------------- -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards -https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-api-ref -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/http-snippets -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/sdk-snippets -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/endpoint-errors https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/autopopulate-api-key -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/audiences -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-explorer/overview -https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/customize-api-ref -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/server-urls -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/api-ref-content -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-openrpc-ref -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-websocket-ref -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference → https://fern-api.docs.buildwithfern.com/learn/docs/guides/reference/generate-webhook-ref -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/google -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/overview -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/fullstory -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/support/intercom -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/mixpanel -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/postman -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/segment -https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/cursor -https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/vale -https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/view-markdown +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog -https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab -https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly +https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke 📁 Results saved to: check_urls_output.txt From 1a526a4f4c247d414f48d13164bee5a2e91c37ea Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 00:58:12 -0400 Subject: [PATCH 21/34] feat: added cli changelog --- fern/docs.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index afdd506a8..7ba8e8029 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -194,9 +194,6 @@ redirects: - source: /learn/sdks/package-managers/:slug* destination: /learn/sdks/guides/publish-to-package-managers/:slug* permanent: true - - source: /learn/sdks/guides/publish-to-package-managers/:slug* - destination: /learn/sdks/generators/:slug* - permanent: true - source: /learn/sdks/guides/publish-to-package-managers/npm-type-script destination: /learn/sdks/generators/typescript/publishing-to-npm permanent: true @@ -315,10 +312,10 @@ redirects: destination: https://buildwithfern.com/customers permanent: true - source: /learn/docs/getting-started/global-configuration - destination: /learn/docs/guides/customization/what-is-docs-yml + destination: /learn/docs/customization/what-is-docs-yml permanent: true - source: /learn/docs/getting-started/project-structure - destination: /learn/docs/guides/customization/project-structure + destination: /learn/docs/customization/project-structure permanent: true - source: /learn/docs/getting-started/development destination: /learn/docs/preview-publish/previewing-changes-locally @@ -388,7 +385,7 @@ redirects: permanent: true - source: /learn/docs/getting-started/changelog/:slug* - destination: /learn/docs/changelogs/:slug* + destination: /learn/docs/changelog/:slug* permanent: true - source: /learn/docs/api-references/api-explorer @@ -400,6 +397,9 @@ redirects: - source: /learn/docs/api-references/api-playground destination: /learn/docs/api-references/api-explorer/overview permanent: true + - source: /learn/user-feedback + destination: /learn/docs/user-feedback + permanent: true # ============================================================================ # CLI & API REFERENCE REDIRECTS @@ -515,7 +515,7 @@ redirects: destination: /learn/openapi-definition/extensions/:slug* permanent: true - source: /learn/api-definition/openapi/sync-specification - destination: /learn/openapi/workflow-automation/sync-your-open-api-specification + destination: /learn/openapi-definition/workflow-automation/sync-your-open-api-specification permanent: true - source: /learn/api-definition/openapi/frameworks/:slug* destination: /learn/openapi-definition/server-frameworks/:slug* From 4ad4dc3809d63866505cda93c4ff4bf19c837af3 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 01:17:38 -0400 Subject: [PATCH 22/34] fix: endpoint snippets mapping --- fern/products/docs/docs.yml | 6 + .../default-components/button.mdx | 143 ++ footer/check_urls_output.txt | 1992 ++++++++--------- 3 files changed, 1140 insertions(+), 1001 deletions(-) create mode 100644 fern/products/docs/pages/component-library/default-components/button.mdx diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml index 3a2bcb871..2f8571825 100644 --- a/fern/products/docs/docs.yml +++ b/fern/products/docs/docs.yml @@ -25,6 +25,9 @@ navigation: - page: Aside path: ./pages/component-library/default-components/aside.mdx icon: fa-regular fa-comment-dots + - page: Button + path: ./pages/component-library/default-components/buttons.mdx + icon: fa-regular fa-button - page: Callouts path: ./pages/component-library/default-components/callouts.mdx icon: fa-regular fa-exclamation-triangle @@ -43,12 +46,15 @@ navigation: - page: Endpoint Request Snippet path: ./pages/component-library/default-components/endpoint-request-snippet.mdx icon: fa-regular fa-arrow-up + slug: request-snippet - page: Endpoint Response Snippet path: ./pages/component-library/default-components/endpoint-response-snippet.mdx icon: fa-regular fa-arrow-down + slug: response-snippet - page: Endpoint Schema Snippet path: ./pages/component-library/default-components/endpoint-schema-snippet.mdx icon: fa-regular fa-sitemap + slug: schema-snippet - page: Frames path: ./pages/component-library/default-components/frames.mdx icon: fa-regular fa-window-maximize diff --git a/fern/products/docs/pages/component-library/default-components/button.mdx b/fern/products/docs/pages/component-library/default-components/button.mdx new file mode 100644 index 000000000..22b195c8d --- /dev/null +++ b/fern/products/docs/pages/component-library/default-components/button.mdx @@ -0,0 +1,143 @@ +--- +title: 'Button' +description: 'Interactive button component with multiple variants and intents' +--- + +The `Button` component provides a flexible way to create interactive buttons with various styles, sizes, and intents. + +## Example + + + +
+
+ + + + +
+ +
+ + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + +
+
+
+ + ```jsx +
+
+ + + + +
+ +
+ + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + +
+
+ ``` +
+
+ +## Properties + +### Basic + + + The visual intent of the button + + + + Whether the button is disabled + + + + Whether to use small size + + + + Whether to use large size + + + + Icon to display on the left side + + + + URL to navigate to (renders as link button) + + +### Advanced + + + Whether to use minimal styling + + + + Whether to use outlined styling + + + + Whether the button should take full width + + + + Whether to use rounded corners + + + + Whether the button is in active state + + + + Whether to use monospace font + + + + Icon to display on the right side + + + + The button text content + + + + Additional CSS classes + \ No newline at end of file diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index 31f3e5586..379f11968 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -4,2095 +4,2085 @@ 🔍 Checking 1308 URLs... ⚙️ Using 10 workers with 0.1s delay ============================================================ -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis Progress: 50/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 +Progress: 100/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 -Progress: 100/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 Progress: 150/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 Progress: 200/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 Progress: 250/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 Progress: 300/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 Progress: 350/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 Progress: 400/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +Progress: 450/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 -Progress: 450/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 Progress: 500/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 Progress: 550/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 Progress: 600/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase -Progress: 650/1308 URLs checked 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +Progress: 650/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain Progress: 700/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands -Progress: 750/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 +Progress: 750/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 -Progress: 800/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 +Progress: 800/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 Progress: 850/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 Progress: 900/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 Progress: 950/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 Progress: 1000/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 -Progress: 1050/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 +Progress: 1050/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 -Progress: 1100/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +Progress: 1100/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 Progress: 1150/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 Progress: 1200/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 Progress: 1250/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 +Progress: 1300/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get -Progress: 1300/1308 URLs checked +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) Progress: 1308/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke ============================================================ 📊 SUMMARY ============================================================ Total URLs checked: 1308 -✅ Successful (200): 1299 -🔄 Redirects: 728 +✅ Successful (200): 1308 +🔄 Redirects: 730 🏠 Home page redirects: 1 -❌ Failed/Errors: 9 - -❌ FAILED URLS (9): ----------------------------------------- -ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ Failed/Errors: 0 🏠 HOME PAGE REDIRECTS (1): ---------------------------------------- ⚠️ These URLs redirect to the home page instead of specific content: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 OTHER REDIRECTED URLS (728): +🔄 OTHER REDIRECTED URLS (730): ---------------------------------------- -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-css-js -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/markdown -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/overview -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordions -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/accordion-groups -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/aside -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/callouts -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/cards -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/code-blocks -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/card-groups -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/embed -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-request-snippet -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-response-snippet -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/icons -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/frames -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/endpoint-schema-snippet -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/parameter-fields -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/steps -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tooltips -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/default-components/tabs +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter -https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/custom-react-components -https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs -https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/writing-content/visual-editor -https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/component-library/custom-components/reusable-snippets +https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor +https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/analytics/posthog -https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags → https://fern-api.docs.buildwithfern.com/learn/docs/guides/integrations/launchdarkly -https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/llms-txt -https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab → https://fern-api.docs.buildwithfern.com/learn/docs/guides/developer-tools/gitlab -https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting -https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview +https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options +https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands +https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get +https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke From 59bb3f2cde062face934fd0a5019cf001e7b9959 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 01:21:15 -0400 Subject: [PATCH 23/34] fix: updated script --- check_urls.py | 217 +++++++++++++++++++++++++++++++++++++++----------- fern/docs.yml | 2 +- 2 files changed, 170 insertions(+), 49 deletions(-) diff --git a/check_urls.py b/check_urls.py index 478a4c061..f75366935 100644 --- a/check_urls.py +++ b/check_urls.py @@ -2,6 +2,7 @@ """ URL Checker Script for Fern Docs Sitemap Checks all URLs in the sitemap for 404 errors and other issues. +Follows complete redirect chains and flags home page redirects as errors. """ import xml.etree.ElementTree as ET @@ -13,17 +14,25 @@ import argparse class URLChecker: - def __init__(self, sitemap_path, max_workers=10, delay=0.1, timeout=30): + def __init__(self, sitemap_path, max_workers=10, delay=0.1, timeout=30, max_redirects=10): self.sitemap_path = sitemap_path self.max_workers = max_workers self.delay = delay self.timeout = timeout + self.max_redirects = max_redirects self.session = requests.Session() self.session.headers.update({ 'User-Agent': 'Fern-URL-Checker/1.0' }) - # Define the problematic home page URL - self.home_page_url = 'https://fern-api.docs.buildwithfern.com/learn/home' + # Define the problematic home page URLs (multiple variations) + self.home_page_urls = { + 'https://fern-api.docs.buildwithfern.com/learn/home', + 'https://fern-v2.docs.buildwithfern.com/learn/v2/home', + 'https://buildfern.com/learn/home', + 'https://fern-api.docs.buildwithfern.com/learn', + 'https://fern-v2.docs.buildwithfern.com/learn', + 'https://buildfern.com/learn' + } # File handle for output logging self.output_file = None @@ -57,30 +66,115 @@ def parse_sitemap(self): self.log(f"❌ Sitemap file not found: {self.sitemap_path}") return [] - def check_url(self, url): - """Check a single URL and return result.""" + def is_home_page(self, url): + """Check if a URL is a home page variant.""" + url_clean = url.rstrip('/') + return url_clean in {u.rstrip('/') for u in self.home_page_urls} + + def follow_redirect_chain(self, url): + """Follow redirects manually to track the complete chain.""" + redirect_chain = [url] + current_url = url + redirect_count = 0 + try: - response = self.session.get(url, timeout=self.timeout, allow_redirects=True) - is_home_redirect = (url != response.url and - response.url.rstrip('/') == self.home_page_url.rstrip('/')) + while redirect_count < self.max_redirects: + # Make request without following redirects automatically + response = self.session.get(current_url, timeout=self.timeout, allow_redirects=False) + + # Check if this step leads to home page + if self.is_home_page(current_url): + return { + 'status_code': response.status_code, + 'final_url': current_url, + 'redirect_chain': redirect_chain, + 'redirect_count': redirect_count, + 'leads_to_home': True, + 'home_at_step': redirect_count, + 'error': None + } + + # If not a redirect, we're done + if response.status_code not in [301, 302, 303, 307, 308]: + return { + 'status_code': response.status_code, + 'final_url': current_url, + 'redirect_chain': redirect_chain, + 'redirect_count': redirect_count, + 'leads_to_home': False, + 'home_at_step': None, + 'error': None + } + + # Get redirect location + location = response.headers.get('Location') + if not location: + return { + 'status_code': response.status_code, + 'final_url': current_url, + 'redirect_chain': redirect_chain, + 'redirect_count': redirect_count, + 'leads_to_home': False, + 'home_at_step': None, + 'error': 'Redirect response missing Location header' + } + + # Handle relative URLs + if location.startswith('/'): + parsed_current = urlparse(current_url) + location = f"{parsed_current.scheme}://{parsed_current.netloc}{location}" + elif not location.startswith('http'): + parsed_current = urlparse(current_url) + location = f"{parsed_current.scheme}://{parsed_current.netloc}/{location}" + + redirect_count += 1 + current_url = location + redirect_chain.append(current_url) + + # Check if we've seen this URL before (redirect loop) + if current_url in redirect_chain[:-1]: + return { + 'status_code': response.status_code, + 'final_url': current_url, + 'redirect_chain': redirect_chain, + 'redirect_count': redirect_count, + 'leads_to_home': False, + 'home_at_step': None, + 'error': f'Redirect loop detected at step {redirect_count}' + } + + # Too many redirects return { - 'url': url, - 'status_code': response.status_code, - 'final_url': response.url, - 'redirected': url != response.url, - 'home_redirect': is_home_redirect, - 'error': None + 'status_code': None, + 'final_url': current_url, + 'redirect_chain': redirect_chain, + 'redirect_count': redirect_count, + 'leads_to_home': False, + 'home_at_step': None, + 'error': f'Too many redirects (>{self.max_redirects})' } + except requests.exceptions.RequestException as e: return { - 'url': url, 'status_code': None, - 'final_url': None, - 'redirected': False, - 'home_redirect': False, + 'final_url': current_url, + 'redirect_chain': redirect_chain, + 'redirect_count': redirect_count, + 'leads_to_home': False, + 'home_at_step': None, 'error': str(e) } + def check_url(self, url): + """Check a single URL and return result with full redirect chain.""" + result = self.follow_redirect_chain(url) + + # Add original URL for reference + result['original_url'] = url + result['redirected'] = len(result['redirect_chain']) > 1 + + return result + def check_urls(self, urls): """Check all URLs concurrently.""" results = [] @@ -90,6 +184,7 @@ def check_urls(self, urls): self.log(f"🔍 Checking {len(urls)} URLs...") self.log(f"⚙️ Using {self.max_workers} workers with {self.delay}s delay") + self.log(f"🔄 Following up to {self.max_redirects} redirects per URL") self.log("=" * 60) with ThreadPoolExecutor(max_workers=self.max_workers) as executor: @@ -109,25 +204,36 @@ def check_urls(self, urls): self.log(f"Progress: {i}/{len(urls)} URLs checked") # Categorize results + original_url = result['original_url'] + if result['error']: failed_urls.append(result) - self.log(f"❌ ERROR: {result['url']} - {result['error']}") + self.log(f"❌ ERROR: {original_url} - {result['error']}") + if result['redirect_count'] > 0: + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") + elif result['leads_to_home']: + home_redirect_urls.append(result) + self.log(f"🏠 HOME REDIRECT: {original_url} → HOME (step {result['home_at_step']})") + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") elif result['status_code'] == 404: failed_urls.append(result) - self.log(f"❌ 404: {result['url']}") - elif result['status_code'] >= 400: + self.log(f"❌ 404: {original_url}") + if result['redirect_count'] > 0: + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") + elif result['status_code'] and result['status_code'] >= 400: failed_urls.append(result) - self.log(f"⚠️ {result['status_code']}: {result['url']}") - elif result['home_redirect']: - home_redirect_urls.append(result) - self.log(f"🏠 HOME REDIRECT: {result['url']} → {result['final_url']}") + self.log(f"⚠️ {result['status_code']}: {original_url}") + if result['redirect_count'] > 0: + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") elif result['redirected']: redirect_urls.append(result) - self.log(f"🔄 REDIRECT: {result['url']} → {result['final_url']}") + self.log(f"🔄 REDIRECT ({result['redirect_count']} steps): {original_url} → {result['final_url']}") + if result['redirect_count'] > 1: + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") elif result['status_code'] == 200: - self.log(f"✅ OK: {result['url']}") + self.log(f"✅ OK: {original_url}") else: - self.log(f"ℹ️ {result['status_code']}: {result['url']}") + self.log(f"ℹ️ {result['status_code']}: {original_url}") return results, failed_urls, redirect_urls, home_redirect_urls @@ -138,51 +244,58 @@ def print_summary(self, results, failed_urls, redirect_urls, home_redirect_urls) self.log("=" * 60) total_urls = len(results) - success_urls = len([r for r in results if r['status_code'] == 200 and not r['error']]) + success_urls = len([r for r in results if r['status_code'] == 200 and not r['error'] and not r['leads_to_home']]) self.log(f"Total URLs checked: {total_urls}") self.log(f"✅ Successful (200): {success_urls}") - self.log(f"🔄 Redirects: {len(redirect_urls)}") - self.log(f"🏠 Home page redirects: {len(home_redirect_urls)}") + self.log(f"🔄 Redirects (working): {len(redirect_urls)}") + self.log(f"🏠 Home page redirects (ERROR): {len(home_redirect_urls)}") self.log(f"❌ Failed/Errors: {len(failed_urls)}") + if home_redirect_urls: + self.log(f"\n🏠 HOME PAGE REDIRECTS - FLAGGED AS ERRORS ({len(home_redirect_urls)}):") + self.log("-" * 40) + self.log("⚠️ These URLs redirect to the home page instead of specific content:") + for result in home_redirect_urls: + self.log(f"{result['original_url']} (step {result['home_at_step']})") + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") + if failed_urls: self.log(f"\n❌ FAILED URLS ({len(failed_urls)}):") self.log("-" * 40) for result in failed_urls: if result['error']: - self.log(f"ERROR: {result['url']} - {result['error']}") + self.log(f"ERROR: {result['original_url']} - {result['error']}") else: - self.log(f"{result['status_code']}: {result['url']}") - - if home_redirect_urls: - self.log(f"\n🏠 HOME PAGE REDIRECTS ({len(home_redirect_urls)}):") - self.log("-" * 40) - self.log("⚠️ These URLs redirect to the home page instead of specific content:") - for result in home_redirect_urls: - self.log(f"{result['url']} → {result['final_url']}") + self.log(f"{result['status_code']}: {result['original_url']}") + if result['redirect_count'] > 0: + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") if redirect_urls: - self.log(f"\n🔄 OTHER REDIRECTED URLS ({len(redirect_urls)}):") + self.log(f"\n🔄 WORKING REDIRECTED URLS ({len(redirect_urls)}):") self.log("-" * 40) for result in redirect_urls: - self.log(f"{result['url']} → {result['final_url']}") + self.log(f"{result['original_url']} → {result['final_url']} ({result['redirect_count']} steps)") + if result['redirect_count'] > 1: + self.log(f" Chain: {' → '.join(result['redirect_chain'])}") - # Consider home redirects as problematic for the exit code - return len(failed_urls) == 0 and len(home_redirect_urls) == 0 + # Home redirects are now considered errors + total_errors = len(failed_urls) + len(home_redirect_urls) + return total_errors == 0 def main(): - parser = argparse.ArgumentParser(description='Check URLs in Fern sitemap for 404 errors') + parser = argparse.ArgumentParser(description='Check URLs in Fern sitemap for 404 errors and home redirects') parser.add_argument('--sitemap', default='fern/docs.xml', help='Path to sitemap XML file') parser.add_argument('--workers', type=int, default=10, help='Number of concurrent workers') parser.add_argument('--delay', type=float, default=0.1, help='Delay between requests (seconds)') parser.add_argument('--timeout', type=int, default=30, help='Request timeout (seconds)') + parser.add_argument('--max-redirects', type=int, default=10, help='Maximum number of redirects to follow') parser.add_argument('--max-urls', type=int, help='Limit number of URLs to check (for testing)') parser.add_argument('--output', default='check_urls_output.txt', help='Output file path') args = parser.parse_args() - checker = URLChecker(args.sitemap, args.workers, args.delay, args.timeout) + checker = URLChecker(args.sitemap, args.workers, args.delay, args.timeout, args.max_redirects) # Open output file for writing try: @@ -193,7 +306,7 @@ def main(): sys.exit(1) try: - checker.log("🚀 Fern Docs URL Checker") + checker.log("🚀 Fern Docs URL Checker - Enhanced Redirect Tracking") checker.log("=" * 60) # Parse sitemap @@ -214,7 +327,15 @@ def main(): success = checker.print_summary(results, failed_urls, redirect_urls, home_redirect_urls) checker.log(f"\n📁 Results saved to: {args.output}") - sys.exit(0 if success else 1) + + # Exit with error code if there are any issues (including home redirects) + total_issues = len(failed_urls) + len(home_redirect_urls) + if total_issues > 0: + checker.log(f"\n❌ Found {total_issues} issues (including home redirects)") + sys.exit(1) + else: + checker.log(f"\n✅ All URLs are working correctly!") + sys.exit(0) finally: # Close output file diff --git a/fern/docs.yml b/fern/docs.yml index 7ba8e8029..b1c2942be 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -441,7 +441,7 @@ redirects: destination: /learn/cli-reference/:slug* permanent: true - source: /learn/cli-reference/changelog/:slug* - destination: learn/cli-api-reference/cli-reference/changelog/:slug* + destination: /learn/cli-api-reference/cli-reference/changelog/:slug* permanent: true # ============================================================================ From 880309528e3ec36021863bc8cb3b98aa14d814f0 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 01:23:07 -0400 Subject: [PATCH 24/34] fix: updated script --- fern/products/docs/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml index 2f8571825..3a6c68767 100644 --- a/fern/products/docs/docs.yml +++ b/fern/products/docs/docs.yml @@ -26,7 +26,7 @@ navigation: path: ./pages/component-library/default-components/aside.mdx icon: fa-regular fa-comment-dots - page: Button - path: ./pages/component-library/default-components/buttons.mdx + path: ./pages/component-library/default-components/button.mdx icon: fa-regular fa-button - page: Callouts path: ./pages/component-library/default-components/callouts.mdx From dd9608e141fbf7fad056543022c8ceb11e55c374 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 01:47:59 -0400 Subject: [PATCH 25/34] fix: cleaned up all api definition files --- fern/docs.yml | 68 +- fern/products/fern-def/fern-def.yml | 2 + fern/products/openapi-def/openapi-def.yml | 1 + footer/check_urls_output.txt | 3562 +++++++++++---------- 4 files changed, 1806 insertions(+), 1827 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index b1c2942be..493baa331 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -163,9 +163,7 @@ redirects: - source: /learn/welcome destination: /learn/home permanent: true - - source: /learn/api-definition/fern/api-yml-reference - destination: /learn/api-definition/fern/api-yml/overview - permanent: true + # ============================================================================ # SDK REDIRECTS @@ -448,30 +446,28 @@ redirects: # API DEFINITION REDIRECTS # ============================================================================ - # API Definition Fern specific redirects first - - source: /learn/api-definition/fern/web-sockets - destination: /learn/fern-definition/websockets - permanent: true - - source: /learn/api-definition/fern/websockets - destination: /learn/fern-definition/websockets + # API Definition OpenAPI specific redirects first + - source: /learn/api-definition/openapi/endpoints/:slug* + destination: /learn/openapi-definition/endpoints/:slug* permanent: true - - source: /learn/api-definition/fern/overview - destination: /learn/fern-definition/overview + - source: /learn/api-definition/openapi/extensions/:slug* + destination: /learn/openapi-definition/extensions/:slug* permanent: true - - source: /learn/api-definition/fern/authentication - destination: /learn/fern-definition/auth + - source: /learn/api-definition/openapi/frameworks/:slug* + destination: /learn/openapi-definition/server-frameworks/:slug* permanent: true - - source: /learn/api-definition/fern/depending-on-other-ap-is - destination: /learn/fern-definition/depending-on-other-apis + - source: /learn/api-definition/openapi/:slug* + destination: /learn/openapi-definition/:slug* permanent: true + + # API Definition Fern specific redirects first - source: /learn/api-definition/fern/endpoints/:slug* destination: /learn/fern-definition/endpoints/:slug* permanent: true - source: /learn/api-definition/fern/api-yml/:slug* destination: /learn/fern-definition/api-yml/:slug* permanent: true - # General Fern pattern - - source: /learn/api-definition/fern/:slug* + - source: /learn/api-definition/fern/:slug* destination: /learn/fern-definition/:slug* permanent: true @@ -483,46 +479,8 @@ redirects: destination: /learn/sdks/overview/set-up-the-fern-folder permanent: true - source: /learn/api-definition/introduction/:slug* - destination: /learn/api-definition/:slug* - permanent: true - - # API Definition OpenAPI specific redirects first - - source: /learn/api-definition/openapi/overview destination: /learn/openapi-definition/overview permanent: true - - source: /learn/api-definition/openapi/authentication - destination: /learn/openapi-definition/auth - permanent: true - - source: /learn/api-definition/openapi/servers - destination: /learn/openapi-definition/servers - permanent: true - - source: /learn/api-definition/openapi/webhooks - destination: /learn/openapi-definition/webhooks - permanent: true - - source: /learn/api-definition/openapi/audiences - destination: /learn/openapi-definition/audiences - permanent: true - - source: /learn/api-definition/openapi/overlay-customizations - destination: /learn/openapi-definition/overlay-customizations - permanent: true - - source: /learn/api-definition/openapi/automatic-updates - destination: /learn/openapi-definition/automation - permanent: true - - source: /learn/api-definition/openapi/endpoints/:slug* - destination: /learn/openapi-definition/endpoints/:slug* - permanent: true - - source: /learn/api-definition/openapi/extensions/:slug* - destination: /learn/openapi-definition/extensions/:slug* - permanent: true - - source: /learn/api-definition/openapi/sync-specification - destination: /learn/openapi-definition/workflow-automation/sync-your-open-api-specification - permanent: true - - source: /learn/api-definition/openapi/frameworks/:slug* - destination: /learn/openapi-definition/server-frameworks/:slug* - permanent: true - - source: /learn/api-definition/openapi/:slug* - destination: /learn/openapi-definition/:slug* - permanent: true # ============================================================================ # ASK FERN (AI SEARCH) REDIRECTS diff --git a/fern/products/fern-def/fern-def.yml b/fern/products/fern-def/fern-def.yml index 6180c90a4..2d576a0ad 100644 --- a/fern/products/fern-def/fern-def.yml +++ b/fern/products/fern-def/fern-def.yml @@ -22,6 +22,7 @@ navigation: path: ./pages/endpoints/sse.mdx slug: sse - section: Advanced + skip-slug: true contents: - page: Webhooks path: ./pages/webhooks.mdx @@ -50,6 +51,7 @@ navigation: - page: Errors path: ./pages/api-yml/errors.mdx - section: Integrations + skip-slug: true contents: - page: Packages path: ./pages/packages.mdx diff --git a/fern/products/openapi-def/openapi-def.yml b/fern/products/openapi-def/openapi-def.yml index bd8dabf89..638d1062e 100644 --- a/fern/products/openapi-def/openapi-def.yml +++ b/fern/products/openapi-def/openapi-def.yml @@ -33,6 +33,7 @@ navigation: path: ./pages/extensions/others.mdx slug: others - section: Workflow & Automation + skip-slug: true contents: - page: Overlay Customizations path: ./pages/overrides.mdx diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index 379f11968..e4b23da37 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -1,2090 +1,2108 @@ 📝 Output will be saved to: check_urls_output.txt -🚀 Fern Docs URL Checker +🚀 Fern Docs URL Checker - Enhanced Redirect Tracking ============================================================ 🔍 Checking 1308 URLs... ⚙️ Using 10 workers with 0.1s delay +🔄 Following up to 10 redirects per URL ============================================================ -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → HOME (step 0) + Chain: https://fern-api.docs.buildwithfern.com/learn +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview + Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 Progress: 50/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 Progress: 100/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 Progress: 150/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 Progress: 200/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 Progress: 250/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 Progress: 300/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 Progress: 350/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 Progress: 400/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 Progress: 450/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 Progress: 500/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 Progress: 550/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 Progress: 600/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems Progress: 650/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure +🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase + Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js ✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button Progress: 700/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags +🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase + Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab Progress: 750/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 Progress: 800/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 +Progress: 850/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 -Progress: 850/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 Progress: 900/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 Progress: 950/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 Progress: 1000/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 -Progress: 1050/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 +Progress: 1050/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 -Progress: 1100/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 +Progress: 1100/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 -Progress: 1150/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 +Progress: 1150/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 -Progress: 1200/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 +Progress: 1200/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 -Progress: 1250/1308 URLs checked ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 +Progress: 1250/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 -Progress: 1300/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 +✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 ✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate +Progress: 1300/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) Progress: 1308/1308 URLs checked -🔄 REDIRECT: https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) ============================================================ 📊 SUMMARY ============================================================ Total URLs checked: 1308 -✅ Successful (200): 1308 -🔄 Redirects: 730 -🏠 Home page redirects: 1 -❌ Failed/Errors: 0 +✅ Successful (200): 1303 +🔄 Redirects (working): 730 +🏠 Home page redirects (ERROR): 1 +❌ Failed/Errors: 4 -🏠 HOME PAGE REDIRECTS (1): +🏠 HOME PAGE REDIRECTS - FLAGGED AS ERRORS (1): ---------------------------------------- ⚠️ These URLs redirect to the home page instead of specific content: -https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home +https://fern-api.docs.buildwithfern.com/learn (step 0) + Chain: https://fern-api.docs.buildwithfern.com/learn + +❌ FAILED URLS (4): +---------------------------------------- +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -🔄 OTHER REDIRECTED URLS (730): +🔄 WORKING REDIRECTED URLS (730): ---------------------------------------- -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse -https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code -https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/10/31 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/14 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/2/4 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/2/22 -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js -https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips -https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components -https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter -https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor -https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview -https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs -https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting -https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations -https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options -https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands -https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview -https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get -https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview -https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview (2 steps) + Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase (2 steps) + Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase (2 steps) + Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate (1 steps) 📁 Results saved to: check_urls_output.txt + +❌ Found 5 issues (including home redirects) From cd5dbf521027745e734b1fad23eb6fbab074bf9c Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 10:32:07 -0400 Subject: [PATCH 26/34] fix: add some remaining redirects --- fern/docs.yml | 2 +- fern/products/docs/docs.yml | 1 + fern/products/sdks/sdks.yml | 1 + footer/check_urls_output.txt | 3348 ++++++++++++++++++++-------------- 4 files changed, 1948 insertions(+), 1404 deletions(-) diff --git a/fern/docs.yml b/fern/docs.yml index 493baa331..a2cfa75ce 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -270,7 +270,7 @@ redirects: permanent: true # General SDK capabilities pattern (will catch any not specifically overridden above) - source: /learn/sdks/capabilities/:slug* - destination: /learn/sdks/overview/capabilities/:slug* + destination: /learn/sdks/overview/introduction permanent: true # SDK Reference redirects diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml index 3a6c68767..4ccce5a2e 100644 --- a/fern/products/docs/docs.yml +++ b/fern/products/docs/docs.yml @@ -172,6 +172,7 @@ navigation: path: ./pages/authentication/sso.mdx - page: Role based access control (RBAC) path: ./pages/authentication/rbac.mdx + slug: rbac - page: API Key Injection path: ./pages/api-references/autopopulate-api-key.mdx - section: Enterprise diff --git a/fern/products/sdks/sdks.yml b/fern/products/sdks/sdks.yml index 0c6b556a7..548080880 100644 --- a/fern/products/sdks/sdks.yml +++ b/fern/products/sdks/sdks.yml @@ -121,6 +121,7 @@ navigation: - changelog: ./overview/ruby/changelog - page: Publishing to RubyGems path: ./overview/ruby/publishing-to-rubygems.mdx + slug: publishing-to-rubygems - page: Adding custom code hidden: true path: ./overview/ruby/custom-code.mdx diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index e4b23da37..69d6efc35 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -5,1354 +5,1354 @@ ⚙️ Using 10 workers with 0.1s delay 🔄 Following up to 10 redirects per URL ============================================================ -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → HOME (step 0) Chain: https://fern-api.docs.buildwithfern.com/learn +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse 🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 Progress: 50/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 Progress: 100/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 Progress: 150/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 -Progress: 200/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 +Progress: 200/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 Progress: 250/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 Progress: 300/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 -Progress: 350/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +Progress: 350/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 Progress: 400/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 Progress: 450/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 -Progress: 500/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +Progress: 500/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -Progress: 550/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +Progress: 550/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 Progress: 600/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems -Progress: 650/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure 🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist +Progress: 650/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/7/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/1/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js -✅ OK: https://fern-api.docs.buildwithfern.com/learn/user-feedback -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button -Progress: 700/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups +Progress: 700/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman 🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab -Progress: 750/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview +Progress: 750/1308 URLs checked +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 Progress: 800/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 Progress: 850/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 Progress: 900/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/30 Progress: 950/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 Progress: 1000/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 Progress: 1050/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 Progress: 1100/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 Progress: 1150/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/8 Progress: 1200/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 Progress: 1250/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 -✅ OK: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/6 Progress: 1300/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 Progress: 1308/1308 URLs checked -❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/13 ============================================================ 📊 SUMMARY ============================================================ Total URLs checked: 1308 -✅ Successful (200): 1303 -🔄 Redirects (working): 730 +✅ Successful (200): 1307 +🔄 Redirects (working): 1279 🏠 Home page redirects (ERROR): 1 -❌ Failed/Errors: 4 +❌ Failed/Errors: 0 🏠 HOME PAGE REDIRECTS - FLAGGED AS ERRORS (1): ---------------------------------------- @@ -1360,749 +1360,1291 @@ Total URLs checked: 1308 https://fern-api.docs.buildwithfern.com/learn (step 0) Chain: https://fern-api.docs.buildwithfern.com/learn -❌ FAILED URLS (4): ----------------------------------------- -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) -ERROR: https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) - -🔄 WORKING REDIRECTED URLS (730): +🔄 WORKING REDIRECTED URLS (1279): ---------------------------------------- +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi/workflow-automation/sync-your-open-api-specification (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/auth (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/auth (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview (2 steps) Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-apis (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pypi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/npm-type-script (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/pkgsite (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/nuget (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/rubygems (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/maven-central (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/packagist (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/project-structure (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase (2 steps) Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/guides/customization/what-is-docs-yml (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/4/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/11/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/12/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2025/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/9/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/8/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/6/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/7/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/3/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/4/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/7/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelogs/2024/1/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/1/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions (1 steps) +https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter (1 steps) https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase (2 steps) Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations (1 steps) https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/13 (1 steps) 📁 Results saved to: check_urls_output.txt -❌ Found 5 issues (including home redirects) +❌ Found 1 issues (including home redirects) From e319316c0bffc59f513860e21863d60b35ef7865 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 10:33:16 -0400 Subject: [PATCH 27/34] fix: updated python script --- check_urls.py | 45 +++++++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/check_urls.py b/check_urls.py index f75366935..3c14f54c1 100644 --- a/check_urls.py +++ b/check_urls.py @@ -82,27 +82,17 @@ def follow_redirect_chain(self, url): # Make request without following redirects automatically response = self.session.get(current_url, timeout=self.timeout, allow_redirects=False) - # Check if this step leads to home page - if self.is_home_page(current_url): - return { - 'status_code': response.status_code, - 'final_url': current_url, - 'redirect_chain': redirect_chain, - 'redirect_count': redirect_count, - 'leads_to_home': True, - 'home_at_step': redirect_count, - 'error': None - } - - # If not a redirect, we're done + # If not a redirect, we're done - check final destination for home page if response.status_code not in [301, 302, 303, 307, 308]: + # Check if final destination is home page + is_home = self.is_home_page(current_url) return { 'status_code': response.status_code, 'final_url': current_url, 'redirect_chain': redirect_chain, 'redirect_count': redirect_count, - 'leads_to_home': False, - 'home_at_step': None, + 'leads_to_home': is_home, + 'home_at_step': redirect_count if is_home else None, 'error': None } @@ -142,26 +132,41 @@ def follow_redirect_chain(self, url): 'home_at_step': None, 'error': f'Redirect loop detected at step {redirect_count}' } + + # Check if this intermediate redirect step leads to home page + if self.is_home_page(current_url): + return { + 'status_code': response.status_code, + 'final_url': current_url, + 'redirect_chain': redirect_chain, + 'redirect_count': redirect_count, + 'leads_to_home': True, + 'home_at_step': redirect_count, + 'error': None + } - # Too many redirects + # Too many redirects - check if final URL is home page anyway + is_home = self.is_home_page(current_url) return { 'status_code': None, 'final_url': current_url, 'redirect_chain': redirect_chain, 'redirect_count': redirect_count, - 'leads_to_home': False, - 'home_at_step': None, + 'leads_to_home': is_home, + 'home_at_step': redirect_count if is_home else None, 'error': f'Too many redirects (>{self.max_redirects})' } except requests.exceptions.RequestException as e: + # Check if we ended up at home page even with an error + is_home = self.is_home_page(current_url) return { 'status_code': None, 'final_url': current_url, 'redirect_chain': redirect_chain, 'redirect_count': redirect_count, - 'leads_to_home': False, - 'home_at_step': None, + 'leads_to_home': is_home, + 'home_at_step': redirect_count if is_home else None, 'error': str(e) } From b320f1d44f9a065f1d30e990486a1626568ee0a7 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 10:41:28 -0400 Subject: [PATCH 28/34] fix: footer links --- fern/footer-dist/output.js | 2 +- footer/check_urls_output.txt | 2818 +++++++++++++++++----------------- footer/src/FernFooter.tsx | 14 +- 3 files changed, 1417 insertions(+), 1417 deletions(-) diff --git a/fern/footer-dist/output.js b/fern/footer-dist/output.js index ba3c1f7ff..dec7774cc 100644 --- a/fern/footer-dist/output.js +++ b/fern/footer-dist/output.js @@ -316,4 +316,4 @@ Error generating stack: `+o.message+` min-width: 200px; } } - `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/v2/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/v2/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/learn/v2/ask-fern",className:"footer-link",children:"Ask Fern"}),f.jsx("a",{href:"/learn/v2/openapi/overview",className:"footer-link",children:"OpenAPI"}),f.jsx("a",{href:"/learn/v2/fern-def/overview",className:"footer-link",children:"Fern Definition"}),f.jsx("a",{href:"/learn/v2/cli-api-reference/cli-reference/overview",className:"footer-link",children:"CLI Reference"}),f.jsx("a",{href:"/learn/v2/cli-api-reference/api-reference/overview",className:"footer-link",children:"API Reference"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); + `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/learn/ask-fern",className:"footer-link",children:"Ask Fern"}),f.jsx("a",{href:"/learn/openapi/overview",className:"footer-link",children:"OpenAPI"}),f.jsx("a",{href:"/learn/fern-def/overview",className:"footer-link",children:"Fern Definition"}),f.jsx("a",{href:"/learn/cli-api-reference/cli-reference/overview",className:"footer-link",children:"CLI Reference"}),f.jsx("a",{href:"/learn/cli-api-reference/api-reference/overview",className:"footer-link",children:"API Reference"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index 69d6efc35..ade437da7 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -5,1345 +5,1345 @@ ⚙️ Using 10 workers with 0.1s delay 🔄 Following up to 10 redirects per URL ============================================================ -🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → HOME (step 0) - Chain: https://fern-api.docs.buildwithfern.com/learn -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → HOME (step 1) + Chain: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http +🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview + Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse -🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview - Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 Progress: 50/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 Progress: 100/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 -Progress: 150/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +Progress: 150/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 Progress: 200/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -Progress: 250/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 +Progress: 250/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -Progress: 300/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 +Progress: 300/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 Progress: 350/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog Progress: 400/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 Progress: 450/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 Progress: 500/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 Progress: 550/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 Progress: 600/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase - Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist -Progress: 650/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +Progress: 650/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module +🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase + Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/7/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/1/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button +Progress: 700/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups -Progress: 700/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman 🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview -Progress: 750/1308 URLs checked -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview +Progress: 750/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 -Progress: 800/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 +Progress: 800/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/14 Progress: 850/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 -Progress: 900/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 +Progress: 900/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 +Progress: 950/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/30 -Progress: 950/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/29 Progress: 1000/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 Progress: 1050/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 Progress: 1100/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 -Progress: 1150/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 +Progress: 1150/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/8 Progress: 1200/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 Progress: 1250/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 Progress: 1300/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 -Progress: 1308/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate +Progress: 1308/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke ============================================================ 📊 SUMMARY @@ -1357,1293 +1357,1293 @@ Total URLs checked: 1308 🏠 HOME PAGE REDIRECTS - FLAGGED AS ERRORS (1): ---------------------------------------- ⚠️ These URLs redirect to the home page instead of specific content: -https://fern-api.docs.buildwithfern.com/learn (step 0) - Chain: https://fern-api.docs.buildwithfern.com/learn +https://fern-api.docs.buildwithfern.com/learn (step 1) + Chain: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home 🔄 WORKING REDIRECTED URLS (1279): ---------------------------------------- -https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview (2 steps) + Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview (2 steps) - Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase (2 steps) - Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase (2 steps) + Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/7/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/1/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions (1 steps) -https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search (1 steps) +https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern (1 steps) https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase (2 steps) Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke (1 steps) 📁 Results saved to: check_urls_output.txt diff --git a/footer/src/FernFooter.tsx b/footer/src/FernFooter.tsx index fa9ba273c..865f6a89d 100644 --- a/footer/src/FernFooter.tsx +++ b/footer/src/FernFooter.tsx @@ -280,13 +280,13 @@ export const FernFooter: React.FC = () => { From 88ac667814f4ddf3527564a75fd4aa7ea0a268a2 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 10:42:39 -0400 Subject: [PATCH 29/34] fix: footer links --- fern/footer-dist/output.js | 21 +++++++++++---------- footer/src/FernFooter.tsx | 1 + 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/fern/footer-dist/output.js b/fern/footer-dist/output.js index dec7774cc..254c2318b 100644 --- a/fern/footer-dist/output.js +++ b/fern/footer-dist/output.js @@ -1,4 +1,4 @@ -(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))r(l);new MutationObserver(l=>{for(const o of l)if(o.type==="childList")for(const u of o.addedNodes)u.tagName==="LINK"&&u.rel==="modulepreload"&&r(u)}).observe(document,{childList:!0,subtree:!0});function n(l){const o={};return l.integrity&&(o.integrity=l.integrity),l.referrerPolicy&&(o.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?o.credentials="include":l.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(l){if(l.ep)return;l.ep=!0;const o=n(l);fetch(l.href,o)}})();function lf(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Fi={exports:{}},el={},Bi={exports:{}},C={};/** +(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))r(l);new MutationObserver(l=>{for(const o of l)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&r(i)}).observe(document,{childList:!0,subtree:!0});function n(l){const o={};return l.integrity&&(o.integrity=l.integrity),l.referrerPolicy&&(o.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?o.credentials="include":l.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(l){if(l.ep)return;l.ep=!0;const o=n(l);fetch(l.href,o)}})();function lf(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Fu={exports:{}},el={},Bu={exports:{}},C={};/** * @license React * react.production.min.js * @@ -6,7 +6,7 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var In=Symbol.for("react.element"),of=Symbol.for("react.portal"),uf=Symbol.for("react.fragment"),sf=Symbol.for("react.strict_mode"),ff=Symbol.for("react.profiler"),af=Symbol.for("react.provider"),cf=Symbol.for("react.context"),df=Symbol.for("react.forward_ref"),vf=Symbol.for("react.suspense"),pf=Symbol.for("react.memo"),hf=Symbol.for("react.lazy"),ku=Symbol.iterator;function mf(e){return e===null||typeof e!="object"?null:(e=ku&&e[ku]||e["@@iterator"],typeof e=="function"?e:null)}var bi={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},Ai=Object.assign,Ii={};function rn(e,t,n){this.props=e,this.context=t,this.refs=Ii,this.updater=n||bi}rn.prototype.isReactComponent={};rn.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};rn.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function Ki(){}Ki.prototype=rn.prototype;function qo(e,t,n){this.props=e,this.context=t,this.refs=Ii,this.updater=n||bi}var Wo=qo.prototype=new Ki;Wo.constructor=qo;Ai(Wo,rn.prototype);Wo.isPureReactComponent=!0;var Nu=Array.isArray,Qi=Object.prototype.hasOwnProperty,So={current:null},Ji={key:!0,ref:!0,__self:!0,__source:!0};function _i(e,t,n){var r,l={},o=null,u=null;if(t!=null)for(r in t.ref!==void 0&&(u=t.ref),t.key!==void 0&&(o=""+t.key),t)Qi.call(t,r)&&!Ji.hasOwnProperty(r)&&(l[r]=t[r]);var i=arguments.length-2;if(i===1)l.children=n;else if(1>>1,K=H[F];if(0>>1;F<$n;){var ht=2*(F+1)-1,xl=H[ht],mt=ht+1,er=H[mt];if(0>l(xl,O))mtl(er,xl)?(H[F]=er,H[mt]=O,F=mt):(H[F]=xl,H[ht]=O,F=ht);else if(mtl(er,O))H[F]=er,H[mt]=O,F=mt;else break e}}return Y}function l(H,Y){var O=H.sortIndex-Y.sortIndex;return O!==0?O:H.id-Y.id}if(typeof performance=="object"&&typeof performance.now=="function"){var o=performance;e.unstable_now=function(){return o.now()}}else{var u=Date,i=u.now();e.unstable_now=function(){return u.now()-i}}var s=[],c=[],m=1,h=null,p=3,y=!1,j=!1,g=!1,L=typeof setTimeout=="function"?setTimeout:null,d=typeof clearTimeout=="function"?clearTimeout:null,a=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function v(H){for(var Y=n(c);Y!==null;){if(Y.callback===null)r(c);else if(Y.startTime<=H)r(c),Y.sortIndex=Y.expirationTime,t(s,Y);else break;Y=n(c)}}function P(H){if(g=!1,v(H),!j)if(n(s)!==null)j=!0,ml(z);else{var Y=n(c);Y!==null&&Pl(P,Y.startTime-H)}}function z(H,Y){j=!1,g&&(g=!1,d(G),G=-1),y=!0;var O=p;try{for(v(Y),h=n(s);h!==null&&(!(h.expirationTime>Y)||H&&!Me());){var F=h.callback;if(typeof F=="function"){h.callback=null,p=h.priorityLevel;var K=F(h.expirationTime<=Y);Y=e.unstable_now(),typeof K=="function"?h.callback=K:h===n(s)&&r(s),v(Y)}else r(s);h=n(s)}if(h!==null)var $n=!0;else{var ht=n(c);ht!==null&&Pl(P,ht.startTime-Y),$n=!1}return $n}finally{h=null,p=O,y=!1}}var X=!1,M=null,G=-1,R=5,D=-1;function Me(){return!(e.unstable_now()-DH||125F?(H.sortIndex=O,t(c,H),n(s)===null&&H===n(c)&&(g?(d(G),G=-1):g=!0,Pl(P,O-F))):(H.sortIndex=K,t(s,H),j||y||(j=!0,ml(z))),H},e.unstable_shouldYield=Me,e.unstable_wrapCallback=function(H){var Y=p;return function(){var O=p;p=Y;try{return H.apply(this,arguments)}finally{p=O}}}})(rs);ns.exports=rs;var Yf=ns.exports;/** + */(function(e){function t(H,Y){var O=H.length;H.push(Y);e:for(;0>>1,K=H[F];if(0>>1;F<$n;){var ht=2*(F+1)-1,xl=H[ht],mt=ht+1,er=H[mt];if(0>l(xl,O))mtl(er,xl)?(H[F]=er,H[mt]=O,F=mt):(H[F]=xl,H[ht]=O,F=ht);else if(mtl(er,O))H[F]=er,H[mt]=O,F=mt;else break e}}return Y}function l(H,Y){var O=H.sortIndex-Y.sortIndex;return O!==0?O:H.id-Y.id}if(typeof performance=="object"&&typeof performance.now=="function"){var o=performance;e.unstable_now=function(){return o.now()}}else{var i=Date,u=i.now();e.unstable_now=function(){return i.now()-u}}var s=[],c=[],m=1,h=null,p=3,y=!1,j=!1,g=!1,L=typeof setTimeout=="function"?setTimeout:null,d=typeof clearTimeout=="function"?clearTimeout:null,a=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function v(H){for(var Y=n(c);Y!==null;){if(Y.callback===null)r(c);else if(Y.startTime<=H)r(c),Y.sortIndex=Y.expirationTime,t(s,Y);else break;Y=n(c)}}function P(H){if(g=!1,v(H),!j)if(n(s)!==null)j=!0,ml(z);else{var Y=n(c);Y!==null&&Pl(P,Y.startTime-H)}}function z(H,Y){j=!1,g&&(g=!1,d(G),G=-1),y=!0;var O=p;try{for(v(Y),h=n(s);h!==null&&(!(h.expirationTime>Y)||H&&!Me());){var F=h.callback;if(typeof F=="function"){h.callback=null,p=h.priorityLevel;var K=F(h.expirationTime<=Y);Y=e.unstable_now(),typeof K=="function"?h.callback=K:h===n(s)&&r(s),v(Y)}else r(s);h=n(s)}if(h!==null)var $n=!0;else{var ht=n(c);ht!==null&&Pl(P,ht.startTime-Y),$n=!1}return $n}finally{h=null,p=O,y=!1}}var X=!1,M=null,G=-1,R=5,D=-1;function Me(){return!(e.unstable_now()-DH||125F?(H.sortIndex=O,t(c,H),n(s)===null&&H===n(c)&&(g?(d(G),G=-1):g=!0,Pl(P,O-F))):(H.sortIndex=K,t(s,H),j||y||(j=!0,ml(z))),H},e.unstable_shouldYield=Me,e.unstable_wrapCallback=function(H){var Y=p;return function(){var O=p;p=Y;try{return H.apply(this,arguments)}finally{p=O}}}})(rs);ns.exports=rs;var Yf=ns.exports;/** * @license React * react-dom.production.min.js * @@ -30,14 +30,14 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var Of=Cn,Pe=Yf;function x(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Bl=Object.prototype.hasOwnProperty,Cf=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Vu={},Lu={};function Df(e){return Bl.call(Lu,e)?!0:Bl.call(Vu,e)?!1:Cf.test(e)?Lu[e]=!0:(Vu[e]=!0,!1)}function Zf(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function kf(e,t,n,r){if(t===null||typeof t>"u"||Zf(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function se(e,t,n,r,l,o,u){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=u}var ee={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){ee[e]=new se(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];ee[t]=new se(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){ee[e]=new se(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){ee[e]=new se(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){ee[e]=new se(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){ee[e]=new se(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){ee[e]=new se(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){ee[e]=new se(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){ee[e]=new se(e,5,!1,e.toLowerCase(),null,!1,!1)});var Eo=/[\-:]([a-z])/g;function Ro(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(Eo,Ro);ee[t]=new se(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(Eo,Ro);ee[t]=new se(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(Eo,Ro);ee[t]=new se(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){ee[e]=new se(e,1,!1,e.toLowerCase(),null,!1,!1)});ee.xlinkHref=new se("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){ee[e]=new se(e,1,!1,e.toLowerCase(),null,!0,!0)});function Fo(e,t,n,r){var l=ee.hasOwnProperty(t)?ee[t]:null;(l!==null?l.type!==0:r||!(2"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Bl=Object.prototype.hasOwnProperty,Cf=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Vi={},Li={};function Df(e){return Bl.call(Li,e)?!0:Bl.call(Vi,e)?!1:Cf.test(e)?Li[e]=!0:(Vi[e]=!0,!1)}function Zf(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function kf(e,t,n,r){if(t===null||typeof t>"u"||Zf(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function se(e,t,n,r,l,o,i){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var ee={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){ee[e]=new se(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];ee[t]=new se(t,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){ee[e]=new se(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){ee[e]=new se(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){ee[e]=new se(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){ee[e]=new se(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){ee[e]=new se(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){ee[e]=new se(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){ee[e]=new se(e,5,!1,e.toLowerCase(),null,!1,!1)});var Eo=/[\-:]([a-z])/g;function Ro(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(Eo,Ro);ee[t]=new se(t,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(Eo,Ro);ee[t]=new se(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(Eo,Ro);ee[t]=new se(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){ee[e]=new se(e,1,!1,e.toLowerCase(),null,!1,!1)});ee.xlinkHref=new se("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){ee[e]=new se(e,1,!1,e.toLowerCase(),null,!0,!0)});function Fo(e,t,n,r){var l=ee.hasOwnProperty(t)?ee[t]:null;(l!==null?l.type!==0:r||!(2i||l[u]!==o[i]){var s=` -`+l[u].replace(" at new "," at ");return e.displayName&&s.includes("")&&(s=s.replace("",e.displayName)),s}while(1<=u&&0<=i);break}}}finally{gl=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Pn(e):""}function Nf(e){switch(e.tag){case 5:return Pn(e.type);case 16:return Pn("Lazy");case 13:return Pn("Suspense");case 19:return Pn("SuspenseList");case 0:case 2:case 15:return e=wl(e.type,!1),e;case 11:return e=wl(e.type.render,!1),e;case 1:return e=wl(e.type,!0),e;default:return""}}function Kl(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case kt:return"Fragment";case Zt:return"Portal";case bl:return"Profiler";case Bo:return"StrictMode";case Al:return"Suspense";case Il:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case us:return(e.displayName||"Context")+".Consumer";case os:return(e._context.displayName||"Context")+".Provider";case bo:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case Ao:return t=e.displayName||null,t!==null?t:Kl(e.type)||"Memo";case Qe:t=e._payload,e=e._init;try{return Kl(e(t))}catch{}}return null}function Tf(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return Kl(t);case 8:return t===Bo?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function at(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function ss(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function Vf(e){var t=ss(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var l=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return l.call(this)},set:function(u){r=""+u,o.call(this,u)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(u){r=""+u},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function rr(e){e._valueTracker||(e._valueTracker=Vf(e))}function fs(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=ss(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function Cr(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Ql(e,t){var n=t.checked;return U({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function Wu(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=at(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function as(e,t){t=t.checked,t!=null&&Fo(e,"checked",t,!1)}function Jl(e,t){as(e,t);var n=at(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?_l(e,t.type,n):t.hasOwnProperty("defaultValue")&&_l(e,t.type,at(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function Su(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function _l(e,t,n){(t!=="number"||Cr(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var xn=Array.isArray;function Ft(e,t,n,r){if(e=e.options,t){t={};for(var l=0;l"+t.valueOf().toString()+"",t=lr.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function Zn(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var gn={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Lf=["Webkit","ms","Moz","O"];Object.keys(gn).forEach(function(e){Lf.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),gn[t]=gn[e]})});function ps(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||gn.hasOwnProperty(e)&&gn[e]?(""+t).trim():t+"px"}function hs(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,l=ps(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,l):e[n]=l}}var qf=U({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function to(e,t){if(t){if(qf[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(x(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(x(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(x(61))}if(t.style!=null&&typeof t.style!="object")throw Error(x(62))}}function no(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var ro=null;function Io(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var lo=null,Bt=null,bt=null;function Ru(e){if(e=Jn(e)){if(typeof lo!="function")throw Error(x(280));var t=e.stateNode;t&&(t=ol(t),lo(e.stateNode,e.type,t))}}function ms(e){Bt?bt?bt.push(e):bt=[e]:Bt=e}function Ps(){if(Bt){var e=Bt,t=bt;if(bt=Bt=null,Ru(e),t)for(e=0;e>>=0,e===0?32:31-(Kf(e)/Qf|0)|0}var or=64,ur=4194304;function yn(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Nr(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,l=e.suspendedLanes,o=e.pingedLanes,u=n&268435455;if(u!==0){var i=u&~l;i!==0?r=yn(i):(o&=u,o!==0&&(r=yn(o)))}else u=n&~l,u!==0?r=yn(u):o!==0&&(r=yn(o));if(r===0)return 0;if(t!==0&&t!==r&&!(t&l)&&(l=r&-r,o=t&-t,l>=o||l===16&&(o&4194240)!==0))return t;if(r&4&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function Kn(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-De(t),e[t]=n}function ea(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=zn),_u=" ",$u=!1;function Ls(e,t){switch(e){case"keyup":return Ya.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function qs(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Nt=!1;function Ca(e,t){switch(e){case"compositionend":return qs(t);case"keypress":return t.which!==32?null:($u=!0,_u);case"textInput":return e=t.data,e===_u&&$u?null:e;default:return null}}function Da(e,t){if(Nt)return e==="compositionend"||!nu&&Ls(e,t)?(e=Ts(),gr=$o=et=null,Nt=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=ri(n)}}function Es(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Es(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Rs(){for(var e=window,t=Cr();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=Cr(e.document)}return t}function ru(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function Sa(e){var t=Rs(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&Es(n.ownerDocument.documentElement,n)){if(r!==null&&ru(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var l=n.textContent.length,o=Math.min(r.start,l);r=r.end===void 0?o:Math.min(r.end,l),!e.extend&&o>r&&(l=r,r=o,o=l),l=li(n,o);var u=li(n,r);l&&u&&(e.rangeCount!==1||e.anchorNode!==l.node||e.anchorOffset!==l.offset||e.focusNode!==u.node||e.focusOffset!==u.offset)&&(t=t.createRange(),t.setStart(l.node,l.offset),e.removeAllRanges(),o>r?(e.addRange(t),e.extend(u.node,u.offset)):(t.setEnd(u.node,u.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,Tt=null,ao=null,Xn=null,co=!1;function oi(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;co||Tt==null||Tt!==Cr(r)||(r=Tt,"selectionStart"in r&&ru(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Xn&&qn(Xn,r)||(Xn=r,r=Lr(ao,"onSelect"),0qt||(e.current=xo[qt],xo[qt]=null,qt--)}function N(e,t){qt++,xo[qt]=e.current,e.current=t}var ct={},le=vt(ct),ce=vt(!1),Ht=ct;function Jt(e,t){var n=e.type.contextTypes;if(!n)return ct;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var l={},o;for(o in n)l[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=l),l}function de(e){return e=e.childContextTypes,e!=null}function Wr(){V(ce),V(le)}function di(e,t,n){if(le.current!==ct)throw Error(x(168));N(le,t),N(ce,n)}function _s(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var l in r)if(!(l in t))throw Error(x(108,Tf(e)||"Unknown",l));return U({},n,r)}function Sr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ct,Ht=le.current,N(le,e),N(ce,ce.current),!0}function vi(e,t,n){var r=e.stateNode;if(!r)throw Error(x(169));n?(e=_s(e,t,Ht),r.__reactInternalMemoizedMergedChildContext=e,V(ce),V(le),N(le,e)):V(ce),N(ce,n)}var Se=null,ul=!1,Vl=!1;function $s(e){Se===null?Se=[e]:Se.push(e)}function _a(e){ul=!0,$s(e)}function pt(){if(!Vl&&Se!==null){Vl=!0;var e=0,t=k;try{var n=Se;for(k=1;e>=u,l-=u,Ue=1<<32-De(t)+l|n<G?(R=M,M=null):R=M.sibling;var D=p(d,M,v[G],P);if(D===null){M===null&&(M=R);break}e&&M&&D.alternate===null&&t(d,M),a=o(D,a,G),X===null?z=D:X.sibling=D,X=D,M=R}if(G===v.length)return n(d,M),q&&Pt(d,G),z;if(M===null){for(;GG?(R=M,M=null):R=M.sibling;var Me=p(d,M,D.value,P);if(Me===null){M===null&&(M=R);break}e&&M&&Me.alternate===null&&t(d,M),a=o(Me,a,G),X===null?z=Me:X.sibling=Me,X=Me,M=R}if(D.done)return n(d,M),q&&Pt(d,G),z;if(M===null){for(;!D.done;G++,D=v.next())D=h(d,D.value,P),D!==null&&(a=o(D,a,G),X===null?z=D:X.sibling=D,X=D);return q&&Pt(d,G),z}for(M=r(d,M);!D.done;G++,D=v.next())D=y(M,d,G,D.value,P),D!==null&&(e&&D.alternate!==null&&M.delete(D.key===null?G:D.key),a=o(D,a,G),X===null?z=D:X.sibling=D,X=D);return e&&M.forEach(function(un){return t(d,un)}),q&&Pt(d,G),z}function L(d,a,v,P){if(typeof v=="object"&&v!==null&&v.type===kt&&v.key===null&&(v=v.props.children),typeof v=="object"&&v!==null){switch(v.$$typeof){case nr:e:{for(var z=v.key,X=a;X!==null;){if(X.key===z){if(z=v.type,z===kt){if(X.tag===7){n(d,X.sibling),a=l(X,v.props.children),a.return=d,d=a;break e}}else if(X.elementType===z||typeof z=="object"&&z!==null&&z.$$typeof===Qe&&mi(z)===X.type){n(d,X.sibling),a=l(X,v.props),a.ref=pn(d,X,v),a.return=d,d=a;break e}n(d,X);break}else t(d,X);X=X.sibling}v.type===kt?(a=zt(v.props.children,d.mode,P,v.key),a.return=d,d=a):(P=Or(v.type,v.key,v.props,null,d.mode,P),P.ref=pn(d,a,v),P.return=d,d=P)}return u(d);case Zt:e:{for(X=v.key;a!==null;){if(a.key===X)if(a.tag===4&&a.stateNode.containerInfo===v.containerInfo&&a.stateNode.implementation===v.implementation){n(d,a.sibling),a=l(a,v.children||[]),a.return=d,d=a;break e}else{n(d,a);break}else t(d,a);a=a.sibling}a=Fl(v,d.mode,P),a.return=d,d=a}return u(d);case Qe:return X=v._init,L(d,a,X(v._payload),P)}if(xn(v))return j(d,a,v,P);if(fn(v))return g(d,a,v,P);vr(d,v)}return typeof v=="string"&&v!==""||typeof v=="number"?(v=""+v,a!==null&&a.tag===6?(n(d,a.sibling),a=l(a,v),a.return=d,d=a):(n(d,a),a=Rl(v,d.mode,P),a.return=d,d=a),u(d)):n(d,a)}return L}var $t=r1(!0),l1=r1(!1),Rr=vt(null),Fr=null,Ut=null,iu=null;function su(){iu=Ut=Fr=null}function fu(e){var t=Rr.current;V(Rr),e._currentValue=t}function go(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,r!==null&&(r.childLanes|=t)):r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function It(e,t){Fr=e,iu=Ut=null,e=e.dependencies,e!==null&&e.firstContext!==null&&(e.lanes&t&&(ae=!0),e.firstContext=null)}function He(e){var t=e._currentValue;if(iu!==e)if(e={context:e,memoizedValue:t,next:null},Ut===null){if(Fr===null)throw Error(x(308));Ut=e,Fr.dependencies={lanes:0,firstContext:e}}else Ut=Ut.next=e;return t}var jt=null;function au(e){jt===null?jt=[e]:jt.push(e)}function o1(e,t,n,r){var l=t.interleaved;return l===null?(n.next=n,au(t)):(n.next=l.next,l.next=n),t.interleaved=n,be(e,r)}function be(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var Je=!1;function cu(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function u1(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function Re(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function ut(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,Z&2){var l=r.pending;return l===null?t.next=t:(t.next=l.next,l.next=t),r.pending=t,be(e,n)}return l=r.interleaved,l===null?(t.next=t,au(r)):(t.next=l.next,l.next=t),r.interleaved=t,be(e,n)}function zr(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194240)!==0)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Qo(e,n)}}function Pi(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var l=null,o=null;if(n=n.firstBaseUpdate,n!==null){do{var u={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};o===null?l=o=u:o=o.next=u,n=n.next}while(n!==null);o===null?l=o=t:o=o.next=t}else l=o=t;n={baseState:r.baseState,firstBaseUpdate:l,lastBaseUpdate:o,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function Br(e,t,n,r){var l=e.updateQueue;Je=!1;var o=l.firstBaseUpdate,u=l.lastBaseUpdate,i=l.shared.pending;if(i!==null){l.shared.pending=null;var s=i,c=s.next;s.next=null,u===null?o=c:u.next=c,u=s;var m=e.alternate;m!==null&&(m=m.updateQueue,i=m.lastBaseUpdate,i!==u&&(i===null?m.firstBaseUpdate=c:i.next=c,m.lastBaseUpdate=s))}if(o!==null){var h=l.baseState;u=0,m=c=s=null,i=o;do{var p=i.lane,y=i.eventTime;if((r&p)===p){m!==null&&(m=m.next={eventTime:y,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var j=e,g=i;switch(p=t,y=n,g.tag){case 1:if(j=g.payload,typeof j=="function"){h=j.call(y,h,p);break e}h=j;break e;case 3:j.flags=j.flags&-65537|128;case 0:if(j=g.payload,p=typeof j=="function"?j.call(y,h,p):j,p==null)break e;h=U({},h,p);break e;case 2:Je=!0}}i.callback!==null&&i.lane!==0&&(e.flags|=64,p=l.effects,p===null?l.effects=[i]:p.push(i))}else y={eventTime:y,lane:p,tag:i.tag,payload:i.payload,callback:i.callback,next:null},m===null?(c=m=y,s=h):m=m.next=y,u|=p;if(i=i.next,i===null){if(i=l.shared.pending,i===null)break;p=i,i=p.next,p.next=null,l.lastBaseUpdate=p,l.shared.pending=null}}while(!0);if(m===null&&(s=h),l.baseState=s,l.firstBaseUpdate=c,l.lastBaseUpdate=m,t=l.shared.interleaved,t!==null){l=t;do u|=l.lane,l=l.next;while(l!==t)}else o===null&&(l.shared.lanes=0);Gt|=u,e.lanes=u,e.memoizedState=h}}function xi(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;tn?n:4,e(!0);var r=ql.transition;ql.transition={};try{e(!1),t()}finally{k=n,ql.transition=r}}function z1(){return Xe().memoizedState}function n2(e,t,n){var r=st(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},H1(e))X1(t,n);else if(n=o1(e,t,n,r),n!==null){var l=ue();Ze(n,e,r,l),M1(n,t,r)}}function r2(e,t,n){var r=st(e),l={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(H1(e))X1(t,l);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=t.lastRenderedReducer,o!==null))try{var u=t.lastRenderedState,i=o(u,n);if(l.hasEagerState=!0,l.eagerState=i,ke(i,u)){var s=t.interleaved;s===null?(l.next=l,au(t)):(l.next=s.next,s.next=l),t.interleaved=l;return}}catch{}finally{}n=o1(e,t,l,r),n!==null&&(l=ue(),Ze(n,e,r,l),M1(n,t,r))}}function H1(e){var t=e.alternate;return e===S||t!==null&&t===S}function X1(e,t){Mn=Ar=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function M1(e,t,n){if(n&4194240){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Qo(e,n)}}var Ir={readContext:He,useCallback:te,useContext:te,useEffect:te,useImperativeHandle:te,useInsertionEffect:te,useLayoutEffect:te,useMemo:te,useReducer:te,useRef:te,useState:te,useDebugValue:te,useDeferredValue:te,useTransition:te,useMutableSource:te,useSyncExternalStore:te,useId:te,unstable_isNewReconciler:!1},l2={readContext:He,useCallback:function(e,t){return Te().memoizedState=[e,t===void 0?null:t],e},useContext:He,useEffect:ji,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Xr(4194308,4,x1.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Xr(4194308,4,e,t)},useInsertionEffect:function(e,t){return Xr(4,2,e,t)},useMemo:function(e,t){var n=Te();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Te();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=n2.bind(null,S,e),[r.memoizedState,e]},useRef:function(e){var t=Te();return e={current:e},t.memoizedState=e},useState:yi,useDebugValue:yu,useDeferredValue:function(e){return Te().memoizedState=e},useTransition:function(){var e=yi(!1),t=e[0];return e=t2.bind(null,e[1]),Te().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=S,l=Te();if(q){if(n===void 0)throw Error(x(407));n=n()}else{if(n=t(),J===null)throw Error(x(349));Mt&30||a1(r,t,n)}l.memoizedState=n;var o={value:n,getSnapshot:t};return l.queue=o,ji(d1.bind(null,r,o,e),[e]),r.flags|=2048,bn(9,c1.bind(null,r,o,n,t),void 0,null),n},useId:function(){var e=Te(),t=J.identifierPrefix;if(q){var n=Ee,r=Ue;n=(r&~(1<<32-De(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Fn++,0u||l[i]!==o[u]){var s=` +`+l[i].replace(" at new "," at ");return e.displayName&&s.includes("")&&(s=s.replace("",e.displayName)),s}while(1<=i&&0<=u);break}}}finally{gl=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Pn(e):""}function Nf(e){switch(e.tag){case 5:return Pn(e.type);case 16:return Pn("Lazy");case 13:return Pn("Suspense");case 19:return Pn("SuspenseList");case 0:case 2:case 15:return e=wl(e.type,!1),e;case 11:return e=wl(e.type.render,!1),e;case 1:return e=wl(e.type,!0),e;default:return""}}function Kl(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case kt:return"Fragment";case Zt:return"Portal";case bl:return"Profiler";case Bo:return"StrictMode";case Al:return"Suspense";case Il:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case is:return(e.displayName||"Context")+".Consumer";case os:return(e._context.displayName||"Context")+".Provider";case bo:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case Ao:return t=e.displayName||null,t!==null?t:Kl(e.type)||"Memo";case Qe:t=e._payload,e=e._init;try{return Kl(e(t))}catch{}}return null}function Tf(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=t.render,e=e.displayName||e.name||"",t.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return Kl(t);case 8:return t===Bo?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t}return null}function at(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function ss(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function Vf(e){var t=ss(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&typeof n.get=="function"&&typeof n.set=="function"){var l=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return l.call(this)},set:function(i){r=""+i,o.call(this,i)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(i){r=""+i},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function rr(e){e._valueTracker||(e._valueTracker=Vf(e))}function fs(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=ss(e)?e.checked?"true":"false":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function Cr(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Ql(e,t){var n=t.checked;return U({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function Wi(e,t){var n=t.defaultValue==null?"":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=at(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type==="checkbox"||t.type==="radio"?t.checked!=null:t.value!=null}}function as(e,t){t=t.checked,t!=null&&Fo(e,"checked",t,!1)}function Jl(e,t){as(e,t);var n=at(t.value),r=t.type;if(n!=null)r==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}t.hasOwnProperty("value")?_l(e,t.type,n):t.hasOwnProperty("defaultValue")&&_l(e,t.type,at(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function Si(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!(r!=="submit"&&r!=="reset"||t.value!==void 0&&t.value!==null))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,n!==""&&(e.name=n)}function _l(e,t,n){(t!=="number"||Cr(e.ownerDocument)!==e)&&(n==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var xn=Array.isArray;function Ft(e,t,n,r){if(e=e.options,t){t={};for(var l=0;l"+t.valueOf().toString()+"",t=lr.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function Zn(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var gn={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Lf=["Webkit","ms","Moz","O"];Object.keys(gn).forEach(function(e){Lf.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),gn[t]=gn[e]})});function ps(e,t,n){return t==null||typeof t=="boolean"||t===""?"":n||typeof t!="number"||t===0||gn.hasOwnProperty(e)&&gn[e]?(""+t).trim():t+"px"}function hs(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf("--")===0,l=ps(n,t[n],r);n==="float"&&(n="cssFloat"),r?e.setProperty(n,l):e[n]=l}}var qf=U({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function to(e,t){if(t){if(qf[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(x(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(x(60));if(typeof t.dangerouslySetInnerHTML!="object"||!("__html"in t.dangerouslySetInnerHTML))throw Error(x(61))}if(t.style!=null&&typeof t.style!="object")throw Error(x(62))}}function no(e,t){if(e.indexOf("-")===-1)return typeof t.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var ro=null;function Io(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var lo=null,Bt=null,bt=null;function Ri(e){if(e=Jn(e)){if(typeof lo!="function")throw Error(x(280));var t=e.stateNode;t&&(t=ol(t),lo(e.stateNode,e.type,t))}}function ms(e){Bt?bt?bt.push(e):bt=[e]:Bt=e}function Ps(){if(Bt){var e=Bt,t=bt;if(bt=Bt=null,Ri(e),t)for(e=0;e>>=0,e===0?32:31-(Kf(e)/Qf|0)|0}var or=64,ir=4194304;function yn(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Nr(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,l=e.suspendedLanes,o=e.pingedLanes,i=n&268435455;if(i!==0){var u=i&~l;u!==0?r=yn(u):(o&=i,o!==0&&(r=yn(o)))}else i=n&~l,i!==0?r=yn(i):o!==0&&(r=yn(o));if(r===0)return 0;if(t!==0&&t!==r&&!(t&l)&&(l=r&-r,o=t&-t,l>=o||l===16&&(o&4194240)!==0))return t;if(r&4&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function Kn(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-De(t),e[t]=n}function ea(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=zn),_i=" ",$i=!1;function Ls(e,t){switch(e){case"keyup":return Ya.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function qs(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Nt=!1;function Ca(e,t){switch(e){case"compositionend":return qs(t);case"keypress":return t.which!==32?null:($i=!0,_i);case"textInput":return e=t.data,e===_i&&$i?null:e;default:return null}}function Da(e,t){if(Nt)return e==="compositionend"||!ni&&Ls(e,t)?(e=Ts(),gr=$o=et=null,Nt=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=ru(n)}}function Es(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?Es(e,t.parentNode):"contains"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Rs(){for(var e=window,t=Cr();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href=="string"}catch{n=!1}if(n)e=t.contentWindow;else break;t=Cr(e.document)}return t}function ri(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||t==="textarea"||e.contentEditable==="true")}function Sa(e){var t=Rs(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&Es(n.ownerDocument.documentElement,n)){if(r!==null&&ri(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var l=n.textContent.length,o=Math.min(r.start,l);r=r.end===void 0?o:Math.min(r.end,l),!e.extend&&o>r&&(l=r,r=o,o=l),l=lu(n,o);var i=lu(n,r);l&&i&&(e.rangeCount!==1||e.anchorNode!==l.node||e.anchorOffset!==l.offset||e.focusNode!==i.node||e.focusOffset!==i.offset)&&(t=t.createRange(),t.setStart(l.node,l.offset),e.removeAllRanges(),o>r?(e.addRange(t),e.extend(i.node,i.offset)):(t.setEnd(i.node,i.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus=="function"&&n.focus(),n=0;n=document.documentMode,Tt=null,ao=null,Xn=null,co=!1;function ou(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;co||Tt==null||Tt!==Cr(r)||(r=Tt,"selectionStart"in r&&ri(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Xn&&qn(Xn,r)||(Xn=r,r=Lr(ao,"onSelect"),0qt||(e.current=xo[qt],xo[qt]=null,qt--)}function N(e,t){qt++,xo[qt]=e.current,e.current=t}var ct={},le=vt(ct),ce=vt(!1),Ht=ct;function Jt(e,t){var n=e.type.contextTypes;if(!n)return ct;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var l={},o;for(o in n)l[o]=t[o];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=l),l}function de(e){return e=e.childContextTypes,e!=null}function Wr(){V(ce),V(le)}function du(e,t,n){if(le.current!==ct)throw Error(x(168));N(le,t),N(ce,n)}function _s(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!="function")return n;r=r.getChildContext();for(var l in r)if(!(l in t))throw Error(x(108,Tf(e)||"Unknown",l));return U({},n,r)}function Sr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ct,Ht=le.current,N(le,e),N(ce,ce.current),!0}function vu(e,t,n){var r=e.stateNode;if(!r)throw Error(x(169));n?(e=_s(e,t,Ht),r.__reactInternalMemoizedMergedChildContext=e,V(ce),V(le),N(le,e)):V(ce),N(ce,n)}var Se=null,il=!1,Vl=!1;function $s(e){Se===null?Se=[e]:Se.push(e)}function _a(e){il=!0,$s(e)}function pt(){if(!Vl&&Se!==null){Vl=!0;var e=0,t=k;try{var n=Se;for(k=1;e>=i,l-=i,Ue=1<<32-De(t)+l|n<G?(R=M,M=null):R=M.sibling;var D=p(d,M,v[G],P);if(D===null){M===null&&(M=R);break}e&&M&&D.alternate===null&&t(d,M),a=o(D,a,G),X===null?z=D:X.sibling=D,X=D,M=R}if(G===v.length)return n(d,M),q&&Pt(d,G),z;if(M===null){for(;GG?(R=M,M=null):R=M.sibling;var Me=p(d,M,D.value,P);if(Me===null){M===null&&(M=R);break}e&&M&&Me.alternate===null&&t(d,M),a=o(Me,a,G),X===null?z=Me:X.sibling=Me,X=Me,M=R}if(D.done)return n(d,M),q&&Pt(d,G),z;if(M===null){for(;!D.done;G++,D=v.next())D=h(d,D.value,P),D!==null&&(a=o(D,a,G),X===null?z=D:X.sibling=D,X=D);return q&&Pt(d,G),z}for(M=r(d,M);!D.done;G++,D=v.next())D=y(M,d,G,D.value,P),D!==null&&(e&&D.alternate!==null&&M.delete(D.key===null?G:D.key),a=o(D,a,G),X===null?z=D:X.sibling=D,X=D);return e&&M.forEach(function(un){return t(d,un)}),q&&Pt(d,G),z}function L(d,a,v,P){if(typeof v=="object"&&v!==null&&v.type===kt&&v.key===null&&(v=v.props.children),typeof v=="object"&&v!==null){switch(v.$$typeof){case nr:e:{for(var z=v.key,X=a;X!==null;){if(X.key===z){if(z=v.type,z===kt){if(X.tag===7){n(d,X.sibling),a=l(X,v.props.children),a.return=d,d=a;break e}}else if(X.elementType===z||typeof z=="object"&&z!==null&&z.$$typeof===Qe&&mu(z)===X.type){n(d,X.sibling),a=l(X,v.props),a.ref=pn(d,X,v),a.return=d,d=a;break e}n(d,X);break}else t(d,X);X=X.sibling}v.type===kt?(a=zt(v.props.children,d.mode,P,v.key),a.return=d,d=a):(P=Or(v.type,v.key,v.props,null,d.mode,P),P.ref=pn(d,a,v),P.return=d,d=P)}return i(d);case Zt:e:{for(X=v.key;a!==null;){if(a.key===X)if(a.tag===4&&a.stateNode.containerInfo===v.containerInfo&&a.stateNode.implementation===v.implementation){n(d,a.sibling),a=l(a,v.children||[]),a.return=d,d=a;break e}else{n(d,a);break}else t(d,a);a=a.sibling}a=Fl(v,d.mode,P),a.return=d,d=a}return i(d);case Qe:return X=v._init,L(d,a,X(v._payload),P)}if(xn(v))return j(d,a,v,P);if(fn(v))return g(d,a,v,P);vr(d,v)}return typeof v=="string"&&v!==""||typeof v=="number"?(v=""+v,a!==null&&a.tag===6?(n(d,a.sibling),a=l(a,v),a.return=d,d=a):(n(d,a),a=Rl(v,d.mode,P),a.return=d,d=a),i(d)):n(d,a)}return L}var $t=r1(!0),l1=r1(!1),Rr=vt(null),Fr=null,Ut=null,ui=null;function si(){ui=Ut=Fr=null}function fi(e){var t=Rr.current;V(Rr),e._currentValue=t}function go(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,r!==null&&(r.childLanes|=t)):r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function It(e,t){Fr=e,ui=Ut=null,e=e.dependencies,e!==null&&e.firstContext!==null&&(e.lanes&t&&(ae=!0),e.firstContext=null)}function He(e){var t=e._currentValue;if(ui!==e)if(e={context:e,memoizedValue:t,next:null},Ut===null){if(Fr===null)throw Error(x(308));Ut=e,Fr.dependencies={lanes:0,firstContext:e}}else Ut=Ut.next=e;return t}var jt=null;function ai(e){jt===null?jt=[e]:jt.push(e)}function o1(e,t,n,r){var l=t.interleaved;return l===null?(n.next=n,ai(t)):(n.next=l.next,l.next=n),t.interleaved=n,be(e,r)}function be(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var Je=!1;function ci(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function i1(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function Re(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function it(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,Z&2){var l=r.pending;return l===null?t.next=t:(t.next=l.next,l.next=t),r.pending=t,be(e,n)}return l=r.interleaved,l===null?(t.next=t,ai(r)):(t.next=l.next,l.next=t),r.interleaved=t,be(e,n)}function zr(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194240)!==0)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Qo(e,n)}}function Pu(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var l=null,o=null;if(n=n.firstBaseUpdate,n!==null){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};o===null?l=o=i:o=o.next=i,n=n.next}while(n!==null);o===null?l=o=t:o=o.next=t}else l=o=t;n={baseState:r.baseState,firstBaseUpdate:l,lastBaseUpdate:o,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function Br(e,t,n,r){var l=e.updateQueue;Je=!1;var o=l.firstBaseUpdate,i=l.lastBaseUpdate,u=l.shared.pending;if(u!==null){l.shared.pending=null;var s=u,c=s.next;s.next=null,i===null?o=c:i.next=c,i=s;var m=e.alternate;m!==null&&(m=m.updateQueue,u=m.lastBaseUpdate,u!==i&&(u===null?m.firstBaseUpdate=c:u.next=c,m.lastBaseUpdate=s))}if(o!==null){var h=l.baseState;i=0,m=c=s=null,u=o;do{var p=u.lane,y=u.eventTime;if((r&p)===p){m!==null&&(m=m.next={eventTime:y,lane:0,tag:u.tag,payload:u.payload,callback:u.callback,next:null});e:{var j=e,g=u;switch(p=t,y=n,g.tag){case 1:if(j=g.payload,typeof j=="function"){h=j.call(y,h,p);break e}h=j;break e;case 3:j.flags=j.flags&-65537|128;case 0:if(j=g.payload,p=typeof j=="function"?j.call(y,h,p):j,p==null)break e;h=U({},h,p);break e;case 2:Je=!0}}u.callback!==null&&u.lane!==0&&(e.flags|=64,p=l.effects,p===null?l.effects=[u]:p.push(u))}else y={eventTime:y,lane:p,tag:u.tag,payload:u.payload,callback:u.callback,next:null},m===null?(c=m=y,s=h):m=m.next=y,i|=p;if(u=u.next,u===null){if(u=l.shared.pending,u===null)break;p=u,u=p.next,p.next=null,l.lastBaseUpdate=p,l.shared.pending=null}}while(!0);if(m===null&&(s=h),l.baseState=s,l.firstBaseUpdate=c,l.lastBaseUpdate=m,t=l.shared.interleaved,t!==null){l=t;do i|=l.lane,l=l.next;while(l!==t)}else o===null&&(l.shared.lanes=0);Gt|=i,e.lanes=i,e.memoizedState=h}}function xu(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;tn?n:4,e(!0);var r=ql.transition;ql.transition={};try{e(!1),t()}finally{k=n,ql.transition=r}}function z1(){return Xe().memoizedState}function n2(e,t,n){var r=st(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},H1(e))X1(t,n);else if(n=o1(e,t,n,r),n!==null){var l=ie();Ze(n,e,r,l),M1(n,t,r)}}function r2(e,t,n){var r=st(e),l={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(H1(e))X1(t,l);else{var o=e.alternate;if(e.lanes===0&&(o===null||o.lanes===0)&&(o=t.lastRenderedReducer,o!==null))try{var i=t.lastRenderedState,u=o(i,n);if(l.hasEagerState=!0,l.eagerState=u,ke(u,i)){var s=t.interleaved;s===null?(l.next=l,ai(t)):(l.next=s.next,s.next=l),t.interleaved=l;return}}catch{}finally{}n=o1(e,t,l,r),n!==null&&(l=ie(),Ze(n,e,r,l),M1(n,t,r))}}function H1(e){var t=e.alternate;return e===S||t!==null&&t===S}function X1(e,t){Mn=Ar=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function M1(e,t,n){if(n&4194240){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Qo(e,n)}}var Ir={readContext:He,useCallback:te,useContext:te,useEffect:te,useImperativeHandle:te,useInsertionEffect:te,useLayoutEffect:te,useMemo:te,useReducer:te,useRef:te,useState:te,useDebugValue:te,useDeferredValue:te,useTransition:te,useMutableSource:te,useSyncExternalStore:te,useId:te,unstable_isNewReconciler:!1},l2={readContext:He,useCallback:function(e,t){return Te().memoizedState=[e,t===void 0?null:t],e},useContext:He,useEffect:ju,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,Xr(4194308,4,x1.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Xr(4194308,4,e,t)},useInsertionEffect:function(e,t){return Xr(4,2,e,t)},useMemo:function(e,t){var n=Te();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Te();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=n2.bind(null,S,e),[r.memoizedState,e]},useRef:function(e){var t=Te();return e={current:e},t.memoizedState=e},useState:yu,useDebugValue:yi,useDeferredValue:function(e){return Te().memoizedState=e},useTransition:function(){var e=yu(!1),t=e[0];return e=t2.bind(null,e[1]),Te().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=S,l=Te();if(q){if(n===void 0)throw Error(x(407));n=n()}else{if(n=t(),J===null)throw Error(x(349));Mt&30||a1(r,t,n)}l.memoizedState=n;var o={value:n,getSnapshot:t};return l.queue=o,ju(d1.bind(null,r,o,e),[e]),r.flags|=2048,bn(9,c1.bind(null,r,o,n,t),void 0,null),n},useId:function(){var e=Te(),t=J.identifierPrefix;if(q){var n=Ee,r=Ue;n=(r&~(1<<32-De(r)-1)).toString(32)+n,t=":"+t+"R"+n,n=Fn++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=u.createElement(n,{is:r.is}):(e=u.createElement(n),n==="select"&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,n),e[Ve]=t,e[Un]=r,V1(e,t,!1,!1),t.stateNode=e;e:{switch(u=no(n,r),n){case"dialog":T("cancel",e),T("close",e),l=r;break;case"iframe":case"object":case"embed":T("load",e),l=r;break;case"video":case"audio":for(l=0;lnn&&(t.flags|=128,r=!0,hn(o,!1),t.lanes=4194304)}else{if(!r)if(e=br(u),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),hn(o,!0),o.tail===null&&o.tailMode==="hidden"&&!u.alternate&&!q)return ne(t),null}else 2*B()-o.renderingStartTime>nn&&n!==1073741824&&(t.flags|=128,r=!0,hn(o,!1),t.lanes=4194304);o.isBackwards?(u.sibling=t.child,t.child=u):(n=o.last,n!==null?n.sibling=u:t.child=u,o.last=u)}return o.tail!==null?(t=o.tail,o.rendering=t,o.tail=t.sibling,o.renderingStartTime=B(),t.sibling=null,n=W.current,N(W,r?n&1|2:n&1),t):(ne(t),null);case 22:case 23:return Xu(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&t.mode&1?pe&1073741824&&(ne(t),t.subtreeFlags&6&&(t.flags|=8192)):ne(t),null;case 24:return null;case 25:return null}throw Error(x(156,t.tag))}function d2(e,t){switch(ou(t),t.tag){case 1:return de(t.type)&&Wr(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return en(),V(ce),V(le),pu(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 5:return vu(t),null;case 13:if(V(W),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(x(340));_t()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return V(W),null;case 4:return en(),null;case 10:return fu(t.type._context),null;case 22:case 23:return Xu(),null;case 24:return null;default:return null}}var hr=!1,re=!1,v2=typeof WeakSet=="function"?WeakSet:Set,w=null;function Et(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){E(e,t,r)}else n.current=null}function Co(e,t,n){try{n()}catch(r){E(e,t,r)}}var Di=!1;function p2(e,t){if(vo=Tr,e=Rs(),ru(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var l=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break e}var u=0,i=-1,s=-1,c=0,m=0,h=e,p=null;t:for(;;){for(var y;h!==n||l!==0&&h.nodeType!==3||(i=u+l),h!==o||r!==0&&h.nodeType!==3||(s=u+r),h.nodeType===3&&(u+=h.nodeValue.length),(y=h.firstChild)!==null;)p=h,h=y;for(;;){if(h===e)break t;if(p===n&&++c===l&&(i=u),p===o&&++m===r&&(s=u),(y=h.nextSibling)!==null)break;h=p,p=h.parentNode}h=y}n=i===-1||s===-1?null:{start:i,end:s}}else n=null}n=n||{start:0,end:0}}else n=null;for(po={focusedElem:e,selectionRange:n},Tr=!1,w=t;w!==null;)if(t=w,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,w=e;else for(;w!==null;){t=w;try{var j=t.alternate;if(t.flags&1024)switch(t.tag){case 0:case 11:case 15:break;case 1:if(j!==null){var g=j.memoizedProps,L=j.memoizedState,d=t.stateNode,a=d.getSnapshotBeforeUpdate(t.elementType===t.type?g:Ye(t.type,g),L);d.__reactInternalSnapshotBeforeUpdate=a}break;case 3:var v=t.stateNode.containerInfo;v.nodeType===1?v.textContent="":v.nodeType===9&&v.documentElement&&v.removeChild(v.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(x(163))}}catch(P){E(t,t.return,P)}if(e=t.sibling,e!==null){e.return=t.return,w=e;break}w=t.return}return j=Di,Di=!1,j}function Gn(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var l=r=r.next;do{if((l.tag&e)===e){var o=l.destroy;l.destroy=void 0,o!==void 0&&Co(t,n,o)}l=l.next}while(l!==r)}}function fl(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Do(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function W1(e){var t=e.alternate;t!==null&&(e.alternate=null,W1(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[Ve],delete t[Un],delete t[Po],delete t[Qa],delete t[Ja])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function S1(e){return e.tag===5||e.tag===3||e.tag===4}function Zi(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||S1(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Zo(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=qr));else if(r!==4&&(e=e.child,e!==null))for(Zo(e,t,n),e=e.sibling;e!==null;)Zo(e,t,n),e=e.sibling}function ko(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(ko(e,t,n),e=e.sibling;e!==null;)ko(e,t,n),e=e.sibling}var _=null,Oe=!1;function Ke(e,t,n){for(n=n.child;n!==null;)U1(e,t,n),n=n.sibling}function U1(e,t,n){if(Le&&typeof Le.onCommitFiberUnmount=="function")try{Le.onCommitFiberUnmount(tl,n)}catch{}switch(n.tag){case 5:re||Et(n,t);case 6:var r=_,l=Oe;_=null,Ke(e,t,n),_=r,Oe=l,_!==null&&(Oe?(e=_,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):_.removeChild(n.stateNode));break;case 18:_!==null&&(Oe?(e=_,n=n.stateNode,e.nodeType===8?Tl(e.parentNode,n):e.nodeType===1&&Tl(e,n),Vn(e)):Tl(_,n.stateNode));break;case 4:r=_,l=Oe,_=n.stateNode.containerInfo,Oe=!0,Ke(e,t,n),_=r,Oe=l;break;case 0:case 11:case 14:case 15:if(!re&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){l=r=r.next;do{var o=l,u=o.destroy;o=o.tag,u!==void 0&&(o&2||o&4)&&Co(n,t,u),l=l.next}while(l!==r)}Ke(e,t,n);break;case 1:if(!re&&(Et(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(i){E(n,t,i)}Ke(e,t,n);break;case 21:Ke(e,t,n);break;case 22:n.mode&1?(re=(r=re)||n.memoizedState!==null,Ke(e,t,n),re=r):Ke(e,t,n);break;default:Ke(e,t,n)}}function ki(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new v2),t.forEach(function(r){var l=z2.bind(null,e,r);n.has(r)||(n.add(r),r.then(l,l))})}}function Ge(e,t){var n=t.deletions;if(n!==null)for(var r=0;rl&&(l=u),r&=~o}if(r=l,r=B()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*m2(r/1960))-r,10e?16:e,tt===null)var r=!1;else{if(e=tt,tt=null,Jr=0,Z&6)throw Error(x(331));var l=Z;for(Z|=4,w=e.current;w!==null;){var o=w,u=o.child;if(w.flags&16){var i=o.deletions;if(i!==null){for(var s=0;sB()-zu?wt(e,0):wu|=n),ve(e,t)}function K1(e,t){t===0&&(e.mode&1?(t=ur,ur<<=1,!(ur&130023424)&&(ur=4194304)):t=1);var n=ue();e=be(e,t),e!==null&&(Kn(e,t,n),ve(e,n))}function w2(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),K1(e,n)}function z2(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,l=e.memoizedState;l!==null&&(n=l.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(x(314))}r!==null&&r.delete(t),K1(e,n)}var Q1;Q1=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||ce.current)ae=!0;else{if(!(e.lanes&n)&&!(t.flags&128))return ae=!1,a2(e,t,n);ae=!!(e.flags&131072)}else ae=!1,q&&t.flags&1048576&&e1(t,Er,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Mr(e,t),e=t.pendingProps;var l=Jt(t,le.current);It(t,n),l=mu(null,t,r,e,l,n);var o=Pu();return t.flags|=1,typeof l=="object"&&l!==null&&typeof l.render=="function"&&l.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,de(r)?(o=!0,Sr(t)):o=!1,t.memoizedState=l.state!==null&&l.state!==void 0?l.state:null,cu(t),l.updater=sl,t.stateNode=l,l._reactInternals=t,zo(t,r,e,n),t=Mo(null,t,r,!0,o,n)):(t.tag=0,q&&o&&lu(t),oe(null,t,l,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Mr(e,t),e=t.pendingProps,l=r._init,r=l(r._payload),t.type=r,l=t.tag=X2(r),e=Ye(r,e),l){case 0:t=Xo(null,t,r,e,n);break e;case 1:t=Yi(null,t,r,e,n);break e;case 11:t=Mi(null,t,r,e,n);break e;case 14:t=Gi(null,t,r,Ye(r.type,e),n);break e}throw Error(x(306,r,""))}return t;case 0:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Xo(e,t,r,l,n);case 1:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Yi(e,t,r,l,n);case 3:e:{if(k1(t),e===null)throw Error(x(387));r=t.pendingProps,o=t.memoizedState,l=o.element,u1(e,t),Br(t,r,null,n);var u=t.memoizedState;if(r=u.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:u.cache,pendingSuspenseBoundaries:u.pendingSuspenseBoundaries,transitions:u.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){l=tn(Error(x(423)),t),t=Oi(e,t,r,n,l);break e}else if(r!==l){l=tn(Error(x(424)),t),t=Oi(e,t,r,n,l);break e}else for(he=ot(t.stateNode.containerInfo.firstChild),me=t,q=!0,Ce=null,n=l1(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(_t(),r===l){t=Ae(e,t,n);break e}oe(e,t,r,n)}t=t.child}return t;case 5:return i1(t),e===null&&jo(t),r=t.type,l=t.pendingProps,o=e!==null?e.memoizedProps:null,u=l.children,ho(r,l)?u=null:o!==null&&ho(r,o)&&(t.flags|=32),Z1(e,t),oe(e,t,u,n),t.child;case 6:return e===null&&jo(t),null;case 13:return N1(e,t,n);case 4:return du(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=$t(t,null,r,n):oe(e,t,r,n),t.child;case 11:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Mi(e,t,r,l,n);case 7:return oe(e,t,t.pendingProps,n),t.child;case 8:return oe(e,t,t.pendingProps.children,n),t.child;case 12:return oe(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,l=t.pendingProps,o=t.memoizedProps,u=l.value,N(Rr,r._currentValue),r._currentValue=u,o!==null)if(ke(o.value,u)){if(o.children===l.children&&!ce.current){t=Ae(e,t,n);break e}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var i=o.dependencies;if(i!==null){u=o.child;for(var s=i.firstContext;s!==null;){if(s.context===r){if(o.tag===1){s=Re(-1,n&-n),s.tag=2;var c=o.updateQueue;if(c!==null){c=c.shared;var m=c.pending;m===null?s.next=s:(s.next=m.next,m.next=s),c.pending=s}}o.lanes|=n,s=o.alternate,s!==null&&(s.lanes|=n),go(o.return,n,t),i.lanes|=n;break}s=s.next}}else if(o.tag===10)u=o.type===t.type?null:o.child;else if(o.tag===18){if(u=o.return,u===null)throw Error(x(341));u.lanes|=n,i=u.alternate,i!==null&&(i.lanes|=n),go(u,n,t),u=o.sibling}else u=o.child;if(u!==null)u.return=o;else for(u=o;u!==null;){if(u===t){u=null;break}if(o=u.sibling,o!==null){o.return=u.return,u=o;break}u=u.return}o=u}oe(e,t,l.children,n),t=t.child}return t;case 9:return l=t.type,r=t.pendingProps.children,It(t,n),l=He(l),r=r(l),t.flags|=1,oe(e,t,r,n),t.child;case 14:return r=t.type,l=Ye(r,t.pendingProps),l=Ye(r.type,l),Gi(e,t,r,l,n);case 15:return C1(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Mr(e,t),t.tag=1,de(r)?(e=!0,Sr(t)):e=!1,It(t,n),G1(t,r,l),zo(t,r,l,n),Mo(null,t,r,!0,e,n);case 19:return T1(e,t,n);case 22:return D1(e,t,n)}throw Error(x(156,t.tag))};function J1(e,t){return Hs(e,t)}function H2(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function we(e,t,n,r){return new H2(e,t,n,r)}function Gu(e){return e=e.prototype,!(!e||!e.isReactComponent)}function X2(e){if(typeof e=="function")return Gu(e)?1:0;if(e!=null){if(e=e.$$typeof,e===bo)return 11;if(e===Ao)return 14}return 2}function ft(e,t){var n=e.alternate;return n===null?(n=we(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Or(e,t,n,r,l,o){var u=2;if(r=e,typeof e=="function")Gu(e)&&(u=1);else if(typeof e=="string")u=5;else e:switch(e){case kt:return zt(n.children,l,o,t);case Bo:u=8,l|=8;break;case bl:return e=we(12,n,t,l|2),e.elementType=bl,e.lanes=o,e;case Al:return e=we(13,n,t,l),e.elementType=Al,e.lanes=o,e;case Il:return e=we(19,n,t,l),e.elementType=Il,e.lanes=o,e;case is:return cl(n,l,o,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case os:u=10;break e;case us:u=9;break e;case bo:u=11;break e;case Ao:u=14;break e;case Qe:u=16,r=null;break e}throw Error(x(130,e==null?e:typeof e,""))}return t=we(u,n,t,l),t.elementType=e,t.type=r,t.lanes=o,t}function zt(e,t,n,r){return e=we(7,e,r,t),e.lanes=n,e}function cl(e,t,n,r){return e=we(22,e,r,t),e.elementType=is,e.lanes=n,e.stateNode={isHidden:!1},e}function Rl(e,t,n){return e=we(6,e,null,t),e.lanes=n,e}function Fl(e,t,n){return t=we(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function M2(e,t,n,r,l){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Hl(0),this.expirationTimes=Hl(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Hl(0),this.identifierPrefix=r,this.onRecoverableError=l,this.mutableSourceEagerHydrationData=null}function Yu(e,t,n,r,l,o,u,i,s){return e=new M2(e,t,n,i,s),t===1?(t=1,o===!0&&(t|=8)):t=0,o=we(3,null,null,t),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},cu(o),e}function G2(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(tf)}catch(e){console.error(e)}}tf(),ts.exports=xe;var Z2=ts.exports,nf,Ui=Z2;nf=Ui.createRoot,Ui.hydrateRoot;const k2=()=>{const[e,t]=Cn.useState({dotClass:"is-loading",statusMessage:"Checking status..."}),n="https://status.buildwithfern.com/api/v1/summary",r=5*60*1e3,l=i=>{let s="is-green",c="All systems operational";if(i.ongoing_incidents&&i.ongoing_incidents.length>0){let m=0;for(const h of i.ongoing_incidents){let p=0;h.current_worst_impact==="degraded_performance"?p=1:h.current_worst_impact==="partial_outage"?p=2:h.current_worst_impact==="full_outage"&&(p=3),p>m&&(m=p)}m===3?(s="is-red",c="Service outage"):m===2?(s="is-orange",c="Partial outage"):m===1&&(s="is-yellow",c="Degraded performance")}if(i.in_progress_maintenances&&i.in_progress_maintenances.length>0&&s==="is-green"&&(s="is-blue",c="Maintenance in progress"),i.scheduled_maintenances&&i.scheduled_maintenances.length>0&&s==="is-green"){const m=new Date;let h=!1;for(const p of i.scheduled_maintenances)if((new Date(p.starts_at).getTime()-m.getTime())/(1e3*60*60)<=24){h=!0;break}h&&(s="is-blue",c="Scheduled maintenance soon")}t({dotClass:s,statusMessage:c})},o=async()=>{try{const i=await fetch(n);if(i.ok){const s=await i.json();l(s)}else t({dotClass:"is-red",statusMessage:"Cannot check status"})}catch(i){console.error("Error fetching status:",i),t({dotClass:"is-red",statusMessage:"Cannot check status"})}};Cn.useEffect(()=>{o();const i=setInterval(o,r);return()=>clearInterval(i)},[]);const u=()=>{switch(e.dotClass){case"is-green":return"#00c853";case"is-red":return"#f44336";case"is-orange":return"#ff9800";case"is-blue":return"#2196f3";case"is-yellow":return"#ffc107";case"is-loading":return"#cccccc";default:return"#cccccc"}};return f.jsx("a",{href:"https://status.buildwithfern.com",target:"_blank",rel:"noopener noreferrer",style:{textDecoration:"none",color:"inherit"},children:f.jsxs("div",{id:"fern-status-widget",className:"fern-status-widget",children:[f.jsx("div",{className:`footer_badge-dot ${e.dotClass}`,style:{width:"10px",height:"10px",borderRadius:"50%",marginRight:"8px",position:"relative",display:"inline-block",backgroundColor:u()}}),f.jsx("span",{id:"fern-status-text",className:"fern-status-text",children:e.statusMessage}),f.jsx("style",{children:` +`+o.stack}return{value:e,source:t,stack:l,digest:null}}function Ul(e,t,n){return{value:e,source:null,stack:n??null,digest:t??null}}function Ho(e,t){try{console.error(t.value)}catch(n){setTimeout(function(){throw n})}}var u2=typeof WeakMap=="function"?WeakMap:Map;function Y1(e,t,n){n=Re(-1,n),n.tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Qr||(Qr=!0,No=r),Ho(e,t)},n}function O1(e,t,n){n=Re(-1,n),n.tag=3;var r=e.type.getDerivedStateFromError;if(typeof r=="function"){var l=t.value;n.payload=function(){return r(l)},n.callback=function(){Ho(e,t)}}var o=e.stateNode;return o!==null&&typeof o.componentDidCatch=="function"&&(n.callback=function(){Ho(e,t),typeof r!="function"&&(ut===null?ut=new Set([this]):ut.add(this));var i=t.stack;this.componentDidCatch(t.value,{componentStack:i!==null?i:""})}),n}function zu(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new u2;var l=new Set;r.set(t,l)}else l=r.get(t),l===void 0&&(l=new Set,r.set(t,l));l.has(n)||(l.add(n),e=g2.bind(null,e,t,n),t.then(e,e))}function Hu(e){do{var t;if((t=e.tag===13)&&(t=e.memoizedState,t=t!==null?t.dehydrated!==null:!0),t)return e;e=e.return}while(e!==null);return null}function Xu(e,t,n,r,l){return e.mode&1?(e.flags|=65536,e.lanes=l,e):(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,n.tag===1&&(n.alternate===null?n.tag=17:(t=Re(-1,1),t.tag=2,it(n,t,1))),n.lanes|=1),e)}var s2=Ie.ReactCurrentOwner,ae=!1;function oe(e,t,n,r){t.child=e===null?l1(t,null,n,r):$t(t,e.child,n,r)}function Mu(e,t,n,r,l){n=n.render;var o=t.ref;return It(t,l),r=mi(e,t,n,r,o,l),n=Pi(),e!==null&&!ae?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~l,Ae(e,t,l)):(q&&n&&li(t),t.flags|=1,oe(e,t,r,l),t.child)}function Gu(e,t,n,r,l){if(e===null){var o=n.type;return typeof o=="function"&&!Gi(o)&&o.defaultProps===void 0&&n.compare===null&&n.defaultProps===void 0?(t.tag=15,t.type=o,C1(e,t,o,r,l)):(e=Or(n.type,null,r,t,t.mode,l),e.ref=t.ref,e.return=t,t.child=e)}if(o=e.child,!(e.lanes&l)){var i=o.memoizedProps;if(n=n.compare,n=n!==null?n:qn,n(i,r)&&e.ref===t.ref)return Ae(e,t,l)}return t.flags|=1,e=ft(o,r),e.ref=t.ref,e.return=t,t.child=e}function C1(e,t,n,r,l){if(e!==null){var o=e.memoizedProps;if(qn(o,r)&&e.ref===t.ref)if(ae=!1,t.pendingProps=r=o,(e.lanes&l)!==0)e.flags&131072&&(ae=!0);else return t.lanes=e.lanes,Ae(e,t,l)}return Xo(e,t,n,r,l)}function D1(e,t,n){var r=t.pendingProps,l=r.children,o=e!==null?e.memoizedState:null;if(r.mode==="hidden")if(!(t.mode&1))t.memoizedState={baseLanes:0,cachePool:null,transitions:null},N(Rt,pe),pe|=n;else{if(!(n&1073741824))return e=o!==null?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,N(Rt,pe),pe|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=o!==null?o.baseLanes:n,N(Rt,pe),pe|=r}else o!==null?(r=o.baseLanes|n,t.memoizedState=null):r=n,N(Rt,pe),pe|=r;return oe(e,t,l,n),t.child}function Z1(e,t){var n=t.ref;(e===null&&n!==null||e!==null&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Xo(e,t,n,r,l){var o=de(n)?Ht:le.current;return o=Jt(t,o),It(t,l),n=mi(e,t,n,r,o,l),r=Pi(),e!==null&&!ae?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~l,Ae(e,t,l)):(q&&r&&li(t),t.flags|=1,oe(e,t,n,l),t.child)}function Yu(e,t,n,r,l){if(de(n)){var o=!0;Sr(t)}else o=!1;if(It(t,l),t.stateNode===null)Mr(e,t),G1(t,n,r),zo(t,n,r,l),r=!0;else if(e===null){var i=t.stateNode,u=t.memoizedProps;i.props=u;var s=i.context,c=n.contextType;typeof c=="object"&&c!==null?c=He(c):(c=de(n)?Ht:le.current,c=Jt(t,c));var m=n.getDerivedStateFromProps,h=typeof m=="function"||typeof i.getSnapshotBeforeUpdate=="function";h||typeof i.UNSAFE_componentWillReceiveProps!="function"&&typeof i.componentWillReceiveProps!="function"||(u!==r||s!==c)&&wu(t,i,r,c),Je=!1;var p=t.memoizedState;i.state=p,Br(t,r,i,l),s=t.memoizedState,u!==r||p!==s||ce.current||Je?(typeof m=="function"&&(wo(t,n,m,r),s=t.memoizedState),(u=Je||gu(t,n,u,r,p,s,c))?(h||typeof i.UNSAFE_componentWillMount!="function"&&typeof i.componentWillMount!="function"||(typeof i.componentWillMount=="function"&&i.componentWillMount(),typeof i.UNSAFE_componentWillMount=="function"&&i.UNSAFE_componentWillMount()),typeof i.componentDidMount=="function"&&(t.flags|=4194308)):(typeof i.componentDidMount=="function"&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=s),i.props=r,i.state=s,i.context=c,r=u):(typeof i.componentDidMount=="function"&&(t.flags|=4194308),r=!1)}else{i=t.stateNode,i1(e,t),u=t.memoizedProps,c=t.type===t.elementType?u:Ye(t.type,u),i.props=c,h=t.pendingProps,p=i.context,s=n.contextType,typeof s=="object"&&s!==null?s=He(s):(s=de(n)?Ht:le.current,s=Jt(t,s));var y=n.getDerivedStateFromProps;(m=typeof y=="function"||typeof i.getSnapshotBeforeUpdate=="function")||typeof i.UNSAFE_componentWillReceiveProps!="function"&&typeof i.componentWillReceiveProps!="function"||(u!==h||p!==s)&&wu(t,i,r,s),Je=!1,p=t.memoizedState,i.state=p,Br(t,r,i,l);var j=t.memoizedState;u!==h||p!==j||ce.current||Je?(typeof y=="function"&&(wo(t,n,y,r),j=t.memoizedState),(c=Je||gu(t,n,c,r,p,j,s)||!1)?(m||typeof i.UNSAFE_componentWillUpdate!="function"&&typeof i.componentWillUpdate!="function"||(typeof i.componentWillUpdate=="function"&&i.componentWillUpdate(r,j,s),typeof i.UNSAFE_componentWillUpdate=="function"&&i.UNSAFE_componentWillUpdate(r,j,s)),typeof i.componentDidUpdate=="function"&&(t.flags|=4),typeof i.getSnapshotBeforeUpdate=="function"&&(t.flags|=1024)):(typeof i.componentDidUpdate!="function"||u===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),typeof i.getSnapshotBeforeUpdate!="function"||u===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=j),i.props=r,i.state=j,i.context=s,r=c):(typeof i.componentDidUpdate!="function"||u===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),typeof i.getSnapshotBeforeUpdate!="function"||u===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),r=!1)}return Mo(e,t,n,r,o,l)}function Mo(e,t,n,r,l,o){Z1(e,t);var i=(t.flags&128)!==0;if(!r&&!i)return l&&vu(t,n,!1),Ae(e,t,o);r=t.stateNode,s2.current=t;var u=i&&typeof n.getDerivedStateFromError!="function"?null:r.render();return t.flags|=1,e!==null&&i?(t.child=$t(t,e.child,null,o),t.child=$t(t,null,u,o)):oe(e,t,u,o),t.memoizedState=r.state,l&&vu(t,n,!0),t.child}function k1(e){var t=e.stateNode;t.pendingContext?du(e,t.pendingContext,t.pendingContext!==t.context):t.context&&du(e,t.context,!1),di(e,t.containerInfo)}function Ou(e,t,n,r,l){return _t(),ii(l),t.flags|=256,oe(e,t,n,r),t.child}var Go={dehydrated:null,treeContext:null,retryLane:0};function Yo(e){return{baseLanes:e,cachePool:null,transitions:null}}function N1(e,t,n){var r=t.pendingProps,l=W.current,o=!1,i=(t.flags&128)!==0,u;if((u=i)||(u=e!==null&&e.memoizedState===null?!1:(l&2)!==0),u?(o=!0,t.flags&=-129):(e===null||e.memoizedState!==null)&&(l|=1),N(W,l&1),e===null)return jo(t),e=t.memoizedState,e!==null&&(e=e.dehydrated,e!==null)?(t.mode&1?e.data==="$!"?t.lanes=8:t.lanes=1073741824:t.lanes=1,null):(i=r.children,e=r.fallback,o?(r=t.mode,o=t.child,i={mode:"hidden",children:i},!(r&1)&&o!==null?(o.childLanes=0,o.pendingProps=i):o=cl(i,r,0,null),e=zt(e,r,n,null),o.return=t,e.return=t,o.sibling=e,t.child=o,t.child.memoizedState=Yo(n),t.memoizedState=Go,e):ji(t,i));if(l=e.memoizedState,l!==null&&(u=l.dehydrated,u!==null))return f2(e,t,i,r,u,l,n);if(o){o=r.fallback,i=t.mode,l=e.child,u=l.sibling;var s={mode:"hidden",children:r.children};return!(i&1)&&t.child!==l?(r=t.child,r.childLanes=0,r.pendingProps=s,t.deletions=null):(r=ft(l,s),r.subtreeFlags=l.subtreeFlags&14680064),u!==null?o=ft(u,o):(o=zt(o,i,n,null),o.flags|=2),o.return=t,r.return=t,r.sibling=o,t.child=r,r=o,o=t.child,i=e.child.memoizedState,i=i===null?Yo(n):{baseLanes:i.baseLanes|n,cachePool:null,transitions:i.transitions},o.memoizedState=i,o.childLanes=e.childLanes&~n,t.memoizedState=Go,r}return o=e.child,e=o.sibling,r=ft(o,{mode:"visible",children:r.children}),!(t.mode&1)&&(r.lanes=n),r.return=t,r.sibling=null,e!==null&&(n=t.deletions,n===null?(t.deletions=[e],t.flags|=16):n.push(e)),t.child=r,t.memoizedState=null,r}function ji(e,t){return t=cl({mode:"visible",children:t},e.mode,0,null),t.return=e,e.child=t}function pr(e,t,n,r){return r!==null&&ii(r),$t(t,e.child,null,n),e=ji(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function f2(e,t,n,r,l,o,i){if(n)return t.flags&256?(t.flags&=-257,r=Ul(Error(x(422))),pr(e,t,i,r)):t.memoizedState!==null?(t.child=e.child,t.flags|=128,null):(o=r.fallback,l=t.mode,r=cl({mode:"visible",children:r.children},l,0,null),o=zt(o,l,i,null),o.flags|=2,r.return=t,o.return=t,r.sibling=o,t.child=r,t.mode&1&&$t(t,e.child,null,i),t.child.memoizedState=Yo(i),t.memoizedState=Go,o);if(!(t.mode&1))return pr(e,t,i,null);if(l.data==="$!"){if(r=l.nextSibling&&l.nextSibling.dataset,r)var u=r.dgst;return r=u,o=Error(x(419)),r=Ul(o,r,void 0),pr(e,t,i,r)}if(u=(i&e.childLanes)!==0,ae||u){if(r=J,r!==null){switch(i&-i){case 4:l=2;break;case 16:l=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:l=32;break;case 536870912:l=268435456;break;default:l=0}l=l&(r.suspendedLanes|i)?0:l,l!==0&&l!==o.retryLane&&(o.retryLane=l,be(e,l),Ze(r,e,l,-1))}return Mi(),r=Ul(Error(x(421))),pr(e,t,i,r)}return l.data==="$?"?(t.flags|=128,t.child=e.child,t=w2.bind(null,e),l._reactRetry=t,null):(e=o.treeContext,he=ot(l.nextSibling),me=t,q=!0,Ce=null,e!==null&&(je[ge++]=Ue,je[ge++]=Ee,je[ge++]=Xt,Ue=e.id,Ee=e.overflow,Xt=t),t=ji(t,r.children),t.flags|=4096,t)}function Cu(e,t,n){e.lanes|=t;var r=e.alternate;r!==null&&(r.lanes|=t),go(e.return,t,n)}function El(e,t,n,r,l){var o=e.memoizedState;o===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:l}:(o.isBackwards=t,o.rendering=null,o.renderingStartTime=0,o.last=r,o.tail=n,o.tailMode=l)}function T1(e,t,n){var r=t.pendingProps,l=r.revealOrder,o=r.tail;if(oe(e,t,r.children,n),r=W.current,r&2)r=r&1|2,t.flags|=128;else{if(e!==null&&e.flags&128)e:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&Cu(e,n,t);else if(e.tag===19)Cu(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;e.sibling===null;){if(e.return===null||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(N(W,r),!(t.mode&1))t.memoizedState=null;else switch(l){case"forwards":for(n=t.child,l=null;n!==null;)e=n.alternate,e!==null&&br(e)===null&&(l=n),n=n.sibling;n=l,n===null?(l=t.child,t.child=null):(l=n.sibling,n.sibling=null),El(t,!1,l,n,o);break;case"backwards":for(n=null,l=t.child,t.child=null;l!==null;){if(e=l.alternate,e!==null&&br(e)===null){t.child=l;break}e=l.sibling,l.sibling=n,n=l,l=e}El(t,!0,n,null,o);break;case"together":El(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Mr(e,t){!(t.mode&1)&&e!==null&&(e.alternate=null,t.alternate=null,t.flags|=2)}function Ae(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),Gt|=t.lanes,!(n&t.childLanes))return null;if(e!==null&&t.child!==e.child)throw Error(x(153));if(t.child!==null){for(e=t.child,n=ft(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=ft(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function a2(e,t,n){switch(t.tag){case 3:k1(t),_t();break;case 5:u1(t);break;case 1:de(t.type)&&Sr(t);break;case 4:di(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,l=t.memoizedProps.value;N(Rr,r._currentValue),r._currentValue=l;break;case 13:if(r=t.memoizedState,r!==null)return r.dehydrated!==null?(N(W,W.current&1),t.flags|=128,null):n&t.child.childLanes?N1(e,t,n):(N(W,W.current&1),e=Ae(e,t,n),e!==null?e.sibling:null);N(W,W.current&1);break;case 19:if(r=(n&t.childLanes)!==0,e.flags&128){if(r)return T1(e,t,n);t.flags|=128}if(l=t.memoizedState,l!==null&&(l.rendering=null,l.tail=null,l.lastEffect=null),N(W,W.current),r)break;return null;case 22:case 23:return t.lanes=0,D1(e,t,n)}return Ae(e,t,n)}var V1,Oo,L1,q1;V1=function(e,t){for(var n=t.child;n!==null;){if(n.tag===5||n.tag===6)e.appendChild(n.stateNode);else if(n.tag!==4&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===t)break;for(;n.sibling===null;){if(n.return===null||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}};Oo=function(){};L1=function(e,t,n,r){var l=e.memoizedProps;if(l!==r){e=t.stateNode,gt(qe.current);var o=null;switch(n){case"input":l=Ql(e,l),r=Ql(e,r),o=[];break;case"select":l=U({},l,{value:void 0}),r=U({},r,{value:void 0}),o=[];break;case"textarea":l=$l(e,l),r=$l(e,r),o=[];break;default:typeof l.onClick!="function"&&typeof r.onClick=="function"&&(e.onclick=qr)}to(n,r);var i;n=null;for(c in l)if(!r.hasOwnProperty(c)&&l.hasOwnProperty(c)&&l[c]!=null)if(c==="style"){var u=l[c];for(i in u)u.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else c!=="dangerouslySetInnerHTML"&&c!=="children"&&c!=="suppressContentEditableWarning"&&c!=="suppressHydrationWarning"&&c!=="autoFocus"&&(Dn.hasOwnProperty(c)?o||(o=[]):(o=o||[]).push(c,null));for(c in r){var s=r[c];if(u=l!=null?l[c]:void 0,r.hasOwnProperty(c)&&s!==u&&(s!=null||u!=null))if(c==="style")if(u){for(i in u)!u.hasOwnProperty(i)||s&&s.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in s)s.hasOwnProperty(i)&&u[i]!==s[i]&&(n||(n={}),n[i]=s[i])}else n||(o||(o=[]),o.push(c,n)),n=s;else c==="dangerouslySetInnerHTML"?(s=s?s.__html:void 0,u=u?u.__html:void 0,s!=null&&u!==s&&(o=o||[]).push(c,s)):c==="children"?typeof s!="string"&&typeof s!="number"||(o=o||[]).push(c,""+s):c!=="suppressContentEditableWarning"&&c!=="suppressHydrationWarning"&&(Dn.hasOwnProperty(c)?(s!=null&&c==="onScroll"&&T("scroll",e),o||u===s||(o=[])):(o=o||[]).push(c,s))}n&&(o=o||[]).push("style",n);var c=o;(t.updateQueue=c)&&(t.flags|=4)}};q1=function(e,t,n,r){n!==r&&(t.flags|=4)};function hn(e,t){if(!q)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;t!==null;)t.alternate!==null&&(n=t),t=t.sibling;n===null?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;n!==null;)n.alternate!==null&&(r=n),n=n.sibling;r===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:r.sibling=null}}function ne(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,r=0;if(t)for(var l=e.child;l!==null;)n|=l.lanes|l.childLanes,r|=l.subtreeFlags&14680064,r|=l.flags&14680064,l.return=e,l=l.sibling;else for(l=e.child;l!==null;)n|=l.lanes|l.childLanes,r|=l.subtreeFlags,r|=l.flags,l.return=e,l=l.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function c2(e,t,n){var r=t.pendingProps;switch(oi(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return ne(t),null;case 1:return de(t.type)&&Wr(),ne(t),null;case 3:return r=t.stateNode,en(),V(ce),V(le),pi(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),(e===null||e.child===null)&&(dr(t)?t.flags|=4:e===null||e.memoizedState.isDehydrated&&!(t.flags&256)||(t.flags|=1024,Ce!==null&&(Lo(Ce),Ce=null))),Oo(e,t),ne(t),null;case 5:vi(t);var l=gt(Rn.current);if(n=t.type,e!==null&&t.stateNode!=null)L1(e,t,n,r,l),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(t.stateNode===null)throw Error(x(166));return ne(t),null}if(e=gt(qe.current),dr(t)){r=t.stateNode,n=t.type;var o=t.memoizedProps;switch(r[Ve]=t,r[Un]=o,e=(t.mode&1)!==0,n){case"dialog":T("cancel",r),T("close",r);break;case"iframe":case"object":case"embed":T("load",r);break;case"video":case"audio":for(l=0;l<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=i.createElement(n,{is:r.is}):(e=i.createElement(n),n==="select"&&(i=e,r.multiple?i.multiple=!0:r.size&&(i.size=r.size))):e=i.createElementNS(e,n),e[Ve]=t,e[Un]=r,V1(e,t,!1,!1),t.stateNode=e;e:{switch(i=no(n,r),n){case"dialog":T("cancel",e),T("close",e),l=r;break;case"iframe":case"object":case"embed":T("load",e),l=r;break;case"video":case"audio":for(l=0;lnn&&(t.flags|=128,r=!0,hn(o,!1),t.lanes=4194304)}else{if(!r)if(e=br(i),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),hn(o,!0),o.tail===null&&o.tailMode==="hidden"&&!i.alternate&&!q)return ne(t),null}else 2*B()-o.renderingStartTime>nn&&n!==1073741824&&(t.flags|=128,r=!0,hn(o,!1),t.lanes=4194304);o.isBackwards?(i.sibling=t.child,t.child=i):(n=o.last,n!==null?n.sibling=i:t.child=i,o.last=i)}return o.tail!==null?(t=o.tail,o.rendering=t,o.tail=t.sibling,o.renderingStartTime=B(),t.sibling=null,n=W.current,N(W,r?n&1|2:n&1),t):(ne(t),null);case 22:case 23:return Xi(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&t.mode&1?pe&1073741824&&(ne(t),t.subtreeFlags&6&&(t.flags|=8192)):ne(t),null;case 24:return null;case 25:return null}throw Error(x(156,t.tag))}function d2(e,t){switch(oi(t),t.tag){case 1:return de(t.type)&&Wr(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return en(),V(ce),V(le),pi(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 5:return vi(t),null;case 13:if(V(W),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(x(340));_t()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return V(W),null;case 4:return en(),null;case 10:return fi(t.type._context),null;case 22:case 23:return Xi(),null;case 24:return null;default:return null}}var hr=!1,re=!1,v2=typeof WeakSet=="function"?WeakSet:Set,w=null;function Et(e,t){var n=e.ref;if(n!==null)if(typeof n=="function")try{n(null)}catch(r){E(e,t,r)}else n.current=null}function Co(e,t,n){try{n()}catch(r){E(e,t,r)}}var Du=!1;function p2(e,t){if(vo=Tr,e=Rs(),ri(e)){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var l=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break e}var i=0,u=-1,s=-1,c=0,m=0,h=e,p=null;t:for(;;){for(var y;h!==n||l!==0&&h.nodeType!==3||(u=i+l),h!==o||r!==0&&h.nodeType!==3||(s=i+r),h.nodeType===3&&(i+=h.nodeValue.length),(y=h.firstChild)!==null;)p=h,h=y;for(;;){if(h===e)break t;if(p===n&&++c===l&&(u=i),p===o&&++m===r&&(s=i),(y=h.nextSibling)!==null)break;h=p,p=h.parentNode}h=y}n=u===-1||s===-1?null:{start:u,end:s}}else n=null}n=n||{start:0,end:0}}else n=null;for(po={focusedElem:e,selectionRange:n},Tr=!1,w=t;w!==null;)if(t=w,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,w=e;else for(;w!==null;){t=w;try{var j=t.alternate;if(t.flags&1024)switch(t.tag){case 0:case 11:case 15:break;case 1:if(j!==null){var g=j.memoizedProps,L=j.memoizedState,d=t.stateNode,a=d.getSnapshotBeforeUpdate(t.elementType===t.type?g:Ye(t.type,g),L);d.__reactInternalSnapshotBeforeUpdate=a}break;case 3:var v=t.stateNode.containerInfo;v.nodeType===1?v.textContent="":v.nodeType===9&&v.documentElement&&v.removeChild(v.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(x(163))}}catch(P){E(t,t.return,P)}if(e=t.sibling,e!==null){e.return=t.return,w=e;break}w=t.return}return j=Du,Du=!1,j}function Gn(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var l=r=r.next;do{if((l.tag&e)===e){var o=l.destroy;l.destroy=void 0,o!==void 0&&Co(t,n,o)}l=l.next}while(l!==r)}}function fl(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Do(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t=="function"?t(e):t.current=e}}function W1(e){var t=e.alternate;t!==null&&(e.alternate=null,W1(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[Ve],delete t[Un],delete t[Po],delete t[Qa],delete t[Ja])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function S1(e){return e.tag===5||e.tag===3||e.tag===4}function Zu(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||S1(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Zo(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=qr));else if(r!==4&&(e=e.child,e!==null))for(Zo(e,t,n),e=e.sibling;e!==null;)Zo(e,t,n),e=e.sibling}function ko(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(ko(e,t,n),e=e.sibling;e!==null;)ko(e,t,n),e=e.sibling}var _=null,Oe=!1;function Ke(e,t,n){for(n=n.child;n!==null;)U1(e,t,n),n=n.sibling}function U1(e,t,n){if(Le&&typeof Le.onCommitFiberUnmount=="function")try{Le.onCommitFiberUnmount(tl,n)}catch{}switch(n.tag){case 5:re||Et(n,t);case 6:var r=_,l=Oe;_=null,Ke(e,t,n),_=r,Oe=l,_!==null&&(Oe?(e=_,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):_.removeChild(n.stateNode));break;case 18:_!==null&&(Oe?(e=_,n=n.stateNode,e.nodeType===8?Tl(e.parentNode,n):e.nodeType===1&&Tl(e,n),Vn(e)):Tl(_,n.stateNode));break;case 4:r=_,l=Oe,_=n.stateNode.containerInfo,Oe=!0,Ke(e,t,n),_=r,Oe=l;break;case 0:case 11:case 14:case 15:if(!re&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){l=r=r.next;do{var o=l,i=o.destroy;o=o.tag,i!==void 0&&(o&2||o&4)&&Co(n,t,i),l=l.next}while(l!==r)}Ke(e,t,n);break;case 1:if(!re&&(Et(n,t),r=n.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(u){E(n,t,u)}Ke(e,t,n);break;case 21:Ke(e,t,n);break;case 22:n.mode&1?(re=(r=re)||n.memoizedState!==null,Ke(e,t,n),re=r):Ke(e,t,n);break;default:Ke(e,t,n)}}function ku(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new v2),t.forEach(function(r){var l=z2.bind(null,e,r);n.has(r)||(n.add(r),r.then(l,l))})}}function Ge(e,t){var n=t.deletions;if(n!==null)for(var r=0;rl&&(l=i),r&=~o}if(r=l,r=B()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*m2(r/1960))-r,10e?16:e,tt===null)var r=!1;else{if(e=tt,tt=null,Jr=0,Z&6)throw Error(x(331));var l=Z;for(Z|=4,w=e.current;w!==null;){var o=w,i=o.child;if(w.flags&16){var u=o.deletions;if(u!==null){for(var s=0;sB()-zi?wt(e,0):wi|=n),ve(e,t)}function K1(e,t){t===0&&(e.mode&1?(t=ir,ir<<=1,!(ir&130023424)&&(ir=4194304)):t=1);var n=ie();e=be(e,t),e!==null&&(Kn(e,t,n),ve(e,n))}function w2(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),K1(e,n)}function z2(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,l=e.memoizedState;l!==null&&(n=l.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(x(314))}r!==null&&r.delete(t),K1(e,n)}var Q1;Q1=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||ce.current)ae=!0;else{if(!(e.lanes&n)&&!(t.flags&128))return ae=!1,a2(e,t,n);ae=!!(e.flags&131072)}else ae=!1,q&&t.flags&1048576&&e1(t,Er,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Mr(e,t),e=t.pendingProps;var l=Jt(t,le.current);It(t,n),l=mi(null,t,r,e,l,n);var o=Pi();return t.flags|=1,typeof l=="object"&&l!==null&&typeof l.render=="function"&&l.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,de(r)?(o=!0,Sr(t)):o=!1,t.memoizedState=l.state!==null&&l.state!==void 0?l.state:null,ci(t),l.updater=sl,t.stateNode=l,l._reactInternals=t,zo(t,r,e,n),t=Mo(null,t,r,!0,o,n)):(t.tag=0,q&&o&&li(t),oe(null,t,l,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Mr(e,t),e=t.pendingProps,l=r._init,r=l(r._payload),t.type=r,l=t.tag=X2(r),e=Ye(r,e),l){case 0:t=Xo(null,t,r,e,n);break e;case 1:t=Yu(null,t,r,e,n);break e;case 11:t=Mu(null,t,r,e,n);break e;case 14:t=Gu(null,t,r,Ye(r.type,e),n);break e}throw Error(x(306,r,""))}return t;case 0:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Xo(e,t,r,l,n);case 1:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Yu(e,t,r,l,n);case 3:e:{if(k1(t),e===null)throw Error(x(387));r=t.pendingProps,o=t.memoizedState,l=o.element,i1(e,t),Br(t,r,null,n);var i=t.memoizedState;if(r=i.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:i.cache,pendingSuspenseBoundaries:i.pendingSuspenseBoundaries,transitions:i.transitions},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){l=tn(Error(x(423)),t),t=Ou(e,t,r,n,l);break e}else if(r!==l){l=tn(Error(x(424)),t),t=Ou(e,t,r,n,l);break e}else for(he=ot(t.stateNode.containerInfo.firstChild),me=t,q=!0,Ce=null,n=l1(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(_t(),r===l){t=Ae(e,t,n);break e}oe(e,t,r,n)}t=t.child}return t;case 5:return u1(t),e===null&&jo(t),r=t.type,l=t.pendingProps,o=e!==null?e.memoizedProps:null,i=l.children,ho(r,l)?i=null:o!==null&&ho(r,o)&&(t.flags|=32),Z1(e,t),oe(e,t,i,n),t.child;case 6:return e===null&&jo(t),null;case 13:return N1(e,t,n);case 4:return di(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=$t(t,null,r,n):oe(e,t,r,n),t.child;case 11:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Mu(e,t,r,l,n);case 7:return oe(e,t,t.pendingProps,n),t.child;case 8:return oe(e,t,t.pendingProps.children,n),t.child;case 12:return oe(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,l=t.pendingProps,o=t.memoizedProps,i=l.value,N(Rr,r._currentValue),r._currentValue=i,o!==null)if(ke(o.value,i)){if(o.children===l.children&&!ce.current){t=Ae(e,t,n);break e}}else for(o=t.child,o!==null&&(o.return=t);o!==null;){var u=o.dependencies;if(u!==null){i=o.child;for(var s=u.firstContext;s!==null;){if(s.context===r){if(o.tag===1){s=Re(-1,n&-n),s.tag=2;var c=o.updateQueue;if(c!==null){c=c.shared;var m=c.pending;m===null?s.next=s:(s.next=m.next,m.next=s),c.pending=s}}o.lanes|=n,s=o.alternate,s!==null&&(s.lanes|=n),go(o.return,n,t),u.lanes|=n;break}s=s.next}}else if(o.tag===10)i=o.type===t.type?null:o.child;else if(o.tag===18){if(i=o.return,i===null)throw Error(x(341));i.lanes|=n,u=i.alternate,u!==null&&(u.lanes|=n),go(i,n,t),i=o.sibling}else i=o.child;if(i!==null)i.return=o;else for(i=o;i!==null;){if(i===t){i=null;break}if(o=i.sibling,o!==null){o.return=i.return,i=o;break}i=i.return}o=i}oe(e,t,l.children,n),t=t.child}return t;case 9:return l=t.type,r=t.pendingProps.children,It(t,n),l=He(l),r=r(l),t.flags|=1,oe(e,t,r,n),t.child;case 14:return r=t.type,l=Ye(r,t.pendingProps),l=Ye(r.type,l),Gu(e,t,r,l,n);case 15:return C1(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,l=t.pendingProps,l=t.elementType===r?l:Ye(r,l),Mr(e,t),t.tag=1,de(r)?(e=!0,Sr(t)):e=!1,It(t,n),G1(t,r,l),zo(t,r,l,n),Mo(null,t,r,!0,e,n);case 19:return T1(e,t,n);case 22:return D1(e,t,n)}throw Error(x(156,t.tag))};function J1(e,t){return Hs(e,t)}function H2(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function we(e,t,n,r){return new H2(e,t,n,r)}function Gi(e){return e=e.prototype,!(!e||!e.isReactComponent)}function X2(e){if(typeof e=="function")return Gi(e)?1:0;if(e!=null){if(e=e.$$typeof,e===bo)return 11;if(e===Ao)return 14}return 2}function ft(e,t){var n=e.alternate;return n===null?(n=we(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Or(e,t,n,r,l,o){var i=2;if(r=e,typeof e=="function")Gi(e)&&(i=1);else if(typeof e=="string")i=5;else e:switch(e){case kt:return zt(n.children,l,o,t);case Bo:i=8,l|=8;break;case bl:return e=we(12,n,t,l|2),e.elementType=bl,e.lanes=o,e;case Al:return e=we(13,n,t,l),e.elementType=Al,e.lanes=o,e;case Il:return e=we(19,n,t,l),e.elementType=Il,e.lanes=o,e;case us:return cl(n,l,o,t);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case os:i=10;break e;case is:i=9;break e;case bo:i=11;break e;case Ao:i=14;break e;case Qe:i=16,r=null;break e}throw Error(x(130,e==null?e:typeof e,""))}return t=we(i,n,t,l),t.elementType=e,t.type=r,t.lanes=o,t}function zt(e,t,n,r){return e=we(7,e,r,t),e.lanes=n,e}function cl(e,t,n,r){return e=we(22,e,r,t),e.elementType=us,e.lanes=n,e.stateNode={isHidden:!1},e}function Rl(e,t,n){return e=we(6,e,null,t),e.lanes=n,e}function Fl(e,t,n){return t=we(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function M2(e,t,n,r,l){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Hl(0),this.expirationTimes=Hl(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Hl(0),this.identifierPrefix=r,this.onRecoverableError=l,this.mutableSourceEagerHydrationData=null}function Yi(e,t,n,r,l,o,i,u,s){return e=new M2(e,t,n,u,s),t===1?(t=1,o===!0&&(t|=8)):t=0,o=we(3,null,null,t),e.current=o,o.stateNode=e,o.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},ci(o),e}function G2(e,t,n){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(tf)}catch(e){console.error(e)}}tf(),ts.exports=xe;var Z2=ts.exports,nf,Uu=Z2;nf=Uu.createRoot,Uu.hydrateRoot;const k2=()=>{const[e,t]=Cn.useState({dotClass:"is-loading",statusMessage:"Checking status..."}),n="https://status.buildwithfern.com/api/v1/summary",r=5*60*1e3,l=u=>{let s="is-green",c="All systems operational";if(u.ongoing_incidents&&u.ongoing_incidents.length>0){let m=0;for(const h of u.ongoing_incidents){let p=0;h.current_worst_impact==="degraded_performance"?p=1:h.current_worst_impact==="partial_outage"?p=2:h.current_worst_impact==="full_outage"&&(p=3),p>m&&(m=p)}m===3?(s="is-red",c="Service outage"):m===2?(s="is-orange",c="Partial outage"):m===1&&(s="is-yellow",c="Degraded performance")}if(u.in_progress_maintenances&&u.in_progress_maintenances.length>0&&s==="is-green"&&(s="is-blue",c="Maintenance in progress"),u.scheduled_maintenances&&u.scheduled_maintenances.length>0&&s==="is-green"){const m=new Date;let h=!1;for(const p of u.scheduled_maintenances)if((new Date(p.starts_at).getTime()-m.getTime())/(1e3*60*60)<=24){h=!0;break}h&&(s="is-blue",c="Scheduled maintenance soon")}t({dotClass:s,statusMessage:c})},o=async()=>{try{const u=await fetch(n);if(u.ok){const s=await u.json();l(s)}else t({dotClass:"is-red",statusMessage:"Cannot check status"})}catch(u){console.error("Error fetching status:",u),t({dotClass:"is-red",statusMessage:"Cannot check status"})}};Cn.useEffect(()=>{o();const u=setInterval(o,r);return()=>clearInterval(u)},[]);const i=()=>{switch(e.dotClass){case"is-green":return"#00c853";case"is-red":return"#f44336";case"is-orange":return"#ff9800";case"is-blue":return"#2196f3";case"is-yellow":return"#ffc107";case"is-loading":return"#cccccc";default:return"#cccccc"}};return f.jsx("a",{href:"https://status.buildwithfern.com",target:"_blank",rel:"noopener noreferrer",style:{textDecoration:"none",color:"inherit"},children:f.jsxs("div",{id:"fern-status-widget",className:"fern-status-widget",children:[f.jsx("div",{className:`footer_badge-dot ${e.dotClass}`,style:{width:"10px",height:"10px",borderRadius:"50%",marginRight:"8px",position:"relative",display:"inline-block",backgroundColor:i()}}),f.jsx("span",{id:"fern-status-text",className:"fern-status-text",children:e.statusMessage}),f.jsx("style",{children:` .fern-status-widget { display: flex; align-items: center; @@ -196,6 +196,7 @@ Error generating stack: `+o.message+` display: flex; gap: 2rem; flex: 1; + max-width: 40rem; } .footer-column { @@ -316,4 +317,4 @@ Error generating stack: `+o.message+` min-width: 200px; } } - `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/learn/ask-fern",className:"footer-link",children:"Ask Fern"}),f.jsx("a",{href:"/learn/openapi/overview",className:"footer-link",children:"OpenAPI"}),f.jsx("a",{href:"/learn/fern-def/overview",className:"footer-link",children:"Fern Definition"}),f.jsx("a",{href:"/learn/cli-api-reference/cli-reference/overview",className:"footer-link",children:"CLI Reference"}),f.jsx("a",{href:"/learn/cli-api-reference/api-reference/overview",className:"footer-link",children:"API Reference"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Ei="fern-footer",Ri=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Ei);n||(n=document.createElement("div"),n.setAttribute("id",Ei),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ri(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ri()}).observe(document.body,{childList:!0,subtree:!0})}); + `}),f.jsxs("footer",{className:"footer",children:[f.jsxs("div",{className:"footer-top",children:[f.jsxs("a",{className:"footer-logo",href:"https://buildwithfern.com",children:[f.jsx(N2,{className:"footer-logo-img dark:hidden"}),f.jsx(T2,{className:"footer-logo-img hidden dark:block"}),f.jsx(V2,{className:"footer-logo-frame dark:hidden"}),f.jsx(L2,{className:"footer-logo-frame hidden dark:block"})]}),f.jsxs("div",{className:"footer-status",children:[f.jsx(k2,{}),f.jsxs("a",{className:"soc2-badge",href:"https://security.buildwithfern.com/",children:[f.jsx(F2,{className:"soc2-badge-img"}),f.jsx("span",{className:"status-text",children:"Soc 2 Type II"})]})]})]}),f.jsxs("div",{className:"footer-links",children:[f.jsx("div",{className:"footer-bottom-text",children:" © 2025 Fern • Located in Brooklyn, NY "}),f.jsxs("div",{className:"footer-columns",children:[f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Documentation"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"/learn/sdks/overview/introduction",className:"footer-link",children:"SDKs"}),f.jsx("a",{href:"/learn/docs/getting-started/overview",className:"footer-link",children:"Docs"}),f.jsx("a",{href:"/learn/ask-fern",className:"footer-link",children:"Ask Fern"}),f.jsx("a",{href:"/learn/openapi/overview",className:"footer-link",children:"OpenAPI"}),f.jsx("a",{href:"/learn/fern-def/overview",className:"footer-link",children:"Fern Definition"}),f.jsx("a",{href:"/learn/cli-api-reference/cli-reference/overview",className:"footer-link",children:"CLI Reference"}),f.jsx("a",{href:"/learn/cli-api-reference/api-reference/overview",className:"footer-link",children:"API Reference"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Resources"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://buildwithfern.com/blog",className:"footer-link",children:"Blog"}),f.jsx("a",{href:"https://buildwithfern.com/learn/v2/home#help",className:"footer-link",children:"Support"}),f.jsx("a",{href:"https://buildwithfern.com/pricing",className:"footer-link",children:"Pricing"}),f.jsx("a",{href:"https://buildwithfern.com/slack",className:"footer-link",children:"Slack"})]})]}),f.jsxs("div",{className:"footer-column",children:[f.jsx("h4",{className:"footer-column-title",children:"Company"}),f.jsxs("div",{className:"footer-column-links",children:[f.jsx("a",{href:"https://brandfetch.com/buildwithfern.com",className:"footer-link",children:"Brand Kit"}),f.jsx("a",{href:"https://buildwithfern.com/privacy-policy",className:"footer-link",children:"Privacy Policy"}),f.jsx("a",{href:"https://buildwithfern.com/terms-of-service",className:"footer-link",children:"Terms of Service"})]})]}),f.jsxs("div",{className:"footer-column-socials",children:[f.jsxs("a",{href:"https://github.com/fern-api/fern",className:"footer-link",children:[f.jsx(q2,{className:"footer-social-icon dark:hidden"}),f.jsx(W2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://x.com/buildwithfern",className:"footer-link",children:[f.jsx(S2,{className:"footer-social-icon dark:hidden"}),f.jsx(U2,{className:"footer-social-icon hidden dark:block"})]}),f.jsxs("a",{href:"https://www.linkedin.com/company/buildwithfern",className:"footer-link",children:[f.jsx(E2,{className:"footer-social-icon dark:hidden"}),f.jsx(R2,{className:"footer-social-icon hidden dark:block"})]})]})]})]})]})]}),Eu="fern-footer",Ru=async()=>{if(!document.getElementById("footer")){const t=document.createElement("div");t.setAttribute("id","fern-footer-wrapper"),t.setAttribute("data-react-component","true");let n=document.getElementById(Eu);n||(n=document.createElement("div"),n.setAttribute("id",Eu),document.body.appendChild(n)),n.insertBefore(t,n.firstChild),nf(t).render(f.jsx(gf.StrictMode,{children:f.jsx(B2,{})})),n&&(n.style.display="block")}};window.addEventListener("load",async()=>{await Ru(),new MutationObserver(async e=>{e.some(n=>n.type==="childList"&&!document.getElementById("fern-footer-wrapper"))&&await Ru()}).observe(document.body,{childList:!0,subtree:!0})}); diff --git a/footer/src/FernFooter.tsx b/footer/src/FernFooter.tsx index 865f6a89d..fd0f2714a 100644 --- a/footer/src/FernFooter.tsx +++ b/footer/src/FernFooter.tsx @@ -119,6 +119,7 @@ export const FernFooter: React.FC = () => { display: flex; gap: 2rem; flex: 1; + max-width: 40rem; } .footer-column { From 83037cce78de3b248c3cee0b7bed1343ab1cc60a Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 13:34:02 -0400 Subject: [PATCH 30/34] fix: added edit this page and docs --- fern/assets/styles.css | 4 ++++ fern/docs.yml | 9 +++++++-- .../product-switcher/fern-definition-dark.png | Bin 0 -> 2108 bytes .../product-switcher/fern-definition-light.png | Bin 0 -> 2080 bytes fern/products/home/pages/welcome.mdx | 2 +- 5 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 fern/images/product-switcher/fern-definition-dark.png create mode 100644 fern/images/product-switcher/fern-definition-light.png diff --git a/fern/assets/styles.css b/fern/assets/styles.css index 9286ce973..c339e7679 100644 --- a/fern/assets/styles.css +++ b/fern/assets/styles.css @@ -189,6 +189,10 @@ content: url("https://fern-docs.s3.us-east-2.amazonaws.com/product-switcher/cli-api-reference-dark.png") !important; } +:is(.dark) .fern-product-selector-radio-group a[href*="fern-definition"] img { + content: url("https://fern-docs.s3.us-east-2.amazonaws.com/product-switcher/fern-definition-dark.png") !important; +} + /*** END -- PRODUCT SELECTOR STYLING ***/ /*** START -- DOCS HOMEPAGE STYLING ***/ diff --git a/fern/docs.yml b/fern/docs.yml index a2cfa75ce..069eadeb1 100644 --- a/fern/docs.yml +++ b/fern/docs.yml @@ -2,6 +2,11 @@ instances: - url: fern-v2.docs.buildwithfern.com/learn/v2 - url: fern-api.docs.buildwithfern.com/learn custom-domain: buildfern.com/learn + edit-this-page: + github: + owner: fern-api + repo: docs + branch: main title: Fern @@ -44,13 +49,13 @@ products: - display-name: OpenAPI path: ./products/openapi-def/openapi-def.yml icon: fa-regular fa-book - image: ./images/product-switcher/openapi-def.png + image: ./images/product-switcher/openapi-definition-light.png slug: openapi-definition - display-name: Fern Definition path: ./products/fern-def/fern-def.yml icon: fa-regular fa-seedling - image: ./images/product-switcher/fern-def.png + image: ./images/product-switcher/fern-definition-light.png slug: fern-definition - display-name: CLI & API Reference diff --git a/fern/images/product-switcher/fern-definition-dark.png b/fern/images/product-switcher/fern-definition-dark.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0df7505ff6c1236b86bdd9b897cdcde8f347dd GIT binary patch literal 2108 zcmV-C2*dY@P)y5>ljQ>0=@cr5LT1&?q9(whp98&~@ro zwle6ths4B)wyrQiWmVg{sfZ+lPNC|+36DidAZ`;92l8+pj^o(ZcmFxmX@assZI?Qq zWZCDQ>wEwI{IBo)N5Eae<*HXyOw~kHtxOO!C$y+T(*#A+*sKPP{}5*V#$A6C{Pa98 zjXY6JYerP>cDs-IaTgHobc4&a-Jxp2uIcHJYi!i74EXvmG<*}m$pFIPFp>dT*1=?2 z#6OB+L3U0qNhTacH2R|3eawq^6ksc^X~Dgr>2Q7bwN7+*cP35XJ0U$i12%geY_C+C1Vu%!R&ufu+72vBLMdP(=9gfb9EB8$B+rbnmysrp0tKBP#V#R#ckZ!-=ay{o% zqvAW4FL}7|(P$K36e5ubhK6pkZ$(keHO0jbH+Obk@y)(xjsB%M1vPDUutzQe@{i^sC+nhOz-HMtW&tW_?jj8Df4?jT=aC6&bRg3XsGVxY6xJykHw5k%e+H!B&~5IMPKuvaGqN z+fzR?mu4|T79~uR;AxT$gMB`9cv=xJxB|1bbxA>A$A?HK;TQ{N)-7225YmlCJ~w`2 z5Td{mpFl4caQY7oNDK)mpxEaRzW3hxJHo0)!V6qjW?;i26Q3(8DWMmNxNxcwzxn

ybB5Syu~D)IlcF!jw>~Rur#X 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 KMNUMnLSTX*!tU_^ literal 0 HcmV?d00001 diff --git a/fern/products/home/pages/welcome.mdx b/fern/products/home/pages/welcome.mdx index 784c4341f..f3207a38f 100644 --- a/fern/products/home/pages/welcome.mdx +++ b/fern/products/home/pages/welcome.mdx @@ -93,7 +93,7 @@ import { FernFooter } from "../../../components/FernFooter"; Java {/* C# */} - + C# {/* PHP */} From 93f4f8010adf79df6ca32b525a77deb80c124d13 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 13:36:42 -0400 Subject: [PATCH 31/34] fix: added edit this page and docs --- fern/products/sdks/sdks.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/fern/products/sdks/sdks.yml b/fern/products/sdks/sdks.yml index 548080880..215212497 100644 --- a/fern/products/sdks/sdks.yml +++ b/fern/products/sdks/sdks.yml @@ -129,14 +129,6 @@ navigation: # href: https://buildwithfern.com/showcase - page: MCP Server path: ./overview/mcp-server/introduction.mdx - - link: Request Rust - href: https://buildwithfern.com/book-demo?type=language-request - - link: Request Swift - href: https://buildwithfern.com/book-demo?type=language-request - - link: Request C++ - href: https://buildwithfern.com/book-demo?type=language-request - - link: Request Kotlin - href: https://buildwithfern.com/book-demo?type=language-request - section: Deep Dives contents: - page: Customize Method Names From 910f708efffa56aae7bf5f3b6699626427955130 Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 13:45:33 -0400 Subject: [PATCH 32/34] fix: updated product icons --- fern/assets/styles.css | 4 ++-- .../api-definitions-light.png | Bin 1927 -> 1937 bytes .../openapi-definition-dark.png | Bin 0 -> 2003 bytes .../openapi-definition-light.png | Bin 0 -> 1937 bytes 4 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 fern/images/product-switcher/openapi-definition-dark.png create mode 100644 fern/images/product-switcher/openapi-definition-light.png diff --git a/fern/assets/styles.css b/fern/assets/styles.css index c339e7679..54f5b862c 100644 --- a/fern/assets/styles.css +++ b/fern/assets/styles.css @@ -181,8 +181,8 @@ content: url("https://fern-docs.s3.us-east-2.amazonaws.com/product-switcher/product-switcher-askfern-dark.png") !important; } -:is(.dark) .fern-product-selector-radio-group a[href*="api-definition"] img { - content: url("https://fern-docs.s3.us-east-2.amazonaws.com/product-switcher/api-definitions-dark.png") !important; +:is(.dark) .fern-product-selector-radio-group a[href*="openapi-definition"] img { + content: url("https://fern-docs.s3.us-east-2.amazonaws.com/product-switcher/openapi-definition-dark.png") !important; } :is(.dark) .fern-product-selector-radio-group a[href*="cli-api-reference"] img { diff --git a/fern/images/product-switcher/api-definitions-light.png b/fern/images/product-switcher/api-definitions-light.png index 6b8328ba837e12eab5d227fa70e14b4f4191631c..339837dfa6271802afd99ea327cb7c11506164b0 100644 GIT binary patch delta 1872 zcmV-W2e0^t50MX$R(~c*L_t(|0o7XDZyZ+{|DBoH-P!vkwzF$H&Tf6Fk|1Ii)x|(b zT@cV#NcIB{JOM8}LjMBNJRn|M@qj=ex2kwTqMp()G_8&(86j+3)f@=evvrxkw!1mzy&EFou8kYt#%_9`&_}VEabu1 zFBM7s>5))6bv$+q*+>?#U<^SifG+}V%R;r)Kuv3)T(4rYvMrQ*89Z=qerBc!KMJ@O zZ?m&O1fM^ZK7WZ*nG+;%5Dx>Ip<}gl2W#a!*lD(Y^T$hnIrqjderxP^@4gBMt2+#f zBzS(RZ}OoD{%L52fsfYLuwE(`$=9>b?Bk8kDDa1?3zM>g*Pa-d&I`-;0&Z?@;Yx9} z$P_mJ-1PM22miK5fsW;$%zi6Bo*Y9jfxLkKU0*3mOn)X%OcguhQs=`DU;lZ;VQf)Y zzSo2o81C=G$^5ZA=g#75OG~NF_1vg0;ev#qJa;@ka%hAX5MGE!!YL=H%}EUMnQY`J4jcN9#AyqX z&Pd>x%!JZ7Y)B_!kQ_FtfXn%e>Q8|UYXkpoy^E%;VNe;w)3K+zn)i0;Ke(+|5tE`A z4iDgTW)xnbhA6pUEU!>1n+nR_v&x3k#G5<+Kz{%s1h@*z;a$&l9Embej*?Z!j&33% zhcTWUgcm4^NXe0sc5`y?s8|(*oCqX4fN#cTFdcoY>$#7mC-A-8G!!0k6hEQ7ti`CNUftfNe48rVT&XEt~FV6Q0m^9M^&}_n&H8 zWPg1)GHlzQ5$}1xp90Nx3lSc5E$A27NE$&}L)`ZJi~~@pZnoUTnD#)O&wM=@Pazd_ z!+{^%qma)vK>TkRmMef?M1vvhXl)oKQPTFV1Y+i27kwetE;$E*Wd-h^omys{dMJEL@-?@`VpEKGBy$9}YIVGIbs3h;@yy9FWGR|X z4dw98wGDiDtA@2w3qSkziLPZ46jGQ+3Mo7QiM(cz%S~(7?S^f^Y;&lR3hwMa&wu6) zS=Iq31)O_9PS8Z+GD4C>W4q7GCZhiDR)o z^hIKLZuB(KqlIid;og@Fh4Jj8C#c_JV61PKX8BAC>Z1zuwu8Y`%vI>k_ijPcImQRl z7|q7v6`nmX7|poH&ASzfq7JTamw#LZ5+T(+9z-sYpkwd+Z1R5EzFKNxYuiLh4dOdr z&A|_RZ=?Nc0*)==ZbOG(i0v~TP$4t_9X{XNXd)P;03@T)vfvjcO>MUsR7HVb_>RPe z=};P>Afl-7i&o2_uAc(a@E^@3=F#HqYjLz_>kmi=@_;`D27hURGDo52 ztAp~6?k?zVv7_1UQL41v>sZ7e3j`FuYapqrZhO5+3-NF7u40I`#UFgFyQ1Xc|7+O1 zYq~TP-(MK?PeZW=s-i#d6+@XQzA=_XniP@A4w{FA%%nJAQ#4kC5}r5}$HYhkUSW~P zDHWJrgn?8V~dZMSLK>k!s2Q4&b>Ie#avT?NFeOv>k9 zy0*T7UdQ@+4b7(c>zSECQCxqr6Z^Z0*BRRrhTpij zl&3fDi(eTX$qx-=&`S`!zj5Pkk!sZ0j`aohY{u>@8;<$+Z>$wpHp}Q02+IrMsWhE` zPh+_)E1WFI zm1^Tji)zpHf#TOv)U+P3`)=Xh~Ht4VuOpo7JwWI9=Sjz3ru-&rAZ*fF|ihr#s(sM3T!|8&Eup&rxGxuZfp!f?+X?i380000< KMNUMnLSTXoX`$=@ delta 1862 zcmV-M2f6r>4~GwsR(~8xL_t(|0o7XDQybSA|DD~{6=4Zs0g4S?8G&Q$4v^NkcH^;W zA3ABLGw{%dKDAGMZ1We?@k6Jt$@HPqPCF!%=~Ex#=}TtX>0q3=ZW9}DCpHEnw8nsB z3nL-WWu@Ic{mwe_EsS-sL(q>AyL;I0=)0YBe&0DT)QE}rM1R04%3~667F-&F1(iVx zfHTk)jElF#mElPn-P7IESMfvg_VsZ)ScYUYYMrHqDaj#S93LLd)S?%ws`%W53dVk| zNbX;>yV?SWeBJ2scERWL!6`ZLDo{2IWD48Z%x_~on?WMIA&h$;+;L(2)F};(7+`z6 z%+5REeEV420Dq1JkCMVp><03B5zDCuxVQcQTe-sT{yhD+3m^aL_xeun?r4DUy2UU_ zimSu>hjvZz=aJWS%&*+TN@`uBSdYH7Lo~i(z@HW-hGYvLo$MG+cO4KJb$L^O|{P-#a;qM0smXPt4U0zNPi4#m3FCe^OL{-(rYm`DLlW| zlovP{+K&OXTjkuE{Agw-P-%Z+K>x^Z`u0WlOxo-OHQa$nxKs5OaK6%Jr;tb;ucI~o zqn;na=kQ@K!!S%-o}NR=G9n_CzKno;zTe-s=am;w6d8xYA;^~Wws>X}GZO*sQqn(- zjx~h=0)HY3SEd&-JnxA}aLQwcT6>yCc>xiHR<9>uIrC!@gM7Bj+lgjFsJ)e@AnB|G zj-jBd4b6tOeLhGQ8zKW_HRx_W1Kchm7mTTtLM-5vUk$6=O(=?>F5Ue44z8h0RqoibrMB6E;y7R`dj}k;2?iz)b~;<%S0>RpoNUGE75) zWI9kTGyHpX9=A8v&Y^XDcr^7^fg!}gJm!{EDvPUi9U~7Rrb4~0l48M0~EAM zK7TmqX(qXhczPZ6qk$CC@~fCy{~T1U(UPdZ#ap14I7ZsOh2ECx`P}D!4d2-xMYdod zU*t3uD#+x^n2axC@nH(}Ktw>Pp)7t%`88ZhU5A5vV3Oe$4P1j;_I6J`wse z9mf&fSHJR)jc9Mjn-LX-BJ4q(%X7Q`OLMgiYCDBkjVZ)TnZAUPr%V!3h>rt$nSbMD zAwi~;bcuX;)Id&ZQItC5YfPcRV6W|YkRb(~!zeLaTf2v)jfZFy^J^JgzLm85Eb9zr zS%$(Doa_zN+(*q3=x+;CZYua!eBR!96Q0vej!)v6{d~ARh{z)f-dbRhvj3VS>JFO-k19j(&`R7F3gV6K*I<@p%3G2bRDwHk>5F7l*?$|cEs~S$ zNkPyMQXk(t-k9>R4M1aL?r69j=U(r&$3>B*!F&PmyFFFqwzoJ61^P~lW;G_^^l?A> zdm2+-;HBtvUzeZ8f`sW<8XijH!9&#t^2mT6pWWJm;NPbQ{fHi{ZuE;#_ZWB{{Rdj@ zPpx=e_1d3T1u+IPVt>BbV1LjALTg_}qF-9Rq@&r8&zE3Xpq)93-B{0VqS+t}kR&!M z=Fm&`H_~V}Y;Ni_4_H$Yisr@5d_H3|(KyhFdZ*KQxZSuYjgO9I%(C&pQu02U1*z1w zC}!Rt9*$(}W!PZsT`h6n-Zb6o5Z+Ivaw2^$h-cdXageiW3f?{icVggQ@P3CVNCkDI28%(qaDx|H+)`~ zy~X{i6fTtvWV1zVY!n1d$e5=20Wt1(ck+5&22?OP6Az$R9zT;fKSx7nkm?9JTwnov zcZNMGiyAGCNKx^xH5&CZOO?))SYgE?Rg3KZ0Ur0>L)x5`+yDRo07*qoM6N<$g2)S% A82|tP diff --git a/fern/images/product-switcher/openapi-definition-dark.png b/fern/images/product-switcher/openapi-definition-dark.png new file mode 100644 index 0000000000000000000000000000000000000000..55639ddf4c771b74236599d95a56892f75188f8f GIT binary patch literal 2003 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 Date: Wed, 23 Jul 2025 14:16:51 -0400 Subject: [PATCH 33/34] fix: added new imagery for docs --- .../product-switcher/api-specs-dark.png | Bin 0 -> 357830 bytes .../getting-started/images/api-specs-dark.png | Bin 0 -> 356802 bytes .../images/api-specs-light.png | Bin 0 -> 367805 bytes .../getting-started/images/ask-fern-dark.png | Bin 0 -> 326583 bytes .../getting-started/images/ask-fern-light.png | Bin 0 -> 322231 bytes .../images/component-library-dark.png | Bin 290135 -> 338764 bytes .../images/visual-editor-dark.png | Bin 243439 -> 294834 bytes .../docs/pages/getting-started/overview.mdx | 10 +- footer/check_urls_output.txt | 2769 +++++++++-------- 9 files changed, 1392 insertions(+), 1387 deletions(-) create mode 100644 fern/images/product-switcher/api-specs-dark.png create mode 100644 fern/products/docs/pages/getting-started/images/api-specs-dark.png create mode 100644 fern/products/docs/pages/getting-started/images/api-specs-light.png create mode 100644 fern/products/docs/pages/getting-started/images/ask-fern-dark.png create mode 100644 fern/products/docs/pages/getting-started/images/ask-fern-light.png diff --git a/fern/images/product-switcher/api-specs-dark.png b/fern/images/product-switcher/api-specs-dark.png new file mode 100644 index 0000000000000000000000000000000000000000..42ab5cf59ad91fcaea4b646ba80f5056b3d210ac GIT binary patch literal 357830 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 z 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

CPRY{3y3`==TR@A84l<((KzCW=qO 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℞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%0D2RwDY&nZv#6F{Jc zaK~_zTp=58r(h2y5(;xpLt}64kfNl#Z7&yI?$B=8Mlp>TksaGGx{|WUi`~~z7ONk# zJ-r*X7IicQ6~M<`*}pvJps`Fr&79fg=bwD?`M>?^zjFR30dCu)$G#7+OangVRy9|; zfB~LDG{#^vL(x73nH|XgmU8{-vKN`4k#O&%vxH#`T_MNVAUCdark2+|rh$&aGef1N z4zbTz-gk89S?>n)=WcYv`jm4g3>md( z4Y}vGH)eDyZ(lPF)MelngJso7bWqNsNOp3Drd}VyAsMHPkRChXxeQLQDV}xi=`Cb6 zpf^nxn!NJwk7IAYO_WX%S+0#Ch3xJfj66lv=rGbz(A&^i0I^T)Y``S zY#amC+vov|Y_)^Fq_>Ggz}u>~?L9MS`)3DjNw3`ln+(Ve9b%om*hijK!P0g&Q9^Hr z-GrR!=l+J?<~h+joYj}~Hd!}x(t1m8J3r+8eXNC~TA8hZ69Rqm+?<_fEL|_ogC@^x z&#;?f$ofk^0~`d#hd@JJCq6Sn@uAzZL@P+AVox>I>THwSnm>Iiy{f>3mU!@7K`U#w ziS;|`DDZn^2>}WA8(uV72mR5=3!5V%T45tkV~rl*S(fa`#=p70*50!((5}K`W)TQdTwL>Jq8dx9QMbHp!agD${4E%4pUz>9WUBlA9FPMw;KNJnK7b0g6*3X z!68%-0zJoktDH)H+McpD&OY{JbK}&ME=KBX+4)4#d-c7;X?3b1kd(@Yng#YoeKu95ePhogXFa&Qw=B_ z#!-GJH6KGnFAl>c?TtJ8%=hS`@v7Acn9*p3{T7Ka0q%-&jPIJEGL3VDrOhcG11SbY zCCYnSqrbl)f;RMb$tET-P&d{Ph5u1->5hO$PVx*|)U`yaSkR)a%dYD})*?h>D7+V+ z{}jmJa{tbI-={EuqpoE2-`P6CFgSJxi-BT6yVtt`%U&)?6JHx|@5qWM7I%bo+d7>& zV!H2@4wq35KZ89L<}`K(ZYTA^Ix@Pm_}HJB$mF^ueLg;Pg&R&qt#m(_dX2MjFG*X7hu3UVCc?8j3F@I^u1g+;cbk}#bta%L@uefqm47!1S*%p;Sp3zg(1p}4ML+H)pG!Y z$or^`+nrAAr^)5F^tPs>qqkX4$l4=vjojv*YuYl=e5j0dd#_}5Wn7%~HrEI~l>zDO*fJ$_9RlSXK1CXmgvG4Cm zZ$o1^8|ZE9Jie8$@q!`+m^d z*k0%wXoy;JY#VHgKc=^NK3yv|^_jQT9)o^y+OhYZ92_d$j;%@7)gZj7b%SNcmIK+- zsKQ<* zjv`?!uo1eM>S(A_0U>e75JjNiPmM4)Q5O}M5E#r&9wpD@4nv0T)gcMwKK4ilA=!Rl zl-hIIdwBe$aLoD4e9x}c(b_GFt~f^!8SZ7zLtALu%Xe;=tTMUweScPj4A)guHw4c^ zPX~ZF86w9%uIq9TC|eqnpc4onoY6;dsE8;K4t^^H3c`XC;5+OY`=<_^=4B$NSsN30 zd4_YoDV^!;cTA<_J~#zuL=oEHv)YM-HG`zB>(&*W(x=s`(Pti|hTwLz@BWM^IezbZ zwM8_-q?w_ugnNJZ;a84cuBq_sxs66mh?_&RZk*ZPjc7oP$QNimorEl+aHO*B@k2HQ zF=xqS&E0#k_x5FJT5N8YF=S_&V=oMywrhleGr3VX%~O9C=WXZz*$b%yxgYwFvWHAP z2?ZOd(l}4RH0-al{7L#;HXerW5B2ooU&S{9*v)EpEDojT)FCC@ymfaTZ^BS4VIOyrd zajuu^?2RYvvyYEg-%G#GeI4dRxWRk>yg6^G%Pea4;;EI#W-#tt&7n&w{cLbK=PB8@ z7r*;7&%M;Z9g008npscj>3S_vij23Hq`PoDBPvDe2Q`;|zA1~LW6)5HYWv);oVP#v znjF}hm^-l_x|8DYIG-4(>GD{LnaMh^dssv&dE02gqqy13ZAunTg?Zzd11&;xW z+TOfm^oaYBqI|g&P^tO{!qSOua6^*jswrz?zD( zF9%2CsJ9EejlJ8t%u!?AUPQ;x0|14px5?^Iz0G~m+hjq+{vA7Zsoqu_mNE$RD)!32A_LHl#Jv#_hx z=~c%mc>8j6WV}3adi|F-QeKys`*?I>vUkM_)ZWHo_+|q zVmOGChg0JkH0M(q;QQWsDhvn6I&m%#YOKRH8mC5u63<~T3-9sy2WdU6_Xq`BnS6NY z?87Kd6a*Ja>ao`X(B?Ue<(EJgB^ndPZ8{*WijWbGx~|waiqAr@!eCJZT;~S5Vb{T{ zwzUza1!*XzpZh%+d=!pHC@^J2&VuL>>(eMepow$8KZ2RIeK@T!iqqFv(E#@T91(zV zdj!VzJOv#BO>2_Wc?Qwb;i>Ey>mh`!X@%-Qd(ON>_t-l{=`^}$*VVK=Xh-Qvd67M0 zP4G56tAcRfEAQN#21BTqTPPu|F~Nv5V~l@$O-4R{k5FcgHE7~EVenS1g7cao^cFF) z!ME^03+KmB=I75Zy%^iqokDldD9_DP0PfGwGOF0~mZLD->Ug3NNBrA!qxZ;fwulF4 zW#pxAeJ||ZE<2t-`@V#cbm>vHIQzBN#LSoKFle;*a5viA*k0qlLyL}Qz4f{&nQP7x zapNMQ9_HZKccSHPM%=b?T1n~Iw*Yy}*{~M8!SAaZjpnE^A^DbPO#$h{^)b6=ZD}Y( z7c5g69%=Gaj3o@>DO1x@xh(6}m5ir4dg|2}hW8fEjT`ktq$s)5a9`{DJDrf zq_>}Pa3cn%@jFooq6a)HsqN@(oL1^O9x|O@^_c25JuCe_oxO_x_g8zXhO~mpk=|a< zqyVwjqM(25MLmqt3l0l(0wBpcp;M)`U((y~HhTK3x4W~KG-xjzuTB%@)Bmp{GD|2i4;{A( zueo9BhAT+;*ab`=)^iUtee=x+H()hnRQaoG=11T9L*jASOOcHdT0;+U24QXoBb7tf zG_~#^^mL6V7*k=RQ64@EF}2nXAwdoGvM(HrU4saddW?Jz=Z3Y#&oHKFmO$Z{qCh-f zgsG!G04I{qcZV$*i9L!`h2h|Mk-h?|v2BFas~{Y71mfX(<~)S}sOO8W7N5FN%6h;1 z_FMn1Hamd9^*&7skD)Wx3d5>HgJZxsZ(D`S&!P3(vK){)4Ua1m!zjj-Ki~I+7J`cA z9h*qR`IBF+T}Sv1ljPwEn6I2vI*%NM3@G3^g#cdBlunc+&lku$q+nO=|tyfmBbI$qigj`x;x1Iy>zwasKu>i{eb#Y~$0*=ZIDe(ZOra zdrj#W+qD8=k4QrlMX!E+k2+jp()*Hf+MSy@41EWUZV{PgIY$O6-CW^}DdA71~H zPL!dCc0V)zqr+G_k5d@yw{^{wtg7aWT9s^$V5vs;@85h5LKM(?^m0hUb&SRUVHo4A zkqTwaT5d_xbFX)DI@q>ejJyxKJ2=RFGtjIM|K0mc0ovDIsP0WCGPN%gy?iZE3v$h9 zPSpBXika0g1szA!xOwy;Wy==LJ)E~2a)KQG2RC9dn8vI#U9uS6oB?Zg;Jh7)4?*Y4 zlFr-YIysz=h<ijHI54c>pE#*)n1IHXeki7lvx8Ha@257p1jUjh} zKB#vgO>y70o(u}W=aYyL@=$eQLmo-gEcD2pj_sIxId$Er z#p*ORd4fBrw+ZvTA^)hBJ3X`BC5Bs1@z3<1aP>Az0|?v ze%zD2GoYF*4L%pMS1OH**C-Cn%geE5xFRW)E{fjfcX7^p2NM7bp))?q`Id9a^UU2| z!g)k*Lra`L4j>MeMq~IaQ7w2t?Hda3?cZUOf9ei^+T^~reed(sln(XG;R^+H;cd=T zZC{@KY?BXT4Z;3@!rNR6o7`##Pc<^PuFN0^dqBEy#H-MX=!CH}O@E0884ezn|9*^i ztr)HxL=eHPKM*fv6nmM+xGcBBhOkD6uoLT8X*GmsyFt|oY2rP?U7**R<^=Kb6R%s5 z@;LlrB2s`9nTIhDc)U*<9&3Ve)tgra<(~HUZ@>MvcS@rZgre-{6fTqpM(vn;2@1hp z8rsTr3|X{it8};{qiI(O2-p-hLPCqj*mLfs&IOGYG|Ir9@bBn-UXcUcGn`#eAkYE? z0oUbOaZvPJG&d9Hh4df|B^R25(wGis$a%x)iiCvoRK4PLPc*!&%3hse_7TTwOf=u0 zZ>5#-aQM@W%GO@-HgyXl^p?hPq~U}E(0bW?>jKYGiM*gZJDY_;;2%g~HFQMSj5c!| zXp0#R16}f>i2jy^{BD%(;EnB|FuZVk7<)ZOgr4_qOez0oK}gaDsezG}85@u_FQlG% z6z19+2Y^1U`JBFnv49UB)|shpUOuw#y>7+}{2S4Zs8eYjU96NQFHpZ5(qkHz?x3te z7vGx0n1!oO8(Vbax=a}r8ipRh-t9Ac>(7d88irKNL!#|N%>4>yD#RJ zT5?7ihUng#MufNH5zdD5Tyg~iYfUHKX^0~Kv1;+gVHBOx4hSiZ2D}{+)$G7IRda_h zimIj#nPzJt)pk5ZF8-L_R)blMWv*?nhtw@^)jOO49ZgF)>h0<*#dUBndfJsZ7R>3v zpmSwIsmEEPt%EsOQ7000&Ci)mta{sc zo0Kf}!vWG;)ol{FV6W6rR^99=MQN0h(%xBH3~Duu^}9GZ*lJ`&0O~3FufQVuk@cY4 z0q$bItMjWy73Lf;NnNbkgGA3bSN**@30lKl@}TSkZGKdGd+!mT0`fv{uVV8lSk6zL z*MTE-vWIF474}it1FTPZ8yaw1x3wOH+x7xAyL~v0hjUY&g5LCV(7QT@{2L#E_Z5VG zi?^@;5xo7%ks(xx5cCVBanHjjvFv-LY4JdKe0mVY@Wa8VsADgbkWOi^$xjrPDW^IQ{W5lsABQHl6nFz6~d>gmFKk?^(Nm1C7DCQkvYvz=d`>kGC8IP$Bk&W(3d(4pqF* z1l*WKp@;>{%{4*(>_w*<6C!k9(|d4lXg2t&!n!Dx5a@e-Zqn4u;be#ueP5C{x)U>2 z4(cu2CC0iJhm_ZB+v&)4WWuy9ofeN|3?RGJ6-|YoBl~t1EfxA&%>^*raFCp)hA`AH zjswZR@AWWbk$UFeW(P4dF8rs_#TLpTQsb5~0JBj0ntRput@DSY+4t`nYHxKW%eH02 z04KN{OLv%tl5O5Fz#@8?%N);N;d^FoL~5O)+Sw(|pD<0)Jv_KEYhVJr$$FBcv3{=p zymJrL<4pMTn!>!y*@}4YtyY^TVwcNqqHOoq3e& zp3n5|>9I#e=P75^tdWu!saRXd#}+Nr*GxImMlg{|cJ=Ri+ih!bk`aBYx1nAn9P&t) z>QSn7O=K@*hSS#`?N-q#rFeseNq>6DNVKD;tqQ*PbXGyw{Ti7Xw+S$3DcTrQw$)Qc z*IGIm;nWhzE2nvO$7uA3jPv%IwI<7w#jacOd+09v?t{!InzPO;5Z*}Tj3|{Dd8W^| zt+z9Fqi2W~$@&Ktd$0HMJxK@3Yu;AP0BBvNBcC<;a@O0(W3mn~WbFCj zg=?l9`t`Q$VB~3COUUZUX^q@_^b~qqYakR{E!iJBU#F*^)8*BE;e6iG+o~(I>#Fjb z10_~t)L!dt^oYH*)*~FrQDiPaaoJaz!V?jO0Bh6<((}QAx?JXi-nRG9+t_ie%XpJ@ z5uF=`CaF$GXVR{N-e$jgCWPn#1sy|=mfk*RudpXBmzU*m&E73*+d8nd3-Ajaok4jb zG7Nk zkTF&!1$?AVE6=7`MHu3I?#$atL(n{D#`C|$+fQQ0!DDJ~YPuW0k8_=lj?B+L|I~#s zMrI)NPlq;tT6nIG4F}04@-l>?kT9J_V-yu2y@&Ow$L|QkP-!&w zToziTEn-KMcJ;QUxB74#y2iQ@5E?CkK(3jJ6GmGxDudkgU{Ii3`|PorGQNs4Sw?ao zq=m9PoCv7~`zflW>s{BSGj$pN>miKFJ)Nl6%CkES*&6r#aITu3g&@;H{}8@0`v=F=*Vf8W zETm{UI5eKZ_7H<*)j6#08<#@_NmB%f1`;V!bV6wgMN7CBA%XCS;_20|rbX zxKW>Iwj+1XdA5Y{1MU2rdF65bakogTiG6Y8cpAE48lMZ7r$b-3{*&&W?y-9AcP^Q6vs>PYPB`qeb(SThjMpwGl}Z z_Bk)Y9#~r_8B1q#CveD4WE;-M=;=}JoJoc|Qp^#~F&$&Ju!cdqRjrcA9eCx+Cp z4t71?JPpwHX1QfcUvI@85p7%ZkZD@p5`3M0|iwqa3>fAj0MM3~7FEHcPs!WZwc1MBdGqP1H@z`?!aG6c`mo99I1BA* z_Dq1O&&k_cZ`8v1X@rG6<~7K3yv5u0!WKF6wl)el^EU0jhhcc-SSeq`J!=g%fcW6Z z@Jl61dqGSX&RUSHLwrcFQR9tt3iaAx1`Jwdx^ix;D@=8B;GP;KP{L7WiN8mmeN731 zC}A88k11jCjK$Q2F2Rh7D5*2Y^Ai3$qCVvb^Zc>a@eu8Bfix1mr(kVzmFWqVU%XjZt)YN+i7f^J(4nwHMq}}iMRia^dIM=m+H=9+ZY2V z%L!-xjPE(Mg`?ID?mf!*kn|k|{#jR(PFNv^nF0xDu zwcxu+YfH@y=chR>+}7-# z^b#G78fN+)JYo*1?a|Xi@Y5}M+nkstsg)Kjn=COcm$Xb?qJB+FngE>~|l& z{?HpYz}r<1u^qrQ?I^_=A{Smfk`{b7W~<{l9p|pMr@7C3Vg8!Ge~sr^vZLg5(%U_w zAn6J|@Gh5k8LWeE1kfm11}N1*fvsrB2|lM*d#R)m8!IL$BT}D$Q)We zzooasCWwp%Y#`1GClugQb!J8MOHRmX;BowjXg*8x26X}e=|ZQ}(8-F9 zReD`;SlJ+&60V~h%ziMin)BnHoD1*k-lWxkclg7GIO}bAE^MENS9+UTCk4B4%-KiN z+vs@o4fe{6;W#cLSo!3fnu z9Z#@t+<46WXJZhwYJ9N?bWb4tK)W9t5r8lh)f3jxD=4a>6S@W^Os=o!#TgM|%`TV{ zwRS`Iey~JZAPNql+9n=Tu&AM79eS{&Ypf@O-`>YzLIBz`(mAZ7=<}s}-yOlv^D?2; zQ=}4gisxbqmDWblF|jj5h1VlvKOg~RgZM+xQ5{25BD(PXXg)J5Me1N zadf&qr1asWngj4YI@VdoB!m%)FXU9MQJtD{{+Gj=LvXyy$XOVR=A4=#Wsy`f813(t zKC`^sa$W~ce;`PE8n77c&^!hZdx3(m`WlOmc&C}9HM`iJH7TA7I!9Worvka*w{?Th z9p)C#!jMOJFb<*h`j@C93Dn-6!5oojf14?DZO>xv=yz5vLo;%`d0}@-cru8(ht$EQp&pc1jG0ctU--r`*yMFCv}1NznNbeX zysVwHPe;!Pn5Rt)Q$I)hX=lPh(@!D|u+nE0!B+$QtheD^B7zzLM~0!puuaYm%`3gVt_MdAy-nIFvX@$0 zb!q_ANMWKThV=3M1W2N{&5+ZXI2QrD&U!oSq5ZIr<&5oL)Z09xrh?-{6qpx0s>2`4 zfvDPP^gj1cy^WI+ygjvJoy^0*=1@SHzY{e=HXb4g!;tpObcl|q-iCM1dK+MuJ*1l= zv~Bk?8Ef=Ao_Nt{o^W4(WBZL5< zaF8K*rbCw~^}=~(N7aTvuZ&oqrT7e_0ORqTwx*8V*&Ajp7~-H=F#qSzm6D`Ja_vd| zxk)=h^=!51kaI+c#r?-lI1~<3G*=yH3NblG?X$7{$?g{>sES#wH}`&Q>VZF+DBlWI6Bw&!a+7BX20VP=54A zk8}=gh5*`rI~f7xIIg{89W;fYC3=T~wfC7FLrn?1%`?Hy~_w;udFlTVfuH zcURn!Ml0Jmc`$sbGZXDjA96^-q!h+ynUAI zVM$L&Kbl_cm}i8wEr<*>C_ff(NGF+T7n05DUHiJ`wwtdrC@P zPxAut4D-qPFW=oxEfm@*yj!saS4t&H&MVx=~MJ|FMd3%y-YtK&RE&X=D?cj$ZM zKYLMndp(>3`c-u;dxYIoj_0-Wd+gVIaQLE5W$Aj(X+)x_)u5nkE!Eqaq2!HHX`?I9p_U9GHlV{nsO3y96DVo-FJ3VXN6Mpt}-S77nZ&yUN&K}-o*nC6^Z-*$C zI*$sl?yX8j{upmxuaB?i$mjwfa3jnpPOcWiEZjR}q|*Q@&*%JLw(69ig`8YlJ#tMw z;yV=Am!mOvf!SwjxB^=a4w4${O4P~#dVd57h=K|a5Velr+a}JHzl<@4;^Vp)KJlIu z4DT^;2}YnL9|sHpQN*Qt9t2Q~I47#feyOnK^XizXGeie3_UK*aj;f-8@F~pGwv$D8 zW%_mWcI63+Kz6!!8Gp z#>D;&T_&{zC$_G1$6jCZLLJV^tetQWj{6v?LeSv{qrhkd3KmYRiV|Ee4NeyS-QzJ-WNxI=VP}&&kkzRId)aAs0&&Z{x4h5MKpQ{=- zds#++)7Bd8aKq3Z6A6tWuFDd$&io9=v0v*k0SxEu9JqPS-0;i?Ycz!jLnRFMNCO*U zkYhTWT^<;(thY=BinJzS|?dZ|H62mz<5UbE>Tx)*5}_yB#1HD-{~qk8?EU=g$CCcSswx1w>@y zGuD1y_0m~y!?z43=Kkkw5>n82acs~R*dm&?PnR=f_$Yg%O?ygjQ-^oyx}NK^e`WaY zDQ8*-gj8>nvc+?#Gsju^{Hd&F&D#n(Dxd&eTs@`zkMs5$H8Mk?Tx}O`Hzv6cNo*AF!@Qqzu#_9TnV-o6AEO-= za#D02gPw;x7ov3mbE#>u+g2SVaDu{#x@7Cka$GPP3Xupen8U}IjA5H0KrDra`VWfp z5ST5ChC#@K_`=YEfh-sDbB6J82((KF*NZUa@~VIv=F+r0e(yu`#3>@=&3Pzdp?i+7 zK-hw+)j1py7j^O=N+-H)>+Skzb7-$ZPby4JWB_4Ei*HQ@QWQy1Iv6j!`1w^tr!!K9 zA3;61o`z@ZfHUCiA~i7R2Sf-b5vKu$i!-Zw5Eb~k4hA@p{uk$RkqAo(4pJP- z;i_~k95UlSGg?r@?BObkT9p=iYQpu*+m=4Hr;%#wh}5-Pk2(Zzm+;pCi(Wf2Gs%2T zMV6hwvK=c?9`@aNI+cMJnnUZUeCX0*#$!uEcur&GBI!2N+xT0p9i^Q_bQ@A zc0K3q+ez=6B z+>!i9J&T-sTjSRszV~PR{PD*|x3r4jmMmhhVhqMSHWb+?_$Tt6#w|?|g4T#?tXYdP z_AYp!qA^JDSQAKHmeC)LAM6=??om#xUz}ciHU12@lo1h8OWrZvWcnlJm8Z2$HJ8YZ zK0#2C$_@p4XF@VfT{5nMEf1Gi+OCJ%sV^(Jz~6;%##uGkx$DPN{cV+q~mi zcd{B_TBJi#6A?U#W44FUjUL@MH*i94&(4Fi{4K=w*P1} zRbY1wO;o*2&FZ>suYg2#pqwuI{*>Oy&ch>iUi_NBWG1_+qyn=-ad9~)odRH7=FnnXFk-Kw{g;-8-QyCO}Q>Ssl2T< zI%nS22yG1DzIEP?&z5~VO_!r1^Xb#a9-bWN;lI|9A|oi@1Y-cHKvuul)($zmW1<`o zxV z#`Q^=Q)DKDXL-RYoOmv}jA_`Hd)ntr>7ZzAJ#?Tj^wcLx&vQ4lgOH9hW-zpyI2;h5 zt`o+C$RKo$*7W^c*EHn{31jULK0<}_S0oLzBCcIX7BuWrnAr!qhzx8pc7s-D(~I%%*50Q6E+C@Q3zeyp6E#4y}@OW!v1L2a>t z?JzxgPkJQH&Ck;((^uUX>$7ut|L%PXJ!ayJjrmdUGq2tEEghwf-drO>;Srl`xgPZl z5v_V5Dwzf9(4I#b4fQkn$h26yu^HrF?sX`&~96+HpF4nJiY(m-+%t}V>nMT%#ZY`XmHRv{YUg`&UVU`vyPmwv?L$Sm~Fk) zK_wN;I@m<**PaevL~;UbZp3Y>C8+kMj}e92*;am^#5ZTipaL!|zt z?NxwI>X^|`H{8~>&+~`@n2&xgbS3)y{HfQt6#AbXFf*?m=heZiG-~ZlbMPDu&HeM? zsY9GQ-QS*iyX{*>Cj~i9of;0oFYE0}={nZ5lB2I+m!jpGrp5QrJ0SX`k0Nhyg3!@i z+x2#99avFdjq4$Y&w877`kaf=z8bUEmFb#UDrddTdI79jp6ipebq^!(axj?Dt+mGw z9hgBstO8yI;M=+*04NaaDU_T2KyR}y=FuRpG@F5p39>+NTG;0=>1_pGiO#70*K@V^ zZI3aGv5TM&&I`cW*6`K)_g!zJe^qZ2HSha8MCK4t4Q({^+R0e!%vxj*%u@3jw#=G( z`?-Uy8l5_K@;dA7N--R}Q|7#FQTWu`lv+R=(7f89h4>X>(y73s8~JBMx;)A4P;jmNcB>@m;cLN1N-2S>M=V0%QebWkWxpDNm7rs1$pijt^T4ny%m zQL#R{4QT{K!>0BVn$z$p0$~`Axv>awV=Th>gV2F}&lFKt4x+%SdBNBXK}GTq%IdiC zybli#eV_Qf_U(rs=meuETMRv04h{&<3k~)zZi#%IdD}i$inkg^*!texQJxs`Sb5od zPOF@9W(AHLyiM`9&$YPBT_}Cd8W0b`KLpaXb%mS4dXG+UQ~r+Vr^|!;`afEG#&PV$ z?`A~qy*^;gXuy_5@{wL-2)sR)r};cbD_n0WeZ8a+JGq0^(>(6~Jw83OK%}$TNT%+* zr1G%nfDg0GV&OfA$c??Pzy9EFSW1tlx@|ciaWC0vdog#1VD2?7Alp$35j8P(PYU~a zMO{PubO-e*(i*QhN5Ec_)L@x&?5%dMQA6VfggN*bg)k?mrw6A4X79gy|E-_ddixYc z-;kl*S)Li3Je*`+7~lI&(fs-HrK_C8f8w-oXjIhm%q^(k1nJ0k~YZ z>#u{}-VWfRrWD&VXkuBgDMqp`VdrMEp&@aa>(<{4n*{4{F7_4qxX zg?4xjfKK+&u0bY<>1||@+9IX5=YH0zw{N1il^!~8r+tBb_O;KU!}ZQ~O51=;j!ASPc>f?=~TPL+`K?>Z?JbnaYe2NAIuW{gpnau!rN znH9kYk?E#I2a>fT4ewn@hw*Ny55Cj6Ru{f)PeYvf1Y3rR3wf~5{hV!gHIji*ijl1m z13YOBV^>~gh1RX_H$v15X9N)Uj5Ml3;7BQAkQFTo!vl|WAVTbVW^^V~XVmuSF;Sys zsah08Ky9sc2qRx}OU~B|D=gC>`La+9|ofZ6nU_@Y`aL&j_Pt!_d0ouT6poL@AXjNV+ zD2M$Up=*DlQ{LXAeiTWUQrWvevbr~NRBwWCwBFWf z_tcm~XRAAJKVEZ&MK}s!48`vvEokaO(ysfIX-c%EwdecV+Dx~W$k~)3^k^91sUe>7 z5(>m>2mE}prY7dy44E#oq@fklqd)!p$qTUqMW1>)kax<-IXTWBX8hdm^UiX7vuK)@ zxn9hf=e>DaRh%buU~7yhNAnIdpNzLrj7h7P>otwzGSr|)M`V-FaN3yJ5%if(8o$uq5Ama@7xHFfonCK%?#cPvkFpo zFpFhbD}~1SxdR6Upy15fGtXl*ZJ>V2BSPl*ZCj>o+_I=YqqHrvsP?_5>2*3piKhIE znL0ynMlec5#bv)a{KngR>#eGz4QYHgc>C5Pl#bAgp%eREV+Stj&|7rHYqT;S-_FSq z`K8X)_Vkj`9DByEvhDmOqke8&XS9k!<8W>xifY#|z6pb`B7#vs42#P{zQzt_P3|j&K-OWhx*xR6}neh8a7DK z4{K!)*`rQNqFVCKeLAN#Sq5>g=Yn+WC34~54v50hq~Uj z2xbBzOV+=2-j?i$XsaE2_VQBgz87gyfgTRs@Q@Bb=xy}5$tUY_6|@=r5<{xv8ajX* z1Ku2gpwZ)C%i!%Wf)&u~=ebK~vi7?BnB5ndsD^F;aV1C4cbenxy#4dfhwq_NiQd?G zxkHi}C>WOtB%-IhF5^;l8QLjU^*l9e=rU{}HS!mUz>MQ~$iP5{2sGuR(aOyyaye00CnGc*H6{kCigTF!}%+3 z^I7930}IiW43F%Nk^rFrhA*kJqY=($sZTlUZTlSdkEVfhy|?r>w8;7apA?Md+H-c| zJVs>d%(dPJoBSM+vKLN_+T^~baqP3EaI&eF=el+;Vd7EH3ES}uqeXVL7c~7iF5~HBYji$ znlXa2!(?k-ok^$ZV0hVQZIjHqG(iRGvS)}l+L2COD4j#a5U>9}Kd&eQL~8feVS`a1 zR%pSwGZ-%jgu~%lI58S_#ZY#KL>vb81~iw@9E4}Yh%@$(&RFgDcyK5|3N$B?HSs;3 zp(}z-8D?)f|3p1}b@o{AJXdNTpW`!pA6nCB25D2!Wu)sInb#T9L`Ck^$b12fe;_3$US!c8gpWOixd&#?Vs;LA4eF4N3VR+44htC>nTkh`SBLO zLv|f}2_>}ez2lZY|2XxiKtCt16T-rmgJV_?bcnIn!3%fr zFWGHw?`c3=I%ivUI~%9y_(e+FCPP5SR%sCKd}X>C^&@_*G3s(AcjzW>XKKcNwDgYV zFkKg*V+Mw$MpFV;;s9$NnaUK1)_Sxto+$?3c?w;2_}i1duVxspYZmoat&8#YqZBBQ zUWb--cG-NwqljsklXh&MeMik^t|K~JRRm1+b{O^rgfubaqmC-*+Rxf}n}LJ*zSjyR z-BCN&_KILfx2>bz#%NT~MQ4-Q%XAh42Orak;d9XhVdyn1$b9rK^*RdjA=9V@i*p>i zZjA3e9duO;UmXtjaQ!t+J@rftZB0Q#2OygP;Z$z}Ph)9D94&wrwe#!wpE~aZ$hYKKzY&pP@fsOXFCRvQsLDw>ws?im^nl0_ zhp}RF>7ji+9GVx-C807{6YqngM-m|S=h}45d_b(Xc4=5^@>2)dLDcC6*>t$cE-WG=d84@ z0znaiX6P+mIm6DBd5+`(6Xw&N?dmwNFDjhk{zIcxFao9bUT^IXO<=&67DM7dA~3>0 zmo6O3;zr3dA6q-)kgz9;N=V)DD z(FD&0vqFE+MBR5gJX>`+xw%n8)CQh=i?_9N3G3rUOI82;-m3nDxj1vpthuGp9LXzD ztA0yF)l-+U4k=o;XH;?yWPM5*!)y-<;Sri$2wUAvDg4tKlcocu)1-i1Yw|WJG0HGah{lk{r0WN9ui1Lc=&7!z=$>9nl1_uR z>s7rNdb=`W$R2r1Z$q0e)V_+5-Q~qNzS7$Y?qT<7Diih!1GOEv*eWW`9_o3sKXdZ7 z4NC^Rjr&(L8JmU(FuF?hcDGl?ii&Y&jKM%}lcpT&8xBUk$~fe~m-O~}(%b5Iptskx z^tNW==_tloqnnJkO>e{7?2FPKbL~7bJsfMIl(*HFc-4NH8-U{0#=IU_2~qNQ z2pTVU7iC(?xIFM`u^Z_5JVoI;1yM`Sv#wUV9VzYJe>)HdhEFk98SoU$!-yDyAQ_65 zsM8Zp%}bwEFbiVM;qy$6l1+iw;hCyoXbhlx>IR8@F9n|)a!DKzlf4)U3Ud&l(x`_P z+r#LDzV$2!h3dJgXMPqm{9P3XM5GQRVO8iR9N9}pA2=_&jo1&BVR7_A>!2OYAb^i zg~D}ouQlYag>g}senboXK6_MAfF7YhxX+ol?WIasc}$g@&p^rfDiK+Mw;vtJ_9Ejg zx^(%qF{1OHK@)+jLpx4?)O?vkM>6a}Jwaa;D3G z-I>N~)DCzZO9DT(?&s|P@6iscDNE(y&d4q5J$wdcx5zjzy62s|IDxP`P1(k3-{E*7RJHV3*JMnd)wptdtZO}ki4DI z^1R@{%dKL@4ZaeMm5D zita(9BgtDvq9TfPwc(PVLLNO{ACCOso4aS^G4^QBhH~!2XX>9Dxn?Zvtry&fA=(ax zZl%mdO=)ykOWxjV&}nZCzR`IzqEW01`Q^aSzGXd2MCJgwydC#eDW^UcCR4z+ybpqz z=nm_2nQY)hZ|V?^Zvh$65zy1cua~5w;%#0Sa0-I9HuR{%noWE(m4yt0kljN&&mSuu zsm~#&RNvUOG2kwl@~N$E?Ye+wWKncoGYmZ{9Gx9&4vXuRDTZ=)W4g5taw+`hMJ*>No*Yy=psCv7#NcYk-pPPVS_E`{pjTA73;Vr#=K1b^~rj2RP+dLoV ztdSP<_S_5WWv0(qodB zl&99jC_f@08kvDehoQo5<2W1)qa*qoL{BLEIXk5Ifh8(ZOnPK+H;!^Mx;K~W4JNJ4 zr(@12Vb?O)T6dNdrLfOvCk7|DZF@y1+}EyUGa$$f#7i&ZbL;z}wG|ZOVQh1M+C)>^ z0HLsMZCgiSCWW%JyL)TTc{cViW+7Y;#xzC%&ce2B2V);6L_@~U&o75?Bq?AoV*C%S z3KUt7qekno6}F-^_TqV#ZjcYBvp$A3ZEvD!LJfG+Xvw~7Fh2uQsypFM}`L2J}` z_q3SpILifR`|MDj9o;D%`6yg2$AjxvBZF&n0vm>dB0+gg^D)JeeN@4ZlLK#KY`9@{ zTY7zi4uWMJc8GJ%^a(>LEZ}{Y`A_N0+waI%eo2JM2Q`kz83-MT8K)jmB|m*jUMYVyuq~|KmUR&|!;2QAwwC23TLRnKte(hHXR>LB8}sfo7O2#x z%IEM>Pwkz?Ua0P8o=q0w+_qkXZ2Rpsb;;)+zWWDGZ@>HPU-k0;Wi~?RL>sbF95u}VPb|A$f*k&-B{&9mn zLBBEN1`*cTKX>hPi&N&#V-DNhvc@bBdFpY-ZX{4VANw|TC&MFd$Pi2GO@X;8j0_&2ZNF*7ZHU>y$YV# z1?1$VNWG%f$V0Bnzu~vD-Y&$w2Cr%w_9liSy1~(O85phi#1Wxkj5`|nJu(EIP6Mgc z76Syd7pYT3EVz$G=a7$@{ziH}d#xZD`*Q9$dfpG7S<{?UZzIq7j1{d@tD`oW^HJLm zdMVD~sJ9E)3*Oefi8UY7=h$1$ojrzzTQ)J$C_mp}?dWZsAM7sw%v7zZIS2cUo@3d; z$JW(PPfuOW1sJ@D%`hGu2B+&OItQxWF1x29e+tY3RC0fKgTE`t>(AZF2I9HYVaF!- zGZDv)y@I!)M@F-pc^i9Qd3#UUPA5ESZ?QXc{hU4bQ{H|Rkujq44g?|y;xMnht+95D z!XP52Ptja^A$%bAx1u;|IAgHFI1m|x!9(`D&OK z;R~Wd5f*z1Q4c4?Bs!wZUC>}iE0dfBUqq}z*@kef7Rv|;4LzS3M$bzTp|fD)zTJoz zD_;|*656V6YORsuc}8}6?yb<6Mj#O;_(muWUeu!?tn@jc3--5azXJI`qfI!I(2o{o zmh#?T84{cUybZ0hM<~ypYoBdsF^nIs(J{~OasO{0!uh`51&E{bml%o)UG)gm7D)Z% z=za3k-ufWYXef~doJ$~87VFuTHP2@4;bppYX%r8Gn?g>1wmoZBy5Pi++1*)r@O4BN zHNyUi60K_?PL8q;aqmh)4TodRh|b<3bI#kLd)~fP1ak6r z(9voeUUCp`-8zqW&UQ8_m@@h_cDft;44EDYNbcTpPm$-7GFo-b`XNg{^WmLS z0SDxrQ@;XYY@gj55urd-KmQ!FbZ*%YA&kd}#CfWbryrG^2Uv6Cwzck(2U5_4aelF+sno-lo5jj<%Yl^vasfh4xj;T(*eLNKsy~mt{RL4~*;6 z6aX7s9R%z-o}2a9Pcl;2XH6+T+vI?&*qyAE{o=FGo@WdtU|V)vMPSdo?e@&3*(~G1 zCf|i_h}yoz+pmiKNyVTm0aKID#q~U7Y{czAtkZPNeN_}2#$iL~vVkDih=ekjeh0$D z+b)7XP8PO5p7wH+eA+}(#<7G4fACg0XmS*bAxB3HARY|dFedjVeAgc*du z0jt4ENE#F?o^|O&qv7at{wZrNCo2kL*+XZlOjA)utDi%niJ+`8hoqc~K%E}_--;e7 z0;cOxbi!zbfu;LSIz|+%eVxyY!w2F4W1?U{RWuJ%^M@ZEbjW20c?7cx7>fOaQHF!_ zW7oInTI5Yfw=0}UZ^N2Sg|=JPv_z#Z5SdW28mg}vEre4y_*xajBG}kNXdhZA;TMj9 z(GJhqQ>}UgG7Fx!t+)781#{+Yr_*6P{NCHIrZS-DcglQszozkc8c3j~juIPhPgC#o z<>#<%t+&%n9+?xVbA`I?dH*s3#$o8n%=d2`(^w83bULSnZ_+GX3e6}r`iL`3<7$gq z0;{huq<Y~%&ZRiQQAa(f+ zSpG4+&ApG{=orISlNQ-ao}G2*bMk!fb{_yc488lDy^yz@i)J^d-ex_O0sERYH;GF7hbR%fJMw~(qEL{(f$)WqF`xJX#5rnwjbjU`*rqlYGBX3vp1Z3q| zZ%2Jm)hW|hK|ikmKKshvvSyyY%a9EKKK9zu_5hpt{DIb{>EMv4^Td6zorrwsTF!w1 zuC2UHKtdg6((Bk`mhNV_Rx6STQ{;Q0>PSK4!YW~VI6%K6g92G zHY4lF!=1MjDv7G@7?YuB*ffkmh>DiX$_R1Ka?;AUzPhr0=_yIaP9gQ$n@-uad)XeH zYZyYI^PGj2AdJtbl-1Il4F@&{`l6RmX(VAo^ER?x#kmmc21Yq=ZgID=ck@Zeq^p z<0Kt93LUXMvGYfmXcS77l6Korg`>~GdzLCwh{z_6T!fwBH+aiJz5F|bSq=H5c8Zxp z_E``cXr())LI-d0wj)mameGg+E39QP{MTiJBf)F$GSnUNZSz_L9CnX9SV8`Va`L!x zPf^)}71Ai(yyl_Ih}NAZAGT?e-q)==7_7q?PuTf8Z?8)S zRATac&0>m$G)KC1{zb@;s_Uv5Jo`Zw27TVT1JrqYp1X1<1q>sPdJDS_#k;;}1XnSi?4{_u+o`|Gxd2dSoXtXXR)#pZk9v~h?=R5V1-Wb0=fshPX*wmHY7n1#UrZ{PaR zNMA=9#J87-?9zC}2ZkmscvQ{w&tr@ba7WCYxy*Xl_g;U61LHDuU3zL^(0}M9j8boL zJ!MK;MoX2q?L*gxYoCv{XH53VzaIt9J$DSC5_6^P%3acR$LLme6vN$Y6nE?2>CQ%aA+q}BHD8JW&e*2xz zdurv#C;*F2Wj}_YqJEt}CB+S!kGd83=xkG}Eu)?0l-AT<;rrUnHh669@1eKVK|-HE zH(Hwl?`boEGj9V{(bgIIJoC0a%C_%c4wLU#nl zEyL=3C)&$>>Vo_tAw7&Z^}-c(cA>f~hYcU{iEx@CH7C%+YobCJrD~Lr?$#CjFuX!D z;=3WtHUBk+RNeYB!@!CVu?I~E*O-mOf`ozA#`1XB}EAnN({r1~F-CjL@&XB$4`4KP}KtzOs zc0f2wpt{kLjI1aT0u_dG!Jp`xGM3$!p;M|vd4U#a2N6&Q&Q)6i2EE0#2qhzAe63l4 z$hFxIGpNhaY==GKeQ1(g>#tML)|!XI`ZZLJBGPl_v(Tw3toRcVD4qe{=Gq7b1csxg zOF4pONd4@yFIo=4jA6Iligb;^ei7vfejLRy8dCAJy$Xz@C2VxKvb32wdE09?GAh74 zAQ#Z16tJe@Kbm1Y4u{l}F=a+L1a$bjE0YP4EpPjew&tuoIo1@q^Njb9nynlMv zWq3yEycr3kPr58g2cPI( z9}qoeOl_RXQP6Qy9+g+Vz$i zs>l=ccK0k>MU1eM&U#zZ)zP_OL_T&s7rg!Ca#&NN;1P7H>TO$l)b9S=G!um9hlcE> zdixx`z|o;_`v@RCcvJ@a!{zW;*)v+hK?gOpH|#U-Q*Z13bJn$n=|DH^x#}(SHq-3S zdRyzQR9}W%eyz88;bgJb!P~cplCJAPm#Y0rw4N8nI)8_k&|x@}b3T1YpRTQJ@KdN0QLIEUTm%RV3z;od+%%z7>tB4Jv zjg5~`zcDu{2WlX&F?g|xsOX?WB_bI5Dy=62fv)F6adJHv!hV9#+evnbYM8l%0mE(SpkZ$B$;A)|+YAzPh8eP#}NnQJZZecfWYl9gv~g&C?iT z&!SIDIJPVkp2PbR@<6wZ0OJHlb`n6u>km4+Zi z!y7d(`TFj=@7zi9l-OzN(HQHXwxkmh_r5i{?K$c_#pk^4YY%#+L4Y|b;RIF0Gnv?* z6=&3yew?1mXDZA->n@)M7{xPqW7x%>6Ff6rD& z?OOBL9beVk_PPjgxJzWXM|0QB_0#joRzmlw?pD2xv%~YlkL+dX;-j8ZJIUTB%Ye`F z{OI3vs#A0?tIQhJ+ng8oJM(rJ*k5&BUdVc-g|qMW9(udCN?&RO!7u4;3~|#1*7=mI ziMRCjFw}G79FlfrI;iw^rDhTJI(KZt4x$+fdx732I)<*$3>WC#9FRy4tQ2=$pE^UX zD_624+QC^P>p=laby|_#k--s8yV_Y>IyccA>R6k^v*MT_tK+*B?THz2V}fyE_gxa~ z;00}KY9X`*ZEIAlpRYKc0JLY`j)F+grXqzemS^kXZO+-CkLk+h8K%q*3KIr?gaHYC!)e!n!6fkP{FFgpFltZY^VK2~#`k-Vbk3@@F`e>_K?uTM z3|C&iMqUCXt{Rz^dq*4V$6i#rbwfG!r9$JXNbE(LmkH)EYb!P>7*+?dl!k2m5!_SlO_EIR_o+(ga;KgKW z3|`M|M+q9eWqy9~bQLSwcYN^XQ2F_TprK~`^1Lx*GK@oJbG*wgS-0K=B@B+X?`bSY zduUs!A>GlfjP%Vl4bzlK-c2!63bOK$Ho=Ps-;OM{OTVETL0s3 z`!stm7H^f`96$5EnIcOOy1g)VNL^Fp&w1M-AJ5UFP9nw=&hHhs4b%g&F8@+ zPgs4DE%@2fM?yXYy~H{$X;AhE>b7+q*b(oHJb8q`X9SJiaY9Z+#HV;0o-V_Zbdxf6 zkU!A>!I^PGtkRSW`TmsiJ2ZlToe}TP-3it{e3>oO~L_Hn_Hb%^eoO3^-1uyf-1-bo&yl>%-h%i@U}X!x;I34 z>~}b23P8L{E&KfW=LkKm)g=OgW1(vzu5B1PIvwdB*UngKRO!Yl10$#A@S_hM!5tO4Aq5cBi$lqRq#7|slZWzLP0+Jztwpt!z1j;Az1LO=>$qH58$PVD@Vl_PSPe!nv?^)7-ktoLBmJZ3b(^5U1`*duGcBVhm zQD2W*B$)Ez^_^ z8_O}VeY0r6l*UZkOSY17W@l=$jJ+do`jWFF-0<8gGDOPKlt`RM82}rShN-I|il_WQ zilVnu9-_ACnpp&%9+}MtE*Q3Z)RGvTTl?!CF`8o_9H?Y(c#ux*A_iF?_SuEWfFT2H z9s-fwlee$Ahqp8kw{@?SuQfXMnL}kiNe}axIoFuw<3`-e(s>(@#G`n7MZ3bNUHdE? zGALY+C1~Z5pgiMfm0!`h$w8q=%kw?otK*nDCUMTyu*UNKEoJB?y48#h8s?~BIHc3p zBbobt(AzH4#ds;&S>MpxYX@J^3t!UPCL7^xKF594u0S`tUbtW5DZfMKPHGM2%jE!Y zptq-NO^rlwy?@p7PWcw-OC=~EjJeM?qEkK8Yn83a9a-tNv?r8T4f z-H9K^-l`cp2K(Yw%}#3v-kx%=RBr>$A9*`uli93B>y%Q&J!+UO5h<71)6{J=>d)B+ z>=t-?JK5yD2~3aXR5TOdIdtyBIkoJ?83H5tT~1piZ_b&(oQMpWve7UL8>$aNA9jrA zo{zq5^8N9U|IcTGL8{#!X)X|l3Mm(omrM8FU@*RmS4hYlqm%D*7%JoyxH@7nL};ACD?d8tyuA<;UmGWaV}1w-=; z7R}_}XWE7)Ev?K11&So-v3Q5~SlY@fJB@V32&LaOd*Lk9@H#M{t1=@y+=Gep1M z0s(ZTdVA?cvd;wpq3+S6K*>PwFE;VL?HwqIC{Ltx;Xrz%Vj`8Rim#by??Snwc~x^m zB&eh1ttD?S2gRxLR_Fpp3Qj}uVPIwyV9GtbW{YaC8Oa>=pMDD7CI##=%^m5sYkl?p zop)vnr#yfG6fJ2b=8%Np9`|-UrL}ahcI>OSVkS*2+b72i zqmbdY{%?Qyji2A&{k#7o^2b3T(*UG9-_YfJPN&a#INdvJ(UzL-b}f1P=I0*~tE)#D z!Vq@4YfVy)?QDi@3C?w?w<7oZ;;B>1o$kK>{#P{_eGdQ)J+d2uM_O2GhgPZ)O^OJL zIgKxOBX7^dF|Y5qgbZ+JbUe2E_caYe%J*Z_7mLKW3>;$yOQavBQr?3vEplQlvVExP z(2^c=Fz-;)(cQ_)6i|02_g3IS)>GN6p{OgX*%UVP(;Q5TQu$sa9XI9exl&GtLyA^L zSaP1xE&0zrL#ie^6WxLS2e2vQzCbr*4(DvV@zQ4sZ3nqK=YFUjQxJ$o8%ERSMBTC$ zY{{l6XTX#FB)ac1}!uNs%KXNF!!h~DPB%D7&-ouIbRIdav8O6yXmA@t1nZ58>HB5z2(MSr0qUK(5Pwo}Q_QR|DcBg0< z4n%n-5DL@Oz}^HY-1q&}eL+ReP7mvRk=#k1$*$`mz_~gx&{g6&8JK$_EGksGccB$T zed%j4qJPfTh^#RN`+dsPn%1uY17W1I5BBFB11XovrNnvhGaD)*LW2PazYOkh=2$nM zg&|l6&x3%1`PskNyDB79N9X4AEw)aVJr5c|dvX+rR+yksw1jo4LPfBsGKsv@p&Q$= zrb`!+vG1yo_e4%_{T%HX?DJj|kkK6FHF&{(;>2hai}OcrPNKm>HpusQ-x1qSy+ zLB7e`+0kp;F=+20>f3V`?q`QEAF%k)YkeI3YLzAyb3VrO>5@jKvDc79Z~a>ex0pKw z@Gwk;j+s&H;KUY&VNZ8NFpg87+2XvtRT_gS=ZhQCx2*T5^c^BMF)ck)>Go_`0B?`k z%pgC{ypf*XYV>-Ew(LGIu=DojP6(08=bIJ3-}0X1{jNFC&@I#gh^DExW;WI`fo_WF zn%$=0C!Cxna@%Q+c^56veRDc3Jt|N&B8rjHxx1WN+OPh>pZkoKzx&(&)9+#Jlnudk z&_xVU;bYsq`J?7rk+Ns9=zI{}$$8Uq}Q zZz4*3kEA_4cB96l9j4%kq~*L7oU^r~%Ig7GV?RSF1NJ?{z~)_3zN)4z=sE^qngijj zVGTvh*+mh7w7R6AZI1|}Gq%0g!!$bAxg!LR&K)FBBo$*kWMTmfUXcG1(R}YL_YfW4 zhE`2ymL+)GPG}rz2ydh*ri@A6zCK2gIw_NCBb@cNrfG$tv~(GUY(swsZ-)%B^HXC` zW%F>-+sI$!T?g>Cnlz3a*Mf2Mjy|g!)x*#meJH31&0ob)aIk2ug8ggCJ2P;rL(`Y_ zHhZ9v7^^oi9a^bxgG6jD2k@^VQPpS%{qmOHwwDemRHU9Xq_>`UwsCFdwVQcN+5V9}GM$QqN2p+&GBiMl6-uEVvp5-u31R7Aj z#YTC^!My;13IHH0cxlR;@;2`&Z^z&NblwK==8SO4X|fdSz;S;#J2HXnsk6dEv&n84 ziJ{Fyb^|3}JP-@uKw{>{+Kv9R@aMrJJXbXij_iuZ9%$6wjX;>e4`PUlL_WW#u@Qtl z^o}vKJ?4;92om~>%}u*v-@8GMAPL1A1(Y}q8tH*>cxH;AAx`zgJ)eK5;Y8QW&xc9W zNr6ax7~Nb`Znfnwd#3rywAzDVFp^LLib}EmTc#>$Ivc;UKi=3NQQlop9)7AbN*xJ% zGL023gpg@ntpW@hs9ez2(OUa1bsiu_pnFQoJR3!>8V)CQ5hcbt*b@W-f(?2?0IPCT zrwh8V_btuhIStBlt|$4~n(qrUtI#rpLZ|I=b`&!rpwtlKvsWpuE8e~xc-!a$$5(kf z(B?#?E`efNMAhNF`FEi`KMlKjx%cLB6JI`gsfzWzJd) zoEvW|nrSD!PH%60sN^N1pXP{cd4A(i;difBOtf+jrVGQlWituCZ*>172iu$soW~f{ z7)Gz7jAmeMI7X{A+Db$FmZ<0`XB}x%zy3%6+#5Xn?r;8e7_BBR*CkUFnPMK%3Qr{) z#-4h%$vhMO0INV$zi!v?4vI7NcsVJ1!pJ#Bj47yo=hM(@wuF5jWj5yi#Gu9@8c>je zutp6@@NCVFY6H>~ z743~k$kroH7U4;Skn-liBPLF-X-sVE*6U@6ggOnUo{bKHV@LXxo?kMR&*}R9yat5O zV%m*t0Y9jNnQ7Lt#5rFt(M`_jblLhaT-ssl3*b<}LIu23R?=AubUzw$9Cb2smefGT zCA_7#)se=oXssOpHBGU>xZ?Aq$+Ld|t6gsoRWIri%S#O(ug16gVkyfSmvQZ|NH*wa* z7iyF9J)R+K+n_o7jz-uDtlheU=Z#9z36FZgBX5VDRC=5H@EP{$%-c9?<&0imJ2Dg) zvoO3u3dV3cSZw@!Xyhm2J<)N1LuG?>h!Nq%FjCp<3Vm@e6ai=`#-DDoqS!BjQh`z^ z3eiMa;&iyvWCA0d3nsFoh&gCJi$DnCt%wWgz7dwbB8m{`LKx;{Tw4bYQ(T{Ncq7l; zhN>%pK-HVK7kgC#_R+i5$pq;2 zb^QiLh@X8D{c|5qR{4~iJKas7DZ3V3;wrLJip^_cE>&EI1B8IWxh79r8HD@pt)hR5 zEU`xj0BA!6`nGKcCs7@SZglODqQE>QrRDFw`_>BrQF@$}MoZ`<1PxXz$>2ZRvqgAV zkvatFnnozR&E9Jr*_pSYN&9K3E7UDqQb60!0139v+s`+8{6|Nw0pw+#y90%DLGCVl z)zY-W$f8)?k>&Z)jW$2Smk^j;(cb@C?b$9<2+~V*f$?s4$=h@a+_F1ZM|dw6L6A0A zt|&a`?Tnu8!_XbHC{U-nR5(eIjc^S-PGl^;J5QvJMsX~>9p}5=BQpQgf7(FI=oA=fqE;g@Ww$n--_P=r zwHud6^?UIewM$Rc+SVG7XEREOGMR&5XGoOzw$L#sTxUC<8^);tGPj7Lb$*}$NDD{F z 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�H`29WrnL#R`Ja9cL!yK} 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 literal 0 HcmV?d00001 diff --git a/fern/products/docs/pages/getting-started/images/api-specs-dark.png b/fern/products/docs/pages/getting-started/images/api-specs-dark.png new file mode 100644 index 0000000000000000000000000000000000000000..d830c2f9ca2d9df257170443ec6ecd5a408c6462 GIT binary patch literal 356802 zcmZTvdpuMB|98KXNEggqa_Qo_nmd(3xm79&xy@GD+|B(?DsziSm{j;ExsBs8cbU79 zusO6O<~H~HT)zAL{rlrQc6Rt;%7=e_~z3QF{hDQdPLC7#Tps!_&Iy?;zJec16|2IdZh2;#tgQOns zU4foyLio{k_)*i*)S}^noAu66_$GBfNu{OdXl1QDw;CP1yIGM`!Ng&^2#Lv31F!<|*j=?D5t?{7 z;J2CctYdVoeh<6%ScRAl+|)@@LBB>Ca``HSJ{rBJGmH}%wWqiF%zYDS5{VPZ@F64_ zWGt1^2B4k}Rkoqvmw|uAqf@((>VST$=LERZRNfmq$sT0jAaeDGT)qn0hR#$Sj*nfL64TS`EA zFciqm&DGYz5X^HM+JWC~M*o?Ue^pZwsT1x{gxVn)?YotSttAR;`2of@p1@{pz?K`} zH&OP@1OFZNa$W>!YsJr##@&}cxbJ5;+o~)AV{b1T zhu3$wHxXg#n?hinW#?>3Lg0?R2Zf%$DNM>=Uf8RIh;e{e+lmH{FtKn;U=(5LUM?{e zbQvv9AuiRsRvXUv=S(!V!z!W;UQWC(Klm_l_z1AVl~9Pr@Aw7|Ge*Nhc6XW>j3dU; zUT*s2)e~@LIffrp_XO=aY8}f{=P6Y+= z!b-kT4QqddZZ=8J;CNhke*SDMWlUY3%MU-!uV38|LVK`0NdhutzM-daFXH#CLf^8+ zoO#vU9yK-&SO_de zs{~>(p11k=>5B|~sYLR9BHJW3EMO`7QbVEJ&kmCA2%OoSjt(xcSmg=^x)NZ|LEtsj#CB6(Vdq8jTBt zi&5kMv{RI)tmu4UtSxrMciw;GOWa-nhJgv6TmEfgvny%{^E;Ue}3i88*Sy{LM~ zPi=1!r#y=I{119vAT)NuXtbUPY^UmX;QuP5trl0@Fi1cN2k&@Gl^fGN)Z``^Keq1op%p^^`goG+mj$05xIDV>?_~$qSKed6#PT!#sNSn)qEV=@YKL z$&Cctp_>1o8-eQQ*)C&mNwKl>v&~Zkxsv%fTU#2c*K!*AUd2SL*yKKR{KLZO8khXF zAz~^;<5WYUZN*9x`jQvEoaI(J}Dw) zJHyjiV+2*Lv6MWV{AgyWg3n=I!a>GRvp;IMN4yTLnH%JL|10%DzX= zIWAE1mo}n>fY0AGg5%F5f3ov`_ipeuiYufQb|4Fpc{P*y15VlsT!m%!q7$I zRtD``Feh7GqZz0=;&*9p|A4%|em0s7FBQIDJ|~7acCP3B)Ve(Qjx|H@=tu~>6V_?t zy2S@M3wCPQnHafn={yY?>2QII9S(d8g@uilL>8}jST0G2OX_-}iO0dVc;ug5Fa3rS zk^#+Ivx=!*qo!-$sMI!CqzpbvX4`){NN)F@O;;~{WOJdsyBCYTcse;;FKIynnN{9~ z_-grHuATqqXb=DaXBBqf~NolQXwWJ780P&{Oz+3>RV)1(hEsvFnbpf}PY(Sh!T`!%7H{5>GTg zIK-mEC6Ttda;*OWtzQ)CZExgbz4}>V4faCX0pc_9jDqkVuIOsK1Zu0UnPNmzBeeSE z_7;j$5aQ>Pf{5wGqw5Qeh}<{dRq*z-Z(jsPRkn+%2FYfnsCCF@96ScnJ2q<2RDa-c zG~;m?f3zZSv~rYoAFrG&^D1z+m3r}2OD(#eB3HOEo`NN|KRA_RZak?v<@xc!#v8tC zIf8Z@#k{06Bm245aLLCDw8w7G1zKrQ z(RUM7#QuhG*iLC?6BJ%T$YR|5SRN0m$=a-Q5VrU-5M#U=*^wIK*0aC;0a&1;qNNj(}t_3{p`qa z`~J`?Zq515!B4$Q*Y#aPTprC|1-x+C8oxUN`H}E`*nti*nEEe*#f6C3xweo-&kaAU zg?|YsY2AtwIC4e>4@|$5q7idwih%?~me+dBYwoE%4LR}7Z{&iU48(tL(IgffP&vuQ z0`TBJzaKypVGoH%=L+_+=#%9KqE}7PP_EO!obi&Z4P4x`>+cA|ZAT-~ z`U2pj8sC$sJ{kmv>yn>t&kb)*7u*pd(elS_YRTV41 zp6hl%fad|pRZQz8y(~84(ab!Cuv&Dg^jr}0^TwCc8$CIe;yziHNo_DXw*WcWPWA&+ zDaW{wk@0UPM!<8@i|bOlv)d5xSXvRsjYebOGYKBQT<2JD9DX=saAbY7-jmb>0zNd3 zp&hou>x-G!&lzb8I{D_UiaugJ86}t~Jgvz2rp6@e)&Nz%$*eT+U#H>yR7(W6j8V#b zzI1_ReRtHu=^*v|KaevB#rob>DBb;suGJr#h%@s%OU`fBN-n$)c$wdK_@9ADNW?1Y z)6<)~c2csULmxVnqwg5V%)$raPY#tw)3jivqF`jfv`@&Cl9kISBYYH^DoIPgFr z@>p{6YCMV2+v^2c*kqMKPI%k1&=t7~dVnuhwaUB~?_}g|Z*MEPLHo0v{>+~C597@4 zNkS&-vfP@f9&6HEEXT;ef9Gg$gVC)jRqz)1TxYLnJGY0#4zBceFc_cvf+h28K#M#hw#&VMa=qK(3_DJtYqJ~O6@S)G~ z_jCAottv2f>?KzK5N#(8-Fz3=&rG{N%qxRGgttHI`zFV+8`k{(bK|MaRr!yFVZB~cV{K4v#&B`X^?hnq3pLp{R$j3;j6Ha_h>pTd8)0c>7-LzFFP%Zi8D z!%wJE&@#dWa4CdfwZ60Qivl?s?*tam0v|KAsIh|{7+ZrL)QY=*DmwSx=8t@41xaxM zUS)^7sKSY@Oxb^TQP3<-Fh~GsD;Zv!h^zFP^K6=pOro9z0xc2>$MV7=(f*yrfFV-% zD!35T%mf(?rLQwq1Y50F?y!-!AYvJUCEPu|F{{g$!9@xtxUWjYs%oxW{>x-CrE?<8 zgXHx*%pOAxPYcsZmmqE7#qUtXGBPh}xd z_-+?3fDp334+c)-vVU1YNdV|uH1{ey3#li z(;#*1G`D!f-(a_RR1da!`X>h@x{!u7Gj&+Lc&V6xFG~ahFh4${`RdrO8^!RY81JWX zte`d?noUR$dLak597;|575~f0`0l_b5QBS178uIaoEH(|2Hn86*Or_o-_XbZaUn%1 zTEeoJ#=53M<*AC1#pODqf@3C_nfG1|Y%d_Av`_oqtVd7IA{0ln^HHu9tiRP;549BAWhem*&M$KORR;>j@;-Yk1TY-@utc3sptl7l4jqs6G7ADm=G7xkdx;>l!Aq~Z6}~{q3|qk z2)XgGd=}qcv92;v8EHRJD@pmC89jTjG`jBRAPe3K|8S^jD=ipC&PFe3xqvw}Lm?E&unasm(al!O2tij4^ zwth|%NUtltam*-PI6&Ia_L*g7>s5seTI*f5Txu>RZ^wBkj^>)Jw-Rygj`;oC3Gv-K z1Os9I*Gb$Jr*9CJ`IMTS_q}5N5^5a-zpo4$+#k?4;>4}h6JVx47}#8$QW3R^W8Yj= zrwHCSXMeF5?t$;hi;qoAcS+ckN+hi1<(t0_e%=zA6Be7(>4<#9KHbOH)3}sa=yvDP zh1z+_?;{&j@QsK}9eWbHC)-zaE3AJRi?%MgQ~Y1T_(DHf-lx$2{kwm`u`WK@;{o+V z7(`*yTGul1boTuZ-P=E)3!r}5PoT69q&F|@R z>s>QfG5eoHrv>3Ud>daV7s$b(Ov*csxn*FG@;3f-uwMvwA@AsrVT zI6AAsey_N~{FDi*lpTEAL~fZcf&P^RXUR+?UT%xxW}KH?dckE7Q22`zHl0j=LG2|c z2Iq=`OLkaP#z#k+x~mrsA!7v#tJ!m^N;6+LKuy0|AEf-u+7p_Pi5zI_Lg3tyiBU>T zx_nj(1gt4rUN@|pG4qt~spj^k@wH9$E5}RA$@*lW?Y|*JK;g`8b;hSbtBVAZF=G+r*UPMj#^e%2SymQy77UcVtS>XCS?9oD;Yi31)z`utwWeNPzrv;vE z+>wg-_sAlq8Bq9L4r)-I?p58Ye{A{{CY2=Dybtm*;g7>X@Vm5ot+zTny&9HYRFalV zIW%-{KHpC#JXpELbM{7mE6q-}JU!yed~xh|v$>mxjTx=B-mE&CKED4U^*21!QJO`3 zd}v9eX2gkCAwb+L2FYLi^uwMQK2`BS?%qw!ljjN^+VAdF)k+&}2anKWQe)Y8j%rJ^dfNPTbtLjR;|c=2gf=z0e%!AX zHR3wQekT4?2MVogihxU8)^NW6Kw0Bq?p4aoFg0(LU4EExn`w<*tprGI>7RE zp<8vZ^tZkSi>?nB(k&QB&az{1|)37 zrQA}Ix{FQ@&dO&|4D1`&Mj=Onp7-;)#6+vR*wR0a|L9Q?5nGNskg2vT$YGvC80l3D zFsjrB+t&t{D*uF3+E|Dgm*nP4y7}ntDib7~o5%0{(b8M_?0`T`sj6<_v@Rd0IR!5c zrJx&h^ZuZWiw5%&bWq>EtR5aZ*|>F;9+$();=Gr?eMH%zwEXWNkI#1WM4jkC|9m6 zIjbc~dFetfpv!`xQPPKr2fKGovujl{|E8dKya@>*B~``is!kxZyR_Wgz=EPbjhUBG zffSd08}Eco4ROnvx@0wqQZQiw7RZS6Vs&rBV$>2;ES8v}DALYiqQ4DxnM78uxJz8A zoga710$gtdP|1mmA4?7!xeA{V7{O4obzQL)P~`i^N5&v75iL|4&q^jfQjd-d*Q}V} zR@0m6OjQU8aCO!Rtu(tRPM~dt{h_ok;VB{|UF7N$R$M^nqeb1p!g5|xP&>fzlLaN~ z*Y`Kxm7D+}&|>q978vU=7R`oRJD86SYP}Ge&i7)zBv-I=f3E3pG<^H#*P}4|Y717Y zrqT>`eb><(^~Z5DinBf+UfR25o{rZA&keXV#pYfL(Y`gBW;mP4B|h)_o55MZcST^q z>chUJ!dLT34UPtCe$4er9XlQE`GKXpg%~SA8{3M$Cry7X{zDq;-Tfr>xU&bza$kk7 zfty#+IQxz?>NrZphGcOhErJrBi@Fw`pYjGGFC=56qlrh37Pt=O)m#o!j#WP%Prtu0 zX}EZY=nt4S9loRu__cnV3D$Rqzw7p0pB%_O)|H=DxYRNxrBb`v%Y%1Zda%>r`O1Z{ z+-Xr4>A@(3O%{c*iPMb1kdB>XLXLE_u2|L6rW6yD$QDdZ6=O$>#1 zkL*=gQvs@;b9RaC2?C))?G&O{y%vF8HcbB~JG^<;?YHMULa+I& z$L&jYc(=m3>L8%&WpwCEd=9JQ#=W#ydwj#U>%-G00I#UPM{qAVnEEIr*XBnGI{TJ? zcCE%)+4&>J3vQ9{QxP0SW%LfcKbL;&Y@t3EKGWGgMhkupz4pDAMsm!eT^wd%khR4D zmlM`$(9^~0K#A~$hx3RG%mqsy;DV)I)sIE>Y;>n4)tPZ$0^K--S^gIJSJTIWdiTYw z+)Hfi-egAx$7R=-)lARi%2TbL6jX3>kElEOFen<0Qp4y(uYI>QxKcrf#r-?AkTGkV z@!G?c(BNRYsh-zD6pAAP+%9CtF>LmaFF!;H=?%TaeK14nXlAI83TAX(OSQkYYr5OM zTx)A&u?gQz5%br!jLOS7b{C@c}NW?c|sHJx@aIxm*5f)e4jTvd2c`ZFKJZ6wbLf zuI`g@-FhkHN20D>uHm-b1@=091=pizu84c?L(9@pZM~W)4Xedm$35;nk(KT|wS6>s ztEl3@k@xa96#TV4V%nQEbV+%dmHVI=>7{5V^X~GS=JD^}CwjNOeE!A#ULSu?=rL{& zf9BaYOMwOaho{IOslpgi#>Zf~zlE$}OUWH~@_5%UnFzV!@U5c8mVEJD`x_Dey{_s1 zvVHC&SwxaVM%@6t_*>GdF5vWYIEat7F~D)Bpl!9!giw*rPK1@KF2T1UwR|nUaK%)# zmI%(g5vtIQ^mH#bCop?@woYMDjL&3U>2<>v!qg-xZoHR*z-mE{?M_pelC``_HD!sS zKQ-jruLB7|G^Wr79@c{56&xPa(e|HEz-K5SfJ>++@wNz?I5HS{n+KT{v7m<{@aHqz z^}Yn)b*J0siOt+#l$oAY8tY82Sr%n{SuD4c7vllX!e=_#QYQ)Lc?NVk?`guMY&WCu z2_Y>o-4oW!WpSAkl2REAm+3hJim8r&CiDm1vqozeTs zx@)BuE0Fd5Be;ZuW&B~9ber96Rt#COY_y!Orc?)V&ls@zc}+@*2qV!K)SSeWKRbLn z^C(x0vUQugDrL$Nfof~-#PplkGYL!%%4Y%!wT?m2e{SgiS*dwmtyp$O}cvMK!wnt5Nm^D;e*MRSpP z2<@=O5>^?m&U61&=`rlnWmv>5*x2&T@?#>gCzkKw6F;GB@Gm|#Sk_Cd?gv&}d=tGG ztpjXu6CwkNmQAU*h?5&;ZNTQ>m7xk;!j0EyUfQ%X`coY}qvvZ3Er=s$3q7dWFZH+U zY3J?sWD(ik+)yI@!GfKS(FI{%!r#C8y2zBQG3ye(2_DY`&r>f>9EMS~@+++m%vm;Jq6#zJ55_$k{1UTZ1W!Y57G3B@g{1uu0cNh1hU*mnFSNrPw;RMTC*T zx=LD%5`VjZT5%ldKsinp?4MR-4{WgSQH=ex(YCupa4SadqiN~9;Ngp7W!jI<^S8dA zS$ut106|nmdqtpguS!z-dw>4)O17DD%-R-7>b$J)&jk}%qRfQp8{R}vb4u?W1p(Vv z0sBW?e8K0UkU8b_d=tp~I|gx|kAZfw-Ip2WV=}?AzR$RqXiHHo z(51q&Qf*~N2vlvo>N)l|s0+5%x#{U`${>7c_Igo>M7b3DyD96AAf0ofmQQLTZNr<| z0iAcUU}mx@AqVr^jYK@yZ6pDwIGWYaQE06qCozl!SedXD{BubNEY^rZ6Hf)gFU>)~ z5~*x7N*eW2w~vB|jvOT~P2-W^0V#!U;<;FN{u{T^tie~G`YU8gzZ#vQyyo+2GhiA@ zGu4pothmn{n8%^(;r@^EU*m<_gVjE5Efpt|e z*-QdVSz{4Ma@uX$Go8ipIPzar?7ud%oPMfPS3@>R-PAA?=)c_|#M+`Zz|MPS`Qzj5 zvPu+t+|EGxXREdgU1;fQJO4j|vYE$(&Ip<$v(ok!KIA)d_mutlkxEA^l#VQWo+~z{ zYYJAXeCn%W?`xT)oP6?8!W8!@S08qZ=)Xb8eRJpNuGk#Kk)%Hx-n|pV0<;TU^P#m# zK!_FQgH8LOfaW<()IB_}E**J?>UQwF33oQnII{My6bz*T+D z{kM~xd0l4JCXCqdcUKV-fwsmCa(8WcDRRnv?ha^!bwhymJ8JTT#|pH>S_K9822{ST@>2_JBuBWcgGvSOV=jEQjRTqI{MI@Lp2gX`Wl^ zHeSW*>*Wb?Jv{YHnPIQpZP!T*lHi^2K6JA7y{ibNfV$yv>P*=}{|UKEP+$_G(5w-h zr#oyKKi(37?yIYhL;LEYWEr|iJtg?QfSW(%fmu0-X2thhHAdhpfQ)Ow#r<|)Ut280 zPYB7D-aEFQKcC$H`kni)&0hC)1IkmRn7wb0yAGK4o^Xgk4g|)yZl-u#I02S?^E&2o z`lTBXIAe=)Q&Mb7>F#&k_5hw@c z(9NI0lo^67SSgpznr-{MT%lv5p`(s|^kVHF3OV52x1~g&yL~X>o0MA7gCEb7n~6Yg z)Zo8kR0(6?0Yg7|P&Csj=fl5GOS5~4%v^xf(axx={Ag#MB?`mUDK;aiL2AI%kSjt_bVnNQltHyNX`MYb_#kRy1LQ_940vs>12SJH;# zV);UgK9BzGU$3=5mOhO9H~CWW-rn&%*{sH2nrA0BBx2Y)C7)H;vDCfyx;9uhdEINU zdb~#ivhqD|H__wFP5LK4pVzsiXQ>2!wf&G>5GK4rD2(k!ll=PknbFlFS?2U5J z{(MN38{h(_TT^B@!8GDY6K$|k0GMDxNGvqc{rD+=!X>~9!7HDQCdRQiiffQZP+X`E zGna}4b}bj%;gg={Uh2Ibz=uMj77sc6;WjFL>Z#c^?Xc@)ELt*#*iHc>z5&&|JVwZ@|fsMCwV45zHOQ1VP{y(82JnC|JJHnhXMZ>&iI zdM!~)_kE@URVFUW?e9W=3YYbXI9m2R=3f^4b^jnHciOF#38PR_jB7JJ86ye+Y)WhCKdeL5A&xc058|hHPzLm)K)z|1aSty27e>X;HPMkC9>MOL&CGg~y z->|s*9|u~o_V1Zz*m=!aYUhbNNzpfp295OZAnv_^(@CRUHj$>ZKW{e`6ACpSKzrSOi*lr4&AgF^-8YS&5L*S$|tJwF=!Nq{MUHlNM@^0Wo| z`%}rpS3}#9iry2Rl1ax2vyPsQaCnx4f-#`S0-+c+wniGj8uTg>T-d;0&!7w&gzXkX zIT}0EO!fRSkXg6IYJpL54`kArAVMWbgc{_@5hdRzN`PRqtC; zdDRC#nSKdWV?x5>DMwlErJF&#??8@II%RY`DkQF%h~(<#I!WAe#)$3S!lXcPRpp_= zw2fxi!FvqDjbY*bX8=#{`jUbcZ|-;Ru_@u6B+^PK{KhJ#Z38MBS=1~qrt+^Aqvr{v z*fT{CapapwBOJXqt5P^sqhX=buWeP%qvQB@N2VC}?vr?Y zi~QT0J11W>vx;EfaI=laWlB|~W@dKcE$)ijX*3cZr{&1qqDwA}aXxCC?cpXf5aZLa zi^u7%_Y7=K5R*tlNBT;ZcQ3`B4GnbXcMw@n$@w(6kYTW&7ZTU7EqJZjg!8QJs~{a+ z>2}Q_t~0@i#Gipvg~)MTE85VM`$x4zx!Jw_TKba)9~ki>wrg{4Xi1u>m(!he$DbR+5GbFqbu9YM$v}N1n8Uq? z{{)uP6Cd?(eR#Tl0fW7(>v1svBi{{?Ho*V;Nmhmus%{D;j@O=dF7Fp`C?9a+c`1*t&elAvDIKvn3aA{&us5#%jrW zXz0R9&uN~*UWO`%5$r4!BE)>&x5f`_Fu||EiHOxJF+#T4! zF-$=iCNQ;$9y+EhwAL9!-u~?@hR}OGeVYIQJFj_Hm{STGpn$1V$$~TEfzstP_mg$uh@T0li6f`cYw<=@W*kOZKT_%*jI8I^9(o8~_i6)?+I#*o4)4@Rp!zxW_%mhZy z;}shsC3A%W-#^b3BzllqDeNV4YrU6wM%|~s+vc9!ZafW6X1Hu4K1 zYAw=&cCZh%&qzA1ylK*#wvf7NxXkK|*i^4kOstIL!OsIALGg2#;e2OS;FcwA+OM9t{fOjM|xpu{eVpe^+EeGcQw%%QTTbqIwkx{Hg=-|DdQWxc9LP*mo6qpoVgj%&(W$;a`J_Vh@?TgZm zfLwF@=akhnnDon>$<2VR^HWPLk>rB&!s&J%Nqa`6-j+Py%83)+_0p z7%f(y_&sR(dRSn4B{CVZSS8`GoXTKWLAt(xq*ANKwL>e zKc@KfYrno;MXGbwp(5{n7tr)YDC$q!?)X=W&tGzcwd2&Q29MTGjS&GhtSB>jIFtkh z%IRf&W0rfJ$a?+`!_5FmPXU}fA#Ztq{18Hnr`a9VhVH)2mdA_az=Kugk_5BEzDTV z`;XmV@DJ0Macx~8j)9FL(TZKGVa_xa(w&vSJqcRpyK>~8Ps@gLK{K(%H=!`tyDS?Z z)IM$q>1g-L(8AmFf%t;=2l_$VUv6^B^Y(kInU`_4DxA+y4sW~~p~g6*E7tIOc1hY< z3bv%b=_0q|`en9b?~xC5G{3z4I12q7BCyLp{nIio)xIMj&C9lgotKZpyX&#(+-o!` zDhcI)MgO)`2)BFofz_bmnt>)bbpweM<4W;3Qy^vq7hs=7by!5v(u*!ZGcv;F!}>8I zcMvCa0Lw!6kqD$Xr9ko^6y@-{9q`z>2EpNvfgw#R!P=Pkb~wmc8o(UVouz0q@n^xkd4PS~*?fl2u$=ZLX55Cqa>qwAvD60^!Gz^bd5;@d_!u0T)>@;Kf#gTA5#2pYjcNQzVM8 zh>heSEk{xm88R7OukyH0^aI?hW%j6NuC}A+r!0(s&cFH8*i~DKyvMgZ8ug>zCg)=_2 z$WT%&r6*Vy`tp-Z^SVjabDzfOmB6ipy}M^bNne(0Rv4i*)f{P;4SAM+@@j-8o>~)K zSJEHfY{(V6hfy1&KS@75;A~uDpJDU-js6b6n@T4UDvGpcQx3$wtklPX@07A z1feOiV14WDZZjOx&T)v6_;I@JuWe8pfU~Ap2t+iPJ!e`1PxR%M5>Kh$tnI_1AB#|o zB%QK^QE|G3Oqs95ny|*Kaf-2_rAb~U`9!#P59%lG^Q6> zCT{4g2Xdt>=nR#J838>;2n*49izY>9# z6vZ3Hy`dM52`ni008H6ji<5A^73R$eYDSisA63LliEDy;kOiv}I*?>)+WP>w{kIwR zIxz+98-=t&V#M?k`F&w_@>6DF7ukXUzZ1Tcj3Cca{6s*5vrbRtKu2G>!`_!9yk7TW zU?rV)IUfZeY_yRhJyGfH^uHykZt7DTHY%mht4($K+!>35%%)!74hvm~Jigq<-Pp<$ zxVr;L3@0KiXjTbub9w5-&~?>8Id!u~a*?|B&dVvjIbyO-NoKs=+E;QR=0E+9N!jQI z9Gab7&j6JXjJ8Eqcd#UVf$D2?y*iN5Xz&7VKkFyE+um~U4n`AODI-1XJ4}Rrn=7UZ z#(I2wr#O*u{=66h^{rBBCV=Z-7ezjk*`Yy|sb-mvVNju1*_DWy{tI#^`L!elDg+3{ zS39~^O$G{|8HDw&pPn5bR1F4XwS9}4RE{ew)UnM_o+%8uR1R^+QoXVRYun5*NVgAp7mYopSEcb8B#1{VZ-_=##*tbH2SC}M>hU804PMk z&C4H;g7J;py#x=RqBh23%O5*l9xqE!~{B zKZ)wcBGr5g?`=z+B{*mthV=m%*NtXe7l^*uThn7WJ%1PywO)^V-ggZq9I$se65qET zG(%?h=(0p;WiX?B5q4ae*Yi4}Hr}^`@~Gey)e1Tn#3o;FLk%TGk3kUQdxb5`Y72=E zsl)4!C906YE{pv3ETvm5FmJVrK323y-?C=2cQwIT=THxs6|~NTtXzrF_`dCR$b0iw z>}UbT!LVknICHCD!M*%|LdInJ$AuALuBfN5Y4w=T=V+}I#A24Ay=xqDXge&3_fus- zOAa>@jJ~%4rN7{1@jW`#qCJYp&SoZesiSVGdVX5W;Xy51=XgH$H0!23MhrG5HFoEy zK(gE3bV7)L8>DK5&!K?~ce@Z>udh7X&)8ADi*rK$QdNr#uI&QW-|s2GxNcO>g??{exhOmq z??NJLf@#*RTV3MhXQYzjKkAo_2`9iH43JgnP$f6XZBNBOp zQ2}-yvo$94f2PhEk}J0gINr^os+^xU8JCyJp^^o;dJHlJ-+Lt!MM=XDJe) zQq5uEfy}*94{Jm zeb0&zDipa~XVrVK>92kvOr=3}K$G>bS1~L@XGvzda5XMo@UfP`TQ`5Zt*WC<-7)nC znIh&@3lGx5l z+V(PZN8KV#VPshg)YPlZUoHZ@jsbdNR6Nti)%WKIm4N4j44JC)gB6vhj`@Cpj=DA{ z7$54n5Hu%YE``S|)0PdC+Pxl!pdo24c+2ggizMkb?>gDE(DK zxC1H5?~4lg2HOXDt&Ke6u9HeYAZOFPzp;&yl$SXvXvCE{!*1gg^u(p^JF+Y}<=?+> z*%~LI81i}>N!((cyPdEFv33CV!UP~mfN~-wsD<5*`_`5$6V6!>p=#z%2U1@PrPA{= zl(~CCw(I`k;KF!eRDc?_X_;yJD#yWAs$#^VRi-TJJ(mq>ZVnVr7@izZx#<^)c#)7h z>#05DfBfPx@(6qK)nhFF_FS13+a?1!Dp7L!?EfTPCDF(1NzJVW{?Ck%6R}*=w-{X( z-k}cUdHPz>^|%CmFU}eKBb?j~!Jm>EJUH|p|Lj{)*212jyom3cRy|5PhI^oP`b)hW zUzO6_V%2+N6MMI?v}1wN^V_s`?bpM^+`~7REjhPE{%M`tfiLA4fWx)w>dR_zPC-Y| zh4$x_iySkI&8dyu;v0b;ed-1;Xtl!XTps<`x`5$ON>9~DRrw<7^MA()gfN(NPFEwB zkk%JcXJ?J!v=N+$v4ECZGq)p?vp)Cf_A-6C3AN2XMEsfv-dFo?A-TYk=kYlC?BOMF zGHnAjb(68Pfyxy<4h5Xvt`eUKYSM~h@eRIAs|x!A zO5NmRf0ZN`dR|1Ld{oGf`am)&ib!H^xtB4yi z%go?9$JAfe`DfL^IRjE@H1$On!?#=$sudFT**d|j-~_g=5BS$Re-(7^VPX=YSzEFs zJ29QL`e%M|_X>1$ukWmKM%Z<~ZaTu)pjd;lwWS5>5=`{&E@_KIZAfcOcwl#qqe2Ix}Zk7!tm84wiH@*Ey1(yd(G5W(oVB!L?~C8dA-pj~bOpJ)z!MvaD+e@fPEbs>OXMm&mdZ zzayV}C?_IL!AShrY~3ZOAhKj)I8#7R;so6~FvUuy zfLFEy9>iW+cv4^NN7!(4&q1#Wp1o~3?SJZq((~Hl?@#{t0Rr}S?Q!8{;L14p_g+G} z{x693rvGe#Pk%`1Ab-xgGc*NdIu4gMzPwHC{U1l?;?Ly&{&AfA*Uo%gl*i;r)18XL$R4tImevOr+)YM_Ydr`J?`D__jSFl z*Xwyf4}!M3LWJFOx`T84c`D^EW}|a^(1EPkwTJVaP-r^YsjqWN=X9+f^DlzP{0DbN z_(Lgfv$)qQe(NzZhs$|SWRClB0yp_)L$|nSEOjz%pEs2i^3Qcvg%@&QPPOu6 z?n1E7QaG;LpIQ6^yZsHc${l8|E5Q8>s%>Gy3?C`3_G%7OXX)@}EdJ54#S5i}llA%t znV`!X7M!ovZHlEJaB+paj}n@CI^GZl)o+svn>|2aYe}>OIl(lH^o=(IiMn@C)K3fW z^G_oLe9L0A{d0MV`vE}+tkW9Qj(jhjWvvu#z17?&!>Bj?Lve|;6EumH!a5u}`K`jb zuwSwuuWj>_7hwp>p?~)C06;&5;a=B{hMS!g)fH9U^k}GSmtjtrwk)cN?+cCD#$>?h6k8VCAy3 z^V9^$lTr{0~UezvQ2F_U!ZqX>TVcbn`U7CF|E)WQr z$mr^8`Ews2&l@JwtMceJ^2WMoc=qFBc|T_u)UIpu-VKC$*1IhAXJd8TTPSbKhc(`F zQRk1@Xr*i~=NGGYh9@seR!ESAj1$Qh7WCgZIi9Rwda$pSrLwjSB)#!Dp~s_M=_l{J zGAq9QlY3jyx2b1_6f3Bv@*aXGIXEzg%lnVwHP7PiDpB7^u_AzPPx4EW!2^7@M;_J~I`X76(3tElxf5b^{`J6V zcK)kv@n7s6BR&XCU2?l_wl<`>_V>S257^U{FpV=AwJ|@HqU!71U7enhT;@Zznz;Uv_3*0k>csgHUzdV<`b9(-0_;we`Lo{B*eKgq-G{I1-9rNQYta zw|+?_D49kfJvl!oacMd>9o|J0Td92hZLozCdvd%i99ZUQ_o;XHdkE}du^e*0^Ge0H z3rQJj;WLw>2|L+xH}sttlNuKN>kP6NMpIR-O^yDU6&-oL1&3=twl{1 z5^y3RkBp?x@B)$lj^DcFgaRQemnuTmK6pc!>J1`Rrp8>e$mQ;jC)&WeB1K^K+dFzX zxfO~oHe`R?B^^r;$Qyv@6;>jgv+zg?rp>%7ZrNn3J;$x`F!S7uT+O3b`U-Y6BS@oN z#8p*|_KHLU9kEEA`f|Jjp+*zXB7zTCb|h9Y&)8Xb8N^d0jZjE4W1yI@D%S^^y^og@ z&_r+I4wXWxQapbDK;KibTCh}VZ4|i;0Cn3d0Szo

&B?v+pFRcX-K~Q7#^AA$T`?y~?X*I+#EDmhM|QnO9;OeEL%8 z8mdGnCTpFPIW*Qgrv>yJdorBkg^XCdaq~ER5QND3=K_nEeG@_&VNCb zJX>0NhAy`;a+gx3Y#X>WZ0Y*Wpgb{gM${2RG79xWm%Ad*!5+(mxXf4Xe*M$Fl`G%1Jp%yt#yd7jl{c((OE9T@YA}%!P#JE4c z)E~-Qq&2R?pBVb>N}gJ@Z|5Ug=bnBw8E(^cZsP#AZ0^7KjG2)mU%&b;k9O!vxVq{i z=c3X7fFXaGS7cLRi`^Nar9CfqhKBMkqd2BMi*Hg!B2i0&ihNAxv(E%oI6xH!HX+*L z*GH!_g@csU^+Hp8JA2o^XtwB7DDV&^pBw$FO&AiH4t>6H>_;xoktJd6qeL=4$F7?6 z)ugmK1LQLa-tjl4W_h1SCL?doAJ@#Jz3xy|knQY_`El+R=>;X)SPcCo5ZqN=kYjNRLi7~pmrJK|2>mEA%?2p z`na<;*Cm15pc>e73z9?ch(gb=Hlhlc*OOxsu@5IK!jPz;k@H%9${Riblp-fHfFl>Y zrq2i*b&xVO0c`Q*DzmOyJCx=LNV-8)y?lqO--$rrA z{5_1=wF_b5K5jGE<-TTQYDkp)eUNjiTuyWA&ok+3y?RrWw^8xReKX&6}f6R zZY;+9A8|ie$6l9oZI<^`chvGTq^Zxf6tz?ya(TKE=fhIemEY7Gd9U1hjIC~o^Tge+dC}I~e@1;)oNTlxjDlPDaQ~^4rIZAn=J{8SQ;8D-y3P)HnM?ZiJHwdAl;>mUP2t6nxGpBY=*>%b zOX*J!$2JEKo^Kl^5XhHfk0z^eGuU-2>Wh`bHoi#_ten@@QT*boUg11D5I_-{^D5pB zHAMDdq=gD+52m2?r&WLyH;Ow{o|=U2wMAmQ8<+b zbZ=Q%Ly^^U(MO$Sr^MwdJ~MsssO?B6U6FKsbvf6co(&ysf!1a=(t}nRFC~Yc*^?Gk zV9A#KE3mzB%H62VpWzEkPv9cH$Zvtll-7B+eJ=Xb5{|C%^oJ&5?uX{P%IEWa<1&D% z|8pD$-YZmsM2{^DlJ-uTbf5Kg;#3yW++HaRTl)m%n3&r=%|OAX1!#vvca8+b*!XqX zrS`qeUHgilM*T~qY-GjjhogP|W-ziF%`f|0Q3A(*aD7wBu{llW(8=9aWN+uEzh_Zn zEqetsTiS632mkOD^z}|4I1}f9*?42YZT>`aS_cl(R80v4H4N@nOlf^q#kZ3$R%xT= zdHh@QwA<~rHbEhn6y$%t2!-OdgHTXUeFt8xGN00jS|7j8@iaTv|+gk8B2AfN~yPZ(-9K^b56&1I+ofnHv z2y@Rkv{j|3?!H6ofj7$qu0_ayquNPUIKhoJ0M2U>J(G59v`*2 z3t$UFjAh>O0S2CH0*zN$9a`g8_bn{p^(Q>d1KVhyCY91N0YIKNzHuoaUH;#O?Iucm z=7XFsSeCytAwl7n;9?W56@WF!j(Z^EYo|>K%ggXuaLea2L?nCbW67Qr1mw8VV#q3D5;TqK{uv zZ~CyarN^J6x~M6}!KhbXK279zqnMnp6`hl~_H^ilcv7v3tNSbe_^S_veUA;=9SNwyKwp^@^Mt?`|>c#6yV1;2h;&`^))~!{@-X@4W2m#snqeIBmpNZmPdHTUC^g0+iAicncCCN>riW%Uw*oULDMuL zCKa;eatW*;`fwZgRFjgB5q(9i-;#%Cm1B+T43bS(7n{lye2(103(jw%%$NIx|N8R? zEp(+G2B94urjhz6M3-zF-82AEuj}t!VR@5wQ03!c7G;pQE>O*!D%iBdolge6HYZx=j~TQBGd}waR&C}PJWKsX%p6c zjjrCiQecAdo7mISJotLy#Q0S+Nj)WA9Ty=g5ut?-8_Y4c? z2aq;^gL1VWTN4s2xHf|vD^rwNj5XyPT#j}e)~Y~7*zsXHpNf}Uyy%qCn?N~3PQp0z_MG0UD3C1@R6u#f5I>D>5sTYQ1g`HkR! z_}pi|#hU%?c8b=DakF#7>&T$H(ezDA01~GT5oo1668@St|ER#B0;^zKPX5-s{YvrV zggX^P#099M;4RLvPn{825nNPz*!V1g<7kDbCPB`n3yTi>eJ{ZE5oHqOJYPOm!_S~J zNvOaTR5=lo8or#46RKKAq5Sp0vmR)n#xCxKyvOsvSDt&SCc*E4wYkmKUc`xVmR@-a5!VNtHxHP0+IH z3tb^WQ<{$(TY-0?Ai}UC*}75v;8}&r_&0U6>HFG-klA%q6r3d%(phu67JWy9G-(ES z5D0xWKa>!z2)ppF4eEP64&E*-fUVVUJwaeQp(3%N?n)bQBu8QsqYgJ8+jo~}Y3P}; z#?cbvxipz(VxxIU9<7BBF)WvgoQGsM-GV5qVx{Xw@6YO2DWprs9BMeLiX&tN%KF3; z$GdM~GvU3LNPbOXza%hg{y81i%D)C3m&)$u#!1CN*`Dg{t$yzxH0zYcz0@D|`QUSan zKmsk%`O%zs2HuYCyjFA7K7Gu*zgQBSL^e-6IB?99t8ceC*bK>OMpiBG2@SvhZ`yE&IlM{zJDku6TF&|e%Hmna0RLPIlmXXRC zllM>MpoWAST{RPw-4yW;sj+VZ7bUD3FP*;!EY`ZVr~ zyo|fQA;(v;Qs@EP@Px~6`DmRN4nC@U)NfzWtOj#DQ(k{+dMP_5BaUzw&x#i9d{p+V z@Y<^D&WRmm$1~V(Nd@qo2^W40T3XI&0%nafn4TE@0AAkD1cwY-*=?$+_fq9r3Y~Hg z>OlrAU7Is9(K>66-5PkhnSKj2{`0=L9*H_!<-5#9OYf;DTdwVM$2W~2KlW>qFmD?L z*b$5OT*7>G#=Qi6(gQ7tP;U6`0lP|AOoBhM8Zrc-u_%y>?L|J3HSEl?+V-(oXyR!g zMVm6WFFFs#xQzLPcUaOSQDq)A>~C`-NA%$|fY`$|ZEB%ua&0Eq~RgR$uFFZ;bWtFqysD7q9&o z@HYwu21`l{jGy*JkrJ*oI|Q88W9h>~Q+Hnfp4!yOQ;`!o}ML;Ek{ z-)Be=lA~A@puRf=B4#N&(ob=n%AW3PD}6Ud;@4x*(VTc-wp3v~bfNm%tnFUcx%5VygaHFaY!Z&3A(d@MX7t*WF4r_095Ol~ZOf<=vyT)V!9u0* z9NR{DZr)ODl0I!KjzHJ!-5LiF5NT9c%LEP`I)s(Rsle>RoBk#bOr+2&M$%Pr^I4W) zw65mHzeO+MPVrIj8J`anx>q5&9U|KxDHe5g|B|!8^Tj*j(F@c{^*!HH?OLt__7~5x zs-2|8OP_wVIjhIzsQ1`zbW#j4XaBly6MCRuD{PvDO6I!26#Ke<(`t)!sCok>d-JA^ zo@?<2DmTBSg+V69iWrYdOJC-H%wePG|4gFz6;e9O_5jgCH__($afSBM{|~Qux&7^& zgaJpk;f|N9Vb%+#63>ZNBAsJ*Z-1Msbl|hjJV-oQ2r6+oDoDP2`jGpRhAtma()n0t zyB_aHMmyYVhBCE4*k;nh5{TTh9U0;~wQn7@4bmf|_Dhcqi58?eJGF^%dm9Vj2el}X zpz`c@=H0J7g-%NIOMb*>*X?0TXgg=1CsR6sn~>|+eJyRst%%nhPCEpFNYd+el(Hu! z{@jzUv@?FCXJC~Z=gPqAc{VTevn~x0ZZ_UfrXIsdD~rrV2dovI6*B+{ti*;sNrh`q zsorV73vWs)B%)w3va~uwlt1t+{j;Bxc`$+;4tS6-!*d0jkHzMNY7+ebXV@*3gHwdu zLJTmj_$NrM#5Z%Ws&RONnZ^5`7VY%;h%#hK2nGU9(u8eXd$A5LX-|+@5iyY~mj6Q5 zxM}%p{#fLdTNM%-*cw+mj#qs%b=z%kFk;0tD#k%`rOZs~965ncOjL&!2B#q-*el#o zsCcS8OUf!vtoh&Pc}^K=jv!1ogx z4Y|cQg3n={X-K#!P%eC!XO(>V*IN~V;Pi-rbeQzd=|kgWFP%MczULd)Y$$Hbg)1?C zlQc;0k$pceuowzm?ftr?d5X`WizCP6)9tL&Pz}~yKrBwoj-y(fNl1ht>w5mJ0rc?}oJ(Wpj%&+Lsd#CJ z6wf(Ex4*o3Vz#402TiO_?>#tu(&k<-)IDO^dCUv3;xy;aIQQAI5CX}+?2P+h7~~ov zKAiulK+=}eaZ7Dv{wWk|_2C)(t({h=F6X4ldWA4MTZa1Pwvht+KNN!Q=lhA-N-A{j zdrm?|*@Otyn6&43@r84iZ$vyg+A=aR>A$?pE{B89-bKfblYdbiJ9rPD$DU-2yY+7l zz>W#tZ>R~tO?Tg;pX43;s3XM;9xxw+juE^YA}c4_nHDoOLfKh|P#slFbXYx9Hyv|h z1ZS+qyD07!ucbzsNtlfYJf2zzkvcxgr=@E22_QwnY4=61 zA9mZeETq&fXaxkHHTv{6IzXoE34Ldu{hZfT%7Fii036b4iVfybhc)fn)elCuglVb4 z!3?4CXyRi;R&&_LXOWt`P0s1(K`6`e4n_4{fR%e$qrG2(ALc42eZQmgQ*p|d z$7K2Jn^`{&b1#V!5njUXqQA%LmmbPpum47Ef2$r>(yE+|*uV zsknkgg6JtkAzB;l=M#^f;iO{P!P+xkz1FI>EY+jWDhXBYxpn^prnzJr@eU%D5KZX2 zTuEsvH~tQ4V21<41+9SN*+|OHhj_maAaRh@Z#i8F=+KfDeUpv3-O)i+Weii16Qw2v z!r~NZP0$C*D+RpoC#=HcU<;)w=@ zOZ5-_dMgjH?giBMO-AFuzFhz2tFZ)vOhq5o41kyBWm#S|FaxR|ae(wpV!TntJcRnd zuYn8U*fgs8;a}A)i=`iK9^1nf>7k4K5>!CP(Y2ag?vnHn(`mMZ_9su%w;|3~mh zO}}6xc!xa)Z? z!%-1GT278O$=8iFpt(2`XZ^#L3#wwJVmj`jkO(f@LTd|YuvLT+r{=$!>BqN z+g|9S@mmcG{wsYtuGUu#WZ^Havib>Sd2cSV$`NkYtH#Vjw1v)3CYsn|HRG$qZsq+F zB?SF+(`+h%ls+amxqYc+L)9M*$zNJRO*0HmI+iDWH*<$e5I=*iWLEKucYJ~Uq#jx)^x&+?H4o0vMtFT$^STiSb%lH? zIEy~8-}&M3WN;4d_)3N4)8D*$yz61qqMV7_t8QY*fgn%+`R5kesNIp;J^=O+^kQ&o zlr=*u87^|zHayc;9#{+bII~ty8gOt zey^UAqy_U7>2-Qi(c7%ccS?Vq>;hw2sDDtWBu1)PU9#YMX@!Ilw|~yCK!&xdc31%Y z7ru~d060I~si2Wn`q>*LHC>#R>TD5D5Mq+CmP|1M1fN~Zazox4s?&`nzkYc(5s`2~6 zwDWv1pvNEJF<+PGBLa2SP{ll%80Xb60Zo4(*k3zlFz4Z2TK4vz@T5FBO1=Ffqgej= zbCdSVD^~jC1y)Lq3dp*_UAH~`{aMQ)0ZhU!^m`+8bzZz$eQh~atNST_`P|TRgSqhJ zow`5V?fiCk(w$2T_~2s3_M`~KnEbrTa-;C|oJhYX+v!dbi$M6;NNJL|4)^uUi7I98 zEqD3Tx4+o(KwxHk~672O5?_&+< zl<{iq8oRUsyQ|~s>=n$<-^_kcm7nO+yBcbrq(UL#gQ7 z7q5N%3%6Y^5z+hkRzRNyLW(6nh4mZYC8B0_ElHY(!-T#@XE7uiLDSsV1h%~?MA2N* zF_dtH88we;FFYTgjdu6h&#QV<*3%BH3nN0Q=0WZbJI-RUT~{a zLDZ{>VSwXW#kOrrJ7?I@KtMy|_fsJvwDaT;Qz^dmmxpEMAJeA?yxtnU?}EG>O`(5` z8$LNQAnG2#gWl3NPQ0r3hzu<1Wp6z;K{nKyL!GTUaco3zADAU!DpktEsyuBiLZtNE zdSZa6@QA*wMiy*76l=vu19u2P(t?pB5xy1h{ba2%%sajo|@_XO@8fzvo5Cn zHEe6llXv+tJ|#0iZz1k7h7Ajvy?v3Z{yhUoxT<;HvwosgNEen`D@Z4Dwz6Ilz9@j5 zejLirsjR?9d}oo}RL)&3Ri-&O1iaJWqlyeE`k& zx59XBF4i;T9;g_DX8%^TjR!)%_FvJR<=(J6n#XF+quzS(0EE=mpsuJh*%_BVudm)U z4X6#M>n1E5eM$~FeIprFJ>~lyIwq~ubYCl}+h#=*pF<^%El95zDnE7He0po^J==M{ zG;sy^C6}zy&02h)F+RO#_CBEbrSdWx`Id(B6YUC#`G`}r-{Nw#vI0l9upZl?!fsjt zx}KA^kR?jXMU#c5&&$z{cmAD!EZWw;UrfpcIU5++?9QpDg!4X?`d_YfA$(Oy$2(i# z34R%M=rNigQTKch76cjqaV8z6mjF!WbWzwvu%rd29@O<2*<)IC=ARdGv`5H7fB%L* zVB9My%lmCuJUU=10e#?ygGO-C_85+=43of{Y3Zfm!LPt#0^QS<-6#WOkUWHEedRwW z>V0-)OuKg5*B9Whai(cof5bY@32SmhO481s8;r698r4hz7eRo!{qCfX;S(}zJ_96+ zX!p9-Bu8g|e%Rcy^S*vSj^^ohc+0=PwtO=FZrP?1iU2Q);2Tc`U!D_vN|Pwp-$^sr zyaFvW=*$`h2x~PUg0{UCu|llYLx6*pbi7;A z&m;}@Tc$rN6L&MO7OIc~(^~jy&e4)Im~|3j%`z1b^UrucDSkMt*$wc*%idMlZgK>uE6bT+rXpTB+jWgRQ;K0h+f2 zj1`=J{Kk0P5O+M`d+v{GKD4qXJN(;Cnke+YCicU92C}+vn9cY$oT(%=Hle^E-hY|% zopQqHA5O)U(@UC{TsxWZzlpGf8LUW+A6DZgDyGxFRwHnq51v`|$>815Sz4!nM)#;9 zQmlPKWAf1cgNU0z9MF^G6rafc7&b-_JLf4Vsz%w_U{6@=1d?ZG2Up*L{Z=o-UGo=X zru`X&Bn{RB`>g>C$iTMgRd73YaHHue=SgTh%wLG1w<)0nQSs;+ne~|{sgWNcK|spp zV=^wMc?Jwa%?{_?2ELrKq9>r6U~nYE}_vf+pG!2Jc0ZWf2I~ml{geE}U z$a*TKKb0q=^J#U`RV=gRbuub0+$~K6^lcF(Y?h_CcTgRpxSEbaxY+ocmnr>s;8X~D zxAY2#@AyfFy*$;Jt3*4C>0^I^cB=o8AX0comR2Y=a&pZl$o+rwLg&az=9+)@0K|!S z2m68L6=>GuQ3IoQs%)~fjW1Is)6bkJG+^Uv1ozITl94u7LE6dHK-6y zHMdI!g8a-U{Uia7;-JYuq3tY0LpU3x=-K%N)t_Dpj38XVL^$TPt=u!F*`=6eqNeQ0 zmCo*{>yQxBZ`stfE&CpmgP64jeRh6oc-e1~R-x`ox-hqiX}Q`64jwg|2?O8 zzKU0W{ra+xl_hSym-l5GKd<%5qwiXa$q^ zV&8NvABrk#N}@Oxb}=S%kOB5^|KHNAG4mG17WaOGuD+iVcQnZ2!*fYGBb!DOBhRi& zX=wghwTkvP&hqV~hM1X3)ry^wXLY)_5aD=RVZOA)?E(5*bH~*hdz&!a6c<3XWoL`K z`yFJ$;HIr3=8m&7-`tv?fze7%NqME}S2XMNh}#Be=Ls+}Hr>;z^`GwoNy7ExzBEu26n2n)^dc*~#W zFi3UpFy>PbbrNmA?XSB;op=IyyfS)u>Od81TSLRNGzZm1g&NJdSKSiIMRnDQ9s{4rB+?6quq*d2v0hUVBrNek#bE7c z&RGdV{It#OlauJT)5yw3C99Ku+Wc(BBLksQ*?I}lNPqi~xTi=4#!E(Bfd$@aswMf& zN=gq|F|<*RUkL3Q?>nF7v+IK7-m)%HoZHs71<_rpT@*Ch!Cg{sE(+59U*@-YnWsj& zYcOmtV<^h1B~yr9t2M^)uhZzn2Q7G;W`3{0>j*I~gUGL3r$P3WEgSk3Ywda2!X{NY zM!V+2{)HEZHX(B_$F((Xg)WQV*SLpj?DBfZB0L6mlKKs$$tPy{0zZQ7!nr-NlVY8NE$GtB+0gm3UOolV9aGlTMue+k2W>;-V0vt0gc3O*n z_9le8F5VN?bnR$I`n%8w7+IQuNhUgjAW^T-e!x9*8VCUmg41*m%s%ZoFU3b4*C*wc7!aQ*0D#{z4a5|Fg zcK1p39@F29woZp%{aITgM;cynXFu^@M*oU!?(o_KcRs0k&SpAi8FWPG(5@WXq11>N z(&OLul4og-+tHFwMP@v~U=IMRwfDAoFk|y-oSlh_7I*U6D_D$5Vp;buX1k#r{1m)8 z?ejGLbK<*98dQ&oRg1r}soOM-8j9^3Zc6nmJ7z4hXLHw&iqA&;S*|^0HiCiW?tV#} z97RkC(^%3v4;MBMZ0aRGNq{*BoW!aFA#wG?4mk41a8SNR#8c}JmzdS5akO`G-G@(G zzYgJ=C@Bm60pP!XIsU^l0ey^lM&snZBoqI=l-h+Zf`lalxC%2(BWf(DsrT{n(efFf zBVL6YJA8rQkxdqW2y<%~8?jrhgkDX(ZFl-&wkv**o#}WwO7#0;CWn)fpTTUjd(i+$ zF^&-(!=^K?mnvbGAt<18+o3-x&g5Zi`y_-me<0cViS3iIS&U;CY3E?k*ilZ}%c7hij)eqy?^qg}kJ5SWjZWA+)z z>x^eIf;KEG9XzpXh~0nL-T@H!C)@W1{zcHM%JTpCuUJoK2VWY+%;Wzx5@FPc70Lr3 z-T}-=Kg@2(Mj!K*D|AC>Yi&r#CP@F+JE){mNjOB@TW6SfNskhk9J3^8`N}TyUY;z7 zRL>4=U%o>ImSCxRC}gIi`z5}^h!ibUSnMNmp@2%+sxf2zb+^IAFMdcc~#$!B%zuJiT+DTr39=-)^C)ES;@w=eK7Vuzzu6tLhSqXhovc!^rkIg+tPMyF1~n==?%IU(=eDQ}VVNs1(+| zK`j+NE0ym6XAQ`?yie)!!|teJ%OruDTPFk@7SC`5W;q32NYJR~G&&Kuzp+-Dh}PZx z<+Zd7L(&9KO&GSCtmNwAu@7(Ug1df(;ihJj1D@SG{>0M>9SLZ6d0hqnFJjRlHe#PXvN*&?)T<962<<^Ku)-sxx#F2tp43)%Blg@DWUeA$Lv8y;Wn2sV^mgjjxQ>6 z`~&OHjyLL45PqWrIqnvRl!rpmPgE3BTzPoRvmr1;W~1roO@4DfkJglQhY+Gj<~3o& zV+H-z-<_iy8Cr}_g#6MjNWTBGsqQoT*UfrB>Xz13^^-qyyI>CCaB0`@==c2HCkvX4 z;mKO}9lt-j$DH?9PzYd?R1hqh**>x9zU%JwcasFJ_u95^#poMOt(@Ek;G;E$o*h&S zQffa2g4oak;Kaq+dxMGe@iMrW2^8Na+ArDEmNBR*z>~_^r*Th4NuRdR1EJYR5_f=E zRrlP1fEAZ4Jh!+I`9o72{oKQMX!nrUOX_PccHFELihTcWy~icqGwXj!Xr<~`U=5Hr zSw$Cel^+KJ18^Og>*WuC%*79lm3h)Xdjk3$5D(PfmrXXDcL!}(^R+scsSIHLH1h}gwBoJt8)xl_9>Lj~s zyd;6U+YYjP1L}|Wv;tplrOE%XXXV|ISPZNFN7(|6E?PQ~$0Lyrqirj8Bn(7q@zZ!2 zR~opX%;{j9v$p)ip_`Vs87^{r85NV1FkTc2q%46O1w#}c>>mLRIG*H#fAwc8{4Jg} z#i;%EJo{J)b*R@_^Pt&hk~-%oOY;lH@(_Dh{us8XqIzU5;C3Pa&4p`;1Q7$h*_83k)$D%wC1ic-?(m@gaYQ_Q(KS*pIf-$B>EP^=X|Bau4GwnT_Tlz% zt%}D}jRLX5rFlhMXvoa48>5Bw_C>AFS_JhKp)-^5jEF~4tq_S|*1D(n-d*bcnRB0o z-*~eZjpX-q7vk3!d~N&5AzgPs-^?v|P1#Kg!7d!Ri(G5ke4ZX6tCqJHr9%X9VJ?ew$)=R+oIP20#ey$8^b$tK7M+#C1460Rv%zH zfOH$?5gl1aDsYZJ0fNJTpQ*Xr7U(03qE zPPVq>=j>N~F9uMh+~5;79Q-Fs>obmIqka2U93gMW_t_N4G|j~&z8T^IK>8^-Rd7k% z^ndNY=Uj@l?8oYlXQ_))F>F7WzYd7Lrra@nb1KM83RpD6=6;A)H(B?;jR3jsVVhUW zWdupkk?%5FREZUd15L2E;%x@E1vH(t&O0{6NcP<{HO*?$*)7grinPKFYxTd=kse4- zxi3U>?2!!Dx1gFrUBn6^+A(f_NWwd?Tlt=TP;gk9n-T~(koL!^j?4BJk+kFsMqqfQ z2X~$wktQ-9EkK3P5Wj7pgCuHDspz^EnrdEK4HbmIsed6gF5os0yE7^3vaS4(=>Nh#a z6}ADU;)lN5sP;hJvQEH=^e%pUb$0MncW0${N<#0De4^MA8NcK69Yf;Hc5=(2{;@-C z`XgWmveX?0-BF(}^sY<`9QMm@9C|{Gx?{V0XTqN+I8qX{v5ahowt|$(9T1R|H&@@z z96}ksO)9NE)87hKSW2JZ@Rkg5 zW3}T=?^CGs(2ie>AJr{%eSM^vra9kuTA!PF)h64^?Uh!d@IDW2`ixigYV{wBo$c^} z+%cSSobj3ViXOrDx=%USpZ=0P0=>0P#s7A`SwY>|HHwC6kcsh$#X^HDsCdvm={VSiBilW?l>9+bnPm|Jyq;nVmN29l; z*=IH3^$As?*p;B?aPb<$tW#?ZBq+IeFU4acL7;aJ#Rk8*6UCNWVpcW#hc5X?_g4#s%7 zn$_l_xAf;x_G*u>7eWKQt4_l7})fIZOj}0?A*bFFog>YrW0U;rcE(D z5#1Fn>1{daUFif2gGxP@sRqmbXlWF|y}#DD`V+nH+X3i8y3<5V;#S_BT*X{Su06Hh ziJ?9#!h_qa!`~_U0&u&L@e)+}It>641M*aoHk3zF5{^fna5;w&9z_Hq%LXXbDwBNB z`l6k;Ebwoi$|KqLdwHZk3SCGBk*kg2`>wp3olxU85O{jy4rgQ}h*z)g+i^urFA&`Y zLnQg34_6cI{5#6BGRNnq!Oa3K#3K9mjT`Y?4WX8{#ITrO{r*T?=P=MPpUn+`O3m~I}A^J_vzJ> zuQpn3WW(7DRtipit4#M)uM*LECZ6!Z_e)j!uVAf$y1^p$RO?v#bdj|X%#(m8r!~j{ zVZ+LJQQbmwERumxi6Pd-olFff;Z@$am$>t>++j-P;xHOb^7*I(M-~-2NSRD^#~~Fs zU$x}3HY;0iNw``&t2VFLgh4&IV;{4<>UdY!6sLaSZPW%C*?rwplHrmmHSL@36}iWc zHW@5O#j&(J#TKnQR|>AWTE2G7J~nPf85&1EwUtv>SLS(*Vu^nsJz&}{V*4SeE?B-K6k zSE3|}P}J7Jb`sN!$a=#WAijQkzNWS*)*C6y zRCJHa2a=3{X_tQFhL*&*rmGRZcHZBf3`cw1+W6Ugh_V~Pfo|LS=MpZm3hRmxG zo60s)RMq)Y4}erf<%ifxjoMN%Vph@GrOVz)TZuhtucEEJ zt46en4l^M}%-SD2`~ST2!r{nqxO3gtb$vgd^DKSaiV6Pr@@O}?@;-sTuk?@l%tg6{BtvA<-EN3F2sH!QI2W8OWTUG z-1@<6YIsqzHcdG1k@GimC0lTxYUjxIX)5Hr;g47Hlj)Gyg2~pE{bH&Ehw}W5U(%^Q zQhGm33*+b+DEHjhqr1X8V?$e~p$wt#@@iV#+8>PG3pe5KDQy&s6rv_uuKD z(=QoXdKZx&8}B!hE}O6Z{#1Am6aDh(!00E+OuTTlR-Mo~dmm=(x zEYf5g@ZVwJ@$Sjb%7!t%0^L*by*35MOefOE3(s{iIp%yO;k`S4A2OAFIc4(dpYQyU zl^3%xQIjxpd4zGN^bSwAEL>}U>@#CQuVloH+?r6>p@D#~zt@|&QeF)0l^e1p11jWv zFi(Zt63?Xjtmse)idZohr!8AJGhRkCp-#6kLde_G^2)8ywhJhX32D8tEy6k<58Y@VoFimBkZ1z z7gZkczP*fud!u8;3h281%dg>1P8+#X$4HYD4j?uOuFkLK?xN{%k_-_#+< zj7oU{N?Vfy@Cg*0ATN8-C}~j%ieGWfjmUg}*qMW1l`rFW7&4skE1uOrxdCDdnHQuF z*5K|#qlzKiWNjB)i|zKRC$(F~E?7k&3ge0W=!svm`ev{ zH@}4>pm2$t_*P^7OoD zIEV1e;N5=)xri|UzOXqhYr5gI#;q;Rgy^{i&S507R;Z?(Xq;mJ$>xy;Z-6sch+Zyz zMm)0b_i(L<@}%(hT?Pi@*We9z%z=Ga4$|wj&FF2a*)hki*OF(HgKdpYx4&nN53=0* zeZEjTWLG^;D@Jtbh!k5r`AYxq!ymDGO)&+=OuEs3Y&h2U`0Iu&P5rKw zLPe1z0W&Z$3FCTeCUl&zTABQI>?|Vf{KJ{^6~QKEGAHDU=xY`W$Jl*|fG_I2oos$O zc5Od*>L^=^qkL&g;|Bm^HR@6S$XY+-&Z&C_;U7OVRdD)wQVAG^%We+(8@>er9{JS5 z@OI65s)5DY!k|NSBZ~pC(h8tXSiD3wqgnIfQ77K_M)czD1&^%bc5h=f z)0>={N7{X8{z9>?6(t)(jiAX-wgLxM6?fjMhN58{qRv<344JA@zXnH}ttC;c`oF3? z4PxESrK4HZI^rQ~dBxVKs|_doyH6`pAV8Ce>#Y4@9H`1_kP`bj0f8DGsU|(O*K+>R z2CGkMAKe4Re4EzcUu-2vWAgYcMqmRj`B9ay8~qT}c?2X|b+j|9lwTvrwB}Mr;TlR~ z6uCfSiT!odskzq3oop_dC3;eEJQFwEQ^u$&F(eO_lH%a8e3Z$BeRg!v4FG7rE37si@>iB8?(2%a6WA@o(m{~_%3Q=3>xpl8NJ<@KGTAC zth%_EhR*)`NLYs;6^9POT)X}IsVbZQH#HWp#p7R_oj;5~31nQP?~{GK;w@;{x}Nbx zow8B%i6I1xfRAoSJemS1gAQY~oY5FQB4xjB5kKuR6{G)rbGQQikh;{nGH)b>7mD9< zJ+xHV9tB5m_SG?rcW_!u?LRoc?0i3YAb38&6ThS1QB7K>>=)=oZF7(dJ>CZ^b4AI? z8X4JSIfPzl$(#P|XC-j0T}IOIZFZq#IE9HvESj9X!zV3OM8=Op-n6eU+=4JGw*0o0bGOR_olVZUrErv_5R>Rfv1%tn(@01zOol8e}8FJ62T*KP2H{Q ztxTc_gVVkT6%%@aXmAK61~)eb?}fS zr-w&hn2ejtuL%qtv|O7rW?X1;_PLwElF@73Ft&}*lP``Ah z^-|9X;BHAmPwLew`1-(U5~^0TjXY{>T4OexG7(q_!N1&uu{Zr7% zj)6Rwv52wqUZo!*G};|hwHstZg28z|squG($w`uLuoB>05_QkoemF@HaH&4}7mKb2 z)~Eai!GzZ{I{Q0`cGEJnYqYa&v--wrlUnuZk-M20UsqM+h4rPZY{J8(7k-02N=32e zTei1e^L*HtU0ana20XWz5}cSJ$5qD0f}lxlF@ z^j%6AJ&kM}qR}o?lXN_+yIBy&lyVBnk`eHemLviXgqq6ahiMLfAcL}f= zYAXK=YFHHr;FZnL1P{CR(fZC$L+^GlI+Z3&ia%TRO@`YX(}?TfPo@J_x!gnI82MTr zl%H-{p;}|<%3@W(emsC2=;S+Q1xl2w`acQ*qzkTq!W`5g3t!W?&xdCCZU^_NRrbR8 z68aG=1FV<`ic|Lj?K(UbwIklW?~zt>c^@3v{D1&F|C?_*Py@)Te1gpRM!EIBLNdSH zn_S_n9x{910K>0LWlp%X7@@2Gg({l}qzE=j-f^V7(q7!UlYHU2&*jZE3(nA>^-o6W zEvpY&GuMjVU->8WRzZheZXmX-N%SX>7b9wuP~07Ug93fh?P63q{`NVNoZa;$a8$9C z=TDu9dg5NnM?;n-PC;w>kDQT&?|r+Iomkiswp@=ReCk5`-+#7k?h0nhabaS@c1!~} zoh3zYc9nOnWq7w)<)EAI1(Bo6(2)zq2$6zyGd+3T`v+SG^a`o&h_R1nN@O#6cA7W2 zFoA?vzuNtyaapL2h1&z(3eNGb3@^njbPljy>nykD)(I2K$9-QnU8Uv*Ri4=2D;#I* zGCAql0Ma#BWZQS@_?;~58|v5c{|BOV>H;8`h@fip&j(cP%%S&$j z(NX97wv-(F6+quIMLGc0JPV0>#~*Ct*RttebbUnP5GX=xykSi{K38DGI?y^WCmP;W zIfX2iTNeO&zP68*H4ZdZNGu(G!+0;4&0my|Cn1)=4f z1hw`er3^FOxH~F=&v`hd@-o$XiWXn~lpDUAr6z!V`0|RwEV_X4+=8UNf%g_HOi2_V zJ=Hb|Qo$OWgE#J})a3S(t6hk?-^h?8rwz7^Ud;)^Tz7E9`1cY#)`fRTH?DwKPI)Kk z%A|~K{m=ip>d1eYAvu%}1r4q!;u>C9ke!*a!~i&~o9O8HisHaqm3i<6QZ*L2FHK$i z%Te9BHJDZ|!T6=I5;@9bo%?YvfOvarP=e{zMd->5i?KqwHxYjJc^4 z&89q3|0}w5!+s_hODR67<7cw9yNsVu^Ts={5gTQ@BNSESWA<{;$Kk>GDw%n2JyuDF?cqQrmW8lKx>Ce>9NM%L_^vC`t}<{KgM*YjKW20hz5PBSm)RD8KGCP!W%gVzWb({ER=EUM<#dT6ac zGkEmdYS1||1+198yY8-OHj6DLj_XM?PTj5W3B{!aT3$bPoZ-cL7x5SK`-D2Cat$Dp z-tVr;8sz@B+8bf-Y(eCSKVS8%C|St4B&`>~!*pd%(Sxf#{iFMRNttFBu78a@?9D=u z?}~uWz>s7wN1_Us((wiS-W`ifCUA2ZT+U6ABsPf0q36Ti#NiBN9h!Q*ttfPrlR|9`pLGE_nX0lMDNJTlr#QBGjPSB;}>|A%Q9{3uYT9=H?34k$BrYN zZhI}{$s%IK>W0XR!lwZ-l*5o!u7|IBawzaDts)6aP;_~ud^+!ZML~UB zsxu`H=6Aa!G-7(205s;|Y@_u)n8MdLKK>4*QW(}<${R{e@m5k==eu>yNI7sa&55ra zjin$so%t3}t7E~2pvx_2IEwt?Cu}vvr6R|{@0DsH-EUPOI`F#`CR)z0d%tlz^$@5A0~dFK4h}-VqCEmZ3^R4xQp$6XG?5x!Ka{8rI@$-dKT%bo}o!P{CYqMTy!6%O#c20LNc z721GtbUEbt@XK`(cY|l!U77IvpsH1EAQQ)J);vm%-vL2|3y!t?@v2>97cU5E)z^#P zUleLbaKS5Ezgz~NP78HR)k!s($M=mUBfawT7k%rY%1rQw*rYI=LGn*>VgCR=L#<8x zINFdgPkoj2hm9jRspv{P6_Yt~cW)La|nQrWd;YoYKO*@LdyFpK{`LQ!Qw!36Z z&v>LzoK}2G{NvD46&}a{$E?*>JRRBDig1&&SrCT>8d8ElR{iStBnrLyh!}qFfTShf zo5Tqu80Cbd1d%c(X#rx6=PETbPIz5&Q(0QKmRsZ9*fc?OHew47%T^cZ+&A_$4VZ8d z$iEmP*lyzhPwAN&z^@w4gN4AV@m1i_|Tx5hpqy-Aj_KF}}GA-jZTCTkawhCNgk|D;j*B|*T7JZQV zuczda`0xGN{4xv}4x8IHI^Q+Q30LpV2(!dWj`O+(A{nIH*afkQ!Qo|a zq<+FJ%Tn8XS6>NPZH2(6;rc{{7|MWFn(tDiFGA^CG=G%gAHP(X_Db z9nmj?K^$yu^TUpIM`%%cfg+pU0(hJf}G!4!i2cM6B~c3h;z*a>8Ug$3e#;2Z=LSV)c?K$%Z&O_g zNC;9Nu{ux!J=@eMu~P_1n-z3ePG)njBE2`(HX>U^lm|| zOX-v!fxdGqhq;T6@k_>ehQC4_34$6n^G}r$@}VvjL2?2+VAIei>WS3lRN5dL*1J4o z{5BbXKe(koxRBg&qqTeNGKW5*AE{mcrjY6}x2e-DUC!S}QcbJITwFbmFUYi4LxtV$ zj?ou|FqMZcjM{{t(RR%ZjoBg`b462OW;DxT%(~;yz_rIFBkiPHTC}uok0cpNY4;o9 zBz?K6imF@0h&;9;RJXU>uIQD=EpMCCQWoI`slkt{55@- zK9Y$FZ3_+Fqli9jI<{6DgmGUtFEm!-YU83twq5i3M|&}-rIg3HmC8HLh`dqoJZqe4 z{yRri?)FcW-*_zFb8oD-aQ4!0cMr9LyyDcQer}r&nH6ziU%)PX$NkY{S*KR&{vL24 z7-8a;kE47yayw?vNJ0~B{hHpRnOw%7$D$nGexUq`F{6rQRTAo4XmqmD`Tu6YpWx%D z)&H~_EnR^vYf*B zrtx5AE_y&_^QP2_>A($v>mYQ5)N)v(dJ|uZn5(mnrlQAZ4n;W;f3qEZ-A_8mLF1YB zVX__n(+kBh$mE6`wi2BhSPgHX0>U*=(OdKa-euPUopR{ic380 zS;+D3H_Ku2BEcP_nId!Z$s}+2wGGg$%9q1C7glAxeCOD)5+KPTK(b~^MG0{n3*;KB z8zxgq`sn*e1IY!BgiTt@4kHB;?<~vVM5#5@w% zpqdV$0iF4ni!4N~?2u(UNZF4zDHtxJ2B&C#G}Iq)IdymB856mFJ*(d(xPF~Q?F3aL zQ@01!d=#TgutuCK0yh3bq_Zp&MN+FUm0@@eXnzR5V^M2=9>)Pg7Ct#B&ENwx6xtT3C= zuEuWi+t>#-%*6h$WpwjH3M|yeho8cJgv`~~Y%hGYr2B*z4gb|$bcTX>rz`!zUG>AR zm|)9I3RUwQAHBPGgOLqY+V5FAvn3vbJb#T)WOmHm-y;WwHW1mx-_UDunWZM6drh>C zMDkz9kGHp7lWPHn5V4k2zvD@NWn_~S0GxOsU26UQ$(i)sR~`j!g2KDPXok*pyHE2m z8^18Q6>i9Pu{;MeipG@zz2o-JmGweR=#*3A#jMAYOxG=*eQ#lbnU1J-Snm+`-nW#( zgO$@uAiNyVp?#~A)ntD1k)+h4Tm{2#bq?=7YahKH(YFZT5zi05rBS!?;|)4QDxrr<$!S6=w?3H#BSNuU&IBq+57Y|!h1 z+NtBHEiX+k&_SFjD@X#fr^LQK(mF!wPHRGf4bX>lS6aPbb{g;bj&b`J$XQ)=wa;pf zqO9~j-FYH^%T*bfZnKA4-2)9Dd9Q!RO!fFE&=uK-VvK5^x`8PY735S7+L5=gD-`q& zHb!JS4!TXn@}oza)J7qom{J$UgC=;bv4U4V+?o9)VoX3^x1T)lbp7U(3f?5m0@WKF zC^4W5p6+YYg@or~X;v?RV15{q)6f>I=afTj3Q=?87Xf!F-vRYfFhVFD3)vqgBiMAk zWR*OT{(qoDpimpD%<1$%5T=j~@yo3+7`z5ZbD^T^=Zf7Kuhu7O9aN~8g8=%-QU=1Q zCGwe19NPEdmP$FWo0R~DEUq1@rf^4FI@})wVb{P1{OseKu|-*^1BW?O0=5hURUho+ z*>&KBOaF{2s~rrVU{+l$2Vj^d=dS`4sgxX#NQ!$QpenE)oY-ZoKddcp6u<`sdK+}# zLG37F&}}Y9HTk`_)%+Rb;9+TJ*8rEL4e>OpPk-d zJ&fXc%+EAK6CZPmnG3w3u^jVtJh4sdd9kOpLVXe&T(m~^lm2CgJGWP3IJ)TvZDm>f znVe>rBFa}!{<08B?Hip>T{MBNF^MO3gB>E=HLhXzev9reJ$Mb{n2Ww}uwwN&fcH6V zbZ~*eF=H4NW`RSw^X7Tgk~i`V^}fou%1-{Mrpo4Jg^8`LZTSQj75L3?&XWNe=BoHq z!5Ozt^u|2&Dv$?sO2}17t>D+ebR0C=QFo!j-vsGZjmJ-KtrMKgMkFm-J)>p&UK%@I zw;lCv9>0=?|HV`(fvp;P=!X2-5r&H58C4nGjmwF|LgNPL)T=;L! z924>k6I0xvYE=8Dl%w9;BXqP27C<4A;@c;`b>+v6qVnPF#3fGD$vr>f^`D1mJf;ZM z*|+tn;&gNKlhDORJXUpG9&2D`Vz=YAe8Hmd@1uW^FMG~Uje9_!o29k42I4XKG;*~r z4CJT0<09{83Y|%zcyY1mXOZZVcVEgRGaM}}l>iX?{Y~$>0#G_v3LX|D5vY_E9`Xpz zm{rRr4l2UY>CrzkX?8G$qjZouuP8>K8B{^+V4SdDeQEamrMYR8s|C@=aW%md53#5? zo$#IVMfKQOJ&=~H_{xeOa{WPJZ+kvr&)EQX0Ej`uq#?Fr>*D|V2u~@Wq*J&3X|EWM(f9@hsiSF>ZY{H(fXp4SwmW*z&g&)fq-4nKpG@30-LhtPa zSG&gFw!8%l)Sc*;8ypo0GrLw$eBjAh;OE$aY&yAA#PzXcj#HHIW~;B;@o~_gFKp!3 zr~jV*|HQx{5%$+Eqt~f7?$v8U_S$y5BLhB&H5uPW0yFB=_XnnNkMl28topaZkfY78 zrdIs3b7{%q?lANLO>gb}Xw4M6wRggfE)^4j7^`%8|Huc}oYevrmZa-l&3knm9jA9l zjHf3RSubyWn?BAqunecz#r-cP6M4G!Zo5O2|J920yn=_r<3C8F?L4j6lfyhO>6WW` zgwGB=LsQP=*eg|HZt{%uYCj{XpPYPo{8B1H^!CGkVd8qI8kr&Vfcom!t~X90d#3h| zX0Lr3jR>_#G8PmVq#SR${Aw{TsN3R8WY{|l+Pd?3Q4RHgqV zAxP|;ge8i;+u6S4J7}4-dP)bsOg_=ljbsj%N$(OqxaO36)mm!gEOntkF-IXzu_|Y; zEVT7hCeYF5^-T8GjJg4>Ht*8xmct#MOyC0e%YQ()88L8@98{PekL!gV81Y3 zOgLGT)`m=%O8D=2B$M9#^=S8T@O{8nV`}bb{}XmP9X1<_?s4^!n(AIXG{j$4QkiRi zz5rR}iaB$`Kd2<3TgNWBG-dF_KfW#|7z$ zuZ~Ca@*)8}CHK!S_eE z)Q=upIpLRF0z{#ml+{5gYxB9O8^Cw~2ts5*o8linh?~l)FyP&B1sxS{x8g!{)Ni7@ zE=`rnzkcdCK*Mzm13CNo%dZ;elz<5O`Bq|+k~!-bS%|&|atxqWJ)2JV1DtsaWCvh| zpc4D`)%9n^-k(%7#Qoj+=)vYk=>7Wd6M_>Ur0y7+>)QbvyuUbEOiji_?ftJ&y7I3u2g;6tmH5Ujds^QB3xJ1?x?Gb;-fP#yU@_uY|zK zeXoa|n~4mxjGt7?Zl*2W>T}LG5?YNOqW)F<39@<)b?MEk=j(#%Dj;i6`ln#vX=Gs}Dh>zfMOK+>xxA^G<^BCcuZ!oq@gUXoiY z)H2f=cV2pTbX|h9AY-j^ySmzbj(KKmy-gX~DKD(jKJL0?%rB+ydV=#*JB~FsjE&-? z?h4`Z{eGM8^Fh3 z^pT$0@WlHS4r0JU*~~(gODsg~S(gB?HcG_N0nVPq*>j8f^)36sAKLBqY4W#;b{5B1 zbI$*bmrcYJFHWSQy(T5_6Pa&Xs=?R^s7G{VxWbNPG~S;Eyko5$8#}$NBvzj_rDP83 z2_KaI2Q9Vf{U8a9tRxWxfIK80Js_A@N`gg)XYz0vf&OCGnFaYX+2L%I9@EShzv~wO zziCS)-ahr^c6NJV0b?VVKhZz-w8Ru4T%sgN4-0aX=lmWkkoi~||06yy4!z{(2zcjY z%!8sn$loql%%43tme=sv-(oM@41^xI6|?Q|nc6RL$Z7_y6v0g!H+7eD3-Ga99U5;a zgSDe5LfL<)4Y<%D*Y*WqQZiRG-a|p&>|NdxD0=Mb205m>>zDtj*a{@_oXQ+yGJ>Ni z-UfI-ZIU)yKPkA}HmPy3_NB!k9aFoX4rBH5Z!vtvSarFC8rWM}lKR}~XT$JFNw;Yi z9Gxl^t3;ubX@jjuQ9p(gNs?#UIqh6z$ygpnM0JxZ>cqSh9Pf!Rzt((7#(ud;!WTgA zEBsa$7gWAuou!!(L)Xo9v@62M)O=EWMfeHxlcG;>Qmc)t7TXjtnMGD;l5D9)ReSfg zn<}P^;Rol!(`5X-f6@!RTwUT0->TKeBF^4EuN;D?zqJc#|G(#ag(}LNNsaLT z{uW0#arF3PON}CF=&*&iJ>7gqk7Za_)Y2lSS6$@2YjiCVPR(iFFwy@E8Q+dBFT}TGKddx|hTn1bMjM@5O#M48)O*HifI#%(0Cc3}1C3c@t*U3tw;_|u? z&(yhbZheh>Mv}ggo(4jH&EQVlfH%nA(vt4+zst`1=55)96Pmp z@WGqVj$b8%>lbXi8(ii)!d1i37)U`A{a70;NEI6wtiF`Ia@##s7DBf+X%El@AWxLb zuVH4~N^WOrEdBw7epx&uj}bO27}n~h8vp_{(W?>8iW9Kle;efUNE~X zRUWc7hDa*JjMhzp9kgBe0Ks1cpM46$57|KRDvHY}f#{-7ZFD(vs2vZ(L<_Dzphos0 zMd}m|hO*}#w&cahp*ow~+c2yn7B};}K&Kz38x*dr%kP0+3SyyiTa>}->{4nUDc)zv z+^K^}yYg(-f{Yl!?EmcS^6@(>QM2^x*cW$8HoOj8{DFFCWZ?&Eq{$khTbdRATm+pa zAhM9)Xm6M>1Z@f5-{Lk@qe~MQnHl8g- zyzD>?kBJ&9_Wc8(z<7$;_x%Qk(p8NQR?k}>F*z)~XDU|?-J2ecuwasw)y&EiaeU>K z`_)w9Dv&BMc`R;Wm|tj_muHz7ANC%u77L%6gPOSX74u7d67+a~rm1p357BhzYZd)* z3Tt2&@9`b)cGuyk6_3q1_7t)^0CB^hT82l%N4`%lI z5Z}T$aCRq7rYRn4Cj_D@1Bvl2_=EEM>_S zr~ck2zd9}g>;GCu`f`6ED^FMfXDc{6{%&&R`Uj9!z5&*mT!eK_AHucqd%3JmAwwT& zvbsUHYseC;ZWE3*;6$QY(}g{hrSmorC}B()u0+)b3GO$rJv&2~%FH(r&#o;K{OG@B z#Lxnj)#VK_dtV%q8!x40oT-n4Vu=v&Tk&vuRH*#vuOu-1xaw(7K>fnD)%|jH%JQ%p z>tv4ybM@6gVA*Y9!`i4pr%<`)n{O=3Yj1e4&IR`48xPJa_J#hU=O5%d2|av>|3Uci z zHG0R=QTLO(EH&`BtmlbGj8b;_eOEIg0{_MsQ0P6QB8!-h7}U49j0j52-7s-qWB9NZ z+z(@E>GSoiTS-ZZ;(WqO$#tzP?p+0eG~0CMj+0H-R24MjKh%W>BXh5n_NLp&w?>PO zjpaFSz4=V-)BWAH3JFRwQ?0hu%h9BIKEyogTO>qm8o?fa1HjD3&1ig)bCA)t)?Q1x_5@4Mt& z7{ccT#dZt2exQu%J(Rt;p{&-}S?ONow?eGY2)%*7+QI%Q_Vv^NNb_CF9(o#!&4Gkq zIG!BPc=#yg9PcWfYEgymbOdp$+kfeUIW(Uai3j!J7lusd*wq_#{Mr)A4XFOTMbrJ+ zsF(n0Lef}mR|FjQ9&@rZ5#l2${TOA+jm0d`C~{9BWEv-ScG5$~zC5`7h!IiTh!!JS9tTZ`Ex9zr;7#`>8a z$m0X8m7IE1(fH!n;~9#fd=b=>=NRJGd(g0sHBevCf9dY;jMP(9*g70y+q{QqH7?KD z4lv(m9k+P4pz}>NeCEXW4!aIjy^8OB$agtdivi13ZS@ne-J4c zu3%*!2zwdZj|)DwzNtfQI2AvTgP(*?3xM=`A~JSK@KU|I$X!%G z$9Lr4C#8F)Q|dE9WGOSrrO(O2mBX1qbU2?n^ONu`Us9peG*waNo43d^H-%2VZ?GA+ zpBM1l%2fvzF=+S?$wxS7Z6^$a8-@|1924c0yab;u?;J9qfDk27_ZLfvzGsi{4;PiO z!1COkkUMyYE0+mrU@MB^R1Q?a&t6lQaCaWrN#pvTpfWao>d)~2%gA+&?fo0TZWDR2 zaaXgF8vjuF5zqNsisBIxPhrDZM+R$Iv-1L8?6*ES;`_6~-wFYI66Yon@W~brRRHbS zc7V6yCRsE6J(-(MP`2lUZB_Karam!Ya;?|dPM~>dC110q?=t@<^E!Uauf>FQ%xTeN zI7c7HFP{3};5UOX>mQ4-R|4HX0}|O;&iZX%cL)PsD+ltgy#C))L7)cgNIeVscws2i5ByYUS zMF|=)`bZE27D$h`dUrE*#3xmQVHbkTm@!t@YvG>l~mB@6-!?D*xf}V%UjV;RI`T%pR1s< zhJ|!`Sg+w~fy2(zM|J1bL8nAs*e4kX% zVtbE*Y3>bNJaI$KwaFsD&Am3BAcKV_}<#5iSKJ136og{wT{y0})Rd{XIC*#h!Aa+vfS!~~MrPk3ab$lAb~`1IRl0AY!`H#hD>riI9NR%c z$5i89Gaq3W5~kE56h?zOM_ZV-`3f|H-x;yI@9Z?S0-&T-t`RVwDcT}Mwk96dTy^}u zPHKs%RvwsM@O#U}{eUVkUFHwo?e6cGQ7*5_OAnGVC#`?>FbLNp1ybe8=Xzsq@WT_k z1FUIV$Ew998#x)DFzEZ{S$J6k3HDu9w2lRl`N;Bwte@)CHI-L1`)oO=T!n0@c6Qh2 z@>uLgqZaR4m$g3Ls+Y{;Y?^a74j+goEhi_v5Al4>f15F|^Y&W<#Yq>7a_F5+1mC?+ zXx+Fo+xO`Zu@1r978l*oETYtRj-bD8-8XT3iG52iP@Tj6lw!Wo9W5bYT(DfkJp`?x zJv+N_??{%eiwD;_Tl<#0-2cAL(mesnzQ~`DraL!8wSRaG0MRa{jn(d&)Nsd1##+%Y zl>3JP_|Y(Q&xgdIN&bZ+X-D6&=Wps=u&~FLE$OV@Q9^i z36ui^x%O`WS?FY72k^vyVU7CX^@P&aQFpml_s@_pAdT;YZMPhDE?&sa9HhywLO8Ow zCQ-&1S#{pFkH-E{Fs$asS$Ah`G29?&H@f{q;Qc~K+Rw^G_0!(}?h7XuhR6=qFi@m{ zt}bxxlLWropA<|*V>&$%_=om*3s^M#z|MC=xHqyIs85=fjEfrl6jwP2sqU zK0!H;cmRcev9}L)Hr}sZsd3F37jOtbi6~e1g7^>zhJ|9WPvQ(OMuxo9K&(EU>-R>rtwQq z0BXu5ZE%MlC)lwWnb@*>U_g}rGk5?_IfZV+DGq+IAYwzVo*79Bxj^4g;cHPiH1)!2BWZ`J^>VbG| zQ%|Yt6tRm>`f`X?qlm9B!;NH4lOEUc4%Yk}s-jSAz&+v>k)HRMsuCNbt8YB){R_#E zPcG2lGwfx-fB;WK1T>Rfr0~x9UfFr|)jJ(=k)UGM@skR7kIId%Lo0Ly9HGf>OXorF zDe)Z6$S4K5_C}?2nKSiLv*K0TcEntiF||DUuoAM*b#QZetYT&G;vzT)T}Io{$yLku z{@3%Z)9!8Y(^P%8n-w?=x?hj$LKPw%LuN~5I4BxPOMd%3DbU6FWexAfGqdb*M)umz zxgW^)!|9L_0gH2P?AWIw!!;OgsbjgcPOOS6ca1IAwDW-V^luAo%Cfy+w#?SrW6{~3 zUo%us5Ch56n$Im|5f`G^5^ z*1qJ@96>$W30~FS(5a?Q*Z@n6Mv@B1qo6mo1?Vscpjz;;xUC8ot85s%gO^m@=arcf zBA9p4@!5B&Zr1yQZiPWdc`MM1=7m9K>)1edwF@7D@WYo+9^uc&4OyenyC;1xrJ6&l zFBZ-+TLGY$jUG@&A~+$QgW&@0Q-O?Tk(70D10OiT?(COO?|4?DM~B)*0MVzPHcd68 zZU6j8?fh60fB6n&no_~N?SHC)x4VKDTRHi1X2}8UN1Cf~B@n;@12!X!GVA6D$iBjR zmY8D=Y^eZ+m|Y3%d&4j^LJxdd8E9`yFQ#fub%ITd8^FrO8m__RYSYftla5{l_aRH_ z-GKd1!fE+Ay{8;k*I+2;K6JLTw;`Ai8( z;KkV#*S6$;_4=qXIRYESB`Xf)6V^y}I7yl?obcxkY*Ha`TShlUPsCp(xRa7IGTD3E zeqQgQ3b2IyX_QdKMKTJDbzZ%$HC9{H`r?B|>!X1ODwm?!9MmriDqlqu599cZOW)iw zDk}Y~A$CdUJG-)yWK+O;3{>F7r%Jk_D8A3vNZ4J9^^ui`KFhtpcnZo47@{67W+baI z68@SYL}f4bS$HL1(%?7Q$NAV24Js5I;-T?wyw&8SEC$i2_*m`u;o1WxvCy@5_Ii~gkl7O3 z@l*w0%he3-Ax_ojyc-+>d{X;hjQ9Uq@&5Lu(5VifXRr711_yF!u3KI5@NB; zyFBm5#aE~Iw-Oh^0a{%q@TfJ!TW;`eQvlEH)w+L*>UbThc&diGmQ`+GbNvk|6P5x6 za1)abz?p8pv@2?=LsoK^;Z*t{i#!>?rZB5`l;aMgjvhzB^SY4}XHdNBC@&(bu{3mh zgzO{TH+zcev~UE~f&uFRjs)S^o8)Xe|7}7_Y zm{#Xs=rYMP)d(rx7G#}8ux`Kn=D%U`*6gZZzo^^9RJh^N=e{uw8w=rR>GoTG`xEhm zZPm%J_m~@jZc@!}#nPs~5hbUMpYAqErcxB%Yj>GFU-@Qt@rp98aTj)xD)mD8j-RvH zW1SU+P_u&%8Vpt6vtPwKtdKE6k43CR{bfHnMBRoa6w9esY|<^X1(08CDYLvfE9T;z zp3kwmqi*xMSVb&tc+TwjrtERy%{N9_JF~Tc{dXdjA7m|gZBX1NTsUgE2*oG23 zxzUGCZGNve1C#m^2Gr&X`iX!Pw;wDkzj{xyRr+8~@0xi4_WUHu4mW805}i6h0oUz~ zMGm$ZoRy-DXuxG!Ld>6&_)7*5Im|>m%0$GSSjB^@4l239kwEP8TF0RkU9=^}LPR>l zk>G}!wTQ6~iRTUle`FZeK@I!zIMd0Na}UsASr~`1I)0&2w&Jel_joRuS>tu9W(=eA zvR&4m`A!m-_%*>}Ri&C=d>apdfe}` zVaG}SNRIct9X9q|whce}Kp_)!KfY^dz0RT}qRnb{($X~45PyuwN(vQ{D=Lru)(aRM@~X?lZ$GX5yGb z08h~YNeD7XTK`YlPt{&X=JXuH;&f@yfuK>?c97CAnM(H3Cq56Q9cQ+$&o?_~^%2$|R6J@EPNEoSgYK8u zWJ$&~K3%*xBR{U7Ul|rG{XDy_kLbo>{9Z(?5r}=@`$F`c`Pl4>QT}at^bFI_vBHc| zZ+caCDy*1GP+imBNt(%bH8$4qhDxj;@^qlJmQj2lW_1{meffg%hm}xAvuE_GgfxC< z8AHG1gBnu{g%6I@A}3oYsvf+AI>5qzed&384CRH9NNW>JdpV>-@~nwFu=}*YvDh}L z$j>rKqL<~LC77!)atxHMaQpi{nXC#Q%!N!t7!}m)Icb*j`lG@Fevb11x&B2PTyHZe zi|j5a(+jieb_o>3G7PUW2RRV@c5iS#(~)>j@!LJOUWGiH#0LK#}7yy zGTGz~nMtRUm4_%Bj_7g~xG92gp}mN5y`h3@FMxD*yjRvv(39E8F3`*v@ELf^3Sg>} z=Q1gM9ZQVib}5!VDH|cnhT&xG5lbE#wcLXEsgTPPZYA?cH0C(&^C+}qPv+TSh;ETx zmW;NGY}fa^_wM~Ck1vHUgyPN5Y_s~QY_ooWbzE4gnpu(J%iSA**{aRzX1yo5@8eXG z89g9-7FX|}XIY`aN`AsK?m2S1GGn9FN6E^DP!f&);GsCe16(v(KTrWdMkH9#F8^_R z-L3#0T@7`&l)VO|p>**jIyr;=t}bIKa-8v-fn%$4PEa+;-xmqCoa5=qeewVd{M!lzfC6DA-?wP(%}o5 ztZwby0Pz%kc$(HL+VQ}LC5EA$4pc@}c_QUC7o8Ra64|qKAxzD}d@7MG7 zdbKmQuP$K7FI_~bCb_pNnh7XJ9ui`+@M0H|&_hJz*5s~8Qw3#EVkotY?fT)8B<_i6 z4%54?V7;nB>g9a7w%TI1K6-^?rVm3O-+zi)}g zXH{hCcV1}q&Ya-O$~c^{a_mwfL0hLg^oPBi#Y^~lb#uaXM?5ScTBDWg`bz8_B`&Q^ zl~tz~oF#IGsQiVLpC_3GRx)mJD?Ruof z=6CgbuI>j!vV!V;em8b?Wdq%W%&G!~GeQgkB2z2&m>Lrbvc}!}+9b*{+DkxsO9{(v zJPZg#aDY(L)uih2KL^@y097w_@^XKC;}zh=AHXP!%Ewg)u8Rh>&o%uBL1pE!DJ5~c zR4v=Yls~!hs9ZsCZIE}LAL^QxghdKr43b+4TD{F z85wl5!GfTX`VYzb$Q;~8J^S(;!kH1Ur2}xb6^D5l!eu_|ne?9NG5knQMFk1a1dPV7 z1^)C31hUKq;7ON-S^a|-C3OgqTfxs!DQSJuPz9Uj%s|q^Yw?F*d+^H0zSd~LNFFhCh zBd!j+Vg}g13u=DM_Zc18_~9kp8hZVt3%ik^*c43(736^QZP$UQY14|VmZO7gplybT zxM`TKmEWTMRT;wMWT~B{*cz&CAJjqg4Hb&5`OW#DcEnOEM~D!noWDBZDY&lH>V$M@ zjJNG75ZlT^Wg*J5-?JF@;OrYr;r3h>n(UZ!mTn-><^cB<1**8&IX?nADKGYC(iz&x zk>wI;W8f_ih2WoAuDHB&}OXQC++NinZ4hW#M;4@!~GSKBWY+ywV7p-}xr1 zb)N_=c4fhD%7rE*1CO>fAfJEtXXV<@a`mf@^NGF1?(DLaW_GiQ7jK0ir^={PS(EFU zD>U8=6-4TMmjBnEcy5xmq0iF5tLKxORhjunF6Pe1yXo2G1KWJ7IOV63HYaY#H$#cI zuf>0`vt}ae7XxFRm{GhQA}q0Gxha`{cT;|=a4dA;g!whvPIHEkb)W2m@kKX$q96SJ zkRv>xkbmPVs=4xG)j4X&Xf{~r5{~)(XZFrsfB9Eaa;&z1q7$1#7GtSG!nhL<{QG0> zz}8hGVWoWkmmu$kl;LmwBhTeJo}r-l>*XZ>fD2NxZBrRUj6P9_>l;E-ntI-$I5{o} zgML2P=GfJtY1N5Ffm7>U4ScgiQ1pzR!hZF}aao#&g;q}g}sOwF}(ZT61flIhgUqaf+3w-vA+-#Dj*w*}DSQR^tF%FNU2QK^|In4E@1;nH;Du?n=k5uZ3vlLi7CD1v zXuniJZ*Fgv{>qjX;KFV*w1T&dojzTIwid=f?IB6x277%9Ek;GYYiqVR}=_yB});T z|5<8W%w0)|*dJye;b_Bjjorn5;%8}3Dqd56zw=mdY=37*Q{+xZ;Hbzqo?xTS*&q0` z^toQRsEpnfXd7v;R_uwY)iQBB$FIC(Mp?PgpVqVYu}@|QU^TM@+M@A<;3QYEt2$EE zpGxe@1_?>8TRz-T5J)M}-juj3eZT9D9;rozI^`HH2pQ|a@08#hx=vhNFBw$#;Gs=I z8QyhEYtbc9zx3Xj56}M@0YyP$&uwdIg_!RQ*k!3A7?hWK^XY>S`0JJrl=xu_0wTGx zJWlNPms|Ja0HBhja2;(eAWJm&kERSJ!S1YachhXTC zS1;Q@|FM?iv*$?5JX^IJXZ7H z`W1HfDmrY`2OD;V(af99f>(?>uOn8}SpnBCi4g`@3E4x=vZALQqeVA`+;x z?`Vei9+%;+l-X3V-u%v<8)X1D$2oL7PoNL~PCh$R%^AK63_e+0QjRpe*Eb8Y>kj4| z9dd>c&k``ry1V?IFyM9C*8Gni4_Kzoz|q&Ph}eV!H9vtl&)@FNUIYZ?s-4x`7~ZVB zwi7WY<_pT4X52%cbF9%oMo|vda}ULnCx+A9!VB&5oJjZzWK4mR8Wp&)f7L8>u!GZbg-y@I(1@L;}Z{OehY-EE&f|ve9R7c zGbggJxPwQ*>t2AAxbW!y1=*mH(JL=P#8e}4_+Iy#m#8IgwCv(yR0>wC!loC_$E5#=X{#2j@Rc-JE$eO6RlwXg^qjI@uY$*}9dtp&)}5LG5a3$6oDe z+er(f1r%KgnWNILmo>6}%>;<&;JHlZk0w^s5p4bMT~6e)|lMHeO=$CEZhX zkAFQ<_&eik__t(xpCtbEUZ;jQA8|nN#+uJT4h_qFk9~Mhf7B6~Bcb`K!Z_rqcm`%)z95&eyW48|cq1{@2P+0*YjG(>%X1tb?0Mzk~2X>mFix>A&Z+joCwOFv%-N zmxF)Nfr1A2J%oA_y4$S;_?N8mkz>x#zA`>;c^XZG*H#jMEZ;c>ruz=Fj1>5Ftr-E7 zkdg?Egn#{MjfN=Pjk7n2$Ub|(xZO*d24;8b4Tuz}Ki*2focFYKGqRD*8dA4c%Ccx) zs>JBd9)oIZ-WL2EOC5kejAOmy0Yf3%SzG*9Jg>Q)W*1iqv51?!OH1gfygN{;A*2dV z?PB~!|2~_#rN0mT%69O%CSX~;@+6nZGed>k2bDtamQGw9)4{v`Q9hN5&MRK}i0YUQ zaAcM&-^L4dZT0(k(@-uMr{Y3Bgw$xb((pFerG5v+wWfsNPT9lkb^W7yqpx*Zll1cc z>d-n06dnx4u7BTJ3rW@TD%)BfJ3L4Tntj*b6-24j(`5zG<&RUCYm%S#2Bi2e$VD<0%Y=# zgCvbX)xSeW;hTyV$D^&6;TMhQH9UzrQgIQj@b(GjI|j6s)JKX-XJHbUkHGZ?nESX4 zS7Wdf5a+E7G{Xg~|B}FKgA()QAuP0y3F3)5y1)5NMF>VfXYATUEd>EJ%u?KDqYf5# zjGbX&v|knl)yIr~0}j`7Tc#g;;p;ZN=pysfOh`-OIH%ETk*?UxQr7mkw2bv$x zgu%L4{3;5J3kjvBtmhWSQ+YKij&b%0i ztHB70giBKk-?1X&bHeFz%nt>kkl=deV&c&-%ns6b=t((y0=2L#Q7S=-@JkZf9(HL^ zsV-$riH(D<&1UcVSUx6=4o9}i`}Tg`y#z}c>)@--Z;gf(t zn6|pFY)_BA#@resV7o3(^}05g*`LLmjPaEXTyNsrTLqR7`0o}YQKQyN79Cog!H+z( z{4AA}_J2k2BITBLNfcxGxBcl7V*StyDVC!gk;0UVi#jzxlCG6i+91E%vT@qvO`#OD zt_S~Z@k-Gj?WLM**OzO-7;3Li6jvwz1WNRFnytD|M#PDpRJmH$cBjM>{}9aeBdOIQ zn-*w&W!C7>^<|f5x9fiM{_21IZgMDhlpwMBPJrF*$d3O~Jb!5Io$$cEc&OSX{P|#P z#@I4%!O3gC)A3)a{h)#2zv`1GdFIvd{(p{?3b{yvT+O4^adS0{mp^4bM7OoZaz)O= zQr#67HLv(=?W-Z%Df-g^<86&pX4M}eq|3Zd^eo?~7iw?SjYPgcWA^8i4)0yvSXs9! zIhiNr0pYzi9Kcd$n!ZOeV9 za5Q)F#zc89h?Br$ip0^Eb!>n!ENvF)^(uCjS5JvJ#-r>2&9H4GNDy6Z8-A)m`@@ya zX&SX1Lx7B|i}IMW80~EIw4eIXW~r(FKPx^jR4cG&>qo5z3Hc6!k>~rpMSi$ZhB|1@ zx!|mNIcCH_3=QJ+-k)7R54$WuoP3iU(-}EFTasp|rii9s21=}m#INHDX$c4CGHS7I zL(WLt#7`KnwcU>>hFK2nCjs4|v(>Vi@0()H&^G6~QCXRVSWaLv0?1sQ&-2 zpZ7CqV6$nKH8x8nG;GCj_k0VuM>an5Z1g-B{OGkX4Q(H?92_t8q%H!(Ic2NsF07e$ zZTZVw%}cF=N|w)=n5_|KIv zcef$rr(z*HhrLqsT!!0BT*-R{L5e&O z`ZhTte457PT+Es;b&JKteTi6k@+0~u*B|O#dA`2Ev>8L1OtKmzPrQZV81wVR!Qy)0bKXlSx* z+#Sfr2Lv{qFzn+Yem<;D5p99zg!_Y;y&`$}8=Kj-LkEZovw#PG=6h{l@B;Qq0yKts zxN_%Q0N7c~GCN0-8=UmlK?j7>pKs2@)0eU?+?xD$>lNMfS|b9yI9R@4`8GbgYMJ@N zW;C5f(??g5pn(DRT9_}^4=9HJD~wn)0-O{4@4J*NwLkAf1am-=YCGG`pnw3) z-Fdy0)`W*1ev&vm&-Fp-%L({2kC%8pV15PY_fYPv4LH`w`V3Am{J^gOj%h;5vEnM^ zS=HucwFi?<=Y3Iu)}6_>4&cq>wXyoTpM;jBW^{HYCIq$Zqx$W&O*;1+W8DIGXat}& zRMgz&FjHB-x>o~pby46%Ox}-`Yf@`?#$LI{kw|*~i*_u$qQc~WTB0oVqx}!QE@fbD zH}2-?gO0jqg3!2A}u}ov4GLI`rB(iT6>!B7K#_Cu-EEg zWg8;qpZ(#MFnthk^zmO)j{lSd>JQBwwT>*`8FyL4Wg2v4YII$+87yu0pG&9f<@dzm zkm|e+f{mCO0W<;UsxVQa7#vc=>*8Qjl$mc$oYk1DbS z7rtsh-TL))4fem0>)X^Y4&3!tGPN~i}FJgv^R<{I3+_D0O|EgWAgrMpVNw&u}FEgj7ZFFxlX}#k?$#hhCaU zrIo|b#YiEJ1zGVOtKtfq!eES1+U)Q)h{>GE!5ZG+Jqz_B0efgA0@Jcd1YI?8YehN= z)5J9*Lb2~W9#>h-yK)6@TThLe7ywwa?h}FjD+e#q^$4Ivb&-W3IA{ybP5*qtQ|_Jb zTY($4^`jYr^CsEBJK=g5R73dS;tz&PH132OT484l@EQ2kxBuqr#;QN|*nP~JCC~x{ zUp*e7vx;B1Ii@O^c4MDCnYCAQ!M?dEB}*!MVc&unP10poF- zn_Oo_#9N%rw{PR8Yk41yx*=~Oga$hTlaKKgJ$DoSSIb{no1Mwr1C+S)UDNWnHf6xW-IhbQ?ah`KVujP)&AuR{apE_sCgCGHAo#Ig zc>de)a{Z1k!Z=oqs6k_f2=HaVov2*7NqKS5SgyfJcMXoFkxhe@q~j>B;`HoaDTQGY z0(2Uv%^19Q9Np|nE7pReypqyc@qUYdN@QgOtxAP}+V+I;X_)SQ$rsD_+$&Lf>@r}NQ3@X*xUvS8l}2K^nm?oPJ^ffZ=LjP)YC z#A&}=L67x5)vVgFJ!1TTYK@~QMch&Ibo|>4cvrv(AQz;#{Qd8- zAZpr!QI*mHlQDF|K>Oztf1XQZo3320Rdl5~BAX4KMAHl<%WslrgS4cl z37F~Rl1fa?6{a03y#iNhgI`-+onO}mw?n#?iZWJ5jwh)>b_y^^Hw;0#NGt8;aP*&2 zK?o*jGP{+b#fNU(hOz;<^eIHd#BPAN6h3%Q348*dxb9T7f&%y2j}=L*+H$^`H^-BB z?~#Ngguvfu?CS&4l0T`ibg{|3Kw@=$_&Z~<74bYrRC_w^KZ?#Enc$Lr(r3|G_q;a{ z_{5^JiJo{KF0|<#Swg^V%W(iZq&`Q$vQ-XtONCfuBnLo5~*>s za!Fh*api8*z&m=Og@6vL=R=wG?R67-ON)CMmsGcMz%Rgp6~!*`zte(I{jb%`J2GQ` z6kItkTNB4AWx5}OH3)7VRl0o}Wgy}4_l4=V-=Z2Zm(8Uz+Y#dvWI$Ai< zO`N;iUnO^YT)$h>=a)p18A_Rne^`X|#O0O*g`w4g^x~0v{f=WI%y#vJjXNcAW_wF; z^v^=WhP1%Qla#Ql?vtC@8}TV5?1CCZ)~hRf5~G%K?|q0A@~(?;7EArWyXY-#^D0{W zA|B!4X-_~nyTT|`;4E*Z8ia62pcJl-Hj1NsfrAnfQDu3~D) z&v&1UfDio+4FjKCasQEz^Bephs+dJ%zlf^s#HgHJP4(8u;r_njHMxCd=G;QY2;R1# z0vBlt1E?nEHu)^AzO`8R(qxIgOGn``3LQ znMTi~+lOqU7X{IkqK9q#kk<^h_2mDh9T9Nk(h6QXN5jdEh(Lea4&IhD2Zi5t{w4>c zj2M#LfDXKxKf0r6XYsEs9I+)tB$*%n8=|=*ChoXdBtpwRiq(=tz*%AB3jFI{`b(Cy z=?L|LSu;eh_j2Cl=FZv-Ovhf*;S}kpLz`lX-s8>TWdDsMiNQZ(&X-t0xW$4RK^NJa z@6~P?*_pR&kka%l*cfb{fDeHhzz3-(DJBsMyZ3sUgF6VhyM_2B+^e?$oCCVB=#bT# zfwuY{UYbe2Uv8GE4g}(Pdo~*ny73kXRP33F|Ev5{s?dDnmIO29?rW*q!o59hP#dBA zW>5JmViO5>AMQTkbqP7#AB&i%QXapfiaB}Y=}&ZDz>e1CzgRJ0cPmz5iLPI|M*=L* zc+V)xm9HtmY?VF8p9;mzQ3!7& zsyQBWfw4Vi!J1-?yvyDlFA-}Ek9oY4%qfew_up>ho^0n>3XXIX70$LRol2X;I(0vr zT~?^h(5#7Z>5uk`u^1w#i6B`nPk-aTr76sITSTh_{a|tLTu6Mrar2*0D(&>d)k4cY zz`z*fe-&$rJf?@y>VBmSLx4HvQ;bSf*3j6O&9aN~0q|9+%dwo~rwq5a$nV35P7IaS z{AdSU9#-?S4amhHx&OYgL&ngxWSp~n)qlk*gn27RxtANz+ord)gIz)EqFej~9Y{3q zqu?7;U8mg(GOpkgNCrew1{V`&BIEWBRZ`-EJUv{F%QSal#S(6K0~r3gRv}xDsq@N+ z#2^l^`xzNfGXSE9uf?XlU~@q`-lr-T<7_S92zu!_h|%ENZhShQx?e%Cx~AuDH0IeN z5#guQuwSrp7S#mbpI10-#(J@_Q!qI^++rYRi)iXZbhDsF9~L(pQ3!VnUv zD*jiGZNNP`3k9VodFCxG)$GP>p3aX*z;`01Y`Z7CoYPF1(q;G|Egoy{^1Ttjq{UV? z3jtFYsD24+!!b7u%r%+gFxWKTqcu%Go?AT-jDzzd+!N??a~7L!E=QxS9e3ZnXu&Nu zruG<1MPC0DdK+giTcRl~eP)W5b0(o{1fr{sbfzNA1wChj@r7@9RYUc7?(7BqBs}nX z%VfJt{GR>lFU3+w>Fd?MYTlB5*#vG^j`K`!PHk$P1r}t#ow3|F86k>^$@^(lwPCNc z11G7D-HS(PM%Mp}E7a&$*V>$O$kskNbO2ZsUW*G%xj2b$G-8Th(~ERZ@%g1%(>Zi5 zw#B~YBBDDo(fZ9eSKD&2;~ot;trQ}KN8b`4h3t0)Dp9rEquOUSbeK;BN2_3ed^3Ht zES_pb3~I)bte?01#c5bg#&-9A7UDv`@H*mIa*11JuMa%8KNPX>A(@SwpOruq?nL$mZ74ebKT;FTYX4)H(8IRzeu@C%T6$_wwGmb>Olq*DT zhxwl4{7J#EUNW|W#H%A=q@@1Rfi6Bt3Qy`_lByU%KSM&qr*Qy2k{i5Pr6Lm=>&h}E z=yll2c+_O+Tpj0k)~X6amjP+-8$|z+UbmhG+qz;0B_Z>82Lr9FCGR}=Fc#oycpS{+ zKBJK9y;rw*jaujtkXx&@_-e#hvMDRaINa5z!!L`bqf-Ti$RgK+5ol4tI)?L*^)qOz zV_|`S&{Dx0>N?dpUb=Ee!;dje)n_+Vzx5xUE-F7Xh}l~And=7BmeY84xejWsTNB3{s72&{o>xQt)gD|@9@w?yR}6JI_8v0dpp{+vgG7h*d% zQ?!I9tw>hvzh5WT&icgs9n85R^bq=Rn9ykpv##h|GCfZ~J4*{sFA(rKBmpvl{|9O9 zYHVdOH4C!pxwKNhUZ!)JDfxK-vMSL;YcM6SMm2Rb9u#}gH?UGLR8SMqmDd{b6zl1U6yxtblL zf~T)m-D-O*Evz0DSjh>kHc>7>uPOP`7}%wfB$X`Sr904j8VN&}-E7|7N|$q7-PCSp zY4I~lntxlZmEgcGAyE~*d|C`^8&|OF-Z!k~)w$*z7k=+L;VFX1u5F!eWkiapb$SFl z6`{bNT-o#=YqZkJj!!bXPRo4zGw{c(=tY}LV88s=Og21@9`NVf$wnEvOsTXJ4(-oUCvvcX0hb^Ot=8)**9hlcO>Ge;3QY3Z6M-;0UB40K zW-s8K<)fk4IwuyHTLCZWy8)~M$HMlU85I4L2 z^rDJ>;->1}u+*y)hw;E|IcU)HVOFv(e+SR$f=90cA0E41#xEkmgD#x>GNS*q_j>D* zsn%!Dw4(ANn@e_uL@HSOrN&~ziU3=@1u{`X{H#I&_QE>i-Z?)Tz4G6CEXhSy1}a8@ zpJ|-engemF8>@%0_L#I=)`^KV{R@{B+Zl?F;;p@+Z+jyyX=o~uiTCN)w*~N4ogzkW zuU*ydAmC*Jfrb_m)-@oFF!52lTw-Oeeu=T`oR+F;zzWUBOmC_xHe2TTA&+b z?Y~?Oqd2Q;@kDs3LY-|DmlSa(lG!J2fW3de`>c8P4W9Fh3tT>zw(-`NBY3w4lV2iu z(ax=N4wGA)iv~04#LLi;^>l4$Uz_gA0Et@=<->ur$dU!2(l(z5~C@D zgpU?K-2F*96139xtN%`e-R-DADtWPD z1fHdXzHf4UN}(6vCGK~nv;I!$$W@>d0&e`tz@XZ!h2O3ns=zPO*(U$O8R-y7K+XMZ zFkLW{9)NnK;=(77m#vZjaeu$MOmqVH>sNwbFO}!B0`}h#K>I5}+~Et6@Jbje7*PxD zDyQkVYlc_OSq!Oopc+uTaGA|qqV=={Xp4G%*ls95g~$wq%w_z@jve<+h^{fO46)r+ zgKfg;maT}eOCb@5@FFnxa}}f5ybpU360)0r3=-U@?7tx}Udd6IwLwYIF?<|v`}J?G z33OlW_%P!3BUeYPUdAyw&hviy(J{%H)Whf2Ps2pr4BX#c^+pkHi3;Oh6V5MAFJ0I4 z>Dp@p{{hs zmko;lFY*^HAm{qPZ}O+jD}MJuS-G_2GzOo0cw0IneXW!fe)`4EWxjV7I*fQ17r)6-+w4c?uMe<7W@+ThRY zOV{2;eiHgI6_j7&5QtFSQ!4XKbk#9|aP8JEcWirBVNJTY6WEpH=YWloy6V{5lUlCa zj$*9#n=Q+gB()3kpAK$Bouh>y2Ma|5VNy>G`U@XhwAR)$F&)X{f3RW^LgIou8_!M& zpb=0kZ3PD#<|^XMakRqtTwhH!2;#bAr`ym8QewPB(f54sd@d;DcT$O>ohC3vbaa;%Ky0S2s6y$Gj?Z@?KWp524+H#deTY z6OZGbeE6c{!NW)gu{!wDS6W5PJnL@Ed0M*B-@NE~#b|+WP1)Sbt^5bj2RrExPW^Rx+-jcIVsASbD#efcpieT7Enq8|Pi}#^q~^yl>R}U5w)2 zffu`;3Y}-)8+v=uiblNf(~d2Dw_%w76K~L4)3;2sg&ZzV$YYh9hx7g0v7N=r#Wzqz zLS49u^%Ip6p374YEyfu>{%`{^ldG*C>xG2X%3pWn?u))Ojrfc5altBimtWN@> zx%%6eqdcua;_|#Y^;4~OT1o1{ZncfNMWf7ETcUp?lPptICW9ck&)ep6lVvgFaa(p= z6g{ZMDGT%35u$xNd`b6pLdGshLTO&;;E_23BL>|1s5?v%zc-hcC)9!N2u#2T-Cy_V z^|*4)M(P_@;F&Bap;s5%xpeE}9`k@(4e^$({FNmwu&b z{z(^LG&gyT8ZcSV-64IAR%bEtsRh6VP~k+x(y1*qW%UGFQo0hg$_?RulFgOgBA|3qNwtYLMI{*QdC97Otz_S`Qa;`ABXbH@ix09(41n==q4_RgbXYXgFeAO8U{iPhmm z1Py!dJFWHd>&ulM&6xKNDh)dj7RKBG=T zCISL3FhjnHk6jC6URT7XWb)xLMxFJ_eBYm}TAvd6Pu9!f8;~+Hgofr$#sP!jJt(Qb z+fPtp0}g@K17TUN*2^@V!EJqYZIqa7c*UyXMj()K;`xZGThLe(uj+ZMT~Mv+6l&zP zK8DOwepS$ziu|=7mcZcKla$ zEr3$`5 zHU~9`PAn+;vh-=45${I`qc!W4LjxMatRQV%dhiMylD6>=}7y5_1SwoPazVR`T7Yz>(~(YCmx+BkV`F@-Ne!G(iEoM?Y0k z(|_jkq5?I1&;Hf&KsJq^SVL+mtlZVV_KaG2PiWXuvjLtie!W`T56x}XSO02Xg;>3s=lrwuRaZRWcJ zGU7IcL);;^bOI=D=|6+8s8o%|`1CaiBe|r7)UbZr$QXu-+VQ~7-PX>jLXkn=h4|z+ z7URy!?>c+xcC8lR<&$}SWynoM)E?5JDkK-vQ9kq#Sa)Bn=Os#iD5q1tDRWjkX^E|) zb{~WpZRiK3@g7GDtu{X7vYSygd)?#kcONcI(O?!;#ADhF!rzOOX4Yk5JYJhy8jo4J z`$LY{9*bRwREuEICipuz>t};j>T1M0>;HJ0WK7A%<|J=jIaIpnsS2!7W~K3>=bB3n0ijChMNn; z&jfjUjNVes6+1iZKJ|Q%w>~~Xm%l|`ED9Fy?c1Af+<~3XG%ZOaw7T-wi$QI!fne(@ z`kJ}J|MkcJha|9YP;GCRuOrH*CZbCNooil;j~BFrzPwI7F)h;=ZeM)#f`6f1#8`OgPmaex`gW(RO}n@LQs#rY2|GkvBky?5$~? zxk@f!>AbCq+`0GY+R|uxE*k0PZhf})zs9c9F`r*kZ8a^K)u0pc!ShR8%x7Fr{@N@baq$!#Jb5jv zN!!1d>hAq?gMqPHrTQ&e+?zBePT6q zpFw#`e2Cv)4rl|9Yt;t(Y0sCL&qN)e0D-ndV&MF*CE3v$Fy58%YQ>u!TH0_H>#M9G z^sXvXMP&aQg56ZAY%QZ{LJe`^Dh&XLKfKTdSB0Rn4#ILhZ}|AcXtq+alTuY7Qltk^ zBO2G{-_aoh8g)MHH$wt#@CP?dSG@CC@iL8J`i0h!G~(RQ+sz43oY$f;l!H~BauRY~ zBiyT$3?@ION~df2f?3)~Ef>gH6~C{I&6;b&a)_Mlf@7=}qiD;_ttCFE=O#YoWbm5hLV_MMb{&kZpy9|a8x$rsB07q zL7u^*@+u{IrSW6E3~}l^%+6NtoR@Zq?@mH_FtowCKP%mdJx_^y$KU>Fa5zamJ0U~$ z{mG3a$ZZ|Q^E1koYk!oRU=nJsOp6;iZS9L_6c)Z{p$??y>1it94(Z=PM@%bbz zis7dgiu~qh4~e>IQSnmxvybkt1`q7|sa~oVjsa$4qtB&8pGlb-Lbb!WTrb&MMPsmK z7MEBpU3j(JiPuEb6@*9Q^v3VHiO#nsXr%--j<)<@}ThfHu2w3 zuiKLZ*YSAzlz+G;{k;+dNX-n>%F{kD+(n zqyn=!DEtA9LsO2nq(w15r5ZwEU{X?gGfwJ?W8vUPJl7yCz-5GA5NLZ%>(GbY z2N#`)4q`aIe!?Xz1axjXm+*G;H3MKosM&E0R+UsTE`0)arj zULxaqw$THMi`HU&KW=vjZI>LCRmsSle>Ct< zsY~W3%cVG^#y(cl2=wvc&K_Fov=KO)84x8A&+PDMDQ04&)}91n?vpCDF!)a%4Z!{6 zsZsZojS*+DeZp22rUUj(`(6YCAp?~AU3y!RHsmF}sxC|FN(E`xvt|D4>BQ~DGF>4d4b2PK(4LX@l6gV8XZ z_u5*yE7>*Dv5IC^*WM(%4XS0VzULh`_rW@>fujy(mj=yRO%GL83`O`1D zexDv&=^i{DXgv!vTPIWpy5tRIJC3-v7auX6Q-Ms-V&?>PU66mA0*BMIRn@U)Br8aP z#2%iR*Fk-QaLfiA)$aL{zLYX_wmqh{%sVZMw?{swvnD+3@`Ems`xRCE#Sg%qOi{F} ziuu_`T-TJN%W*69{LcTPG3m3k&=4UQ(pckz8r9%rzkd&Fkl>*24ZUgPS!hFWEI)T@ zlWnNj+HD1_h_jn&aMuL_o!<@roDY~UlDuOMKkJI{{D6Nf5C(tvg36k$0NI3YMDRXV zM*tH+x4zPvwfF~fr8sMHY~F!7dl(?JvLM*9PrhhfRh_<~v8#)Z>vze-GCdWI=YbF& zWskfq8=jF`+D4%;KYIbdz6^&M^464G8H(QTQF##Q&`O3MX&(z<2CyL^2$$F9uUYkA zn~V-@-zpD~u*uujVuN%*!I)cP>0b{0q0Q7wkG<73a2gy z#7MWxQCsEg>_SxD2+XNg8Uk_HpDU;xnFjjT5-TAHJj9QX{U}&fx2Dqnrnn)Wztf>z z!L6kkX=xqcQ%Mq!p)f=CGT)r?Rxy_Y^Jagc3XR~pO z%}F&!R6+r)U_5$~mnkKUKxV9;}?(>@KIOyo)Fh z3bQ%fE)k>pC*0wxA+(An*EVJx`Owi~G*^w_<9Zd9AFo=_TWx+z$K4HiHJrP2m;t_> z`G??oz{6xN>v}VdS+PTh&~p%9?>69eIj;u2dKmi76;;-@?t{ggaBpeBKLJj==^NG+ zwmn~xX2PD@Dp)E0-cZR7sQUr-u@#l9dPv1x?DXX1Ftd2VmX7he6(}I4cO?cs10G?q z+_$9=9~>;5RW-C0Fdx6iQ>0R=t}xbyZ8oT&5B4)_Dc?Ss-;Wcn(p5aU}KqXgZKiE0tCj zP85ck4g#&CY*DpilF(pD%VY?md=p4NR=9i$Ou{74WWar3aX*O;N!Oru`%+HVyt?Q_ zLd5*~`t0k@Z$MUU6X$ZBVH6Px;4P8Zb! zSDGGuy}$-?r*2XuF}E6b$7=qonbT>DE1eBSgH|0+aXrdepU~>vcMyKGYG}(}TMkMN zKU>tX`q@mkN3t+y6NsWCFy&?mXuSKA1iH4iME!u9->_sj%zA26!hUEc(#sO<6Y_|B0~6qDD#z_zt4la zz`>WDzQSEW`#b2B#^KM7T6a^@eS`{x$YU;+xeepBhE=H>{`J1iWu!&+ zIwv{Dc92aO*^!Zzga*Rlwl~K<$0*Km+glua&)@z1{mNkeKIcJ_$o;>-vTc4SW|#5%{6J`6^4`?K#@d4P>w6{JKeh^EF489xuNIG_AM18* z9Mjj%8yz}st(e+brXx<^9@wk^kkcz?$4kdOru~k z!SVBFIc(_+Jt?F{%DE(xff5?K>z1p&IihB_1!VQI3?z`#j zDpW7p;D&UCHGN?6?{-$qFeREZKdG^gorcR z0Fi^NRqw;sS<*G2eAK%a@4^c0S)4aH!OTmSdBgp)dz#S|6Klm7KgbrRyTQDUwZxG4 zmSsnfknuQE$XvdM_^KOXhtM%dO=As|anZdUB>_ulv4G2i>_3$q%8A%c#u!mFjJ<)Kx!oH9Q)ML3TjU-{GD^B=gP>itjsLADawsUuXzC zG1lnR#TJqLL1Z6kCkF0~Id@n-USs>Iv{oA}22-A(J{JLn0vF1yAlTF_apwNOH zy;=ET?J13Uu4aDr=WJ4adHEM4Rn>G&v2NNCnlzvG3IYXdYkb@p>A@b4&!L5VY=c^v z&SD~6B>f{X$l3y)m6>KNAPuqf%SSm>)&?-EdnuHMG3PI~0JOB-5)+CTWl9O9H_k}! z7EU*-5xZcBwKYq|ux5qMo<}c44caABq_hjVe$}*{{=#~7$riL&*u9(SJtZ45NWR6YouNvc){jMhDU}Cu13j>?4 z-Y6Da>`~79O2XDxMS<_9JBB@f%33=cyteiFUgs{-ejge4RtE~IP`sZq{AT;=)T{#q zE&}lr)H-ECMybMuyDu%AIb`41r7wBXMV~tDnK}UPvTnEi{xTdB`3YO*W}bXc=#Bqw zJ@*j1;vV|~&q5J>q(E)v^9~`|%)`52R={aHz~+!?roKxZH*?1P>`8DG4@E4b`9FJB zl`KzkpYn3>%4~x}G<7HlGrw+za;*NUywGHI{nB9)amY=$#4O7u-~i$`!87Z+ccBy+ zYiO-ctWRQ}OM;qhj|07ANWHRcTD2KsxR}AGLYnKS4xOb}Zj%w>8dbqIeBHAR9@9PO zR^pIjYJ8TT4J}nb&Q0rSi0QFm3CcSt&IykhVelP@mUUr0`Hj_DDD1lacjRpi8=vN^ zY`qA@gE`jYzW;6})VjTmD%JhC2q|5O&2W}~ztd>TR*Rzr72|?1!DxIo5Te4W_4n${ zGCptVG2`X1%KVAH#!IP`{9W_*r2Q7-S?_KA4)cU82fOtu*|lA7x7A$|wy}{HTAw(P zfapb-L4SMNcquCgY^};1g;qUQMgDk!0~cIe;OH3$_zgX+M_wJeGN$Y^r4r+ANYKu$ zeX!DnDXW*<(=CTn_h2+xYj5*XSZupoHs+Y$zbxu#v_Y`WHtEG~|E}=9^Aa}}nwq`@ zO{jJ>#k!x~anbafOB6$|0@@3VOuG}L-4qm&np^%Bj%^PH^{_2!F$%)K+ipHYtSOx* zgf=*Nctd3GA9b?r7&_ohy>X${EJs0q>=`pS&#wsDAYQrG|LHjvth~h@Rxas}1TeU1 z+<5f_8g`>u31X|*@pZ3Q9$~vLXs|mu!W1{C*IvE&P!7;wwd1G0(z?XlqG8?DI7dEL z`mUUPNU{m4Y%wfD_o^TC=ZcDjtz z8o44MhU?6=yH7%hcepf@_(R z84taZ;H;;)tH#8S?h@Sdjth}COTU2kIY_lQ1b6OJy@*Y0Z%MQjfn7>d)MQS@Mt$EN zyecKn`{F@ytJjdXz>X8bl#Ya_| zXIW-~Lp})S;MJf{YKKIuZd?N%=?!_3frRwkufQcZ$S3}+GjnHE1uWkwZcjIUUauVi zE9GS=@m>?2#Z)J$rjW6qw=i~8EjE(OC_mzZ1v{TZ8{DT&Q`MtTq*g}I()aEK=rT!? zyueNeO)C+Z6v(V49$Fy6WX%AW=uCDuiV125gszBjB(`yN^i_P?KfDEqkqT66*_!@U ze`>0puta1W+Mv?lq@^rWS>5H9Bgiwxy!Vu(=o zCjQ)H-+LcpBd3;WiM(%{aaXjv6_j+zw_DP)Gz<#gJ)!AeC4GucWoAT<4(E!h{z%+W zUfCl&9~?s~#lddy-W}8(P|hv|yDTl?}dQ4-1T zJA&Pn#>^QB8@wYyhx%l^&Pg~%A|t({^XP@{HssQrUDzc1B70q@-pM*({#nzWazfi> zzlSar9RB z>hU9Oq4hhi@1@R*HoSX{jsKCzE7N<{3~mqi4oZvI~0kp#K{x$$DQJKMBZvlPwC zlL#?4CxU2){GrSD8U&O*`)TNo!z`pXGK7{e>p4Gb^nn7;Vf$i$_v&8BiM^4g9OHE# z2)K~AR@Q}&i7f2}Qk|5n-B_jdw`<7rlP?duv2@1y(#W)PbWV?_1Ba@Yd`MV^@!Dyw z6{um=#svERW~D`fGRmMt&Y5zH8ZM*BXQamh0xzZY%w8^mHaYooVrdlLQ;VOL&1^-D zYf!uZO0nl8Bv87Ck~ZtCKoi#%03%C0(kEjtB>N6TcZoy~*xI}%8fju_gGL{N}< zdU3Yyjf2gIK8p6OOi{Py57tUhRsZrpJd*&1v1k7%*}~tR`T`>P@+jTC%nvpU!2xdn zZjw!DWBYOhsp`^8lG*wAE+7h(#WW@e^4|XAf`2@&A6btc#AG}?r1~x>Wt5^>eAie` zhOk)S5?3m@ut^%y@D7b;)t78Zr*2V;=uZjp+^X1QD_!r9L8_@3_8cOgUROBP%hmy(8$yEl@Zr@JdH$5)Fw1R zE_?NT&bWe~76Sw;x7~7iG;?RROuS}X!;!JbPdY5%mb?&jR z^B{rlqD$R+hj<9PSK#SyThT8~mjF5NyoVo=2p^(b0sPiv-J%nT z-Hgwl22FAl6Df8Q2`07^(ZeU6#V2!*GU@<_3QrRDd;&Tv?Dl^h2k8$WIuvA)Sr9i$ z$X#%8i<%EBs*?6QPGggOU`s^Xq@gRUj%4DhOz~SUE9D%E&gNiJiyBi@tamjSK5Nh^ z^Ut)kFi~gdhDM@2hGb;w+%5z^Mf|r?t@u>B#ii0c z`xBb7YxAe$V(}7HAN~xs!+RFTZ~|#<~Hffn=Z|&YNCa+4`MSOdQrc7_(ae@ z@hgujzR~Ap#JSB;)R?)`wRa>XzPn5e^hp^viSISF!T!t+3AI=mUubEe#GnRNk)MmqNM4kE5)O=M3HU^wqHA~-M zFx|DdGfT&hyc+e4V)(pf;ho#z558*U>n!AM`ka|(4*az)F#3_ob~r@?dBA$Y0cI+; zkf%_*;;3|p7BZ=Lq>Re;4Isrp0j&vX%TYmfc%vM6y;kn$M)%-gr2up`nS)pU+h9-k zXdOR*zldIlrtH^}h3%jk!nrd0KbdN_X`iia`53GaYMvwGYXd^zZ}Uwbd_IE$!1Ycs z6N3iwJ^L!wU~VL2S4u^nk$I>GUlvCbpeppQy=dGin}6qQiP%N-mRV)&u5d1F)O^`C z*x`(9QzKnHPQnJZ?>AvdInHmsw%#Bi;bny5YJW!X`Db1pJ+YG>AJGXYq|HU<(gzQ( zjdNtQ<5tiEF;GfE%mkM87mn-Qv*sy*{7SHKlDSsQgVxJOwLURxPlp4_P_YyusNt`- z{Vqy=^_Cl?7CPPnk5_!i=EF*lIcsq3*wdJddM&^&*r!-X6~fWWWOJ}P1I(MkB@|;S zi$%W?o;_Q$*aW4kS;Lr7dCP4n{w4+am@z07j-ZX{76Jv;M-MHn1)!gCiqS}WLk1G0 z(r#HK)kE|1!~hw&8yy(xsbA!jfl2-`7>48n#wPUK@qP+Vp@@Z}r9je3NXsXWbGy<0 zGpXYA#XoMlxe)=b?J7;n3JTp?-?Y$t`NNS?-+k5in|bnS{ibf(7Y_?4cgyW~ytM29 zu9Z=Zg`tqEc>&b*G-PF`4!yvT)>S#>ze}y^=eS;!P0eo8e**Wc(dHA236k-al4%*s z15F+G!vya+*l;Gpl=VUWlFucbd?KXxm{PM;onvYs*%i<1-(i3dRo9@D=%(^QD0Uun z@<$ccJtL0i4(Xd&qfZ(zeDlJD$3yPe!j@l~{fRg5zklCU5@g7?kHuiG1yd>;V8Pki zmWVaCl^ITq76IbLoFtoS)fTXZ3?2oY1LcVN>t7W_$Ug83?d zH$-VQ)*n7JlZxwUEeSp4h0V(eYRhLjE6I#OfoMa0mCS?HGX&2?~^W@1Y~7hSlwRtXJ{Hj_lvXtLv5Ya0a8-7-x`eUG%u&&~ez{)9Up)b>P{?#s1Df;#tb zX26fG_C>~(;%<7#WtJ{Au0}%oS^g`?&z`3CQ-)ATGwh$MXzf-Xk8B5%>RD{>1`6i7 zeD8G$N&iTNWsxfwm$`Jg$=HhW2!WVQVU$rCVJJQy?3L6le;)hwn2KJcT7K>k@qs9b z3QB{j!S4~022xq+y10To-o?m^d#MK+e|vC}vwTvOB{t#sr`~U2qTvLHyT6d}Gs~g< zQ~C|X|7i8N-=pO;E)tjfcdjYx3wXU?*j9W9L|^rDD->Gp7>GA}po!bXmX(arrStEn zb-mpe?rIGcKbo%g%FsHNnq)jo{Jmj$_1|ZECx;MxD4M}07@b$}N9q#H)1|?gz&oQf zEDoDuw7V*Imu^gT2543+aarrYILa#2WahxOpKk;VzQDuyRsMxX9uxj~BmPTf!U z1-LC7x|`#4A#-rfH{p`8!<)7a0wSzJCk$W@+@%S-=?!H}q>P43o_Qc^E{++EOx@PO z5~?h}(YOxVzI3)s^{8_a2+Y2Wg*mvJGFBiD#`d&<9v;8V{SajCM?$33iDFBXcA?iIj2Cx&_wz972 z3Tx>rk!wIuIZ)hDK;cnL*puBcxctu!58rP%KLu7aN+iF~S^`i3>iX|1$smtLgy>g| z(JvLV$c{78K>VZakOYw&8%lS1|uaBOiv$}#O2P%O?RM6p`fm4 zr?b*0@wbv*{t#*;bL{IV)GN_a&5m9pV-B0)f1^@7eYsHBI=6vklTXzZC5lxF{c8P(|voG<)`Cl*w{j$saYAiF_QXuSNP45*4#x?OB)A3NZPMF_&)@F{iX6nU` zRnsIsbS&1#bUD#4Q~ti8BN9Qo>j$Xd22Khw0=qr{L>I!pd`Gzh)wDuU=VgUVZopkz z7zw1hSnkT4He#>o2}8jkNl>*L%9+wJL+Ftg!x01K7xoRq^!!_~1j84lp@IDoeuw-= zs<@2Jk85v}#YCUlyjM5Y3C;X8KvWdcK z)~9t@mB2^iVY*!Z%q*V&bRojYqp29y{17D)U_LKonTC4u(D^*rAt+A`lJ&zb8++84 zACXO6pp6dJGsUqJn|P@aFfLJH2COdmg_si1N2AR6OF(BRls(aKxOxVO+k&q;{JJ`S zUoc$mhYA?#!zdtTN&YYQke-GD`ZwsP8ug@%3vg2y;-J7?10VB%719am*tEh0XiQu- z1a;Tq5D@T|oxRvj7#K|L5w|SLmjvo+(yLO)s`@ZXEH4CAm%b3Te=YID9O9XCO*>q^ zalv#tM67KMvKDyGAQ9L}D6kYrIAQKU0Mld$)U4hUz>OtDlppHkVW1y}k((k#dXz3@_O7%}rdd z>7#Di=-C}6{qyXnX@J}%I-9s;3ZKG3S@#SQfIU(k+RJ}J96^(07Jg$HXX|?5=LpR2 z_DGIdWcNhqI^6SMQ+P-XDPRs^oJQ;f$iA)ErSf1W@gRt}Oo|buJ12TV5e6X^srN?a-2m>+4jtce__P$yG^FNm>kXdDD4(F$K z;T8h@d-HpJ8l_O2iy>mJ`N7t(Vc6(;59vRhDPJi=L*Iycx}eJ$M_7`AD5P zce!!)!|4|`^6z0Ypzsa~n8A7{O}pWqFBAr(>UszaUK_&+>Bz(9Uk5eP0#0VCz}%Iz z(~$BiwJwXtRqrsW$>^7H|2#9ucx0hTa3>nfjC25D|H98f`F7+W&YeeUsIww1-W0a49r7iv(?h1UBgS7%Q;?YHr zrhBh)=voz&TY{0(UF%XU(`px)uCo6bM+{ECvJxmVPp&y31l|ApH0A^=Fmhjaaqwem zo%}_tyYG;uuPnVBY@onuBT+IqLf+~#k#K$e$%nh}d1r;uXwI%SYE<;ZK-L6~wOhVt zb$0x8p^ zG)jaeP^uqx3T1Jgq0A97To_(P_pvr$R`H-Fp3k= z8ahBWvvD@vlz?XJjk6t@n_WlMg&o(4;x-Q$3K8qel}Deldi`={BTJRK>4>8?X~vQy z_O_!PTF8&W=XJsfxTr&=NOTt$%+!encOgq} zOW-TJh8{o;f9Es3*aI=ap7|`gk&yWnsTf!%B099>@D2Nw5Z%nbrG%+)Nh;6=EMIFM zELn!_6>?qj&s-i_@Gz{+4>82`sw^1GksJy7wn*Ya5Jn!-*~9kE7{Ct0aR+6C;Tcuj z*vcnT3=42_3NRP*NALoK_7Y&G2VU%(>7T!rBwd*amC(G&VM10+mM4G3oLLaoI{t@a z)f$IUm$PC)0 z*8$NAE69JMDIec&);U(#t)D=@4=iw+hNMi_D7z(7qT4=W8c;reA{SIO|HGLD9eR5W zK~j`gBOH+erMZVqG8Pu-2(iU%?a(}aa|Nmw-7q3J3nMk_Of;-sR) zAiuD+EO)*(1xI^O(`~t5l(vq4)|ZtQqB)dK`I}iT*O^MkA;TuY|En7Rb4iarlD1iO z+)48Vhr~y{+`(H^gdRN6tyo6o?ze>TXLne_FOBi+vl_6Y|7wiSPUbZZH(SXrdgQfg zgyaMyTAiK_!PFVvyW~i{hsWJsP%YAK-6!`?W@PN_vGO3)vZY=-(6c|{(YmRg7}zd+ zPxep5($Rbxf;j`8q zFp<&(%x!z8QQKW3&UE_;mk2?7iyOb%02I1VZjGcW9FRi!&oZ9?w0Fncfn{e5zrvXMW2*6;UzoHmcs(xhWV}d&G?rIreYq3%PlTWL6D87 zj)2<}Z)wrFEf|O$f%G0vak&u6eU#}fVI-mw>BfRks#W9rbM0ogJl#)-m2=<-*h7dj zFauLfDb?-#G#9PQP%Sn7206X#kns|ar`K&jN3bHjM936^b#Wn?70zHK*eSjcgHFzF z-O(l?3%_~(x;t!H@v3IJ9(+rK*h?CQsxKOMdax!ln=e3VB1|2EXsiZrEtB5484a$JWXe5Z~Q4<46t=@$aJ%}I0#N9znpxxHl zK_@_)yEgWcl-%8=jSlR!`xE0q=@ z7UzM}g;2ybOYio_xdUf@d7rRAJ`}aA_QG#tYQ;pv)6Wz-!-KFkI5UK~&#Y(%5^6dU z6A%xYH_AT!Xy;(EHMcnXcQ^7&dj5!o`FV+;(ErXSDO1wJ4lM;PQVX?R{Q1d>H?@90 zz?eZI9!4dHMK|aepFbC@X8|Y;MeRE5eqru~H&ShSBQEv}#mZ%e-x!<{4s>dlkcpBc zyt_nqUS5=7N&Yb@#2Kj3B+2i@@ETTGyVniemo>)xX!M+_YR+IrvgpNJzK+U zlAa<&2{OKg^#)o@P#=A`0^{2vC*n(b_d3MS&s{aIX{<4z3Bt+YPPiHSPpLq?S55Cc z+I!%723ed&{|p-T^;Tr=C!IpD5TC!Onrq$*RZ#N+T}|k1MZdy(DX6h6;Y*d?L!8KD z4`rt)zD(9?**YoqFkaMuGQpMqTJlFRPCgA-?)Rh^X|jzCFEL#)&=H+Q41rnTxY`MD zV|x&T8++soeDTI2GpJzT&}BWXzTe0GNJL1PX;|l+sMMUyM68SZ6}F^!MfvSdaX&o7 z9eGZg++v;@hW|w=jQN~0!!k#SsXMdRQS2o2HDd0eQmqLI6HFrk?}cMxB@>|G`KQCn z;)ToStxzv)b36YgDOls1{ZXnnLkw`yzLqs{j3f6Oiu*N-qkV}QA}lMK`uG}L_QxHs z19e3%sIfB$UNB(pE`)A~pnSevvm<#PClrfvyD}2A(nxE1YsT1rZ$4qd(G!iEvD>4U zsEJl{AMdx>|F$7P%sPNn$G$!qTOlPHJ8i7JSv%U7X=7M=>%H^WL{8zg)s0aeVId!E z!Nrbj7TK`G{%mS>_E(f>q2wlpyhX;W%*WB9%_76&*lyPIA#q2I!+-LH98@2vRY|`n zW}=;tWfbMGYVI)h5@?m@|D;p9EtKVTR{Kx!`Bxah@{2)+-?bdag-c?$&YE<>OT+|3 zlJn0mD<_Uv|5i)}Gmm>r=^JGjS47j?P#jQUWQn)0vo6yOUteh?Y

CPRY{3y3`==TR@A84l<((KzCW=qO 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χ| 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%0AnlhAa&-HXG@FZkNrr>Q`841Cs8S%>J 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

Nyi{u^eLgkIQV_Petf-JdZtR>W4 zY5vtcn>Y2cP*~|&;MaT98SCsfAv61KMU6}&H9x5a4#IE`S5k9|p8?cJqIIG z>C4}F!I-E1T5$kLA9qp@MsShwDO)AvtZGUV)X@tCe}6rfN~HTRV&MvMrrF&DnGoCF zE=_q)VE8?vg7c9{emUSY#O`k3O4!IGV}qFS&x_LDyQBabsza%;I~g~Gvm($0S8$G= zgyHb&{Qh?n*eDuiFOBwX0051iRoN5 z0n1F_5J?FlwtIpwwxgXNam=`Fy}R8F>RhiJi>$+sfq)FP+R3^ji=2sqekdTpoCs$F zA_Cc^0L?@4iyG?Fcy9~P@SkR2E`)+m&Tv<>fp`?HV2N?#{C24ey&r*ovwACsb|3_e zcy}|FqIsdgK6fGl-J&soLleHOVZhxM&J^Lir=5}bu_)U7WtWhz4kNTIpfC;-aAnM^ z=xOZ*(7f^Q{*9aHI~U*EMAL#Q&N5dT4ndkL4FQ7?EV|K{EpOYXHXwITFQuk&>4vzG zBO9>TM5vtL1b8$ZL9U?|nQfB54H@6k% zGqi5s+lkm*gU4%otj-G=Gb$I(KTX7HHrk{Kv|PO!c{NbAq-;*!fb-g+j@y5q3F+@K zaX*V4`+tUZ;)9HouXg1;+eQ*e)1np_x&!`{AFV~MH53y_1RB6sTiln!`zIBZ(#S`Yrt?xUKZ_stqd2A$TheXwJm^82=y0>Rf zJ-QcXWpNa9xV52H4B2Q(!3^Q}N2VAnH~8C9RRI?F6H@Xfkv!(N;@+oJ);t=0<}=X; z-f)hWb+NqC^=O0A;&v~GctkhiiED6%-rF#@<7}`@gMxzjjvI6g7QLf}=OysGpyRofDl~kwbZj1zUnY## z!Sek@iP(+0jpdmD&(FkeP^CLGm-YuJ8VCV3q@+|+Kc?!0^dWi#4|qZ1E)wvZ-R?$Q zuxWJ6t*vFIWnZBa^{%;ykDAs6GZzi>XpW1elGLTqWZ`yx5+jXvpaC)axRCK&$}*-0 z^hqn~fq=EdwIQ!2BBGptCIFQ7Z+W!O{FedPX5*RA#Hp`c8%Lm&n!bhX zzW&2IHq>2^G$vz~@3}&lOfGllLLu-1@;)~H+5DjCZpYzH(}DNFMEUE3{iZ|j1MfoN z?dqn(gTW-eJajE}!+kBDzxNQF&8#!#}H*_N* z*y?J>gbeJRSpusvpQAibdisf`apOTVe);06K@PFjeW=>(>5{$gc^BTVfuWR}n;Sge z9!+RCTo3(9$yZ9_m3KISJL(h4=Z}+1KOyg~SImihT{ZXa*1M%3-jmf~cc5Igt6gU5 zs?L=L0_LB_buJ6(rzrjov>-{Va3{Zp!(8hFcgXpUBe%U=1xT6dKJyX7!I=&Ev)m$= zvSMG*I^SNiUysK$6+foj;kJEp)1qD-3XND;`XD9P4M=!h%E9D=DKFwZIur0>RfI~+ z$D8{x7+S0XL>!Nyy(c}8V<)8R{&r}i3?-f?mlHvGcqNVR+G5w_e8)~EhTkg*^Hqwi z^iAO0H$*RDZ{Rp|*WRFY;DT19XgScTY5z*ci1T4z$GDy5x4*Pd`Ds6v%ZQ^#u)1t9ZRzfkjRP%FI* z2Etyamje~yt!-Y=w=3u3RtQlsUB5S5>5_v;u-3HW!5iFJ9pg%|9sa5wto3vUx-gNK zaVX>E zo81%5X3EmFchUmp-^ADbjS6)3t>fL|2~T$G;CP0%ljTYWg~RHTf#EFv(apctGm9mfz716%QUoQQg82@N;1p_?yr*}@vT*sPR0A8`l^Oxf5LKIhS<9w1m%j^ z$tQ(Xify+(E+4(TJJQRAr{x@ur{DV6_}tGRXFLCvcC#AZX07fRnvjt+CREYcjK5lV zNZ3AvkXe1#*izr@>xd9TbYu=RdT@49szS4AxnhR)?A}kxW33&Q2vBtqfGOZ2= zS%a9;8dIr38{5j;q&OTF{5)ah`lA?VQXNbupPx7${^!jv1NG-LA$-}U3)n_6O7-~_ z%~rA4?^bS|PkYkJpbmLe9E@55GL+c4+t?-}%ILafQy*BP6l0qgR_~O1BR4m-W~{(7 zStE5j<*+s4V9wO_K;>`+^5#=-MIoC{eLJv)pD8^v8+MVN!b{CD5eqyYbtDy*Kze$T z{JZ&2z`G^$&CMH7|AU^qQh}l@`@DBILZ5|j@S+n&%&!j7!p3ZuSI~x;({fr=7UIj7 zP*l@Tl>~CBjOfptn@c^*lIK)J*BWQq#%>F*7w)g;$F+2M>S!Eua7DwlG?$(|?P{+` zNU1>jysmnjAvUGR*GS4qalSfs^r8J6TW@@8p6#P~%TiNKg%^#_PbNHL6PY=O_sHRs zP_W~AQlmcudb(P{)%$uTfV0D*9%Xt%rIyu`B^#N$Ro7CtzGBRR2L2AMF!JQrM>gaA z@7>R}{x&_`!br_=`cHnbxa6JbzpV-)*olJDD9f1`#V>FJz^RTx@yazMSc7dmq}Q|$ zdrgi|Vt$t1>D7%hc2&2#I3ClLm~HUHc-5=umD5n?Gc_n%Y~efBCvH-X)cC~WQkQKl z=T~~A&2!h{5}n*6Sr8p2n&M2Ja3q|7_6um?j)KShEs~#fU;~O0?#=~}#Z|_9rX2Xp zE0xkPg4Kdm4OKL%CvX8}Vb=Wt7}gSG)K@8)pa1FvBTe?B(DmjX_^R9ehuw(0kSyNZ zvJH(Odl>k)-OCAcl1$*8hI!6cy_ zvz-Fw0$AJ9Eq(NSMgTA!DAlqOi7VcN(!fy3}Vs-C+c~tLqgY~T-qc0g_CoGe; zuIMU)^FlMLWjprn#cW%0=4G<&mJ>)ZjRV_z1=%WA_i-OuF9jb~;|(M_mw(-l<~kBD ziT?GVs>%@5FC9Rr0lcN+8!?h|?1$PXPGYY(o;}ml(V*EHz36_w*yXsv+e-!~T3W=7 z{rz#wDU3AtFuWH<_dR_1{(6L-l|K2M;?%9T``JQ;#{X*Wux!s0u7Ro<}@TA-`5dkd>>I@^!M`H8`+lT9a$@0QvqKqXX8 zNH=`%DOe=F-OZ>+YvsMW>qX8i&_sjLWy}4CVh}$h6xb>A*TvwPewQC3jkjL`{QZ_r z&a5Vj6Tc7k3m=tv>VnMoCa(4cP{hy4wS$YXywG^cjzMsEMG&I3EwXUjk3y+5>6ZO+ ziwhFXR)=pKwPgUpKfQfBn7Q<$;o)mp_G%!vyG8R4!4fp-Zn=C6>_|2vVx0v#G|YB< zT?n$ELrpZTv-!PP@wt;V`~%;WAO@?p@Q(ZVqFg^?REidZ=^eTF#b=!_B2)iK#!0FD zD~nO#zMw3=&#A2a_Dh-tKYluP4F z(Na=G{Jk&HNe4>{<3vV%0cvPxOhN%dxspFgfDW*aofYKdxu8A}vKyde{q`z~TM@Cv zm6d8&12Q$&^;K|VakOPKg?)XKuPaYjjL@;8`O&y!vH;#B;# zBPb5xJEdm3FUBoDrs*;6>IfWHmlZkF_h-}UeH*7?KAF7iZ=3RoF=T%yTPhHniM+QZ=}}ssr8mAr{dFLlY_)Fvbg1M=mhpR zRfDgEShNt{L!J$pq_)qh1(IL_6@G0-GA>i`po`~p{0pQ zF3){O1a6;)+8XU{3rPj|7M2>&+3v2x@cB{1yJ?U6>96ZtVE;rgncqR%>)MNf9f+#L z7Sv7@rrs?4dE;XW-`svT;$(b3R{o})UW7PE>`umD#SN?WpBE?twED$=-^MthFLup^6BG;@dZH=}S_6Uv7g*i>OEO^{h!M?bj*G{K)W-2+L7(g$ ztT*~KEAO!v%Jl^ku@m^D@KGF%C_zRPhgNAnRXcaK$rI#gEx zGV`;OZTpLl(!8V9jHz}dmj=kn$J46;CWPG<@4eW5sm1~MVUx)YYys-w7S&Sc#J%eK zVf}ZusVTaSTzsBpnyy#MqRUQ%&1H?dUrx*9D}Ta%55py};H$}JI5>a9;vtKWxwgvv z)_}?R_do*rN&NIroR;5OuXWs?V4zY}k_w!jI6uOP>GOFzwnj2fXPcpXdE}?c;?R;I zp{rXkR-LholE;3P*!av6$UXS(oOdVp)Z2>mPv##V=1Zd~iau=QK#)AH1uE`2TwOq4 zp{0H>5+(_1Kx(_~#1D@hqLValOoSW?Td6`a@s?(ZwZ2d{e_k6jy7lEhn=beC_ zZ6Q`}T#*a^?5XkrqV3t)v4Qs0y^B54{U4HcQzU|uk4>{6s~?y=KO;A)*BSpcjTy3a0r2y(vZgKbX6EToZ_-$>S0@*1*(lm(vRX2y>!p_ml# zprJ~veZdp#u?D`Fm&9R0mlZ%YEE3deCTrRCGS12^ku5HqBOh$9Rm(+hMPYi4pV5X$ z*5L0g;kt;McR0w)mw}Ya>X3kFqa&=}iX3O3%kCI9{s#(#tyu%z5B>Brr*vN9a zG&bU*xUev zIw$0|v_AMa|4{n#Y zdNHvu+>h%u;`(IJ&KfU>oBe#(tQwtbY_6t20}8)mYhA1%5dfa$7ejwMeC_(5QvmhE zd=|4Ks2+&%U{$?v#8uS`K(e3u{*0DN)GT)EU~HYoqioH4mo0ynFsciO&uTsuXW6Ft zamIRj6pgYVqc0tzJPJcPuu=}6Exn*sGmtRHCOXWOsVA_fqj}#?h#AQh~MSPwn&E z@Q+pYpWoPPeh5E>nN@>DYzEQYs0;BhD*Ifdi_k{bZ+7|p0xtv$dz{$cI+3%A4}bNS z@&g^1DqjRFS5x%03$GKME9$3aQ3My7y0LC0?w6Q+F?5K#TWHnlSKpsnwEaV)S{9cT zMfgdeaB#K03e~=}zVL+4P2u%p$1jr%PDpKBj`xR+r6$>e`uS#x{q9ZUT(Z$n&pK>c zwAulEI)3{!WUp!4*{$L2eY-yh;idqk=1yy7{lkC?T_zm*Fz_7On*BUj;bLNycBWX52(-?KzICG`TBQ(ZwBntQf{ z=Xqa&1x&{fRY~-EXUNr7 z=2^NAyxrd%Z z&rRz2(bg$v^(eGDan+@C=p+Si(`A`Q)jFWt9gIb6&5@LM<_dKqYJNOH$?>1(0Dev5 zBx8%_?=BuMBg_A&4n${=-Q5cQ3!av@xizRq_RXg_d<*`{A32@e-27HML5#%( zbk0cq&O#lQO$l9i;R@eO2l0dS0P4)|xx~p>mw0ybMAlC!0xOc_O+exImt?wU#KF(a z`%b%f8HJd+0bp!U-TlR>$ps?Mh^6OJ%ZGm_@h~KayJ^I6?)R{WR_-N#{*vS-R>49SL?l*k(lk)o5>alqENxn-SZ2Wa}3tPUy^{7_`^$8q@p7urOds zBg2|-8#+VXj8K9I=%?*MpcK6%ih?UUE&YT!Rc6){p?l0SYDA^}(~KA>Aq;BG$FU^u zXT7FfLcl;Z1(5S^91VM3%RyH!xKd0pqL6m?J4HNU|DNR9F1?9$Y@5ZQ)5-YZ5gDHP z8~xnz*9l*aci)e8%f=XZV`FF+WF$PTUpTSQ8No;ZZJ& zWIXSMkRDJG80=Y`UKJFv>~D;f8W1QXSZLUs=yfSt7|E}CejMs--`3JPxo?y5MzleN z!fA3GS_HUY1rO&x-{HaYQt>XLGZ+5M#_5BQC> zAAx6q1lgb;V7s&npWLA+lt$)5Bk)PP!!8N|O^--$mVWTCG%UsQNg<6qyLi>&xE2jb zC<}PFgutPqgn^5#fK$DHsI*$7y&u>`Hqv)+LH@@Cad>SwR96#5!hUskAh=0>*#B(0 z&j_yy(Nuppnc5)-8-+;Kow8tz)5k7fHEVQ z=8oNhxYRUbjZco@+Ix|eFOOUQ=WCzF^5k@3>JS~*J8?SEp6uC_Yi*Ny&?CCeQ# z*omWO!o6)?i9TD^SCW37inqXUUS$1x#+llDmcvJxMKSR{r^e2&d>)QV)1~&aFL$>b z*Tqw`zn}X3CM&dnw&26m(9rujOOX2IcR4N7Rhq#@x6> zIi`tN(L1}<_OL>0Q@hxEbm|xrGfJEXm2#f;_ik(pK}(5O+Z#wsXk^#%%^{>)0@tvd z`T}Q5$^7oSYM+#Dx0YX(Ve}dWrM~vYV^jiW>i|kjJ?m*cp%$X}u>rd{4EfH?*1C<_ zDi8orXPLw^pkDz}6HUAV+XYMo$<|HV&R z@nRxeVT-aVz%Wq#Zucw35n1crF@ZzP%<+OI+wqvSE+XjTf5Sh>FCtE5iIOi45sA+h z$_4+haYw$OM!w|DS(y_tazAszc8i`w+u`jCY>UQKQuQ>dNOz<;Fi$UeA4}5BKCr{f zpB)=8rT2iVffg#&v{D9;SbM@`dkF7lFyE ztgLL>x>ZKvZaJx@2CjT3r33tB-}eh~9vgnqjEmBbU^&{a->mx7W6|UJKmh+mBpc7N z+0V5_+qE6IkltD;M~_h6mVAO^%qPR4GfyH}yj`Cfy?t-nh&Tf`@h_BF2M?0?+S zyq`YZ4!VkoC~4M=7K`@&3s^1SbTI#PREwweL&A;#&nPY_ zxyv{q8WlFH04=dd8W5ad?I}qD_%f0N-lM=gV;SI&?iyy|`}}WR2wIA+YbBj*#5jgA zhF|?B4*8^E0Ru0x)))>|m_VKlIqsrMIp(n47I-xr3s8g4G$BEOQ*pi`fc3;{Ad#Z= zY(gViqVhJS;X~79;JQ(kZo2UG*6d}nYmgnKVCKqq1lvBnGD*a%k{2z_);$Xtq?7?` z8$b5!cW(g%(Ho|GbN0FX8q)`b$z5wt!PQ6k{fE1o{y}mXXXpvG;JZ*~l}ya&fd@h*@QF``VVjB^WVU zS!O8%QVvh<)Q?v2Ht_*|64IL2CH*@>%ab{ z{uk-Z(RECZ zq;tqkXfID!LSxv}@6)f>BR|9IFJq;rNH5ggZ)*A66lqN9#2(;60%hNnzX-XWdjk5j zl#0nMAxUhXIeL)TnT6SVI_lUEuQ)OFGs>4ZC!*1Oz3oxb;!sX%g+AX=Qx}79(e9I1 z9jqN2DyA2qXu?lxHu=t9j{~#W-1aXyXAk?@4;>2&086gBZ2y{*$M>4vU<|ptDuVem z9pk)ngYVBKhtaN3g%?3{(Q$8l5<&@}uE_|6aIBI z>u9+huJ5A?5_}c-hyn(pPRjYXrpO&Sp#_{+thk^k9ckOC8c*wS`;fnB!7fl#`2&z? ztn{>rlEomy?z=`YzNNwhUQjEjE%Jl+mfCKG!oBOVn%S7FiRkpF6s!1yKuopL=`?b( z;=kkIxid^*SE3X+4wqS~Uvv1b1*L?nn4tF+<(*hpk};L5VqiME7nKDZ5aLj~haPr1 zZ=I1v$MrFqXHv8`c)Z!N;$i~=El*sn6Lv`M$L%Gm`9Q*nZQ?523xQQ9}OC@8wh zt5a5#n7ux_gj6dL+u#5d__s3jf~lt=7a4DBkhDp@qw}rpEfO@8-MEbJQyERaOt#PQ zKP(={(})%4Mw=XweBTq#f5_ES-9lkLTm*}Mi&BwXuTOlx^v<=|(fp4L8{4(lr?xkT z!g6ngk$p0%x%3`5Ysm}Bdh~{q6?qG*5?GyC+wHX*o`2jThLGPG!n1RCzMsqyxYhB< zd;6->@<^Tj3dGT(p&=?28A)Nc=+tetPTLR&d%jA-o)5{jT!#!!+FR7&1?7Hi808DzTpa0 zU;s-;0-2}x1?_H=Ysi@uF=%MB8VHe4@Uw>z#mGarxl%l(phtSnr{vDa(-`5+3P6FR zEeHczeRGDbT^j|VFdXxQuo>OjcO{?G!@3aXgzocmLUOxS6eHM!aio@G4u&^=WT+!h zdG2K&cD&MtiF+pC<+1UqQWw5^#A8G<^81^dDaWq|nGb@pr`JqqUDN z9o*tnlUF+SqMx6`u*5~|Zy*6LCv-a3wZ6yXJ@{)(^UD?&k#78lu7QOKmJ#lZGP> z>-G4sIte&yy&zXL`k?Weooj4s6`M@}3yjuMe)gmNqYMZ9$nc=Co~-eNPDqECX(lS5 zn;>ftLvL9XKMc7)cH3w^e2s!J4f%C7f?RvHH?8T$tuHQNKT--bE}EbH)UM2!4!FRU z1yzb+d*y(pRXNcF#e_}C@_I>1xi(-G;k`-OJV7;U(a z7#v#Kimzs3`MlE&c6m6}k&pj`@Rvu6ZHK)8CsD}&d)U4j1xzC~#bf-!^Dszusu=j{ zm>nesPH?iWDlwVR5`lqIm(R0B(Z-q_31^UsCIJ9JOl4p=9peZ3B-QpmFwS^*5-KJ9 za@PR?zm>|Wq;J?Rubvp%_#m*N1TiN^y@>A1mY^wQj;a4O{0ar3D`|JmuMze7MIm zQ@P9+={dPl3je)oh!ELCmKecBH6eeeT9xZ-FB6MX*XMntIug+4qV3A^CkDil)DwSx zM)Lm47mUQN3X%M*opu{tgXMb8s~vyOeHGfE3UFQe*oZOz6yw|4yo>ICoO`9C%su33 zE>YX$!VByKZi)75YB2S0aK=!%#^l9biGwgcZt3R5!N_LTSMx=yD)iWK)YSrNHt3o0 z!EMTZHCcXcZNaE0bu{tC*o&$g3m>reY&AoU{_BE=*q*%mr1{z8LbOMSRL>iSs^9~m zZw&y8hz0h|1$NZX>9>7j`#o? z3Y@y4I>|JWZucU};nRY!d-i#jU`JsVP^67BlyB#^?y0E~n|NT=>J_d4!9QOIV$-kb z74|F@U^Le{Oa7A)ZJ}{l4DT~KyFuFtO6HFQYB94B-}eU6%LktI?Qm|EX&EerxmJil zrO2i>aEmH)%B24a*>&3igz&Yk6(Y0stX%lAne_@v`{rZYE|tk}mR2O#(D1_bcM?Xz zI^AJN44puUtIhlqgDG^_`Uv0ZML7RM0@k7nz?VL5kVb4ViaSaQ^*d4RLa-fHRfF7+ zTZeFkNCyEv*1lOHrx%o>0VSOzrU;p8X)R`SP-PZRF zT*yBhc*{3}JxO7GmF;jfr~v6`f{lCk22*e@pth9V-aX%W{EC3}NyqblJ4mreIUC1; z5)h?ww1DK_e&@1Zui?-8f1WCO^rtSOb6b0col+ljwsk-ExMg+xc<|Jlo=)}EV>5v< zK`NRw&XS4f_7xyI8G&w6%3lV7!haz#!rtrhsOI`j2!6JGz_iB;5*U+V^T{k+Jo z(U$@M&!7S3{1k2-|ArB)36Wp%0@r6RdrwEcJv*FLL0Uzjm_ zkf;ix1m#@|M@5pJ7@~J;9IRg`kDQy*{tq>QryZ*`w(gC>#Eos--;~H;aUj^7gai^Z zTTNK3Eq=z z}3I&2WQer@ni3^)I@`O}pC z=GLnMS0(p*W1}JmoTIkWX{wcGMlpHO zqZBk3sv4Exbyh&cA_5^7C$917AQY}46j?G9W8`l0L@wU7N8dchV8}5)tEz~X_j0AKQ4A90$$Er0S2gU-drLyQxAH=YYg>31!YMTD@l=Qp z&%@!r_+0p~k5M}ca$AQECSUQgAkME_0h~)VJuhtu8l2bE zi{zp(fyW`}dNZOPMRziORAcF?E`9M;DV0jBgNL1K#^KRgfMolqS7+B<{@s$i3)OPpE z9t9(`)2_bL5!5XTTe_6_=JZR(#6o{b6PiyD>z{L6-a8|oQ>-nYS9qiwS$$&!lBg)A zzjU6wXY=7KZ0YT%oHte%_3qrj@2tr`#(ds=&hnf5?wDg+RBytRWX4F$(K@q`FHR@s z^aCw$*D}xOWxJZ_YjH1xAKi{K{0U+lnf$~0?wcp(?2{ELaK4R}OP2qLXLCjowxycTClvlL2xrs%i;)jsU;95!GuN zP#Fbl6lL~J1`Y9B2%xly>J zg9#jMpK$~VG^#|Yu!3JYk$@8-o)Y6Efb=k4@A`Ku065Ntt3tz;<~Q78zRp;EQ-E-7 z82nNl3CI>-UQe_Jt>=xF{!szlIE?ivq^&Tx>sW1~|64en=RzWA?T3r&75pN3*9 zG=wDXp$T;KNqbWw0$47fy&=1bKekwW#n!YM5@yQWgP z(HT0HKvg23#FfG5;n*?Um=IW8DpBj<+JmKsfOD;!&>K2tqKvR_Bzty{fxdh6J$%=Fq3L6SQ< zFU{*fJO2$QKf?O&tx;Tb3H_bSFu`*-{%f{Nh<;G>bh_WdN1XXl^wSoVHIx`(amqf_ z@J0N3KGk%poVpPoK?c&%rYbzIruzB$aTglOb+|Cpj1`vKHTl-g%#J>99+j-t+6%_k z#%;_Xy9K_6doOV^Bpz}o{|&JZ!W?vSe-s`(bK0h7GpvFBM^M72v`-CMciyp^@jYB- z;Fc?RDI_~KS(sC6=ka2^dq?VUUn>}QvGbKlh*YN=j zj^)3_%2YoFOr~FtAORB9&Yg!F@`a=4Z*04oibMAL$7YgCyrn?x=Ny86-w_U8!P!(d z0n|=Qv>Nm%nt(`HcQWE*`@BXjV6zEr!950ZxjXA73Bf(W@PYeqTB8DZ`*`^kk+qYS z#?v5v4t_a@{Q|6eR+vhKR5AUOg3eu1RdDr7t9R6Z9PH19N??}%zQbd(p&|Lu)|dbd z;zliPx;;g*zzV?V*Nf9{hYOGGH#EPre?0Fmzm^`K1`~hxDTdA|yhxaphNDurRFgCu zP&o#7*`EEZy=C_rI8?G>hHi%S^djfBzl0=GlzzJ17XW;F7Oer2j^~jgOylMHlo(r- zWV)JlDW{qyKYhGn0@6#4aRDCZcm-Yub$}4|3(rOVjqdWsF506{M<+RN%9SZQfimKS z>k-(6M>KrTT)H*PpZAX(#A4@{YnNEP11BC+44;1@@dDS$6gYiL$+QFe6d{9XDi5$i zTFk^&DDnSm0-77FXb#qLs@l>|W}_5iue}Zay4w8cDU_}Bid`XvgKzK8?n;vDPq#Do zjKGq2h?{@Q&aPNHU}nssG>d2VngQGgZVhl;?LmqdKWTp!k=p(w&$H`2(M-ZQpSi2v zjoo=sUVz(|?~d&~Rz(7)R5-6aCs653cabm;r%>Zrv$_iS#f>Jv1h<2K#a(b_V{yyK11^G=|q4H{f1dD9FdTFLpwmpRo?Gm#vV0|7NZK zFhi@>`J)eUFFzS2OPvr1FB=+=;A{O^GV%8QBl)L7CMBswAvwcn3Du0aFcB+1oAifI zyN9pj&#Z>fPM^w!;%M~mu95l@PYN32N#;|MC(rTJ+AN7M>VJ^nwR+#+d4`@1Q!^}E zSY>y1OO(uinxmp{RNf~?E?Tx$vQ+JPlKOd@f2xOXZG#(Le09DrLGJU26ldm9|MKPZ zXB}QP{8ot4^d-_&#HY(vj>ka?^!t89g_VQ1h6gud&H4mQrV_h); zpB`E${9Ua`frWmW1fDwdt=ML9UqpT2Z%_wqDN6`in;SJeHQq@(4>=d2b6h~8mPhXY zskhwufWLZY9>@h)^NY#crYPwwOgG%8@T6YVP;H^H`}u6f@7E;WjORLl!}d>wUi>zW zm#gq|vU|fa-;47FyLK1de~=JZ!H7j?aFNBTyk~P(rxxy5{EfvTJK@v!&0q|Y1wM$+ zXmS)^yL*k71HuS$^5tstL0xcC^~v;e){zcOHWp`@jU{LO`u;L+y2GW)lXR#KjgQ0@ z1v{cf<6X`Fqs%>Pqdg(u06URuNN>_rbj>pVo4;}}R;Q8o1Ot!1vK8rx{W!@m1eCJN zGhIaM#XSv-4mlgjq=ywY651O&%%vo%HV_7o_t3||U{oG!sc(kC@meo(EdUMq%l!%# ziHDPqeQ(HsMFPbmlqcn@XYcMEc zJz@OEp{f;A&YND@E%;E8(nL;%AN>pKqgdzMfO#KO!Mw$h?1!t$2(_{?{4A3h1>NP> zaO?7W)^BXI_!bVshx#S^Y>Jzm%wNE;AWWi=eko{add zk@Q|l{Y>GZ9ccxOCVWS-h#O@mxY^Z)aCTPbI-`w-Yx>^`Njok@s(uZ&7>YjrZpxnT z1w8%QEv)NQhltxs=w%#muR5Wk`SwL<5*<%37byydpUJ}(Ifz6SdQ4jzg}mfG8{+!> zZK%s4^C}qr<-aDLgJN4;O8y$(;WY${>UQM4zh;M{vxj(zc%cKF{(o!xYnAM|7FEk; zg9ReDW9t|qtu6+d6Q#=pbE1q#)a4Ljq2 zE~NZ_xF;J04n_(~Y$XSqf9HYgJw#RK$ZYB#txlZmdiTl46j%iy#yFLu=|`EY5)v$I zIxRalBM;A!x-WJv)>VxM@>z6u^{1O(w+4aBK2MbXk0DdY|8E;z^CU;I$U^FPRv}X2 z4RS~3S_dG~BUZJ##|%#2UL`LaTmGpWL?-q1pA@P4?AireST0j|`lT;G{+s;&A;|wW zhYs&}o{SKJx|_^E@95vFl1H}%uL-s6_9EGs+K+Ou-8+d?_tI#rndPasIar5t+T?}t zoAo36@{kNZf4KQp72Sid%QiE%VoTpFA3d6V$b0x7JY;oqM6q3Qjp7>=Cs!=UP|2Nq zNs9s=MLAflt8T0lPJud~q;3qyMr2@J|CB!1(|9v_?LB8vt5a#dt4N*cu@IP}$f~pl zT#xhv-u`gyqKy`8+G2A3eI6{IhV~nXaP&Kg)a33OmxJx!dX6;<-+E?#q=dJ>vG;A; zd*g|dU9t*Q*z20~rdINw_wh@EVugq-H`n9oy~$g<)BJ9$9@JK)j?&&_v1QI2c~hA$ zKloD6Z!g>oKOe!#=6jRPi0`$8@ujn;q)&3X_Mg15Dd!1HmbF9~&V)3R{vBy-y}t9% z`o2;ANCW}$*r_mn&opf4==d}%w)@;Bu9Fn7cJkC--ukBS{x<4Iuv-){Q$b<%#b(*r zkOwQjS!`*|+*bjUt69Y2?wN;QGYYMrol3B|d`WGc^T30akAk#+e<`Kko7E%Svd?k) zk~*C;i9oN^3p}m;qOGZ#Y{i!_>C=|RGi&edzMKQA@WZ6jeVPlVP&wl_!lq4$2kuDpt)Zg>0mE=JL=XO3T zYD{P}- zqXt80CUv=+U1t5;7utmQA!B2c3zUEFJh>gGaUQShS3{idMLG!Tmjj0vEM0OBN$k== zEub@xRIXDJo1f&uWVM6Z>(P+L)?TDwwlXDB2`;0H@#eJBZgl;+A|$g)%fM!JJVLlu znS-C^Q^;(KtO&(4lS9F*n-N&-f}&h)9VT~o+Zyl{e~d;6ZfQgB ze}6k>0;gTy*l*`t2ttl?tk?lV{l84W<%e)~@sV47P9h`pe}t=Zzv2qcVbQltmNNg@37sL=sNwoh0q$d^UE<&cmp=Es- zl%GyOR+-GD2`<6tAWTi8))#&BUF~peH#hlsHYrI<;;r2i+&v~`PmLhmkNfN6qAqks zi@SO5ZL488y1egv*-Ob!FK7SG5C3qV#nop*TSE3!+F3!&#f1_}!1SQ{}=GVBj$f;!=saUAPHb3z!{eDp)<@*VN zhV#yR71yALw4Y``j0U^K{Xu(g7k3X(7RizRJmJIL`S`t(Nh0ea6A)3Efz>LkF__sf z(?XCtnHjjSAsxukIc&X?K#u)qBebL|2Rx;PM_Dxl?cq5m4-DE4#^2iRT?XDxGC)i4 z$FCZ_hviXDxg*N|l`g=S_-})=z!8Y4Z*oKl{8ohKRKQC*20xs>z8tAdPLmV76y*YA z9-tKAi|{E0;O+Q*aRRzNrZVnTp}fh4wYy;~S&46j6&efX1xeb_bW!vkB@sKkoGo|8 zK0F@21wF6s+;*-%1r6R_x9o=G3{oYCgmSDpNcC8)JwOgtH@MadTZ76cVvd6D5jeNX zak*@7;aLC@1;G)7^?uw+kId4N#3_uAOHGnv{hor%wr%3K(pt7JvlE_-&_JI3_*?`f zWP&jMLDDO695Y-%iBzW*B=&2of)}Q2?7K$*KWCIiJz?O>zt3n6 z|KzkZHqJA;W+H?O!R_?%KTWjK6)8y7nV2{MVY|F^g8)=ZkdMw*})7Cs3-OX)!yrvk0tIaC_k)c z#_~1~-x~A!dO-LVN~`{Fl0?Y1h~n13@w zb;A8`Tyfy+RX&@bPEy!Xsl4Ugi(fVdby#Mxaw(u*}|Lz!a)d@lq`}lC0CXgRauX#d%BU^0!1O7Q_#Y z#lf?5w~7{I0Xx;G>fk(NRrou6D^$Hn|Fh(EdfU|2op62!^ zL653(qr%UMP(r50)V+S>aT(C%f4i`HVNRXg>Bjr8X0X7}_K7nTZmb1c5_A|rMlMGI zJx-XzSg;;B9rRG;P1B#ppVsx~1QLzTYaDbCum|7rPsU_240~oU+{=%?b^N1E?sinM z#W26EhOgVRZQRT#`AhlGXH}kWm_@=qt#>=XIMKA!N|X5hSD*(N!1cMK*$(%^k(>3N z!;67fkzN+chq{RW`VjKZT2#gwo@>SDUVN}x{9~}8p7Ru!@e}*vGkSBTcS_WXH9zUO zL_IU&*^%om+&kLbpFRpFt)INSgGRhuka{-T=te0=hz!mdzf{|c%I{F=WBPDO--A@y zYYkcaH5JPu4QoH&@df_!yAB`tx)~OJa8PqCYw(hNEpKqKbR{$R!U;{r=&4g9FT$=% z=bqnB4>bK{W^V3=MYta7xwHW6{ESfd`*s9BB<%;6V~^XPT0B2D_cTbdN4_F z5rD$t8rSRXvE-(_&|48y7w_a2q}!Q|iB+p!8($s)83Q8mIWC;|D5#;2_N!=>GE7>d zxG~D(wJ}B&dw)`~fniuTn0gSiMuF3^gSy2FYTV21NXqHYT)-zpd7(kfpuZEdLx{n- zdzR;)ONT{M?BIHd zdOan#qq)o!NE@H%b14NZSh!@KVLwWAMnT{R0^ zwB%LHV#KU=%YY>Y0rRt6tw+ot$uZEaF9!Rd?13*`AMjS$TV$uD7pKt%PpA)@hGtrk z2R%<68Y?n#0c9yST4bT^Y3;9H^dnM!1Ba&4##TiGnk8}<9_Ixhq zG&!T@wqQ>I+K#jpyDRMfZsMhe#h}i@LF4<4GmZIFQ2KHOU~uKPR$i#%EaXhO|HdV0O>y*5zZ%Y1?+UWN4N(B| z`o`(`md?wXwNm0+mQNR@Sr`OdSag1`&4gj;Uiew0cpXcwbOUj{m zYFvaxS8Lp#qcr_3eaRaJ+F{rHY? zzE2h+vB3EA*pZ%o+l18l*Cw(T;@g0z&p_?V-Ve|2OW@93Y?AqcD*hE8hijvQEd<};wBeBm4N-6*jk)0w9{)~50aR|zD8lL>Y@vDWC`nAv zFJ9BPS*IxNW>QlcYSDIcKS(tIvF!VP?fA+JfsTJlU9}fhD&DJ7beF#9))C~Epuy<| zzguTa%YgM^`{&qhfjRyd2rkwgoCCaa&fi3Qi@~z0whpH?&(chKOPbZE?@4Sd*A>>biPp~x8cx=Azx)B*{wdP3t5nRG}4dj7I5vDhX)mZjvedAXB4D^ zbcp%EY$Gekv=*44$fk_r2V7$GBYa~-Gj=4%omofs#FZ(AI!;~4CVDtvp=n0##cjDN z;J#?k1;@~WEi8Vu1@9kvy*SapaQS^`^$Fr&!io|2gVmsCFj*vh#Q%GNKSWkk$)$cy;AWU&P~?bYO>p8npMaBo3gs= z1Q_N9Bpt}`7Z+ER_y^jk61mh$>Bg%lJH#`S@e3kRmHaRz6>lFrJ^`?h-Oz@XFoSmoy%n^W(<#C(Cz0V)-#(DRoAMC84Ae#!fe||BqFpaC z>6bj%DCvy0GoGQ!gX4ef$qN+oqx%$i0N2&{#A#CqQuXaOJBBgn1!Q3WcifitvJJ_2GsfQ*0-W|w0uOWG$g;qfVtH>m0L?IZmeP%e7A9i2op{|b^H z-hDOh1aHy4LKpcNa(#s8g zh>D@g5EYNd_VX(RP=pBWtn#Es74wG1v8VHPgAfV3+6^zPzMp4{%xa_iHO3 zcLSx!hJ;5To-0)Rv%7BT*4_v}JlgZIOaDw00OiEgDtJ+CXz;cC0l_fSL_8n+qkQcD zXTdB)mY?5`I27n)9l5(-5`l3$8$1k>H%OKkqD~ zs&ie;?UFPfSgN@uuiG*jD|E+AG58nT;jY}A?}bgkmFa`xj>0)QttZ;fyiw{W&7t#K z_vrA{=+d?^ExVIa@u6LGMxh6o*kUT5ghXlB#mVbt>$QU#C6z z??zygSxLFJM-Qs0Rv}(t*TU-gOl1eGK&+=DWb@zB?+i0~DDiGw-Rmby%kAW&9i8x# z5nC>$N>_SLiq?>uCn@^Z-Q6$Dlo6psr zUn^*SaF7=8^+e+LfdPcT+hYOdNs0yPQ6t8Vpl}6JCksy+*(;C>`oCPi2JH3Y)RfRp z^};txb=iteefRvUMLEu+F+wRvAEsZxFHl5u^Y}SvP(vOPb8&j%&w)Dd4q?kxO)k&~ z8nr)EA}bAoiTs79MUMqxoO|$}zmwkPOX?%GA!ZPB7(?w_iNp@$bFjgUZigGIY7hRM zhq|nRk%$AN+8$Z2d$*2z^1IQ<#XJXwu*2xrs{+9ah=xxU|6;K?*p6^r2?1SWez@XI zLLM-w_1xre6F5VNAR9i9KYiRnOPLE~HI8+KPT7COv7+B}a4Ae;Aiqil{5#K(wbPIq z0yzk*Anr>QT@^HT?LykaM=Rf=wQ6z|HDsS@gw1 z&^OH?UUd;+048e)2|uc=0gqqLVVu4$)IwWZDQU8Zu zuju9ERGFH-8t>K4>U$K(?_|Ul2C=1yzj7R=n+c-9NAnPqbQ|PhS_V`%dzl#=t3k4^ggMk zTyP4qbf%}zG?F#EI@!r`VJ;snNl5wljq?23TE={~cG%2_bY@)th*1@5Bz(vbgkw-B z6bR3O!(9MoepWXD5(6lf1iy!5#+H$bX7lSQ#zLHs6l@sI(}XwyiIfd{5dZBdTEK-7 zEEPk7-fk}l6bp8LM=u@2(>Hvvy^#~|S? z#8Z9edPShm1pISrX!iZxQW2m{?A6FBEEv$ECkqo!f-B6Rgf3pF6bBc+0>2p2sEY{v z03ocMt22u->gba4MEjuy$J0UZeqLeF**mvvxpDKklu;>Z|X~E~w!cI-CD)Y3$4RAijLi=j>zmx)8PKq{_ekj|FpfH&(#&vb6gCSKBbjGQr5p) zX0zLg@mVzxkE=D@-^?eEe1?s#Uo2Y5o*g>@y^=6=L57Q ztloz3U2Emn^?McRliXc33{&^>b58i4h^9Q5*i>7i z^VWU*aj3>(_^!tLz;&@9PBY1htj?m&!K)T$IZ>^5T$g0|_OgiOIoD)WG4;bGk30Si zFRmOnTKfNOa;&c|j#ovlI`UeF2ZGgOvr&6bo#7faw4d`toKD}<%}-Z|0-(XeBf~L~ z!CpU#;h%h>Vh;6>sZ=T>lcaw>)QcRY8~&y&4;{lDA9?8eV^tFsL?JAcH|I0xp6{hC z_k8d{2kyuKF>{>h`3{9X*HK#K2M>4H<0s_7lwaJxYpj9m$1ON}w{$M3$+H_7FBjlc zNwimkH2g4E9=vN)0^SySk_(PLI|`vr!9QPH1!Kw|Bt`rcf~<^r z!GMOewByrIjB2;qDst}8QWa4O#6S*s`*uI;R$F7fDA&@dIS%Ohg!s8$563kMxbC@% z3_oOsc17(Uc8Q#Wv_imw%ANiaZArLzSm1FO#JIUrgq zW=g?>e?+2D*|o-7JI((Dv;>D9jOkT#D$?l|ir?52u96K4f15@a(;u+-#DrX{`b=QG z>l~>~b`$6hj+{G5Od$Pkj-mbuFm6bD+y^+Z#N8q3g37>KObc%M#Z)Ve1K9R63O(NJ zQodRG81Ee2|3>@9^0HW6-a8vyX2QGy{y_VQcO~;%{U}|p+6j&Xw37pIxV8|(YCI^~ zs_WRvP*g7S?G2Gb&e!#KzEVnKBIZ{a*Wi^FUHq-h_#YbT`(0Y6t$+B^_dEAi@uFgctQQ%wc9ZWi7I9@g0 zqnhtCYM056sdpf+ao2t#1VvE0W?Pp>{lubz`;aU@dU2{~VZhIcQPeG}{-=T86ET^b zwU?$p>rUYYaf|92S0s+w=FXA^&W3m@|JmdKL?o)-%hfOYxS>^AaGT!$v3d7|%?3%k zeQ1c+rUkZx+TEuTz?>Mlers;C8@g?x&Eq_ppDTosCZ_-HH};4Ub;D@P5s@T z*aiJR?b3hr7W(o|g6zh>t#fpmdCu$dUOSX{HPS0Zwz6>r|Yyen*^t19XY1oY=5(0VLFv?`h#MMpy&*8 z;}sX(Z07`Sd1g=FId-c^k<%%i&QM`usN(+KLg(rY*_ShC*z`~6qjFIh{H8sf&Cw&gMk3$tT}b`3+4_Zv?Jqe7H*dAo|D3Nu&PJ}I zk8UT&?jmLLM|B0OQ38swn6G(iYUA{55F6dQN~_3r!ul%r+Z}wmip`bIfWCWGtmt4T z=+SNtb?z32OGS}G)c`z(82qte6B{%Dp0g_7-Enwr%1un@cRrO4R4KT?RMe8_Sw}y> zd=|UHDM=10ZWnRWSiP(tEICxbBH{@O#3QUB`&yLfGu7(Y-AxX&*m;rEtMq0 zm8OsD?PUg&Bv5x8bE)5Y!Nko1ERNy2VR_O)jxnxQ;XLrRGJ={)UP!RW#&W<4aF27) zbi>u2I+m``E@T$y3Sy56^>3;4EuNJ+S7x7(>X$55rFb*M#JQXOciVapPAaLSsy{W2 z8k|YisR2mqt(u*~8=bgEaKB^rNIdU3oOREqPE=2FL0A%UuWf&CtQOtSvcH0PJg}rI6}RLaQX$cci&amX3-U6{*Zt zWdk<_<)=@4BWCir$1wRJF$hFh&{Rw zN=>5c1L}x(v=k>f>IefkX-=Jiqw(ave&pfCzQbA90(Y4-GP@9K(ymyB=cr|b{jI>g z{_|J7@7VYTq6A*lSqIvgeZ&q(sL&-bzRy!UH@X|f)|eODbor!wp0x%~1OEy6&P~R^ z7>_E)LcFQMS{Lfe<|rE=7pIGvXuiSeKQV**`#rcm@FV}PJr_MYS7C{V9B1O!uE%=dVo|V+(85bh#CN9>gv67x1>bPXDFFtc zVWD*fJvUlOhAHAQW=!Gh*JtGc7j}$R=T6YiQ0{cw%%1MVZ}&RcT_#y!KDZrkM(mBQ zbEi8pW|rM9WKyY$>{Yv(9OG<^j3)+LU!#4hL|KO1vQ8oqEM7!>2<8A*_W$14I{|6S zaXSkP8xn@*eDLw7$(@;n@O&ZRuooAlU}9<)fmK%{eb&Zb^x15qRq_GS+~?AkKQY;5j8y272R2`ezPR>8#-Minj(rq;PYFS6$jQ(Sq~o=;g* z7o#|ath{)h)xKNNgio!V+Fy}R4jm7H5w$yRcCIAklQ+a45m*gN)pwLLL*Uk%#ic;A zOc+CyhkrRz5H>^LKYFQL#tD4+MP@Mf4>8M@`v0DdqtoD@I;a*rqApKsmbO;TzO zG1v?1ZpQ-T$YWc|+D4n%kAY6GGOh~qLfGYyelniIRxj`CM|>i?&kB_|Zysl0$C!a_ zB8>R9DQi=?-s_w;)=tjFZ6ah6e>Nu zH7EGlK;%wnC;rwM>VjVG$mJ8^oZFW4TBJ+2Q_x`%C9V8}S|i?%XkvtheZQTT#Z6YP zS0>gw5@dP&Uq&Q-F)TRCh89G5=$@I;lvpAllMF(@=W(U{T}J_>Dr^;Wg2PN+&DOn3 zs$*Kh#H)vdeKTiVc%Q|aVvGBKw95Z|mr-HTdRGhE7}nl1jg(~moKPonj_EHr|JBY< zpXh0EZ(4!{-*-P+=;15uNBL5F z#MyHra7P#71>i97zQPEMjBE48vNIS1PghD994pk>z4GBC+Mci!TYsB1P#L_3Aussc z$kV=5N2yA{bY2mwqDrX?fQ|Orf{d=|Iap$YG6k1tvo_&~a;>S22-n%%y|Ea8uK$sk zV$#F9hjFgwF0`NXHQV?zeU3NfGMpiDB-LM3gXRmUbs0^J?WqNd`2SqmKr}k=7yDX6 z%35dkJIAlRRepdG9c&k+VC6m>h~w>D@IJ)0(mmi)+DeJOYt46=u|+F$K6+SzROdLG z`kVe4%P!>oZswL5&-KcQG=5+|91r6XDR9SoIHn|9FMe~1}m~=eUQYM6LKB=#93OsJ|gG}GwAL;IA zzTkSV@O`~jabi&WUH`ToOR<<;k+GOhscocfows@=hh~Q7E}ZAgy;x@P?CT_YvG9EP zgk7qmm{pjN;J41%s`#!k=S#yw8aN0;vfowztc|7bXz_Ywa2 z+ZHi2MH#u!zab48f!$}HbWaLe=Q1o%qGeA2AIiRt zJQ6fIJFI$F_Eq+to~UEkZoiVPdvLkNyzOa`*{_lA4rTNATo0pAPEA$0qn)!zlH&XH zJM!Kk4V~k0B_uCd=ai7RlQe0)k3`BCFnN&qQd;+JC(tsR$2pXb3-Wq zv$oNNI3dUpHXZiT0-ow_!{mz>}lxFmDwjev1 zX9-tw(@HkA#0QbaEEv&RCxOW$CCE4KyJeoySThq!{dW*NDsB=We(*&k^8!Y42B-dX z3%cxm)M&|v&9{O=R$MpN;5ZKZH~%a?V%KNhjO<4ouG*AoR*-moNW$C5Y}~PaI8XPl z-pbk5822CU7g)gQi(qXHGyNhtjN< z0pFRWsDapWpm1&|apg;z!^69e+K_u4y&xl-cKDUdBu7*w|Er^#GRPYRBP)^l$ER#{eblp~t8NGol* z=)_Nzt#eu|XDh-!$eS7=UtO5%=xq2k2QbQQs-Axt&t&9F-aISR&5#jzpV659l;Cj5 zNCf>aOE*umQc{{#VM>11t!S^RloJNcn~C>lO(QvO^iv&~2gxVo z-*q>bM&y}jF*=a8~wW|8QQIZF{=GCn0D_YSSAN#Zk8GNYYGUE6; zMW?4$1>(zs8)Sv@PYc}UZ2C;h@YUbF`0bEc) zLafeJygkhMPc*yf3Jf@W-G_5xh~hz73b~*Y-G;1q4MYh$Ma{cMo(DeVjS(9eUiBj# z9`f2mAle5T7?av@u7Yv=eG)x<Ic*`4DS@@%m%bJ79~|6O8BzCbWxv;(~&rUF-`k)57KLp zw#w`*5Ef2zFHkf(7hGUILNA{3yxn)h@AG;%^%1aytLnf_JywIL~2MMj<}mT z_qHjtB_nZl|ZE7YYy!fwb zJReIQ6oQzF8>n;ECCzr^n~fn9qT(Ll_i5)046Z{F4<(z?0n<(w1}#Ko&qAE z2_kAwVK7R(DUS7xcYKS#dvRRR!i`xgBvBr|%MdTPGy7nsD5 z1q0nHL_42a2(U^LLn;!($I($@uRW$j*fPXix)8Zo(tOD16M z0QZf4=P?3&S@MGMRpny{ub=$mIOQI^C@eo6l7ZQza-ljR>j%C0}l$|J^M0lmYGBaxt)wQ~IbCCjoBeXJB#nwBSF!Uo7`Akd;o0^gl8bxJ9H<~!tzniSa_`*$T z7<;&JW8cqx*tz%ReHh4~Qtq-jTbF%VdQ(F-`*OD4HF$2Er3Sc~kL~V70lsfoue3zO zAy(1d_q`*(;>uoLx&PqBI2*`}Pbg|hTY+QznHUqtRWcF>BX;Xuz;$69aQRiRCFrtz zDqIKNilPad9=0`gIzbX(?EOz*wgWZ86OcsZ_va~a>IZypp}J&mK1biX_>@x|VA8na zp{1eBlEk0$-28l0vBEI<3cH0$#d=Pvr}`QXf6@`zo6IZhmWfiJ-`(sVtWe@aDYjie z1@^Co>&sneqvqtB|2kfowGO|wTDQZ!+Wp4S;F(~27nUu568sGk0vZ3&Se@y&# z)Qx|I<$a@h63^is==e41LcsgX7jgz4xs;ylF^e*4=S;Ma#cdM!m^eoE1EtAqIT2dk zQ|I_qkC@hDt&=2pj&{4N4lgik+sXK9wgcMe(qGv;XN1Xc1-jFar-~=pFtp`F9lD+qTFkjj@3r`L zoFGK8syeF0*v%AyeE(+b&PGt3`>$rQ9J+Vvxsqs6LZk1^j3%CkLC*=2wq)VGc0Hi? z$!^)YHDG@C-Xx)1kO5LzTh+oX-=y79TFJ!r{|>{F1-j)0e`a9sivaKiA3*`6ajC%c zT5h#3jsjG@e;$QH*Y3v$9eD1FasljhY@msA;FT5>C`C+Ibf8pNDgiZc@r(4}21ahQ zYbCnYY&uAxSirjVW@kIeRILLm2Lv5x4=O%v88ktGBmCn3&m}n%6>7VLpqGMAl>>bW z=Yl~2{J^Xl{TouqIDF5Yo%}v&V0i*=JFFA5yIMj0yCA6@$!VlyHHegAl3jwQf8C)~ zN1_i17#IZ8#%z(Qph4}vq8CkLcvd8w5g85hMCTq2WMIuc`V<{1LGVLn4o}fyb$wx7 zDciTZU<|IN6#^M6Hhd}@%!Ts)zuj;Fu!7?55)|F1CQ@2v*ucl4aTb8Q^vl-~~ zZexv8s@rzZuB^_ZX?{_9X9m**f2B~r9*Cbm)BBM^tN0Q}ZY%owX0&@uH2cEj?geT= zU;hs3wJybWUMCkTPGRMF!IS0kif0hm+baLy=0 z|0(`Ir?pwr=h}m+u1m~v6c{`)s(FATzz?XHm2Asrq;y`~=T9Ei4?k{j~0zp3)Zw7DL@hTv%?F3bjs)O$>t#>q|7iEq)tr0>lUqtR6NOA z_ZG>MYY!gybww^YY$!Zh5Pg<7jrAF%b<_j}BwTrg!dH;-Ld^!7K zko81wVhpZTCI0oL2A46%(FzvMdHBl3-Ad1U+qfA%^YiJ|6P;R9R3q2ZRnLWcIrtUz z3(mQ!@SdRg_2^Xu`+e@CzVa$rIbB9$voINK@?2RuFwxT-* z-d8_$^1yp>l3Gcn>XgimXM%lUMk!Ri!hw~mY!6QHB`OO(xog?|W!YI3dGb+y2dls+ zvgO{p*XoBuFNi}b;@b`w-zEI7>A#7tQ76#BYY&Gsb#Hx5MzF>P=4I#}MFINpwwo+W z2eCCZJJ0XDAHZ5zR!f4f$!F7HHU^7^r|m7Xh45Ne*TuV0$MPVi^V5qwDG+MKedq~5 zUq25NUTX8!7yp{)p(N%6Qk<}#l}vZh^-hP&X3f8il??V@VI{v8@%jNo?^~d|(0B2@ zWXO-a;7iPg9YsmhDC(&1BW>J@9e5PtSl^dPWz3hE0+fk@j=7ZsW-RNR>J?E_)h7LH zry*{AY2A?FXSIVMNYFfl`^k z3FmqRT<*?!)J{j2?#Oh-l|3O)M#iWSaF~AfcEi-9ROo6_`W!0n$jjdv+|7{`a;S5$ zJ3Nvg^NjcAaOrCeaRPp(8ZS-9tL%FVs6)od*Jy18&O=P(Mt7?OYL(OYQ&@EuFMm)# zF}&LEo3^Tut__JHG`KvwXiJloWTltES!;kxCwu?|MHYX@YD0CmvyO`3&1XuB-C>H7 zWltC6!yl~^;eu#lhTu;Eul}>O*+kSpvx*O=FtC)C0+%1h0zaDifT8AVab!Tw=@ zd%iEknlaLyG0C%=E6p>7Vo zHB~#sH*fOFV3}}bs#XM7rh8aL&!xjl8hR%xCV%IWZCYMwDmU7kc#4U;5VJ~ubuT$| zG^P)vXBJ@5hc0+M8m9{Wye@RsVKwpi5o_+nC!e5%UD0cz<+=2Z4Qy7u{@{mIkKM8p z?HNbcZ^2^ z7<1GL&UnpA2nxob8q!!_;f7gq+%{~MXEjSXxotU+IBv(wI#DnF13PKc4d35n{A{9 z7dtHuG$7KC96(0jiS5pyUeohEB?hCr&E7XY5GQ7W_(RUaTNErG;}rwJUza685BoV4 zvLRhNwQP<3mm;Lf?1L7-#$xM}(m%IV!x-!eC+1KRBq@`RVYrA9IdzuvrD%zwNBhnm zoCNx7R(YNFgY%A~z(Jb4&bLVS(q_2tkkZ2XaH_hk1JTqy_1fF(g=6~*HKdBOz1qWq z>2#Z&fyh+9@tGXviE@Md;ozd@?s|h!rj8}Rlh!CX zRRKHuF4V@+q+4t0uWuDk&wlIiktiijKWNsY2*fySQeMmEwi2WqVS z5dY<3#Z5dLoEvo!!TwOkS^pw5EQ)$CXn2wZ|}`ll|=u`i`gXef4}=uaVT9BqP2%fc zsUR7`;X%fDZ>QtAr89Js^qAZ8e4O#@Gt%A(achuu#I_3Y8DV*V)~D=({r6-Ou{QD! zciSeLpdWb&p);riH*&28G!2^tJ#CFZ?1s>uu&{IJuNc z;$q!a_tRumAY)oATvT~6VY<&x8iu65Z9m)ucZYrP^mx-Q zPd4M?jq6d3ekZLOD!+H)GTz5_$#0cM<6kGTqt3+@fg-)TmVgB(&eaRAPcdp0 zr((;0Mj{++bO%sM&lxT~bs-H#IMoJXD)074e{HK6zIpYEOz^MT#9pt6 zQ1SX_9cTBEQE#gYv*hAzR{auG-I5Y@2M*_k*dAPLeSE8DK$P7?x6xANan-f|!0S1< zqmk($^m5b9Ev5h>8nBaL18Q?0_us%}Vzi4NWRWxR8ZTfM>#hK`>ayu9hwb}l1A|29 z)9u#FQ~rkqT(;6M2yW%uOT)*SQ*&PE;ebFk9Da(ra~#CrPSi%an=}NPjelyl5+$v4 z6XM`Q`CRD4q`AqFAPr{0uLq+xpr&`!mUK+{xrYz%;lKuf2;MW&eu0vhq=0m%J{kOa zJaQ@=y3=*U`GocEpIoh-e)&f&hLR06_9eRFe&x;;fZ3mfml;8^&zb!mLAgYBL35*4 z9|mmF0*>b=G4*|jhGV-~}y|SoU(|{;lF*^Z8o$3=NnH z&*2VEK_;RN#WTMQ@FQ^6_or)q#jw15dhxXqYrNlV81udN|#Vs4U zKa*Fi6_uv!QMlb~6X!-R>#!5@%1nClHz{}eK0drL#rX7LVDHGquXJ-x|FW@!-iGGF zaJBrz)9=$v`}hDF&X`Imr!Ed%k1smx{cN`m;-7krx_LK!U1J5S(~Mt~l&pBebj_G7 z-|1eq(FKc)T*Mxf&9yexRdfl9B_$H|IGED?1X!0XBh&(te3P4qduv>2A5EXEF zxQ{_edhG9+n`@%syT2a`k;^m)!WA7%9X-u2ZK)Z6#}L!ipKGXWjgOUbl!BTN42ZyV ziUDvf$2YYM@e>U$YY;2Ec!;jd-xaA)_=3`g6jW z64&tKOX`KlXEpDWj1ejOk)%2??w1|#77_tCT;A?p>V!QQhjtZR^!R;C?*(X|5NgsX zX0J{G$dReZqsXt=AQOna(xiC8iHIBhtxMdRP2zonRo^fj%0@Cj=o`ns2s+^(&qM7L z6!Y_=0kS&y8)qHDf(}Hrh#oal$zNuhGW}xoMDQLxJmA&C@9sIWmr$%TEJn?n`=bWA zDkUP|34CmF^P1#8{x+GDEpH+dmQnD+Po~g9fY-^mi&f>#b?rOg@O-{(77PPv%(0cRnbWiJh>O4JP^+v|((QSXfWTnZy&L7d=c>THW6z}U; ze>0V&wrvhAD;xS5DQ1-~r($=%-WX}4FJXV&8=H)sdHv7%b1z;G8N#UGs=@jTE&gb4 zS-L0f?OtX2Le#Xa0e-ExL`Tb8+)!zcW1B{_!ozI-D>TfN`CZ5GJJ!wmEBrKt%eFOt zx3{Y%2d))Amsz%T*w(oHy7Ebul8e;BfhY)pv7!64A2L3a(Rbh#U9oDU0t%zECy)@` z84Lei>aCb?jR-iS|9pmeK|yk$5-XLFG(J{Kh82H00fDX$p%u3ymW=5$qiUK7f*r2M=MFXL*qtyEB$Qh2%D8FW371`bd*Q2?|QDdE1^%V>)Na3iSp zj;T8J@H_u+TcSBx>KAs`GfrUXZO6TeQ7H&El~;*Yh#z2ZAgfm+{REk96r6uLnut}8 zd|t1MSPcsaIsEnHKhops>DT`*9(aeyex`KXSFtj`<~OZXrk8K_!>L?5x$gD*k{$|r zz0Of!~9UUE@tmF7}$N3A0UNfLKrS%~WQNxxlFsdIh&O^mx@nnd|dh zFJOEpYdxEeq${^hQtp0vZ)kqquCt?CzW5cR{Z9`~vkSyzGp*86#jbUH-nVkzj}Lq} zd`!eHPWC+5PSxTl`3<|^Uu>Yu&0lPqM*-O%W=1#eKO``njKYIEKN58Er2gTivbVam z8@9-tct;>2^OOCZzUV-uuH#Px*wDzQo(_1yv-~a`!XrF91*z5mr?+{SOx-xJTChC{ zM3q;6@F={Fc&o{56t;6RtX~I-~#~hKrGg9T1K? z&z=@={caP8P;jpFf_%Cq_uka<#rTH(&b?J4|(d=6R zZxoQ=KmY3C&CP=$*s-b5`WqjixKpiW$)Wd7hVtMZ5;|)$kXVV-0Jnk(w@SMCibTz1 zI?$?feZQst>#lnP(aQ(;y&jKkJLWq4^DCz9*$I=IOFwLwED5~zYwv-zLp+HFNp7Iu zBU8_=zd;`;>@rQroIYXk4ZdY1BAQM`j1yZ=M)})i7Q?#W<_(O6Qc@;mh}= zhxTh-3vl?kQJO2E>?lEjeZBN;hQ8O~Tz|GL$MoT3@_ z_wM4%NkRB#%>HEQe9?t_ef$GgE4h7@EZz%zQ&OTgrK>KYd0TjC8_`ZLBbiTFaXvP2 zntP%0jgI$utmLc^#jW7x@AM^{M_Y4wZ5$J2EBC;X=V-Pg|EAP%Mr>8V|h}NOL>?)lVZWc&dO- zp{Y&M)nm3R`MAz_sX`Iwz9Bot^&tvzNqY-l4n}WEw(eA5*HF!V$m&tSb1G1Ib^i-V zIYs!Y43FWLIjCBVOG)s<)+NF3KI>NQRH~8hB3iSRA5jDMTJDjG!t1wMBd;Td#t2{MaRSApQq ztI#_AOPfPM(tI%Rw}m+|;PdB8AiZ;_qpH%CJX){|sx8c4K>tzYd=X#I{tRPx2O<2? z2D*^h*Cw^=*+6~SRSzd}Ef0)<#U`+?vpU~L*ucg~FgaT8E6@k6AEv3vm4TOW9ad58 zNeu<8H!#va>|&vOLINHEa>BntNAQRk1gzVCGy+s1&QFdCs3Y@8{Z0+jDeg%p^;s1o zU1S6tJcL6vp~E+%Z+rPM_x}0So$gdTGd|b#B{?;`5aV%X1fBp3^Y@;Up&!&Dr9GZG zkes5%8Td>dw*{42Lq`=v)sEsk$@ug#CWOpbF7;`5Y(n2e|gD@&a{Y+8_ zT$mT(Mn9c~=p^KMaxVHMFYIUHj1$32T{97AWRmRM@=CUs;MCLJDP2>q=@-AvR9nXS z&ZPaG+=qxyi))9UQm@`{T=Qox%@(;Z5GnF1^L3|>y0{>_Sef4NAd~CAn$y|0EZ=YH zbd7OyKb#6T!dX;>$6UZgYDISitTa_U*va{*DF28M#?IbM3SiH9? zJEP6)fJB6y%a?lGm3*~YIXzc+)7`d^k|Oow}1z4spHhy%C#>+2MSiSNWt!b)-aXCk~pUZ$m#=5i^HYQ{1+R|#XI+_C7 zHM}P`KwuIQ-wjg$raw($M*9L?xkF^Vrs9;Dm?s^j+)~`T@<&?lA3>vDpD}IPIJTMq zz=6IT%GW?m%I}tADBP<9sAHv!Y{FD+Pa?(Su|+ipeBf+!kqiK?Jr@Je#im7AD;IV* z1La%4vLrzVV%D^MNm95)MUx7sI=#4E#kfwxQzzVus4&yZ5q2#IHbRuNj^18FVNSO= zrxHu4kZ{63J5NI2(vw*3+A7*di2IMtg&KyFk((?N>+8k>-gxYE`t*1`vlm8s1a)|k zqktFea!pjgw|jo7QJ{lTVIc_iak*zvFI>stXE5-?T86tMG;LJ{LPuxZ8_*2@zK1u8 z9Xss}<{|fMyX{~7UQ&f%O8^A&-~>A&NqGX&uEPL%VLx=;nDowp%rbCtMmF}n z>ogSSv2*Cvihnzwd_Dg4(~necM$Bd_zfL?y!P;$guKisYhxIal_R$_m7J2hp{pg`u zY4@Js0u!H$Zt?9|=H9?Scf3}YL*dRB8}pm>K`;humUV7L0PbtTq;+R)N`W!wO-4zD zma?4?Z?m%aK1WR1d6BaJJ5VoPXhF^)x>X|p(^uOIO$LDJ|-eioW zDqs{a!<~BiesS?@WDJ2frSneK7qPu9=Ov&-=?*#HFloKoH?ZKVew?buYET&+SrOyE z5Hz1Tb(AMo{G#|IYZO=zg?k<<)(FR39c)Iwem@(TrP_`QPw*j!EbhDtF?=rqaRXIO zO9;t?{1G6mTp66kF61F^8B0FHCOzVk2LtauCz;FMn5cgXHI*n|JL_FBYvCS!Op^y>ex>;Aw6Y|%a>e_;-w6qZvRLukrz zJDo!5`XOhF8y9dxG!*h+^W9&lV{3ob;lm+gH=Ad(7i;Li1gJ0=eCH8W)X=_Jo!Ypui^nVo%VJI|!uTU< zTekjF_wQ#c0Ej1Sh61L|UtDcErza2zcf;opX&$taAT_3F!;!d%h+EfIt#{H2O$|WO z;`>H8*Z0^!G1Ych*|;?L+_=TD0A7411%94}nvSZlnAf`1*y)x7*5VXOJ^)%!6J*SU zJ{cg`-CE9-0ZZ;tnEku>F`fgOHTE^|Do8BMYC^LVuuGHyU*5^R$$5LY_uQd8y|!6b>fa85Gs+sfKN|6d zcjC=76=&(6on|o?9(~=bufFBw<>p6YU4N94KKb8wO1bcaZAowS2C|$OT)xIPS*^|e zz?l7vE$|&)_Ulse7X#h09?MWzwH6rnG*Xg1={^k_DrOfG14e0s22r2ZMH~!|LQ)}f6)77zJugr5a-Oq0U;c|K zaJnQ7$qmPspoBe3dVqPFr`AX^lIndFNqo>_{Um}^hbbDlbpxT-MnnJ`NG6uY3(ng2Yk3kZLUA-_icT$NcQJL+W3a}~#?3X=x`r{72lT@6 zD*7}K3dXdAbnPGd^#cbhLx4+5(gj|RlulS5Bn&?$5Xx75@A|u<)i)|sz>`n_#HCoV z{@p%gfTSbz>c0K^GJ^C?P5``=0>If8kD+YdxImiE$HFUL>XLi{pzlrgQH!2fd4&X^ z&Rc2&#CB2@9GA#^927@t+~68<1uCvWn`0!jCK2X%mGfgCp`gRf-b2t|ajbZADQA#a zjLcf|605h}XTew!|2xSCYW*;$IQ9ch#u8Y0+Q)SmCcF9Q-wquQQf@Z_g=&*xl-i*7jk(;yT+xonNLIK4Hx0f6syv`-XItX7^*t``vFdmrZ1q zW}%JYnAJsal_6jaTDIbT5{j?nqdZsG4Br-+%>K;vGl){|apZW0t-A394iG+;YCfw? zatNIMqVsogs*W@i+5>ywfW|6vzqlhHA94%N5N8yyP)us&2)BiH;!SXFc?aHwiG`w6 zhr~RjH;uJ(xlhtlzu0m5cQpTX0hzwTfV|Xt^o>({DDpCpdT_o34Q_5|SXHarJeuK# z;;a7pa-zA2%aMmr)nyK%=3=JfNuLzrkx-nf2dIv3s*@IDSh0a3OBITj+_6M?4wAHA$XEcyCCUOOHwTk7B6B)59}$IAp-2t zJ*W_V7*xNQy^ccvHb69V!G==G1e+HA<(IB{(xDJIAX^j(KrIcpQ3 zmiG0&CCNQs5`;T(`x5O8LgSJeEP#oL7?NVz?K8#?u71Xz zytn4;=-ey-eWq9S7cLm`&;BG})6=ytSrkR%LB6C!@mumT{b>yuiM`%&af6oMgjAEX z_6;u&rN7ag25eWymf*)T&bo-Cexy>K9r&8eQ7w)Z9i(Q(5 z+$8yWSqtK8&!)>Z#;gC@CKdBq^G>m2)r6+Wu_YNr)lWR<`L?eAng;rot|y-Tk_Z{` z#a-hO986*vFKx?FC)`#v!n zJT{-^hENE?$m-=?BX<{^GFDF0VXlmHW#fRjo&)NZ> zu6MS1xl6ZR>)ax(e=XK==rP?X1`fvgoVAqn0j}aWw$&voHi96_3Pez`IcZS}{Iuv{ z6c<0FHLON}xm(`$?rDlULF6SA3 z9elo%g#kVlh94%qJ`+8Cq5F zeGyezFwKVTth@hc!P4_$U0doO&a}C-xB`l%2*krbTF_H;>g=Z4*G^XSCP5GR0d8W;G8{fT|q??;%3$rFD}Wt-3&_VA42sU z-*iTE5wND@MOGwqUn(N%5GKDvdF|kGwg)o=HVE4f_;~FKV$~b`MB;i0GF#S#F<%j7 zyUUV5zvS5J0CYcf0c;*3&i}?D`S`s8W2B&=s3A6`w(4LAIHLtBOh0;${D)1dXIfJm z$qO6`iA1(R*=H|&?1>k_a|C6V&OS|GD04sls8L9If|CacfJxq}0|;xR06W4Yz+409 z+IzBgxW)^HsDF6`>26Wj8NuOIL`GpH}>{}v~oDuN>u!Hd#CroK_uKO7bMU`Yl+Pp_~5pWdVQk2WO1kNXZ_ftyPh z`4oQHera0QmtM_HH7Fv~`@^A(a%&b>J3A+zfvLbQ=SAuv#U9i*bwB9GV8n z3l2&+GBFAM=k!{Ni;bOfc_6K&4&O1pFm&HM3Z)~*Z~fg6*TjW5z=DjmhW zRd{(o{oH%J|EZjmKn96*NtN)%zlo{t~ao8Z-ebVmK#%%6j9q|@R>qr27(Ec3t43o5~ z^6*~acag8KYG{pu)@SXLzc@3GAPens4UG_D)mt68p&soQN?$tb`P!?T$E)~7SS2E5 zBBi8OIkF~PI~#I2)5|3uWs!sdaMwYiUNh&Ryh6|)@gsE!j|U7KNfJE7EaWIAy}BI1 zvk=zG*t1}eA;dQl7KhA{O#iD6u3lp8+DDiVw(zv|!uFPq-jl!=mBCY%X9DDqP&ZZ3 zaJV#ko-Q29cO{}$Jx=)Ko9oo=b9?iR^j8Rf-c&o=5R3--1@9%T0XU0Ub~;dP3{z9M zMgfi($&QbbCGuDtO%VO%Aga%Sqvnsx8HsF zFNKmD^(_)Xz}W4`6sy@#06y)wWYV@Y@cp2W>T$t-A-phcN(@k?_6S~dT8=JT+^Mz4 z79mx`>JMOm)^?KT9cPuOiyK=ii$G~?+=vO&(kGxe7 zDeKna2DIf5;uizVM*!pG)YFhSW2;K;h^?X7w*qySfbZ3S|$C8yBN0 z+^cRd9V&d+%FMeXI9#86^|S5SBJS=ifwOb4{=48jsq-MfM(YX7^4(u+ibIt_=XeFD zHxt-Nk2Y!L!aw@|-O<&b{TTd8U^0HAbS(iCRK=9rmpIMv ze$*BDJD1$TN)pFoNbPkH^r|(tn6N*>*47DIxPH2LEB&`5C|%o@Ewnt-Xo#tDwkkw= zx7E@2FY*GvP2a?Hj=?xr=s<`fY;OtFa~|0?TQFeSF*Q~A&d7eN#39fzxBH6pyNLpP zj&pAifc~TVms&4&rqfF`1R{12LzW13uZb*V$T&Hl00`*!YPiX6o$fU$`+sMNRl=JTUd>_5&l@{Tf{lE3SD>Mgm8v-jnMK~2+ZoAK5A4u8=-Drg2mz&J*p51 zOwcI|WcuvpO=0P)#XvC{!SCsmoQZy)w%#f$j?X))_c#{ylTnmXQ`dz1v@Q#jJm4q0 z9USsdjj;1h3Z&fU-}9epnhKsfoU|t^V4et;{4^aew^n^oWUkb6MeC-i`D)ZdQ|of9$OMFysBH&&wny!tm{v+C(~2Z@91Klpag|^zK4$nl;A)7 zcaZxiJ-yHYHB^$_^g{{wXWA<04LBC|5Kv!NZokH{5Y?1RS!R*(H)=N$wz)Ff( zatLhPl6TV-TN;Q{X|z&lX}4GA&Njw9-5ye;#Dsa~Lf4;=X()`DF#5oV5g)tt8u-ef zN|eUXmyKxA-4ZXB|Kg}R_@%WU;L0n;TVRA=dkeqREg$Fo&5k%wxcG7BYqfslIkbMH zq;aY11f&q?g0auVM28GQ@g>N(`2um^z+DJQwhQM3#(=dE~c}o0wjF(ml))y z;5f})ii=9?!jCFBKrziOR3Ol`Acd>f@fKV?=EFiOpfYKwNlgb-s0A1`azcG;)D73* zy=-G3Hq;+5z*THpk-ja{eSZ%b41N`%vx^8~{Y8}I#&u|SP)SF95aWgh5KBvtD>)hRXN^k(cP;V>SMRRq@oYEntul|g%E9LS zjg}<+YDCLb1b*D-#n=5Ff`yDdb`m2A9c;m(59iY{k$gVdgm3Di8m7!?kmv_)@ z)v`yRb?kM)ca2;5ifECDAU1WAeicURji=7x9;QpKd?)@eocLu|l`s2Q*b(NVxYXyM zJ}q7=kDo)%f*1mDXJ^7^1TG30V;A%Gf&QfBroV=NhQkrti`;Zka!J+tpHB ziEZemJJWZu#A0TaKW#~c$hXrg5D#9RZ0D%0e)O-ko8wTbj~V{wIhudvsIR1Uba6n* zu^dC-O7pxlqF}=E>Q3ZMp3Ksnrq3%;e%TOf8CDribl89NjdQH?x} zAW7USIR~N0{|mH6@diXrl)y@xk7Xj&`m;#I|C1lB`nUj9sy{6%YVdrjosQ*SA-ng~ z((R)f%|fJRhAMzSiYT>*Dj-QceVBoVF6do(1X7ARczx_IFLbDh5vTd!LDYBFK2A>%;xCZF@H$!KVYb6<` z@&-gY2YW)Dn_=!=CE3=U7X&VJ_q@~5kSastuT41GygptsqddiYlW*Y1!r5~QwZsKj^b&1 zUmKSr%ItFUd%Ja2Mhgo^rFQWOSqR+L&^`?mab{iOa{;y#AiTzl*7UUW zy5+0GQzO!X&Y!=fejb6vBKu*P<<-L~iwY|LQ!@oh{EJ5l0*)9NL=OImYu#x`287FK z`K}1`TTRzWe_)~$uTcchfxwbQ>m9_z(;tUjJI7drFcBg=aV+F8o6gOIK=W3U{` zY8%8qDMt)x0>v%#Nqyky4p2rycwtG+1|mr|BOEL6&<4T1Z5EoBDUx8wym|w=E~!p0 zQzjlkC=PYmcXZ_@j%VyZ-B{do;8;*-qcig>hZ4y;>}B8 zAVUXII=HJX%YM8XE=X7r_9@yxJp3XV>0Erhr4GW73wv7v3Y7mtdums%ejDpzKeh-x z{CP@ThA8_DrS5fh3LxJF>!520sI_)U-=QGng;&`(I%e!WE4YiqPgws$*yj65t+8@B zDVSk*+`}>IHT4Hn92a<+Z(~2fE~gOhGu(!D;|_b?Pkk;?s|+e6q8P<9&4iRLNC`jf zml2Ga>^&t8J$T2c-FU`6d4?KJvkg4>dN;NX&Cidk)f}N76(tPc(ePMPtY|UQYQ8^9 z!6(a+UPsoPY-z5`G^2|8%IHO9P@CTgfn+Owl&uO}*3sOoR()-o_QB-C)X&bOkDPFR zUD(%mRvg(EiK5ls(N|}#X-hpQXO|p44Dq4R`#Q={dC6u@_lp7pg<&VV2gZ(diDB+< zo!RZpd30%?d0D{fy@EFFVB+n^Y`@02=pI=1ep0v|eDk((*FB3*4~@_J9?LB-jWOp$ z&*dLa;aAECZTw-|Nap5bb>h@kZ(&F_`yyg0+_Q|7=f8#i?`I|>m2|?IkxX{;b2tQR zoBQ>3Z}*rEB>w4xaci`maf07z;2;)x^QB|K!-osmNdI5S$hGbHJPFKcE1dhZzK))) z@lmR>D|wiZoYyZ29`apuGf9;0f`Tm`^U3!O&!b4%#E~vGd~8%>o!$Ls;-K{4!$bo& z?${*WWg~^3s(^X8l@Ov8g<$M2rliX}d1n|Iwez40NJ-O;SNQWY3~EtRN-I---u7T% zuAO$pq0n6b2fwB(SW{!XnT}LqSxzabOX4+_LwUPZBS0>CCkUK0^Wh%?J}dnnP%f_8J-g{_~~Vk2U^~rNKrSPz{r$$)ofds_q^fAa;(7f*^px$%ST*V zzs%o4Xx>XgK>ohJ-*J2< zpxMa9y-Xzep!8OleZn;Z(>s^=!pr!TIAm9Iq9?*{yp?4#sU&C_`eNtgMYRn%P`00@O)6{$SZs-NYZE4F4s2;x&{hJTh$|7>6` z3%UHX@~HFL+2L;&GUt*)=ir9jbGel)WEfzHz{)g-#Nx*V-oIb!UN@TRSg%YSa{{^q zR{5tM@-6H78@9v|DW+$ z@W3DxT0LIf=va)O;`MAC&RUp_zBv0t6Jj>sdV(UpM-Lbn36b!N*8Qo}N^VfXOP$7i zl0Q8l=5!QSdj{>siiahk8R%_KMHf^Z@?A3g+5@#Ns2rK(VMmbJNlaGe3E~U`e6I8-)V4lrJH~cb_qL9zh=>&#}V`PJ5yK z-ZO0rqo@7WhH*M>TkYX-EYh-V~GZn-u!V53n|KCg+Z=pgh ze}053(fDY~^)B3rIb(u%UtBuM$w0Az#ne9;mBQI(VLtiqsy=FTl|BZWGf#Rx%=TSr z`LkJnG|h|d-_Au;9pgrk-q9=(TNTJdsdT*?H4peV3m;PsYrk&q>>iEd6?xOcYW-<` zXYKafALf{TET+!w!z)8hV_x|nVoY9b?Z>8kfh)?W#=e)D;+zQNfP!GEu)iAIZP&~9 znyrB@W~58DPPGxvgUD$}`nt1ak;HTAJhC~Wh9-u}G+mWWqRDijW`(~jXWrE3mSS2{ ze*`Dy*?m&nQq)Si7GCHoNFh6XQF)|rw9CA7#&n6H-RhFk$7e~9XM(a(9`wF%3E(PR zr=)|l)i;JvR0!?5+$c1!S5`>_Lg&Xa`7kf*Fov|hTM4Og;lootjgG1c|Mdl8)RmDp zYg&=&$I0Z)WYTZbk-TR%=BOT6qQYb}_BLM0jaMulYqjiwXbBreG>EQ3g?#cOpnfTy zbUC_@#*#DsYM77pt1dY39a?fq_KfV`yz`9{s?pBt`)A+#0=R;_#kB_AoOBC;h=Xi` zeGxSFiY)cG&^rb-vX^h1{c(rJ2so6caQx%JvbAj^W)7#l&`N^h?^3sV`N;1nwBx>fK;VjFld{D$|i&l!CWXvRA5Z8!7#&Ko*WkA+5!h~*-Ylw74poMm6$jOW|SNFjecUc0Wh56@ei*7*aT%Kl`#iH?d*u zD{H*7DY5x8G|KI}*H#QxozYazo+J+Cq`d$qEWftv+I$8*35SiUp&u_<&OX{_# zt8SpP#mo2>=@H3tpgq>hz{yQ@!36p39?E8(Cm{=&i6P_nvI*H3a5JtN@%iVn?~fLo z3}in_My~6~#X#uy!Cl76DDsy^30NhU2DZ-qgkjuPTtT5HBf&)c;ST6Dw{?^Y5rw*7Dr z)#Br7AQP_7A7pbyl-?jm0X(#RGj=Jw8wQqUAzM55mF|gA%RhUTa(j8_Z54L$&oB5@ z+j=vxwzS`*aXjY(^YxqFvYrVDrQl{%;$FV&a!pvc!7VU{+JnP(QYBLp zNBAC`!nOL)O?8Y9_v_skijpSXjO+kjx&pi`x@|FyeJt3*sk)$%k8N=1l`*}(Y%fFN zM|@0_iI6wtR8YV}7=_H3;j+I6k5%t!kM-&AcvZfI!h}YlC|P&avJgp$w3(SBzJw+b zc!k`j(w0fWRox_%LqoF}=Csy+hjH?J8nhWSkbJ7L8zcSH;5+UUS!P~wSAoc~hgbV! z!c|$gn5*I3a4lrrQFZcD-Ed3grec3dzYcarNSSWnl9tG|A3mFoSSxsh%0x(M77a>z z?Ddwf`XCep)i4<|N784WP9w90YNy!&5RPyLTwGO^^={$qtsN>t!We!oLHnmE`@UW` z=Eh9Q(_VddNa|_>)%V z`Lur539#Khko2kw?}6G_fm|Gqu%{dKmr;-pKRcqS zefLu@Kkq-!0}d{Bu2veoZ~kdKmtOO~iHeWxe82f6AE7F!Zk1w)i=OjwxuL_~nWRw{ zn$oWkRg@|52wkO*Xf3_=;htD7_=!eS?;egEA1(W(^;|`h|H1-HPc!DC?RDC-Vx(|c zzjHKzWzLNoA$aO0B^K<9_6fRcpAz;me0W)Aks?O7riF`QTAH?b!rjpS8O)jmj!g8- zrA5?_+m^IvNOWFtRqObPHjCwJv|>_Nd}u?2o5w`Y8sJuEpKh-+Bvh}88|Xa%FPQqY9DIjyYl}EiB9iy9IB&y%?K-?9Ntzy_oChY|;?U#wx{f9543gtR&%qBxOrO;A+ zC7OQgu;-smHdgm3z+c9{$0$CFCLJV`{>1bNSSeNdC*29@3aSg)lw7?`UZV$N{$i>M zRIUXkE17npR0)t>QS-)jBvJz(kQOzvPwa*%xUd8`qLZ6`NrT=$f>7KDwDxz;$I$%9 z28)&0HV1r0Ra>eitnkoEcw-H?L>o*L9q^>esv)32UylY&2b;&20uj$R*3$9%+_PUj z32gNs8t}Vd_8^lZ4%ew#2nXzB} z#kt}>-CZ-;oAtA}pW5ap<-SC+@~H{>HqZICsp>ycZoSMb<+a~fiT%W?V1182_qJbI z8EXdHe~cnpKjD1y$d&I;@m3SFqq~>@&qo=#0<-M9y}Zn|_a{)IT^_*ahJ{MQxS4-$ z+;A>k1$nNOiG&MteyoOQr5U#RjJM@$eYuMzGiB{2*K3@+RdwGon`;4K6ylNnc!^Jw zN@H^8eRD5GetBOXRO(R*8hQF4-!uZ@P~hysImMA<`(r*-=b(4Yi71v5#V+;P_IZ&+ z5#@Yo%2OL2E)M+^9HrwDn|wr-yx`Jd%O2j0`R8Jx9oMb1J2cA7-!c;fA0cdjHAs(K zN1fe=W|VCB+D>-h#tqQ$tAKEuA+@@RWK_k$8g4OmjfO+bbisDGElnaIpwuM@!t{7yqQApE)= zT)9;jKV{$$;RV9iV3!c=zKF%D#2W)E&B~W@N-{YJp2WAOUH z|42dk_Uc%YE6fWo!_uB{<0KK8C|bOl3@Muf5fE027v$l&9%v8gw-i8P+fr;3bcp36 z3F8{wLD=bJy@N^kc{H-&w^+gms>(;>frv8%8PvuGk)uiq{k_!PHcrttEp|nuvTZIY zo@*g50|ss&R!uK=l?^+@r?(6ORlGKYqmDNaMW3kI>cPq5i%Lu-EF`k2D7*7YY*PxP zG39?Z=UHR#T$Iq<^61a*$fTBMTCVGUWhs{*bcb82wD=r2pDpCP^Ynsur&_svPGTU( zj_oblzprr5NozTb=_O|xRO_<++|xh&$jX!|cJaBib$lr?-p()Y)9D85YyLyI$a6%Ng=Zktr!=R%6jP<17XSzMLq#xHOOH_5O z(vQ8@uO%|pB_M42xLv@8Ar+qXU(eFEnUDkBbI~@jZ>PKMe$ICzSkc=T!I{h}3*E)lFAgL+tI3K%A2(yIdxIVn&A-zSWZd?(q)j5^ z8EmAO!c05Y3T&959BsD!o8i*Po6SW_Rg?p+x9-nleE2$udpfd((92>N&f2EvLzXmX zGHwItLD~4WHw!7Edrr|spIcoM_a;&s>)0c@M6zbA5>}VbSX=dvz zc?4M9V@Ff~tq$mYyAC+_My{O&-6aG2mG;Nc zXXxS4tVUqN_)1#vNQ|BG7XGx&7{Ayl04m?qBf98$eNnYq)(D9sxLMD7v^$~KuhnD0 zn-_8vgB$tQNxqU@z>p;@U!72Nay8^^6e3xdA_#7I&2@Gs!EHtSm@3kXLHGi^lP>f% z>;@=PG!_^ionIF!0=)v9a)SQ1bw4E->YvZUWqM+4kCxca-5|nMT^32i5?0)5F4sU2 zPE^QZr6o<(B^_WmDMtPb!D#LiaaO_^Klbs>Nz~3N>(XrMqehj#Xx;OE%%aCv65Bqe z(QcYyKh4TE=D)bBoA|MWw{|5rw=VDJn}L(Nvkn5ihR6+x9rSU2(base4DV9LH-;HL zd!Cv|Eb_nPn|4qUC}WWm*>%%0g?R&QAYK2rFM{{cNim(8XRT zB!%yfNZ_=`?Xp?Mcbj&>>LajNr!@hnDV`` zcwcRpzJ~=OEDb|#$(W$f}<;>P{VTnUf&xOQkQ&R&Y*a_o{Y?SJDyH#s;e5& zFFy!zTjGXO4kRNbya*bY*FW*q*Iv)<6_YqvzmyREkE8RBr|SRXxJ_A+tZRmlP2F&f z5E2o}2xVPY+-rnulZ0gNO@lP7>(){B-rOYI>)3?i8rl1IzQ6xHJUl$^J?HazzhAHC zb8!-tO^z$$EnU5~O3Lg93{72ZI01cc0Ya??;tt zDN#q~Kt<3q%0Z4R&zxk$)!o+tha2|6W(^B8)Gk*lqCYQA0hFj(j$aX`N!*Lw;=*k<`Y@f*vU5T(wwT&li1+k>Fp5uA)t6)$;?)$Zss$BbS?p`8CTB38Vz^`+q14`o( z2T#IeBs8YRAAUjEN;2-;)TA9o%<=svQp#ed-y9kkNDvI()4Op^M0VL-~=aoj*l z`qdTtV7hyO+&NI<;xK^}E{czVDXz_6-XDYt+=p0@MK|&v2?|`QhQVTcmcX_r)^T~ld zyavq1yk2!v|7}Y~uwpuo{obU$fdMU)3xCZ4-RBtAwbk#5tVDqq-b==slZ%$v}0@%n>Vn$0xYU#&{K2npk416y_;E({X zxvP;9ox4lXNuUz=WVILth>3eF8oL)&K`hmGGL^(p4F(kyuoOSOeug2*j-`5`j$X=~ z`doH*sI#^YYai^0N~37Ues>5?_ZBCW?V$;{61I(wH^Uv#)t^kqUd6qZroYizODFJ5 zew@wp@Lb=5&`s_K8~=oLf*QnzABmnzfbFwTTmJM@(4{LK5V43g{Fw4xFYhHqsn?ea zcM_a;zJJR4@H@)hJR*gy&^m&W83wBr->rVkRqe?1N}XoRK9Nv1s8KBt7=vH-40rQa zc5>r2PY#pSIfqo>icU-GGH-ZE96M^6^%8lcqw$bX!opzux{CN`__bXA>(bD~j7<6= zUt%Gh@b#XwNZVHKHc}z#_RHkW2RUsTn;vB}JQ}{{3}T$W=b9BTp9kF%Ba0V({0(}a zqk^m?HB6YPnpX3L-x%G!!4k;y)>)}H;98_9B#0u0S^a=!k~;#&o?eg|Hs?d_YCMe- zuT}%dW;>$fOmG4h=fanzj#T+5e6BLb=&>L&0Be#+~_wSw$x?*yHi zs>*LPRt=yNlY*Z4I^;zjD-ZBZkA=Pb$K4Q%J7EG8EbMJwu#960SS%oX8_Ho{a8_QR z&mmZUfYB^P{=>pe2PbA1kpD%a1!cWs-E_738kFDUPFm3fhrdtZLI)?a8taQL_f2?` zuw6@gXMzx^rIYwf1pt$Kyc`X$s>}v|)A23Lln(T)`Cgnw24ZvZcKuI&tqUyPSoXR8 zuTMsL$u3bfEp9Rk!p+6g^cmEC+gXYJv$+c{Ds&e zjuaCuj2F|2nq+>)^03Rp+;bOzcA15KohNta%~h1L5uDbYY5A_lFe)KYtE&=$V}J@w z;S6Jbrv84%t1cTTW(PJ;-ahXWuZ_M~qy#7z8-N%0mS~~r4R(#9!(bX#)Dkv7p7}R= z?g*j3e6H5)>6K~&vxPF}K~7L-&Yx9-`fa6Vu~yQLBj;q@Xn^1kfwq$cc^1U(BqMC3EqY@>k^-H z%olex>)x!;Rx$HflL}Y%?o@@U1uQk4vVjee*VFZH*|SXYB#O`$JJ!+lG&$83j49b$ z06R-WBN{P!DD_8inA5oeeLfYJ_b2854Fc`L*$y;LoDB2PM=?74Jm9!XmEFXC3tU&| z$3>9s_N$HEx(pUiDB=lR1!>7pa72DX3JlcA?uYaJ>j9Q)p(%ZU9lFr2==%dZ7~09j z4+)ZMPCN#b@nz32A)O@Ic3=X;#OuEGT`7e3=m#fCuYj_c*JNH zqghE1{@!4&R$Sm%)?Y**e;#A^~#TfZa4!obqNykS<%x%8CCn>;{gnGcMQ!z4)#l}@}`D~9db|C zRhMg(f@GyaN&}0kf=sM5+C(Me_J@+2F1BlGgt%w3F1h7Q&7`4dujQgrA=vX6&udC) z)vzfkh0wSU*-G478+p)7zpY(zXsd9GLMZ*qCBa`G>!o$z?n080Z7fy(E|QWys`ODe z^9tg4SJSwJFPQ~lf=^!7V!XZGJytK!#t1nCKPDR*t;|(PV7cEn?^&Uj2lG^xp5*;y zr{qzjlCO2uRO~=kshelH1l=(*{OOYj-y(K=sodW`l;vTk><$Q*{?Ms(***R!kiS-D zSHCzhSW($kE<8Mp{Z96j&H$WB(*Gs#=3d!7A*T=gBa8ox9AyJ9_V~?zVwg{N$RFlN zw2Xb)`p}NjL^tjzPq6^}eaAy?9RB-#CpM$8FxHu2e&AdbKS+qeY(P2|V$d(*8m8yN z2c}Dm+diO^ctIQ21;|5>`)^1Em8XZ{?NVSB7VWxD9PLlfeis-mVsj_=JOQnLbSeqr z!yD%g87eG+ua5->;qlA8@M>p!SSMq?_s06}>%}K$B=IY#WuGeMO}`U4XaE$>Ih@>O=vG3{&+W!y2( zkJl4ffcBSEiFHV$Xlbc-CvDEO)doF9lV-kTUb?~I_6lAX@M5)SrModyocdFw38SUq z&WB7qRNp`lOerMdUL^tb_=AF9{I2gV83A%=C9Sd!Wng$~$s7Vr6(mcpiu3|2SQB zcHOYOue{{(EJRg&#sVv|)(YH_{Rmv>FAn*al8P*9HRv&Q(95V9ei)2| zMYE!P1R?0dAfAZlSFQT~2-@gd+mIgd>t{qs1V1fZxCC}CLzm_7FVL0Dg=r@X4JG%y z*jYOEY)7A<(e1`r$b+!6h5`&mf`UnAgR(SBE7&6ssLKKiATC3e4jxK1G?Xa&DxxpwW za1G-am%N=9H6<_CtLVdAn%F^qY;gRvst)(bYYcQLz}DGZI5h|Ax(lJ!BLbcL%{HtZ z?kkMu#gWU#dENVI632*NrOR*Lx-00`#X}@1L}B-m^Zz){M&KWwf4gSuwz0Dlqd(+z zUasKB$9IO6eDLh!SvL=iTaaPG^=vCdm7?3qzGXaK2X3E-Iq>-XnS6J4?r<~X1*5e>(R10xa4n2gtvEIMw4T#3%R*l^=-4rXHhoIZ);pA^9O=Tioz`-);TG^zUS z#i`+9!wyan)`=d_&xD7)m!MVyXJKAwV&+@){J1612Pvt~f&o-hda@ule|PdOHC30| zyaw_(Ug>i)d{EYkq*wG5{;TVZ8C;#=8v8nwIHE;TVe5`+ats#uSyPp;yGqpPd_MW` zcG$mh-7sU+5d*NZo=L_gMV?{NZ2&!}VS2{hWp}Ys^ za!X9ypev44xK~XS#L$DwV+ZIY5!%N-=5!GQfVFYDZ6b=inV+9LPQvU94=25UG3dOm zkIrj?XlTihsKDREtsHwq$tmjmikh}6L4y{g7kjONM08Qv*A=5~9a(#taEAHRIf0?= z6$tcGM|5J>KC6p!W22)2l16q&<@o9RBcCf53f?d_wz~4&$CtKplPH~KIt3Z1Y4j@% zZ&@8h3+q|T{ktczmx5F%@RLS4Zt!XM78Tsa)GQo1T^-=~cj38LyAxOO!K28xR&cEi zt)EdI8khVRWMW7Wqw8H2?DK>Vo-t{a<^3!oj00XS++k-TB(It8Bx~)X4e{MNR%*d$ zITx~CariyvpcR#SovZmSpBz7d@3!6|7#+m(scl5>kZ$r*mPd~1JW_Fr*nRD3EzpU~ zMQ#^i&&!Upg~IL}Z!)OZX4E5|@Yg;3D6D;ERH9HLsIT`~Oq||W$C=+>PXmHbH#zA3 zHug*?lOn#K-GdWW_|l)?&eV&7-m}nSDv5=A9)i^v(x>oVERIJoY;EURBR^=n`&^X1 zGl0eg+BqFZO!*`;g|+Mk{Y5~){=~4jm9`&yh4@vq!ev8jYAL0B*i7-3e>1#S@}BAs ziJUet@Dnxd!4NI|fN%ouNc) z=Y3X)9bfv|V2u<#_-IGD@rLhSB1YL40nGmT7Qe^Wj?+mzUBnetAFHKJ>g_^cG%su< z`JWT;)maJKFc)^r2A-&ce%6-NS3=a3vqxar}xG(sj**JJW^(_`Kz5dzd?u5~y2&M+YoEAq1^zXLl-M0@{HG)bv&S zs?XEnEP)gndQWIo(9M`+PHce|FMYo=x!>VF-g1GgpLvC&ov~uQCah3Fk#n@;b{sSf zT;a$$V^=c3^~9Wp^>-KFTujnze8GBYp^Vv|+r)fJ$o}dW?N&Eq!4KT(ecJB11m_sR zy?NJ5(X^eKJh{T{ZIsH1y2}2;Jt^dy!L}RS+)qXyE2*JuZe01m)ka58g_P=kS=^`< zo1xWZj{A1%3pciN?v5VEBg8zFtNPr$7r$A#aLRvb{qb?h*|nrNo(gt-n_fy#LSUfY z^67Z)#;hxa6<47j*W!cD`XZx^@8J{!(nu*L7Y&->f-UwOz5(f2DeZ1*#g5hO*^W3` z9q(JypY!im#=4*kx)#58ukc>WDAD}7$=!GT!YrYZ@*tM!$pDfKZ6%8~G>I^BtP^;W z;+6@S?WM&L0EW97e|IkqpaZWWf`P#GLw;~IV6qxY4igptH6Om;>d;*AvZJWG+Z$dl zpF0}%b;H?jF;K+F!G;u#gXSQPd0e5@VOGdLmq7Hf1(3sh%mSHsfccD7Y8-hzf~=ok zimUb^V9~`Jxn!^7*D*iB$Y=7M1;ky2eM-o_GtlyQRT@{ z=BmU3Z?cnI}@EL}`G{t#l_w7LA{=-l7pX*m# zj|+~(i5{_-(O}oebP1)-qlTEauONf4OSd5a(t{Yk%MHIiyM26UM{FEt{?sT`_ttu+ zExdDuA6$8pjjvvKS^cg$-INv_E$0fC4`Eo_gA%iw?#CW>`10_$t-5gx>S$9KoSyzj z$R>|;PLs&V3AfYFvdO$Kg=Yu|;tdv6m1{NHZfkUAMdtQu9BlG{Q57UtEd4(lvJ!Oi zUQ#~@kpi78Sjb3~7X<|uuXOJIzG>wA`J^R|!Hqn#{h?KDxFhAkVNi%ERwi9o74;n4 z`c^ACp z7p9v|3qvJR`GYQjb0nrO!5&EEuBrocoa%}^(|wrHiR;{-O6{|b%L}B=X}ye62UPU! z`;SyEbj@pHf0S0-ewFxDpvuo!jJ|`4_Qq-0_^dfv6vZh(z80sL-r(8v-3d(JK>&ij zwa_R_<#Qk;zpGalxg%f!WJJoD)wW=5h#n0X5(|}5iuZs(e zRwo^Vt$zkX9gdWrVqJBQVUIxmiru0;VVPt^Q+ZdV1^=yUvUy?klyuk-98TikPFMQKVzdfRBr zhY>_Sp2PWrUC$8Sm-|s#x3(6K$*gc+!jfgj#mEjZ{w@Ezk(z};^Sh35c15{s*51oY z{hMJw|1|4HRrq_ybceiHrtf{vcmKvKcf1nYNpGB4AXmET%C)?N$@q;W2aC8N38c$- zl`9`hqM*kJB16DH!X}lKA_@4wn+&3Dr z2~6~IVJl%8y}^#OWRv$(HPoW+ceu%3b-!yOc=f`KH3a@%nB=PKuhxS)r#gQW%zOq) z!g(k`4Nd&O9XUL-6ch=7`WNdBj)+2W;^Iw%qOD%I;*lq5EeE3Y;*!_#|MaHk_01L#6SH3(?ii``joY0!P3`~w4yzQ#)&-miq3it6BQ0Y9h_sUIYDTp0|seXM9aUFHYF zggggIUe0zGd6JB6)20N_j14sqBGPnI^xfgD`-fIw-wM?UY?6EL!|i!_w% z4gstP8t97z*^mXe8(ETsw_7tXcH)3j-dM;waZ%`Fc138{E)h_}CA^B-@*ND+SDosI zW*1-w)TN~(Adq3lF@}Bi$_~!PtEj}u3z@KG-TC@#lEVg@^@b~N;H@?N0ebt2@E}45LRbv*;mbCV7N;uH)9cFbtFmkz24B+lbqVoVQ8Xzqr=fUInsaR(}SvD z-f_F0b1y>rXJt*@KRFSU^wY^d1>Z8oEI3cVep}z8bMh8$y7u}PZh_azxlQFIRlI=f zOW{eNhgY5bJs|owhvrrjrChv}pv9GI8nZOWl0k&WlcEo1 zqx`9^qeEOj{}PQ#tuN1X1d5hH+;GhGUT&qr%?szN#lhb`fcKnyVPOAXM}Prhp7MK= z7By{Kqpw4m&m;{~u`+ZUcasyWwZWzRTP$5PWi zSW@icl*tJ4V(45ax@~uV%N$TQaE?z>d?BIb1o@I4$l2L1iQ#0_iL!2W-+o2;>(x5d z-OA4;qN>FaQGZ;|ZG1FgO;OcLZtSX}}*oHR!lilB@$bX1C|!xO>p&TfNg04T-Ngb=;wd zsgUuH*0oil%XF7Nzf_ars+ zjRJ)2dY7ZUEkTExNfti+zpOx38d(I+YEK89lPC2w8ytft1eZ8VRybwy7ThF@l;!ib z&w!oE@fBk7(40by*=EIPfyP7UGuaGFj?Tqt3Ok$M?x##5{L`acnbStR#`ozezy4vB zGiNV#Gs>F(#&f#_&QY2__kH3~K1j#&@$a+0e(8DZt8~AVoY`v3%h4ub@Nrasr<)Y) z?-pe8sz2lAgD4G?s~)C$F-*69nOo-K(tedXc(JT&8o??De|%z)F9%D4i{5HJpliq5 zT#c*mlQyiQv#q~F@KmKf1%WZB00UyH z%{6Cgr9f$dAF?i5DGrzW)LIE#KKte21hdUdWp;5Ei@Ojsxa+!PLfYL)?Sv~Pt`*PV zo0|5P!cTqLu%fc#(U|@qt#B2PprpXmMRjs=4qScRX^2WdO;2SHD`~fft&C#PI+bN;|GWbV(CgG;UYYxwQ{BTJej+Dt za8c|^O1u{kjMhpb&_ECc=Aw|pWsD5Q8GxY2e>8M7A{TnmP*uY4HCZcYJd7v7QcPJW zEiij9{#&EK7G-U_@4XV1MQRRG^Tu|rRMdNOx1aA`M6T=wxVdXgaAfLaFoucq((JvL zFGznAlbREe#L}?w@C7Al>kEIx2TQ8rHFIZ^t8a3I42=G4uGwz!{H^wK8|b~gYLhsY zt@v9a7{HFc>vYgQANa0u#Cg`rLC4^^fB(s`uL0u)}X}7kwv~NE`!K$ClS|X}5n* znrn9&vno5T_;%AAGDUMe{rnHYqf`Wiv|{auoCC|%)Xy4!!2NwjMZg@Tx!hPY@acYq z8gDbJqkedICMJH;fdHjRGI_=fc3$2jF3|OZ4Zo+tUH%Xm60$xemuHa8wBg6T+Z9-vlRa+5?+$er zz^`HFsz28MbJb|t;V1e7StfRo%QY>d&FILSvIjIdTi%F*25f;x&)r2X_G)?-Z3A_ zM%2Y{)!TcNT~lxsD{A(ez2EDcRP|D_Zjp=~aTJxDMAY-51ttq?usEZ9XF$-^m0!Ivp9H z;~=#QC-HRW_-M}udNOP&9m~&0@~Q}rk2b~F6IT6_q-{z*F#9b^`+it|5XH-y#8RLn zu=Wk^&&i@FbXA_Tx$RXZqU<_n?piN~+8jRnUQ_xR!WBN0wTv{@0QD$C~#8KE_z^Y~vL({M9-Np5HMSk!5#sfP8 z>36z^f2t{UF{YcS3g`IGY@o6P@F8}o5!`!6zY(X+qxTn}N|&)R0GS|dWgZH%_l(B9z*@HL_UU7(AxragkHq*TrpS`%^kaMFxDq`PMj zp#TaHA9gA_OW_l`P#Pur2iEl?>|jYID~S^oe98b6nRqTq0WFM&%t{VdAAj;%hiY!x zXcHa(E`Y;vt`OsVE@}ai!?~s*7%vOr$w5D`9L|6`>1JK+lgNckvL4#!0-x%q@3yKY zF4tPH;-tlA?ElUIU7imeA)B1pd>M^#7{Bksy*@#l&kgjZL!FFdHJQb$&F(kULd z=3Zyk=#>HMTXb&(m$H{R#cCFEpT2+?TulN=9No?0k4duET?{72QY0SGfLHfI`{0=n zZg~-BMS|}=sDkl^(ABeC?SQ%n-R)O{vt13aHkmiCaGo1V|HjOL@=g{0V~Sd<9HLyK zIEU=&o$G$-UyHc@K*{>EBUSxUkJw|2-Vw=wKXd0FMJdbO$-DYxsXK(BYz;p2Pl&Xo z)zYGnZ60_3m3KBSPy1Xli}6IrH+L zoSFW4>CBL|=PaB>rp?w&%=aDh%#|~8Ra7QE#6J$X8^yVkA4czU*s7AiF0EFFaQ-4O zh9Apt?(a-3c)A^dpckN79N#-Aya`~#Ut3lj@?wXQ|YvVuZyqto0`AB zS5STr(p~Zjbt}5PPI7(*ygLLULtb)r-ie%Bqodu6pfo}ox&#;0c3zJvtTPXfz~HQN zGBEM93&6eRZ`I|4o5Q~iMHS2K!Ap;l6ri@oG}N7<0khv&lk}jo2)>`i;=;@4c<9ns zIW#AI98L=s#E%BdCz5}Blojj5PQ5yW63=Qb0A{;oUI} zVc7g&6nc*Kb34L0$Q0nutj6#T-~w2#0wz0EB@kXuudPBZ_{Fp%UW;>rl%b;`2}4p4 zUpVjLo8dyNBQ&{n>c^s!&fd0rBW*4=eg8RIt*3{G1k%e47t>#`*Rj7joiOw-!v`+C z-#o3+eeECjmaXbT@?!r*fz!=PM?lipOCv#z5n3@V^K$hU4>QtL#U(VWS%VN8=P5rF zPEvWTr5DahYYX}Q9etl9e7t0?{I;CtCF&&3-}Y25lbC9&+M!T`UD_N}2fW^&V63-cY66MRTbXEU(-d{!ASA-@P=#x1z)!<|(`0 z7m>V=Lcwau%6cvBfBRz`s?2iqr#j8~-`qRA=Q4k(Pf1}WzSLAPWpE{Tvnt$)Vr-eWI?C=!q$|6~i z7@$FeN`pF)ZYPm!dsRQ~i_FD^`Fq+P6ZUEIHlnCIExYrOjF?*EM66fwlo?E;<;GmY zPyDwQ$FgkpApmR0v={tHnnyJY%Nq0#csrZF&smC{L;%-e(vt2#wH;=W3T<*Ci)-At z2)rwjmpU~f)gMeUgX&0VIKSM)52B4s$J_M6AR2H1F5#;Vbgs-?CuP=OT7md22J;cFzv>`NQ z;=$wX>ZJ?Fa6U(`?Tb*n3<@v`<&)?{D$Jqn@qO!?^C3vYsQuvA8g_J&VFYI7a+;i9 zbR;>IxR_&_@0q@eP4c@pxVx3JaG|JUzo8n0bawo%eJrna>-oliw?Wbi&i`b}W>AN! zaHa%B0j_0z(V%{8J1>sb(U7MO?*gvaN(|liDT%;i+>P>~M{VHJx0YRQmCDpN_U=fS zVgz*fA}t!#oy`11ciU|8lV9EP`sxIG3f-a!{itKHq*38K?V%4&mp|>+)|t6#?n+#G z8UMZo6(iv=je@f~`7;vITh6T!?^L{Be#rldFIFVr$#$q8&7UCbKd;rh0(8vwy6@ju zC4ANpG4>NgI!mr3r&k8R)Eqet7&q1N5AGyMxshp83W(sy(an2_s&f)BNmaxF93NgC#DoO}(01R&%Ge zkC7>6tTFCt_>B+cB^2kuTh;NO*bmtY-`X-GlB5u}tKDvbmx^i!{;}qy7h9>AU%OP@ zL$iy^Vjtc;S*>215x(3*^tq>k9E5**_Wb4e<8ejaa84d7P!*4Z^zU&ljz+LORItUk%FnW(%-_4R)Xm z5w3%xPR7?dv%c3O>s~7K?jH04u}OUpXK--WhX5bX=U;}}RwOn*NG{uFI}t1!>W+4A zdNEls+GKBIw8YPmeh44Dfo?M%#P?2k8H|S@yWowVVMDiF>Y%Hjaf+!oFuQ$zrw5A3 z_>=IEtqWPlJ8WOa2JtvU#jPCy+(&vU{D?>JPtXNQ1J#A4FsMN+WD}QUhzeJ##y^5w zzXaL^Ra-*fwrRtPs|i`fKg$RZxD!5p{WM|yB%5sPKKkMDE;?%u?PLT;&;N!}H?Zkx z9P`v$!QYu=e0knIn&3gKC)C1_twFDxh~f%>$ES1g64)jjJ%jMqhgvJP40Il^NtYk; zF*;4oF6}rDVuT36q9n8_FIj{5=9$Z(L%~EPWU473>dSKqY8M`jh)-dTZtQ~ZE&T*6o03^hH9yh~EyUC8KocfQ)}NIyB&z@H?VuL~=C z_pF8)c0bQz4-C*<(j+M$vg4kkGS}cCtF#JYTQdrj2U8{+P$1dL{Rt)haiyQ2AxnH|V@MmEZ@X;__krpufF!`D+R!xMFvPjI z>tDL0me&886;fGS!cPJXIxQg!A{_nBBt^aGL;}}i@|aIyZQcF|3SkgpDqsB6KVEAE zG&b(ege@QApV z9X9<|?#FvS{>4Ia0LzGeFZRu|8%KIjixN6Gg>s&A8Ay3VVtI7=K#|Y6qMm!mBAxFy0LT^1BEyD9-gXtDln1vW8 znabf;U&F(NuXFIv^yXXT$3;9WEnm8PQ|ra~5(tCgbz6RCAo^Wqh_)oQ=ZAMp#Fqr> zL@TDVTLmFW>=&ozIL?21Zoc)!)wOx7ctmwX!4QM-0ezi7s1+0x=Z!-C4Q7Apxv%H(ZDhm%O$$Kn?o!Lq?K z1;)zUUI0N4y+rzf048zka|AWuGA(%31PTEbnV{9X~l5`rJ|9A4;Y9}dkc}sH4!)gbQ0N!*p!#SItj&78q z2~5I=tF72V9;cI|SLCiu2Eb6%G(Bm#h#n`i=3`4*+$_Ynw(RotDPav9oiu;rUK5TK zk9?KEWDJBA{tq_5VFV=0IA+8bYeKPmrkdk zJZ#(PTq2nv$Z7ao)qs1*kSCwj6$4KXtIm*>G2k8ud>Y|y?NM`TNGCjH&YbamL{Hfi{G5{ zUo?&SDRIq7L_=gaWb$sh5R=s)@{nt6$CWhxoY&G<`Eu~DKLe$5tdl_V`p-kbxb#U2{S2;c81H3KrU8K5&COHPmOWU;cc=Jr3}YGwsH86C(Ty3Z!niGP%yV9-fm=2RLmCcYhiU} zudA8)Jy_I3CwQ%d%s|o>th^4E*eXqK9r@b9FSwpPDHWXGs?Dws%KJtZ$R00T$5(v& z@nox*sVZY}fdU_%I>u2|Hh1(_nUm1`2y#3f+F+YW~R zRYA+5fE6iVB?EKfgUstIkl#8FsHB)0Vg-Jjl~G^sBSs7v0z(4MBbGpDFjS*P-&-ST zJgUOP4VX+Cr!fygk%Sc0C%Y7(05Z>+uSlP+o*iW9Um6QCp(K6NxJvs==RDAsy!bN> z+G5}{7{MwfDFi$ut!V4OsK}bs>HnAgc;1L6KJHNw(A>o%+KE-p$&qBawi(|7hysQm zZ2-p2p0d(^kNh`|9%OOIiamh=d40S^(wbwc#I1D_^bXY#NGIn)hIu215~mJ+yHQ9R zD?1uI2uF%4!E(rdYd3lU)u)i@dIb#yQK6R2fw~qI`HwM#c!g&^x%N5CA@8}!GF89y zBrf6fnY0uk2eXfD*=0lT1w+!K!Y_*I(18R-U4}l|OS%o!Ge(sjC)(6Oo3O3;^1;Y~ z`nv$(2f(2B#a1cPVdiL1auq8heDQ796^>6rf&X}KJE+Xj*nRIlO~fn?pq8H@RO4Q>KxqJ*GR4NiGt}FluQW3)3xI`-a$w0 zf_#{p1WoKEUx^Cz{g9Q$%1WB69Ng6Ma_+s{=l{xUY26KH`p{h)CE56HEUEw7dHVtc zJ$}xCw%ZzMYZ#=g`i)+vg-WfOYUEN_KC_VFd-fFEwlvdt;i49m)W{p7B0@;>g|-_- zY$f`m?@_AP;_v871SjOMt+77%^~u*NT2<2C0zPrNn*Vul)JIZ#-`aRY0nrdT-PE|X z!{~NzzCpq7m8$7By-C|;*u~B-w&O9@HyQphXv?c7ew+-vd@VwDlr{W>a3;z3tWNE| znh2`>p(xbk_4KRM98(h|Mbu7DpFB5rQA4&dGzx`FV>E%7ZHjUdf^&R>~mVcNEsE+-r{f~jr zhK7PE3XAnTZLd~K(R(n!=k*vnn9rcQxDU+*3{?xoa0x4w==l?9-?r%x_*;k%3i}Ne zo}C9qxR#-X;0nG0($$1R=gY0!EBXOgsJvr}@TVI?@l&g`2Y8*~$PPKbf4)tZsC5V? zLlQX!e7#fN#Y-VcW(#gLA0ICsJsI7)4u+qd)PSZCyINr!x(lgdM@pvv55%WCtbqDd ztFgz95@7Sr`gK0{Sa4R}=_eZ?#diVKZp1@R$S!E#ukF9>l81y0hDo$|=E>3%Fg$5U ziC*!H+;oCsQEmIfDlusy8RY{53A+53={Y8=j|im#n>nU%F@SG0HMAx!cblTSt z|58jocQshuRGEWhF-lZ;X{sFh(A$jh)k3r5Wj8mw{F5cDl6?!RJHzG_R|6iY zMP?3tXvR^E`EOf~Hm}XlA{Skij3$x-=(vE)njT$_3VDM=e#R%`Llstljr0#i2bt?A zw+#|S)X|Jl&V9a74n^b>T)eLV!+B_$S>;kbU zatom??oRFBo3!A{Hy_Tgk68Ysr_bimH_D<*QQyBT8R4&M!0^>4FUxE`1_FYLRZcL> z1a82c@i8uRzby0HMU5$a>%Y7oK5EH6;Zo4};fb`Vu6#-W(!Xdt^AkNJ@Lx~u62XOL zFovurVj2Vqj<5Ds?DPEXgAU`X{&HjAlK!~xt80{E5pwxU>=(aekaiXIh*4%xBs=Y` z2aKh99tI#CU@_`$b)P&vw$_QVa%8wBtSAMGTui%hgu<4v;jYFg&UU+a zC#CPK6@F;+`P_4IV1Wod{F}yF7vVkH()mXHW9Wjumx3N^tgCLI%W@Sw%pmXbgLc&k zVD;VFqQ@)B-_daaIb8Iq{XqKebh@w<7<=4>k6$|8y)M>KL}{LWIgqVPO176z@md*;Dfr=p`)jWn@C*j>m}sf2 zdR5Hx3RCY7WAnFGc{vDPw+dwn+*>1z8L9x!M4zR2E9Wbl$3fu=?;Mr9@Y0xqpR6%i z{<+>idR?^1T2kMHq_SLI9?y) zF0;}6dJhLabP87x`c_5ny4-FP9{jrK*Ji3c05Jk>RQ8QeAm~?E+n#|EME&y&KQw0B z{O!I7i;P1L*8gx|Yg+hl?haesv$8wI#Bnyd?k4d$1ac( z_7BU8KbWOQI^|MWHbP+SD^k=1b zE80u&dX^%GbBggylQ4b$>$dkNs$nL&@y!oO6c!BHu?=nNPVdc}#(ey)aM%qL)g?VP z?BvM#O!82*^?FokXy#?0QOnJ!yFfE8bzfv89({+i=Jv_W}iRT4;SQH|yD<#whaWQ)_{7=z6p?P0~;V zSEU(Mh#ES}D~wM`laR9dmlWVl?!m^c&uN5_d6A;YL;PT%=}|Pfggo^q_^&!R>A%Cv zIutbZRZ`QxYG6-!xXduzvqs9r%%{kuZqk>3v=u%MAfc|Wx*^3%N=-|~D&LlIXvxAt z=E{Tr7Qh*UIy_h?NOr26^fja%D4f2eN>3?4MRt-*^8s{aL5;I)jARWuSWp%k91IgtPJ3Sh!CZ6s21}MJ@ zd7V-$&EcPU1JpKEqLpC~*G_l}n3Kp=8ID_TZ@^^u!A z$}{(rDOxkKC8^cLfcKRDC@Y6ZB0sWUr|XFHd$c4m?xg(9P}%UN^ia)s%qjA0fZBI8 z3nfv1QP;4Sp-3(@fq#a5wqb53toy=iyF+Bb6-!k8e(|fKUg=_{S9G%7RK^dmRyolb zTUGrxW1T`qX3Hdxm<(U--corcTGHN>gx0qR`s=$K_P6`8uq)l{nibZdGqBN<4x?&$ z9dZASnm4=0FEbOD;y^S*Dev^`j7CFq!U^>qo+3MHnu(QGENi5XL*A&H@NJg^SfvSZ z%`SwAgyUx#_~>leT)oWBAFPRZuh&BXvw(;FmxI@<3cW2>+I>{PIiJ8Z?8W;(j?O!t z%J=`{q)=8yMs`SsWjo4!WaOBUP4!aLP7h-sbv2rJt`^)5J$)We#w8Qe=kMBAYcfKlQm0*uPTFr%KdAAc+I;4EKqaX$$^o3%`d1BEN} zp&jh4&y0nGI#DjUxliWKK&^`Aq=&4WeS4m*d+8gO2H?qxJNi#?{Z(DD-;Eq=9COI9 z##BDps}ZDZ$ltb!@i_}vjGpPLM1QF&H}nyMNw2@n&u3UF7ip|NxoRQ zxXwgO2LJ4*22q32h3pMytKIwJe77`i?7~m}Bx_L&q_+J~Z=25U<^L(?G)wOyRwT{Zq)?<`*n+i5# z8(jMx-)myS#i=-NU8r6eaSO;>9|11yr1vI@XK~9&>Kp7?be@5{HErbRDc81H^69G8 z(QZ!uiXXfKk-Op@FPTtbLSZK4-7jB_J+~bOZc_~U=##Ur4>u8S=CjvsqdI;bFNCTX zF=z(KxI0B}mfjecxsSgaHoJq-v{D=MOZc$7>AyBOu=uIzP9JK>VSRGX!rE*tY!bT?wOQWA^%ns zJv%*phfUY>P_j1T;A4srEtig#9@IgNMR7h!S6OP*)=+PLx^)8uaU|vcJMP1l`gcKY z+QQ)0iveRFt9X%IwaFL^gH$>u{lKpqVAtX|RAFNW!v4E+Md9Ec-$BQS`p8>Y;z!K@ zB}JbcGZH4=i4r7-!K~c<5tsp;8!D)B=7x*EdgB4n^g;8};w4YCMv5GmKJ4cPP0pkuGKZeYGe&tD^o}wjI@@j;Q z|HSN^LC6g_hLg9cZvZ4anBW)~4~m*f0yN}QQD3mFl4QOWzWSgX3!HB5u#n)qrT>)h zm1JNi;{7`I?{*dP??r-4ITU_Xa&R~h%%3vve68aBan^1v5flF-k{pf|up;sWTqCYa zldw@s&&H|r?USfJr~OQoaT4XV`@Mdjm3Uc7-j->?ha#mhol}jT^HNvLzXt+*nMdK* z6}``Wp=Kj%*ME%DJ4>~}I~ussCI9Hj0bch*7gd?;`#BRdIGB6#clLUQf zX#`}97Q9NoGlwq`NzfrTK5AZArR| zOw5TYyzP#ih30%S=1+wbm@d>f9=`9}lR+;x?R`ynf@8=@??stwt`R%3{`ZC@XIq_f z+2nNrsVfiQdHmIa1yRAVR2F=d9m4SW*~z0lN|+AfNPRg-k|Mbe0%SI+N`1rgG{U)B zfFtWmrJ}Jvn_-yhopA@-sppa87HF*Q>Nz}STk7NmW_0!9(qbOr&v7>J`oXmLgxyp9 z&W^pn)V#&z}FA|McFYiTm^{y9( z-n0q&APK_X-EajGqwy1{;isw?_yJWwh!Y$hlIYe0JNNz!@FFGZBU)(XO=!H)0qo?) z>=cQ|86?p8W~ckgf{Y6UC2Bd_GdUZ_QAENF88L;)M=v7X4tOWev~Xk(zdqh{=+r|@ z+dwE$gZV`7@m8cV1OCYwT+2v_w&o2 zyVaqZ`)B;J=?dSxe(uThh5|>)%HQeX=f7{sj&lkHWuh^E2&F-T)FQ9Tf_bW^EhL(7 z6x6>|gX&2YlKl5FGwxlMi242b)CcKE@<&rA$M{5}*d5wj0SWY;?8 zXkh0w0Z)q{UEaOA$7O9;QdPgvsnu#;#4U420Wqh@Bk_@paO4iZRup!2lXL;hyH9v6 z2Cd*g7u9ab?tCKX)9v3}nCc9&S9N;-_Bg0>@1K#5SFtE;VJr-H`-48d6C;{GW2qJ< z(h)BNF+w0B5T8x9Z9Lu^)_K!*IAa3e%?}y`t%K2ohkH;oKl5BY02EJy(zfv|bOWF# z->B=0J^>wKu$+PuA)HM_c$-%xGKr=`4sz`dbBF_==3)4U(=JfMtXK7MDCQ`QiU^Jk zsDHc?t0t3`yorxIDB-*(+^hHk;XoFMTM_)?_yrH_{TuLn+mJtHLCh4f(`j4-OhK)X zc(e<*tWUmjjP_#+j6G@O)4WCGd`zPq_t=74K;hDX!cLia>V@X#`$d)Ns0t5cY&(T@ zsP!ZYlgO=-(BFf4sXnL~CsFOpD#UaNWPpNomolopKBZ)rP&>^H@&F*Jl}j?+Rqq0ql9 zY&2(8g^Qj|0})ZBQ!{v7AXzS~l=^Zx>t=$w(T!c!MV&L@XirWacd7%NbkFnEQlVAX zCf`1(Z;9M!Yqx<}pETAFjL6uWIFG5Nqr7jpNLtZd1cu>NEE#O;!Qa_dYqZH1c=JCgFMeaI#@Q-$qC@T%zTbMbjn~x+0 z7Pq6wube0b@s5OK4HpE2#OAn>r=KMB3TEVzH%Z5l7^&@>vD>QfqD4#<8rd}|x&7Rz zTmCG3Bk6Wk?>3hk^eJJu`p?mWv02{%EOY8hw~*;<=BJ^UJe}SE;9$0;*@FAJN;zC# z?tgPN^wkEZk#`ii%uY8Fx-iFU+VNiJZ5r=E%haR>Xd_9J+5%Y*D5VL)WylWrX(UQsTp?ubiuTSs6PZ=I{UN?DESWjO^Zh7sWqc z%C~u5#nqw_fmWv&;=P>Gb@A4u&*`z>7De}iM>AzUrRGk2Bw%*(dEY80q8@~YFo|dm zu-of}90$SGpdMTj#d|@+**AFMZC3-EcdEn3S7+*^6W`b^l%$tQI8bZNe{EFHoqaSE z7(~4l>ghk^&zXhU6qvGL9xOcYCT$pbr9W$>Gw6s=b4$Qn{i2JY=|tEU+!DO5Ryjz<)GAXL@T8>dhx_TKB=hNvRCnaO)=J{|^59F-;%d zZcJ-9zLY2m%%+=#9E)$0j*nw7sF)3KEx;v^L8MdEOun~Bw{nA2o=sjt3p1r-N}o|6 zGit#DD5NX{na0FZ{7xM$m5jh@LJ6*f%HK=@3^CUbx&IhHiKt5BGq7Mzy`ER`ZXF1`GoSxEC*9$wY_wTX@e_mw|D$^TPJym!|EQ?pW5zgnJ*h&<`GnhAx z-|{D1H&smjs#N;U=H^r8g_H}I!#=Wz*fr2r*(ox0d%)&~3Bmka<~M%`b_tGyu>viP zvzH4=u%^T^lLe73{&_$4(c_)&ah>A%c*O<|#=JjD?}ey3b>4?mY2D<awtQDNOIe);r|jZyY~k zM(6Baz%yi@LDqv(yr_|-H+SB?rE&w)Q&-reQze*uNN$>=7m)*}ai73Z(E4yNPI!3B>%<`>oh%DnA$aJO?ARwHf% z!p-(PqoeMm@^|h4b~TA-SZwwI0Xa>M|6w$+Y=d|VPun_(nJgA8-w6?cg+Aqy@(2A3 zt2b*V)=~JEsfn*Cg_0DB*BiY9M1Y#$p5ukn&Y9{7k~A%8WI6mqCWHJPvA7yuHy>)$WHUtj zQ=#X~#D-*%Ne20k&FK?Q&FXpsQFsn-&M_Y_)DiD{8U$0+$~lE_2`K;9FNht!JAWC+ zL?mieD9>Z=PY_{e<^BIfGVyYd^7J1z1yl@h=084{$Q zJ`p(GMDy@c?}v>Ghjq%_!y`@8za06ay z1ctKjRDvPp!z`8`H+A$AS*3rjey3(&@hkeG-YI+Mqd;ODbM)O`l-eP)xVLY+43%5n z4@hj_-=$u2;u7Qf+qL%buI7Kuel7(3y>h4b?I9%=sUAx|z3vFyUcbbB{u*ckJ9lUm zprtOq^}MdTsUOvu7r}L1ZRtoYu#@YQlA@e|h9k9Sa9kC(E4j7u^i%p#%W{g6`%qu2 z0Cr|%?MOiVqW6OxcWLd(zU&$LZ}eF!TB?%v#o@(7j3`ICYaw*%*A<>Dd(LL;l_O4& ztMr)8#vB>Fv%~vMf%bBj=HQi^woPY~O4)mUNBjhjjYI}X>Q@wb0U|^QrU@s zQPbCWImdv^oq-qk6I)3g+tbhWMuAkzk<5o?0T{Pa&>+m+A4!IB{fVlRBYQETqxZVY z=4F9LIl0VFs;*@4cRr?6&l@(tmCXgVVxMMb;Loa?bcv1X1Eujm+x}2vsbZZ|{pef% zqil8`INT#7y|%rn z`OoK6f0>U@q*`Bcn|a|aHrsV)uvaTqd$exn&7r&m_wR22XCs=WgNsk?#|hqgURo{k zn`cUgn!4wy&rdoomv~;MJ8lJW&R9No9`l*&GoMn|uhKqG1`^v_4u{pLDH)jmD2UF` znm}FGdoppIH*_`wBW?3vfDTFHaX*x{-6}gB_0jdZro835GQn?(z@n2rc~k8ExgS&E zm|U(0iG8qYg{hQ^b8ze48b{HYcM7U@U6vJ)aVJ52;&a6Iond_CX0{v~if(=YUzvAG zGuEWlgni6FRT#wXtl(ZWq?c-teH?JwQNuKq*V|bYZ5~e6Q!3Q!OAjM=_kf1X;A6{2 zf@R;XbAwcTJKoOf3iIiSeyBB*+6098>4tjXL0V4aSnRTE7+d(~_^*s8*t3im5v&&3 zRm^Qvh2NZjVbt5(59L7eYMT^;aoX}cvO^$tBB-KEU8q$i4tdZ2p;k=jcpZ?@mWa_% zHDD@(zT^bJNFPiC{6wZ+c*h)PNtZN-=vH22*c+#Cyl+f&Su_K2Dy$2$e9@Gy&uP`| zxf*AJt$_$wdE7^CJ5P=l#FDGff$>!M1T@#t^LBuci`Be3mYtv0qtVHa>ue66l+pWIO%-_%C;ZP0_Weo^c{|uUt2%+-984wBnU6WGZg+?i zW=Fuicc@~mq=ZW5gfn}K@BHeSz>D(qrlq^@y9MSt)(p28W_}+ECbx(Px92@xOTTwp z!qw+Z(K7pBSE(H3>N>~Td3$knHPH}$Mq!n^0VT^#9uYf%GG%M$A~XhHVE34uV}@wf zx=sbSvvONG&EA6>W4NEj>pyP1`JdAD{GQJ1!^cwc>WxxHgC+ylf~CHrw{4`=k{vs< z4~trsW!{OL3wU#*@%JFoaD<{|Byt_@>Dizo{Rk~Ja~1>%f%ws zJnVEFUR~5RK+guK{EO|y-Ri5anC@G;$h`C4!+6d)t{2o^r#j8_Zp0XP8&-yo_h_Gu zoDTfstG`7u{02-wRfSr}EBkU##T)hHwM}RC67bY081;BYk>9`$Iu#ed5AnQ>l$>h? zxHh{fkH-X@=tZfq%eiz~-d;mRwkKS35=Tl`@7=jGiJMp_u@8gl={Ek1MYWNa3zsiJ zqdZQ--}3BKB6+Q_&W_NIEnlmvfC5i6X5T*X{W#F|@NsP4#kv|vr1eUR64QX52R%%R zr5%0IdpdY9+az;40|UJ;`s!d$Xp_T9_!aXq8gx^p6$n<_=kWGg!6ojKc*#%j5{}8oyh^fJ{lbZ$w&rS8_&}4$$IsXgsBGc zOC)}@8TLdu6J6@}piVdEK-piA8w+RxCZI``HW4h@!~e$5|CrGmcFZRGofOWUdI;uJ zOz@XFGwTLZ*x$D=gX~brcles*E=2j<=1{}l%AJJ$Yn^$PjSgopfwS2%o%tQNkd-<` z6H+zxXTIuBZZmeN`oU-xCYTIm{KSbP6Be|5zXRI${;6YxTaKk!PKhJH;lUG=eJWdX zv2eN2k)cWH{9}1Ztf&81`;U6xSqX10spzzIBysnLPjWwLzgpB3C{=N8W;7M$H2vA+ zCs!QPH+!Clw&&&_EXU}(>M|pm;^qs_39Pt3ZohCQEXy@oiZ(LU@fKgF&{_E^kvRof zL3bWk3RRuyKN1fQzN8*FD>1J}{CpO~9{=#XU4tlh#D{B(-8d$2zUJt^<y`~O!2jW- za-UmkENUD;tHiHfK(4yh6sQX!J`&$H`aq-reoo#LC1&o7L(^u|8$?r@$AhTyN=JZv z>+GZVCLf8zCDskj1Q9syj1NdN$K>||COygJfv-IwPrt&uUgh>Z(~=jpn-TQ9rgQ_P zu@d;O?m|@T>1cCJw%B{6AZ;)JaE7yxFI||rz6aO>{Yk{cS=rPk?ESsWCLGNvj(b+? z#+p?}#FX|+C?L`Y>yk*B#qtF+hVe=aj1Z{{WP-iyxwrg%KHjB%e?(3AU#9!-3-Zu^ zfV9DY{NVxTNtt5W>W7sR>~QOtOyWQ$Ttp68ov2e60f5a>LlB*fsqftUT-EQ`Gq`+K^tOi+A;E%|u0=Izb<+Kfrh>n9E{C&~ zK~G2zyw631k3pF0pE#QEX?)+pKk0=M1A8Yn^SDv$6D%Xpr9E%T?dhz3@LHe*OcC*hys{8P_ zcQ`X<&~-INa{O~0WkG_3-p%yxSa@vZmY|MDMoyps_f>CxFgvWY>y!8f?Q;ifb9QyY zNen)zW22#gPoHuL-|nC>rSmo>1kKBI+H#t5E3{8h*4z_kUbGoUN>VsXCrVX{b2734 z-TjTE;Eq7MKu$i5{b-VuB4m8#rW~hrM-$nWR1RWmGx9h?FWb4rZ&8&wN!+nIrgIu8 z7KZ>~;&R0f2@V~6V{O;F*9#mu9oH_Sqg4`CwMLp#hNv*vfkcIhC0VlpVPuiAxG>+l}$Ocwnq#4a|XEnujU1s z_@gn~kU&k4^JX@0fDxRJ#Xz7#xX;F8Fb%8q=4Glqc|z<^(0*B%zzuWcz>Wx&iz9b{ z`Gy%_CnvY_A~Jy`1(Zl2;fVMX)5X3cvf8dnNEn!%THcoU|9Gkfad6qtAbrDrPQ;jc zNRA=jetRM_pdb=bvbdET-@}c#l*1#HAU0Z-Ti7C1^7v#@OvORn31yo2yvWR+ZS9^ws*=`!>8I*Xl}tTUc!R z&5$#)R3)>QfIX7yiZt!jO0l=!-oR$^cw(mJ-9>GstALS4- zKQ7@gey{Y1l~-)}aD(_zvlklUfbj7+@9iX#MnOaC{jNO_00a{(rEl5fD>ts1QePN& zzFQwNNd1P&3>LI9e*&zxW-tb3fcUF(`o-atwXcqW53Oi!`D9flSZw|foL=o~csT}r zTDyw04uz5BDs6155>|PWgfK`S6#mT@I+Xi1;HM@BmI)FTf-vD4tAAfMxe8~~_hmqz zV%Ot6INI`d2#g`(q}g=dV6kRu@(x)t0R6uFz6KR3mJb= zfU^gEvD~k?x~12Xs8xr4XdT4^P)qUSsBJD#WXi#e`RnT10Q46@mU)m<6>OVbPMnr- zmaK^O-n;Jwc!p>a@K(af<-r>tFu^HAkyGLO%7ymM6TW z>fr=I$Nxl_hez!Ebngf=pfpXS0>#c6(hI!)86*Fu%-;3u*j&e61z`QJ2=M3Yq#C6t zxV#98N(hfNzy4n2`d*)URgQ-x0zZus?MN1~1fQ_hqh)XNXFlz( z-Fu@lyLhUat$2-ia{ZIF=gvHD$m}h))641DZ7h>$qe`1($DQ(0kG>oqLn9cMlFmZ1 za?$QI%7`go!#GBmm2S2mGU}=&(|2vHS~orambTxnoK^1waOBCPrxeygFusTlt=i*X zx<1L?^aNawWN9mirgLsS#~(+@3;R%#Nm3s96;;XZKLIBJPq6mPuK%G0Vkv5@^IJ?{ zdi7o$k$F&nX4?tKBbsJ=!AapnsSk#tl@qc^K*bm|crWf!8%kH45eF6qDjeK!ryF%| zhHL}&$nvpRtuws2-2;F_si2A}UYStYo9Kj-ysr^C5oZdgaQVPUK8DFK0QcuCl3{S& z6y`wBJhJc&0io=}i%XyW*^i!YNIqj7+)#4{ul*4%9IyLWlIkOz_*ps6PA;*KYA(C_wC_AhZFb zWuB*ukbu%ExgJDKFGPv9upp)_9o#nyr~Z)y41kmk&n9=i<@ zI8zvU5!DK4p931)|JN12u3~mm>Ucj$%KeJCDm}F{XI@Pvdceq|u!%}V^|ksBiyi2R z@yHQ#bLRc1Frx^&OIy5j6;A_i1iqJ|?x}qyb$VuXmB}qhgFc;VPh%ftVC?3uyV%bQ zMX*=w()yW(H{F%ji_L0iuODB&@M^Tgkm9ks=U`&r`&;LD&3=8c<&vyi*@br^P==tzufX^fmLXH*YZ7KgCja& z%2)60FX$DGxD6takbaBK!i?s(>Y1Sd6{4xO^PK#H2z zSXZ;9AnE4rG5$7`dIdTq7SpFR{R$vYhC{kTUHx;{!J=uYYZfc}-FQRsd%-q)CK&g4 z*B;urc~_%VsN43^RYyM9)8jR2OSTNhpWZK+vVz;${~V{2jT+J6l5cA@9IPhs2^%uV zkd4QdHBI_DRIw+10LnrKWJyFDd>l_mfbnZpy))v|n@DE6qPEz_y#EBpi+_eY3m$+o zMCu$n?h1h2Zwu`Vr{V#)$tR?8ZXl1-C78kn(zQ^T28^OiJEeCn5j!|96DAI= z;O6FhFf-y^9a6d??zCYF+ep7U`SnBQ{>oym|ChTiNSam$YOq+~y!SJA)P+S=EmI|b zaKBzuJ9}!s%2~Dltpr4uu-OAsKhbe`X$*G8FM7WYu-TBXwiOZoIoC%uxJrtypRW!j z^D$(fEIf}VmFHyJOPkcTrAj~q#(#oH-YJl>1(0mMMkZL~ss7biO#D8G2Vmh6=6=sz{Nmx&Zf$-4h?nvBGvw zr1XjnL@W;viWQ+7l&ykn2meZ-f;O1%J*QP)IkdWai4z1a+7AZcXBC;LL<&b$m{2`# z<~)eC9XM!Ol>}E%guxb4{Fr0l1Y0By!M;$*Mvi^`=?f@$<*f{Y9*$InZ6-DBtg^^* z#3*~TO}F%EB$*XQe)iSzFrLdFGUgxX)`Iq}2nm6e>r{vmZARx&BF6W2DMKH;;VQBM zK6lG={<{~C@!@!}8h~rAkOWVHJUtRcwtN}?IU;@#-3`o#}E0Hw_P4@vy}$*!sV?&5S0V`UBqVf#kPZI+W zIz+7dE58bFRj1rSUAb#7Hi`7g4EnTQEL_<3Y4n!SYo}CFVq22P>=Hqcr#kDhc>SHN zhUvQjk4x#w`yreOt^Lf16Qz6s(MAo=JeIq^?C(pI6r=A69pb?(S;9m|Q__Lx1=%#CX)azaaPS6tYuyhEvb0YNGJeCzkzJqZgg;&sliHeE%E2{d7k|`(0>%L93kq zu)3A(Vaf1^FS)U+W4m0Owz;QS_}*l0Y*jO?8p;h%oE285gcoPf9dP1Z9m6#G2X0^L&c^A*o$&|?amo2> zNs4;&p{hao?LMHUKW(1L_Bx_Oh$?(N;C9qn+qyVCy+$1Mbm!`#5R*5fI@BsbDlqMl zSb{!8$7@Oq#2rmTA^NMovt&{LWm>KBAE7LB9ZHhpi=GCG@|$ney|yniODr9O(1>)8L;=|6x~E#HtEA*;zD7)kw~AOc$l7!O{s-D{-i?T_&I?MzI54cpw{|6daOzX4|p z^xg6y@B!H!?tn3e|Mux4f)Zjmyi3FbeOCrCUp0pri6kyeVMoswxZ+$M6w<{E$ zdm(I}bfE84e>D)C zFN#+A6W{L!-G)L`En1ULJ&@&pP02o%A+v*HIb7wl7JN>vzdxIEP*J7Fzb}iO-D&`{ zXbZg#P#OE&QKKxwOnENjPxV?%rG1!nLcvreCN|&Tde;~h7U9gu9Lsp5NrOywOgeI# z3^R>94{hwoUK2;GKgMqINaNIxYte+uu=3w9ya~uRHNT=<*K`Vm9Xqjfa5it(&qPe{ zaR$c4qlX@|6Pg#4`0Ub{J=Nr4UGHmNIK8=xCg&mN1fr!oqK5X1X|^Qy@$0@`|2G6dor93 z|D8oHIzO#KoWU~q7dphMu+}k0k;#(8c=DtZs}IRBJ$Ssns0s(-5)>5jg94i2ih5zv zu_E;5#$@G@IXkf+q1UvV#)9My&=F)L5wj73_l9aq?h$chtYr^N#HTt3hT%-|S9G98 z+%GkMudvP^N1>{)^Z$C#r*ZbuLbN7d%(88cio3Ih3@BY6rYYmEKhl%+Nw3k>%=K)z zhMnN7ZHvw4Jpa%mV&m1J)(g?o>sO-3u6q^t%!+JS7i6yaYt@fUEvqi`oO+tL+fi5O z?#*@7+#I)`MEL6C{m%O=R(ykmnJpOxH+5e?jdg}FJH)ZRqt?wPbNlU+uwrJ5kcS8f` zHZs>Mn{g6``8TfVghU#gQ?{Z*UR$WUaC`N{nWjYQ2e`Dt8k#@8`Su5aYLi&!PbPnc zkshpqWE{C8oNV4&Ja8MQUS(mYT2*TXkMt4g0B3@%rQrv2xj5Y}GuYYJ!A~UD8k6!Z zK&-Im{=4i8ePaJv#ML}gI(g)LxHk1@;jT|}K86viJN1kkpf;6;IOOPW0HI_O_*^^= z0gTkTn3_NN6 z)MGW2=ksd+794FyVR+|uBY)mq&iq5{Y#?l4yrOPOQ)jR3c$`@ zogD-p3!9!~209ggtT-FMZu3zm$jx=hZjOd$@Ccc{NOIUWu;02#?4WD3emnF;qrg$M1Vx`KiGd`yV65n{Rn6=;SRw zQC)u6$;8Ea`eONWLsNxtR#IR_ZCB}XbR0K35Sgq&X$512j@O)--aV2g74K@cp{iyz zow;9V64z5?OnIq6({?iTuRs@VWxx$;PaCz3ss|tL`{n-G_ucR-DYSkeo@f z(2j2{Z%9Wk=@h~O9TGvzx)09$IKO>??*o>9Ewc@4AV=Z^TQdh)7LNXvt~Z8`lYh^EY`_Px=iolliE3+xm5?j^UvU2g6y3@lOJ}|Q zz)O~qF&Z=sJBZmL|C14p5zmTYajnpC2HCTILykDGYB*>|h%C1zjeeWJt5+;jHcDU* zKc~wR@)f{3OfoenJ)P~jobCBLZNxB)jD;6?neu8?e9o^2VSO+!-AW~|tM2mJ(S^cm zWUSxiWRp#SfreSbP_hS01r%<9>&KdM(YsqNDtz;6H)L4_=WrT1@V|D{X()?u2Kw%i zm8az%ows~H==Gy*%{P{7Yx5M4j{dG$C%G#^+n*a<2%wXNR5KuAaUkwcgADBX;?%(b zTUE0AeH*sY>BSup*8e3GmbNl5@&RD`&ZpOb*U+sBp0l8q699vOvsc4X7cSvZe7o*Opuri-*z>p zqr=kr8TP+h_ikqkFWHT@zQO-X@BMOwL-@VDTh-Ce9XC1XqQrVejIH!qzoGxEFPS-I zZSoy=SibuE@8QGyJW^OOqF|@`7u$&348dxRsI?~8daer-#`3^bJ9f5@E#s54ciq?C z8&_<5{@jOxxNPMhj_j)sg-f#!rfyRba69Ja9i`dO_4qLf1AL>5_ySPoQGcc!m& z|HLz(8KE1^RrKNH2bn;I1{DloIoo|I-3*`LP3%Fw9DSrRXSy2pKykcG6xIoFAefAr z)aLzK1^Q_I=g$UZS;ZF54@Zjt&&#F62x1f~^SdvKkcpRT!vh1Xu7>@g8pjb2CM-x5 z$s@TJR6aY8_?bH797glrU-HEz1mdAjr4PWTDODwd=x=?ieM0N?Uv72mZ!)bv$~^4b z`yVgwd9{XD>iSN+i+(7eH+@JurUbtvt+C$^1@!G8LhFUq_9oP*`rog7XW{I-E;)y1 zctXiwkq~I>eQMKBEfrtu$gTCh_th@t*_xXk6EKuC)(t?fsx&4`21=fFlVAzYxD+-a zjzIf@BfgOLwW=!hf)Uc*T8{zjQ+Jq&={mc^*}+UcgZxviZbf2+zhwf(S_dZ}*&k(M zb~>r>)d^z@SCLx+*C!W0gueB_Q^vE4Y+cu9iZqzQ zsat>JmSwNM+3@8MQ*tk&Z@~q?IaQl=V+tynLf0Cov7NWFf4|}wq+~xj(mMY*f<`A! z=iP|shM@e~+c)+9MDwGmVoNq&fsai1EoYSw*7IYb&wnyeGVXHtUo9eayhZLs@%Nf^ zduFO-#SK@Rx!N|KtysREl3!)JGxzt%cU0QC;f;1W$CQFBR*H2`ZtQ1yPb`&)?R>!j zf#87dWI5ld@It(hG%2?-Y@>Di%3ZaJmI*IR@l&t)OW|D|#(m4}MyM|L_~CP$^y=n2 z%O*Xm(0z&5YU=Mh@eZZmE<0rxYyCNDtccFsdz4W1*5(e;&d^^7_5>rvS3Y9j;7d+x z-nwbO9&7AJVWj4)NgeyfR(1n;!>TJr4=Z6}H<6+t-jEq|DJLq~J@0bDj09$o$Q|W3kF-&4GIW)saFI-=j$R585$aUL9cLvJbP8sH?M zkgiy3QqF(fU3;3yR!|Y-1+mg+6@uwRM|A# z`{3@y-5OIFwec;1d52O|A=e`CIGgS9EcD48DAgy_#Bm8SS#tOOOhu9Z(s!VO!V0R$ zNBXhP0gTJ$$2D&j5LUD?gWX`{-P`#j1YxjySE*iL|8MbR_vHBG-;+lE!;r(l zkYhHdOZUIrdM^59^y$;Wf@fY)GhqUoYjoni?5~z-N9(48CZn-7E%IV|8;)P&-15Jq zQ3luEVhZQBC|il!SWv%tX0rB2gbZJv)q%(e2_hmfNq(wAC+*6BPh0Di?l8d5WBBg!z4ZRivXhrgn!Txtr*hoh4?9#nWIye@TMw^9@n-|i05$H zD}nHkz}@qZ8GFFV!*MXjNFLifG=pxq5G%pXK-C!#fO%*Ixf3gU7}fC4F2jF+1$<=_ zmve*_JU+2;Y8$eQTv(a0^16!$j(EeBWQ4KI-`gFoSzvfm`A+D-DmRaO* zGIm7vQwBx~GlOb!7y6)Fu)Q{b9aV?V*WJ2!vh+qB$=I0_hYeD8l(8?&U^FB3pd z5E$bVD2}MD4j!4(K|w^A?ayV~bI_`v14>-EeB5-f8*5eI|JgfUW_qLl`0DuLwnH`< zRK=Ti#;cCrCuL3i#PzR2?j*iJcT~jKJuo8~(iy)y)WTx}7FO0fA(PEs&Ve;}AWx*d zvRJHICJoVHS|wA*a?|>)iMs7)HRoR4xoMaTEw7}3Z=eSG)+n;f0d3)`Y&hV?kWQ+X z*Dn{pb5Pk-+FHA{-nQNn7y3)`^jx5WkH3tEo_cD^$Z96VYw1v?iLsdq|3KUEZCqL@ zC9A9p(ZTa3PKKQA`~Hrg#=Y}rZX|qAnNYds`|;o)z%TPQ{;~CT0k27shSv93!{z&I zHsh|JsMtyT11$cSx(v?dEB+@E7~jxKzsjERA1%`bJQEH)uwg-Qr!n8(a*!H$(T5It z+`*Dfb=8@YzS+Ku)mAevU~NO1PF+XXh(4)(uIsfRUG(O+f=Xk8JL{53xx(1Cx7Cfz zFKfD;QG)9`7IpiD_hPy{&K~tyVfTbrSJGGGIoO-L`Bnd|zx{R5b>d*_ywu6#@}Qny zUqI~VP>TKWr#c|h4f^{-5n4Sgs(X<%Ar4o{G)H0xz&>G1CQ9WBXkB-PLIzng!pRn= z>|)dWMt6U3VSImT*yrSlDh0hN8jhbU4bgB=GlMN23WD~M$?NH82)};)@svv_`P<$LNL97<~G(s#p)A9O9D|@pCdyQ640b6dE_(B4D znTmzyJwxXRVCXb!<;A}_$%`SJ6w_BXM@GPL@h*+7ot?1@mf_rHN7Wu>7a$ty~f#X-mdCxI({49l4{` zp4R+FO?4PA&5B@jRLdN@)UFPi%TdClNfGW14BLh{jNE$F3Qtv%Lodonsqc0IPK8g_ zUl+Jj-4|MX&e3~$5?@Bp1)e!6FVXs#j0^m+bH`zr{9oF#n&sSD?SFJWR7P#LphV2f zPS8Ewq0n;_rE0t9)FB@9dHNR6-ZMOr zzo1n6MtsbUYG|gNSs*M-VNNr6p(<=UNNPXnm6w#zbT+FKTjvzX{!Y%NSSlH3k;F}1)Co;>Lpovcrl5vgNtpKh$Qyw02HaS>zimil7c5l6!gyjM5R zo;Q#Xh-)8y9pzU&6EmF>Sw8&icbLqAgv=;}46MPP6fu1xkH`J!zcb(OZJR49=x=6M{YtE-dzQaKGRXazXol<8GSkQC zh6ECvoDYdr{a>4nBQzX7*?iv%?!(4S_}F!MG}0lNH8;DhL|~bR;g|`AB@0jH{LV|I6qE`#T*4P;1gK?q6EW!=ZUv@j?kd=kAf>7`b6i1OV4ZG`+uD7F z0nUSl^dQN61$(f^r@h#uS5Vbh)z3Jei0S&+bJqvnH0+b@JgS6g`YihGf1Uyngww4m225{@=?f|uBr7FtGJ|8_*^8HeHEERjdMwRFwE=Mi?N)9J zc&4J&`&nn+w+TPwX~S7ZPSgS2QaENw4Msqm8YjH7vKLe$S}IbU!GdJ{4UN}7Yr*B% zQ^n*D;N6#$@w@|ast0|0D}maIm5sj$^Q0{7Im{Ki!e$5d8fq^yM34Cr@EzgKJ8Y zd^_fYMse_9l|VXKS2$jSgkk-%uGBHuuKi-Fl9jfTSJUw&D|U2r^}~6+Ov=qfAY<_OiBFSnsT&p*7%l~PY;A%(wJTwIK4H5U1Au}XF>WR3v& z+41~ss=wXWcJ-$i-Z9|8;8~Sc^V?sP@;q>UZ)nvJb)@gM#&m*hg3B0DIcw@!GwSEN zqrg8qo-6!4O0!K;>9HLb-*-)Bwr9y9rGZ&wA91V;_n3!`cPmOZn#l^-fyzBEd7fnz zRBBem+n~HWoe69X1Q2rK!pyz!9z^|VI?}KYRJhZX`jE)356$rfg1zVh9APx5wP#Fn zp;-}y6d#K}-R#+0Vf(zDa*R0&mI8hIHBg*&644PpBjmw2Bnk=x;z%b0;-AI{pKK7Z z+=A-PPR+A^s8R3F$9Em6-G6pQO*C$ma^r0>x$@hvgZi4849AR5GAXbc04IU{PwSL= zw#`0>Yb(zglSZeOYpfh{c%PQm+VLv+6g<^x`Tnc;S02rmL357Z=2gLK|3}eT$2Ix3 zQ5-}{8tD!x>28pe?w>T$xgj}Xq;z*Th=6oBK)SmT1|y|obmzPG-~IV~_T0~P-RGR| zktB?iwlG$0K|n1g*kSwzb$ru{0DU{~C?k_fCNN0}&=43o6%3SsjOM(Y_zmvrj|=4k zZNLE$P$`=BC0&-)7$iP}TWh5wN=PlJjeBJLTC5oWi@ByeApkvEfFASV2hxwL=>_;hX)91+dM&J4m>h_D){(MW5N8{E+%2)>;+gyyOE zetGjiKH>taRG!!P+#2Waj616H^Mj>fwh78IV3Y*zy01Rz^Y9s1|tFPARvLZ3!Ju9!eE)-b4)&%XZSUjCIKHZrg!k}zc)7PTAU8={~ zVL?+kL7{Hj4x00OCGxg4pD)fQ`7wD>taK;RQQvQpx1OlTHV>~_)5-4~9TA|*ShNov zl?#qAZL?AFx02~vR}HGBbzQqpArn4;k6(}#5>6us^;+MdH$h*=P_54daf13~{yXA7 za+hfD3IX2pB04#KaOj_KH(b-hs%W3c^&yhx|3SFh8X~>XAnAy2`Ait_J{M?xzNvLS zK7pu6oi>Lfo%Vm1vW<8f!*adGgj%{^*I+@3iR;|FtTE>~<_(A5?Cldq;1R+a1)TeY zGLR86?X5n7SKpSID-JUy6i3`b#b&*a`p}0kxRDl36*2yuafpJ~;ncT~#pjK>UcM!2 zKE0RF{j`NEi^)upfj|NqdodvbA-GcrJk|bdzw=}IdCvOg0HX37p>mN1@*@-v9MxGF zW?hD&)1?3-Erjyca&-bw-ONh-XEhivRPgC!vc7uePhFg+@Hgmksue(Ke$z)R;Tvo()jlN9>;BNspnE+pyQCttppn1psNI21<2p%34HWoOIXA z3oIakyzq1OB=JM1bM0qfxz88E;P$kkSeth7{)VY9ODol`L?=_(*-T zSBiiW4Zw-CvpFx`Rz$KQJY;xA?}geOZOJx^qITrwo*dQ@bC$(0+tz5B2?TT1ampf$ zZ^l!+?;v~6zFv@_>yxGU^Soy@fE9LH3c{y3O_~Cq1klE8;${8&?aPBSelz|h-_?v1 zI=I(o@Y@)&_ge@c*QF_h$4PAg*>gXIGLr|P^x>k2VJOzOASinX%qhJWJ8ZI}UUChb z4~CTX%L4bq%-cRd3P7D>wO<3d0nG?ZBev1fU~Ffj>F5w(%83HDX|mlI@1fr@w>0>y zi}2|qq6iO&uJ4UUV%VWTGbe0w#Sjb!FzhrSc)w9zfQ0ei`BraX1xtz|Z4Ht`WhYBC z{ttV!udb7sKusyA=jPl7q9*FL_Uq)0_qixLMJgIhL34AII(Ai@UwNcuT@!onXhmgo|qG-e@eSE+=666#tg z&AJ6d4$V_t+4eDsumh29G?s`&hV36A0*|?HOSi~?v;Ht8J^K0F@!f9Ao0x;jH2B*7 zF;!#HI4Hd$;5Td#qF>u?0fu1yzi(r1LAhj=!`N2Jm}G*jm9>g~~MhGF)t6OZ51^=U2Q zM~i+E*uZB_x{LRo{%j{&{-mlVrym&5Rzdf#-{I%#%h3+`kmvcMz_buNl0weQ$mE`L z&VKJ8<|AWr+8B{JD=|&;$@hQo{Z$+qyE1C~QAi}J9zuCE2Z}uZ(alsjufkbWEtWhM zVZ01;`us&hO`~C}D6rtIs~UCVW~Tp#f6ug~9(w4$2i!@X%ekkLFoxm%n|Zvg%LK+n zI`D>0Z=@?NO+~+4fen01kaBi{+-r?@9H8b?LnRhx4dNzikesZjvS=4MFPQ)(#PvTIQ4f4WlUP`()08o zi@g2U{=3D^w2hKd2wvT0Y)M?g@1tJGQ!KEc9-%Z*#d($~gGdB7Q!{h$_6oVtj?sR0jX7Kov|xdMDZ_dHsZixYBdpdcF$+w%X*}6K9Ng0j9u&Fr5!eY3H925nJ^a zrm1`rDCDT!P8=e-NEfrjg?Jw(eh*4pi*G+WHeU{+%zXJhp<1QAbw`+5Q4NTo{_p>1 z>nu+s1AVBkuKz1wto38HDJ1PLzut1}uwO}#k)^6J^0XefGgZ(5#0F^?z}4V4zVqWE za26rEL{cL$7apuHgXI5NmSCr4NeR!1zUKCm8XX_ba*b(p>epQUJB185AID{XFAtl$ z|9$GCIPn(Y8deTYa5(iT{}T6`Osr1yqrL(gX2X_usEmM;jjLW#sRNMBVx}xfuyR_W zu~I|5TU)N@FVs`stD*rrSgYWQ!zn=12xD(Df|4p1KxIX)-F3a_#zWUYHT=CUIg4ds z*~_HJDBP-vyzGKujIZ`Hc?`65a8Onc)LNsz)1)@U*$~M(q_xqSV70()*9!Ha!m8@Q z8q8P>^*l1BB8ei^B<6>iA9KQfnrFgirvDEnF$WKOkU6-DA|er#a{$(2fMvsTtUEF@ zjCmcAoU+Z1?N8DuPvGM@DQl=(HG1TQEidc>E*t-(AZCHwV4z5#IRbBrlWEo%7Z?Kk zHbw~%L?-m_=kHt7NCwwcKfmXnV5x^Q(P6>zEtnza{*rNj082L@;^m@Wsj05>@F-et z#4%~Bwd-dM=^<(4{Bdj6fN-;T2WLnJOc5dioFzTnW=icg#v~A@RD$qJ+x(9suSPdN zgdSr?rPLyxPZo_K6|vbnx*v{?w3p}7vH3m3^PPrn+BHv&A&l&t0ht@|z$6tXnt4HFR^r zB0LUH5f+)KG;mgY9c*c$Pe+z_^oMIv&$D1-&qzwMFH zmg=l`Dh0tox^Zki2h48qtlwiZ*>cr$;fa?iBr`WsTis;?dCr%e3%F=GZpldVOu^1e zgCPOEH>vc=vDwVN0AiTZ8c}q4&5_Cpc~Q0J`Dm&7AkKh{!4)WOz~PC4As1(YUrUhypbmU zeq7WZY1*{~58KSTr>>Fgq*BHx#p73_{|f-Rq|E3iJen@K=;VYSWEaX?;J>ILtb}Bn ze*9M}cVCsmxjpxicd+`47o>rZvk^=4EZ4~!t7a@~ zL7JhAk>LzD$u$@N<40ZPe;{>B9y&D|#!vm3Uj-H+l^byUv_dGnDWHf%(_`V)hgs#J z=HcfU=c!%)VyPA~^as-=5%R$G>qM}8X7#_`AO#@s^xyj82es0a(mt07(5>r56Fhxe zF)!9QFgbUiS5oAm#Flu8Mo=IVGZvd9wXEAD?$p1a0`H!2`M>3)`g_ zS)APC>OA$4c_d3w+Dcu4{u{H<=eodK5fo&rm?4T+DSt%{YxA08>Z!FzZaF& z-iX6V!V*I>_mu`5Mg%cR*!m(LIFUJ$4#ZRX<$d<1um8EVp<_7)aj^tHq=b}N8PfLL z+{b1ED(?}q$t$jn@rIJblsV;JB%#OWq0Y}$~p*c2{_=Y zVT;`Bo`MSUn&B_TmRK{$B~I1;$BAcyTY;ZZ3mNT&=~npj(FU46ac(DJ%q@oU*L!H5n%-z3SCnVj^!TAS`tztC*cmp4;+tb za4ED{6%DKmArTI<5|YV8j`^#A*Qdi&2p%NK@m6BZPD;zt2FA?U3i`?=x_%h4T8L*5 z`+ch+RtS*L2jLE&G^LO@*XX7%YqEar;ZRpgLk`^(u(HEhtNt6)VhDpK7iMqI0@>pr{Oc?!I5m!Pa!^p)qHbFm8lyM0XRne6{FwRB#sL^=(|tE!f@ zu>?8I#M%9X7Ff11GH7w7%-{NWnZSLI(0DG5A=j7F)hAHTeDay2Ab87~6J$uWIffZh z9q0u>1mBbAoI$A~AL=;U4EX{RQ}!x6kLD6d#fIL*Z=UWgbQ=)DSZ8+PR6OPq^QnZI zwKBHUK;?G60|u2rhu#vb_3!<^PyLg~ zH1y?SG?)SW5c}+36Gd?=9i6UG@bk9JN>>{~#rNZn33V}*^}*$4yWk0X$;x*Ycc~(2 zAaF;*ZsPdTfSr%5&&S=DntJT~_^X^^zUJ2L?X~0hN9-Z;KeiI3N#o2{2LWo`YhAaIo&jfM6Le_xA*-n*b{E2=D0{vcGM`xT~PchCJA+?FB>@ z#L|IB|KR&XFF_n}Eb|-HdZN&0x!3^1fC=4-b!@25F)^ZhF?Vy?9#$+1T3*yYVAhfZ zP1k1;*8X=4oeCuL5hq?Q-ZlG!nwWI{iB6z~7l)}D3{4Zu-E%W)R?1EeML9EAIJc(_ z75Tw2MyC5zqp+@7)L_?*+2?*s6Wh#|Hiw5C^P6x>v@_7Ih!zq9rP^ceT~eRqzz%-x zEy})WOAX#HI{RB#pm({vfBf#;6;-R{YY4x|K-vo;dWU!;_i9CLUz=ZF)&uOEx@_0; zNXl_*Eo{9e5)~4$%0%r-p)J)*?5ua^mj;QEpSa?o=Y0zFoD zQ*Rs5VVm9k%5C-;YdJ!s-2i$8{9~leb%S=hU-O9EfT2*Iiz1;lMSg`klPG$p zyh*(68j`gWo;7{BeSLlv=RWUxsePTgUphbS3T)&D^*+(QCcH|)gx4s6_q4BDU1P5W zO~S!#oRxKRkyqm|1){wxm4KKe`91)e-<41YCpDgbxs>phSp+;*I< zfhVQFwXfOeG@X9Vor9}h>wD|$HpRLuQ_~~5Wi|$z3Z&F2N9&%8n1-iG&epR1+1A%#Pl*o<`6N7@+$mgAfV>Vm-6aC;k~}A zi`J=C`U25Wr-IwFE44rtP0QMN7^03oBw{M2AnW$^vY=}&{~m)nzt-zvJnNq0Dj>te zt>~Ed^1sft$#(sW@gvKJmggJrc5VVq-l>OJ0SiOi&_g?!#Tl`YBY>05yh@1<2Z-)>nH&|8vjh*L$yl1~@eu#J~#EH%v? zz)&}zYKIG%w6ha6UE8LlJxp#430iYN{x?8Gte!-G&0rM%o;m+}w?*s~yis-zGkK#r5#mj|{EZK{+wDGf#MLhkKIc+EWjTzi(aVTUw}qVPc)doVju2b{$rERSYC ziV8J!?%%Kvq9fwnu_Nf;ft-h&{>{y7Q{QLymcoGtv(^!*G0u_`lQA`hqE1qbjO~Y_ zMo@W~ZGj|iY}kZkY2g?UI_dDAXx?r+)On%{or2CwCv=O`3UVt{ZTs8Kkg66g_D>hV2#K z*Y5j46-Q0tA8g8g9r*wc9m6jI8uPLH-um7U!uIAyiYj-HbD1EGjq3H)4*R|d^>f_f ztw6ik5rq7I85$RySxG-(g>2{SkHOs)+EY08oqcA4QG{-d&YQR?PUkjQG4Hd{g`+A% z6Jfp%M&e|)Kqd2MLl@~MnO~Vm7Lp*9f~rPE4Q>q6K11K<07ti_7W7aLDUW>t!^ED# z9zl5}%5xcBU{sVn@83F}AQhha?A{nbB4)%s`nb$Yl!t~K@!9kwDQXtuvzv@Eadvhl z8iPSScj4;nSAKtVdFAsDsd3XI6d&z*5h0DUXM#ba`64w%6x|EHP|E~Xt7%KyjR4#c z_Wpe38#=zodGXezFx>B$G-47glVl#4r?@^%%*6i7%hzr5rX>q2X;l<*pM<4s0IlYp z_f-BkakIq>_g7Ho8qLgG_ELS!=PI7eCJ=P6gKwA5YVzt=o|5eS>~qwT%smB-!UU8{ z5|T0az7B^O6L55&jCFZT9P6Vt>{V6`UEst-?LLV4*HLS!bat5%o?K|i{ezq%3 zdYxDch?m%Q&(_iZabi|_S{|ZEQOLf+FOiA~ODFl=FO)wu1x@{}vo8TfV@_;Xd2qiG z;H(x7@iVYAcAXQm_(KePKkGR91;9?yY$blTo4lt+4WYNw>f5`pA4T&XZT)I4e)%l} zMqTs0;1-G-+a37^QWmD>@N?RFXPWrNqkw5}?4P7MFD&c+BA(roMI*PNNnWL;flIY% zg#AKwLCV>Z5*=gjgV|(;8vVc&S98UxG$e=Z-o~efAZxda$LU7~4Drf(7N~fkbq4Od z)W@CLwB|W5NQ-NKvmS0_o)TF`=I)~PASNIpvm=M)S?1N}<$t4uH0QYo{M@xv_i^EF zuGq3Npo~q&0c1pOA7n>xLf1S_WHxrD>?nraU^@bwXp)qrHrZ8zGAt4Hw4BMlv0y@ zY+%5wyClu-sPK_=awW_R6YqQYSOtvxrO|yO2+RBUoTopRgblKFh1A@WGnW@wCNCv= zT6PlklP*`(J^ZBgw$o61%Of>JLmKz)Z(`<@C39pRLFS1__-syCh&0|QTQTTM}@r0KxqFupkDpl4cYvv zS>ru4;?IR-`3=?63@*%mclrT2y1o{K#*Zdy8VS>MyTUgm=ZDa{xIMa+8SaXP1LJs5 zAu{gJ_Zq1G^ypuzN#Bwh-`Zar8CJlG$%1k39_M|nqF<@%3@Htf6_ybeyl}xDV-Zov zNY{H@Hgm8506fF0u&lx=lVr)bCs4&u>?}Y4<;s(xlp{dV?1lsg)lD>|Isl{ry1k$; zO%2W0?NBbmEcxh5W(fVFSSxU`D1Fv513Eccd~Q~DWaQs%JGdeQNWg@(yb{8^r|J<- z;l&k6?@zHlj=>!kb}p^qSLI9)dT{9%YvN1UhS>0nR)IPb=l7ly4C!vhr|)q6;II2lN9jK(g!`&Of~nZ^xBPBoK;SY% zGa^_h7o|Yj!qMC))f5HvkHds@H`P{mvt=+;DB#G6e5}I@hG){wErUWl@9mVJiekdv zfWaGU&rc0fDd<(7?M#WM((@$AVQV&v*THLA;~wt-?r}ol^4#^Sp8Zb1N{#$iYTSk% zkBd}`phm;}?I&_JHl@M1!%76<+9|>I{ru+Q?P`6VE^URdwMcW^oCXrBNw;{&5{ebd z%9i|S_s{;Iv*vbVy@RAZ;y3avMGNE@N_I%~m_<;E7F(ojxQ;`LAUO)#q&bT|4ITD? zyCAEa{-*4W1Vw3&UB)3sL1DwQAy$QX2BZ3{5R=OUW$D$mTej~bf{g{>GHuh>J2hC3EzD7@T!w{Bu@y-9) zl+H6OA7xUVn_p+vxwp({9qIC$i%{!*(9e3({Ubeb#^_q&7Zr-XMDXXye95C&qVB<| zC+sTxhO(R^3#1Kv*1roSa=&FU8T7l|^10agl&pqFT?O$%DSEc|7^Jz|`|omy-7!$A zL^HwseGT{dLCRa-q>RnQtyuXrrvnEe--TkQaA8buEBL3c^V!2y0Z#l0YhWC}-oJgO zIg&mB@|x%v8rT!A*!K#TEUMGt6!cZOAasa+4N(yDr4%kEEZ2>7@V*J8V1`w^87w6Y zDH4&NFXXE0Sc``%jzoUUD*`{=g(ZI*|IKJ$m6V2Sp2NZC5eVHCA9g3W0~N(^w`w`6 zf6p)W z`<{qlDzm6sgXncqkVmOA+7Q3Ryl-_4B)aWTKAX`;K+9& zkFbs!R#dl<{Xk`b^lbo?%%+5j1xP8&b7PD&f>;?Bc+gdTkp3*vmi z6^pTs_(;VjNWP62brDaQ8gg4zBRK|N*bHi*VrIA~WSO9aA z_@{rk4CLZV4+P8#3kv(XO$=O2!vugl(c@HCFCAravR~vpVtcOjFyEafoAEo!bT^q7 zRTBT{NFfiTNeZ=8G*BIkui<9~e2t}esWXw!Vn4dHko4ptBJb{KJiI$zd5U^uiy{Bz*jrlt$<#^Sg58a;Lc4{dvJG zh){Xp9Y;H_iO5)i_LMsjrn6K5oA#Jw$-uJspFDd*l=LuCdm51qQnYop$%oYBvxOV& z{HIa1_~ZypVP37P4FHe@HKLTw`!>3+j6j22FLJO-eVuAOFsuX zxRQXcr8=b8SdLd$JxbAjeTSU}pUSG|^m9^)wo%8t3KWPZ}GjkxwRvnJdak!j7f9fnaN=P?#N}AhP~m7P+x%V zDaU0a{e>;rK4{(wobuwY)2yKJ6nonvq};#%DT4dhaM!|{lbFEG#AXKt`lXNR>AoEb zu?yR*qlH{kgtK%``Cdhmh>aHI%nAYQ6i^;lPVJVW;VU$`M)N^{QKxrXo>-716~qFw z_n_Uu1+2<)^;=wJsbV!=A1V)5lU7Aola97;nwEH2KJ(u*;UW$QIf>IwH!z|n+s=CM z4>n^JFNesS#aeTGtt396%ztd}*t?hp7Vu1Xk&+`^H%ZFh?`HQq^`w;j>3e;(oADkR za1^fofOk(LfRg*o(zqmVuTSV?Y3>xI528rXP+u1XSNjaJ_lW|cB#KMP1X6{q;=w{} zN+rwzi~k0#Yhm$}j|tCcuS2cH@2!W&yFme)Qo-IlW3wANu1|yn*S%7ioRQ3_IrgjJ;9~C#=|%{ybc@-S>BB^H{+%~B zJ=jeD$=>-J_z|dZ{piap22-R0ctVxNiZtkskiXo@+gN>;;tyjo)jeT42??{t6T;;} zK_9o^J5BH^a|9xPPqUzNW8il|+5a_ei}$We;_a%@$Nb+)(S|!r-ciN+}GiZUpPqv?6U5{EWql9)t)waSL3bm%;G~X6A1POQz_hNrz3}^2H&+M4jlZjPqI9erhmc z!s3dx`*fU3?ET)uvc9-q1yVv7Ez!3M0JTmPY^GJ7?N%K$t1bvvqy+j4+B0W8&QgOk zBm$1u=}X87;&8Kvp_6XLwCvkL+b0)GVt`u^ZO?rp4$L^BfjN8j=!CJ^m^N;3s+-g? zwb=p|_pyz^BaaCpDVbcDpm@mony*_)N|0rWPA?1hTkh*E{u-``Y)MS!h`oce=Xa$x zZn5z;B=qku$~?Sg?f^aR^$nW0wF9inCA9tPJEd6sfB;RNv|Lzw({Kr|c4qJt&MD+d7-EjOWyVV5zcXRXLl%&DpqtbXSe^X|p zX*kC%cq)(g%*Oy~C^LUsc0xn$oyCjM=kOd$HPSqf$I(u&O%?IG|JrCeG*7e4{sZ$5 z^LG?jA-Hzc1s0`o1#!kTVj)U#cqT|?O9c4c#lyN6bbstBKcLourr;hGn&o@BL>2=& z2NFL6n0J5l*wu9v7R3JbBbhvdgTuZ%04Q$*yDJqRHjbUD@h+ z;wT7^NH~3zg4QtS<_2n=M)%==S`ns9-YDUUozu@Cn7XuT^BDcOV5VBzJyw;@30)xP zMI`$8_m6?ir2#AP*N!&uC!T5P_wX2?*9}yVzL{-=kJaX0;#v~+ zSOj|VQKMeq!#l{!2nM#NKQ^cSb#X=}9pKY1=O~`s>$yo*Y#sqtmG*(ESO17@RR{{7 znJ9i}#Q|{J6>A+d0vlE)p}1BbbAc3|OZ`ID7RN(P8|>Ckgn7EeELn;s{o|_@isW(#fVQ0xp73Q~)g4g|r|Jg_D+F+jJVf&t*kteiRl<(?nvdtC0z+0N;I$kI z>WKd&M-cQc_&J1y4lKr}>%nZ75Gz2XFQ3ed=|caJ2^Exl*@-)-&@uDoO-NCAsUPS44I5y2_%^U9*iH6S?z*@&R?{vL zbn0#3!WXMk`bIz*6XsZW{ae0UsMxRpbeY`d)~J$1 zuWPM^(&ykGpr~-fY!VE)q>%VQ4V{dCXHFTN?2Q)jCm2{N<7DX24k#BDHqQAjl0RIR zcSoK}@x;yMxEh5~e%w@+7r!d?kVRN$d@~@_l{v)od=5wjLI)ckmmr;I#L!*H9e8gc z?;kI)L|A2Dco0ushIK%+;>SX%ox7CvJH$=w46BvL5M~{Y9Lm+`(J~&)56|4VbB=B* z`w}n!%I-;`vL!54&K3}OqJ+3Q8`tOEby@xpgPeD)*dtF-fOS`0J_my$;0t1a z5Oh!lS+(b=N|~CDt0tWEJ3Je^Q42b;X-{)HK9&xpDcq)jklS@bI9V*(#2}0m^I|^8 zMyoJNHf-F1n?xf6aftet6oo%@&8}!X&KIo;VrHI_Yz4m;#I74|{M^KkB-a-H+(b8h zi#TWAXAFj~IC}*GO3avROm7E->`~U!_S|js*S{J^Ux?fsw8FMQ`2@uRe@>jVr;&#F z)Pvy1$8*;X6uN_;`B|d9rKeFS8t{xZ3C6ixf(}9dc8N{xKnbychMclOLQXLfct6jI zS%7VT=k@uq@WU*@ZKnxC;%=eN_fY3N=UfNQF~Dz}Q=*uKw@4QJp{f^mu_q+??EFp8Bi>M86f3su0+&*pgZGTP zk^3Z==}_G8ekzJ=v*ODXv{l1=Lt^JCnYV@LgDRSts&_@the2gYdF{ZGrX6*p!g2y& zQxnNQO<9!^l%9URBympEdwizlUO{g@zNwv!CO$vf#eK8LrvEb_2NCtG;Gk&tm`BLmD4>kesISk;ez2`lVAH{w(D z3N(V;fw?-PWti1F{5zLtbI5B7^|AIb?CQ?*f`LLlXgT!70{VY05knQMp4y<=41;E! zD@jaG^>Dg0TBC^&s9Z!AJNSs-aY`I&dcm=YEe3%7ro}+m2=l4YOio++g|gm&5c_Vb zGR+(C+4RX9Sc-J>MO`84I2OS&Rd}cF90@?qXFf7vCn4rD_*lZ<-nbezPk5wp7mst( z(I2q)fMm)pS`D`FsJ@K>>c3N&_Y{Mq3~9w~h61YyN8Js7oH_U1jEXh3x*Ajp3kDV7>S=_$~x?)+Kxw$qb) z))itQUQ5qjD;if&ANPPEd=)9-*kB|Q-$-A%$Th-R9J&dIF06CbQ@e?e&8+yYdFF<# z{0xQTE)(Hkd>>4Q#*>^GHt&0P_@cjG)A>S?e*hA0n=Md-+kmX01Rkq(kU<{azs2{Mw=wK9=Oq6~3RJZCflYSf? zZYY%_CR&HLlz)n{mn=pbT>xC84FEQMH7o1YXBz!??{0sqN)(MHWF*F#>G@y8tk3Vp z5}8dO=Pq>kp02YuXHt~g{Ee+ zApatls30Lt#hfR+Sb}?h6>%sJp)Nm$$L#yu4?UEF>X-h#WA&@O#xR9;K$mz=IuedNhs?RP3O)$pqLDY^*9g5b?Rpt3Xgwd;eR!< zi#v#6N8KO)a3=>28QL7SJ+h(RY8NW@PGL`vujqu4YHcgz>!dFmU)E&yBU#2kds>MQCK=GHM5+ znUvoj#Q&cW>ppB7a+a|@KfSKtk5dQNK<00G1Iu1Z-4Uw8SvJg>%^`Nk_4zW(-(f=& zKlLa0%T}%yDf512leM{YYn&QcSqY(Cr$Z#!b5FTx1PYRNId8LBfl;(k_V-WoIHzcm zc7V&WOa?2{lq1(f(IiNF6wq8bfaXxv`KLc;5xAy0jJGqvZqSn-D3F0O0K2c$Fq5Q2 z)7Xy%iWGX}1!vKV((?bzfGYkNcEThT6YWe;(p(sE)nIor3bG@}u0U9BIsIY?Av;-Y z9oxlBW%NCBqGIpE6R*yQuStB~pPnYZH9FJ>%4>6eI7Bz^k6ifCI*|RMOjB#rRvzEf z(U_>`)M^m_gdZnlQeoz75PHnu$6|I#@mq}3ldX5TjyCxXZz0asJThTyLKa>0_Jv>M zHJNGd2K`m}G*N{Ca#fw0%y3_^KSQYf8rF*Yl7F#Wf{&{QXUZ$Z+l0>32?pTi??xp` ziQi#WIf~IL>T}`AA^4J$Z@`#i)N~Q`Z#I)8@v>${I~+a2dLG=jk;3CBb#%w+M+&fP zeskZ+TOs+U*Ix=?muEQmA6fW76cX;!W5YBuiT@jIte0St`LM2jKd97bukZ8c|z}%*{i{p*AuF%eyos|Rs)1<34xaIH=Bbj0I3g}@WkTwOPgj~1Y z4uM$tumHNOOY+(|E&ZTrAJ-wBTrW(N_TTxhI_a=^3*%F-SLjbv2%7~gjo7>m6=F*7 zJV6A7L(TpY=iwnlsc>NDWc?Dx`l@N`3R<3((;Jv>hFK>LObWkc@K~rQCTu0%eq_Uq z(gUkilIu{uu)IfkMoq-?qFq7Y=WWWPc;Ep45WsoyMd#C^A>4LkP7mtY?F08z$roMqne!P zMVe<{`>85`@lwu##X=nJxj@NF!(auQ@l=A1G^JzZ5^^Chp7%8H+u|}y+#>yM4(*_Qqy^yMJp7}V-y0~Zk4SV+8l^4GAChC7KibU#1_`{g^ zNoi_LS`_6w!2s8r8tcVj#{WCFaEc<2{(ROQ zAEGqH`Nw`Umc?pNboI?zvzb9jrS_>!%B`w*7v?+8UC!L1w=8muY|!4*^FSMGyZJ1R&sR=eDj*bI$OCzz)(l z^QAb{3ciP+6z!~crG8BUtn^SsQ0QN-fMULRmwe#Omxl8CUg}T); zTpIvN1|^g^EvEYh;=%g8R|FMO!7(e7l8n#_GaM`o*Q~e^-jM{|Z<(*JgCH0!Oe;6y zPuB8)pqZb3P0Bg{PxaPnHo4{Be1U-|uz4#1aj?)1=xCoiQ1ea|?(|=9qXaubzEXG2 z=)M#}aC@7&g|49>Ir{T=$KtW#y){dsc7}^b))Q%l)V8oOO+@r7Vk5v!+)8{7+e7GS z@6S47Rvh_0ZY(o~p4|L3-{w<#1o@bH9QxEh<=P_t==qfKn(GouE$eOPV{ z=8-~?20v(YYJ@S(haVSKnT>NT^NeH+__^gF$*$7m?bcz66U5dSRPW!imBHfZFFj69 zP9`b6CQr;A81dhLh5%JXf9c7P7-THfT3JM@l$(mF!uN&a@$DBaejFfVi6Wd_`)u& z>}{~^_OH)u-57EnVICA&@7hZW>VL;*HTa)7e`V^OoV+u-0BCpH^X*x@&a;z()(~L829R4fq>$e4v46pm~ z^t?q5Hf*w7D^?N+sh%*kEHvS)&tuFtRI2>P4#Uz@JQ5>gBltJb+#465mN z_JkS#q6Q{X1PM&AMCh`{jf_%t_P_6*b*%i>75@;KY=}4_P3{{+`V^1W9 z8CI}2osFZgD@PH&2pIYoT2Rg?sI2b={@;OE{6V0D0MkQ{2veB2PFFQ-kaJsag|QCRyH+IZC!wJdvKlLMarW4aK*TB`0)&_wPrB0r_MCk>rBVLC z?rWd1{kxo&qJf?H^G;gwRfzSLN7g@@!3D8jb~KxVO%f=flX5(b?$v#uqxw~F?Utcw zI61_#{x$(fM&GgW1< zUL+7#yf*hM%FbIpz4!Wm3kC8RH*SYnj^yn?gniI{;^Yn;gdXDoU=U zdz5#jQF}AKC2|r2FU?P^hdUf^Z9ib%yq8Cz;;82gsh||CMtlq-2}iEgNZh`ph`@^~ z$ss#-quh)dSKW(oEO?Y}j;T``6dVZ*=JCug-Dz_8+I!l}%NZ19JeVXLv?l8<*50p- zV-Ux7M9_Wv4$zr+EA6{h$JOS2ORTM<5+o~EoGrUqL1TR&OER0yF`wO2YTj@p+>u13 zQ>{H_aci)t)$7VOPUaJ3U$ms+UP5O)SG^?g_;YUT{&eM9{%rtU63EH+DXY~+F>8vL zhUAIn_VZA~ahlhzwrbhNcbOpjJVV`W_rA+jd@T>K(T+iTuB645w44 z>zdn5$uIL)`sUbz74%7?E8lUGb+i=Z zO&n^ke1c+E%}@4O+0Bczbq$JuTZCre!Ybb${b1fw3CsFvTcr!uv%A7sv|n3wTq0SN zJ7+f0>M_Y90WMIr&p#@YtSWtt9i&J zvGq2i*t;_YCZC5cxxchu`eWgk9JaM=?R#k8xVVoXZXk@YZ@fL1zVIx*p~e-oS>Bss zWBZdkrbt8elk8m%PEsOF@f%oM&s62t?~rmduE8t;-C425xCBSbBS4- zk;>kO?|quEpOlb@mF{AX3jb+-Jz6EG(C3?$Y3iJ<;-vdbV3*pW3!qlmgD4Gk<8h*1 zvezf|ure6g<%Wbb^ zvGXqj25qWAn9D8u2m6Xy92QRhWD0D+;3%23BqM}A4QkRA2 zr~L;X4s4Gp_0D)}Dbd`iM(13Sf3^0FpD49~r}Qc=q*Pg)Qi>Uf82^rT!SQ`>HEBhf z0D2r;Fmrf$i-nkA4ST7 z#rMCZT;WE}{LmQ#*USPb11~(CAtZD^qjt$JPEb^^*Lt>ntH=~0Gy__hWbJ52zCZTf zDF6d>!udfEi0Ie_rkVkyUG0j|QSV75QS_B@VJds}^tbd}Fdp4YM!f<9rUE*wrB^WF z?e!Ml#_0I7Dk#G%fqh3#_|oIt3KW&m2TG||C(S3q3tx%3W%|e9@~>Y57saxFX7}yPMj~EZ(3kGSXFZ- z&+B4rW9|N#jO~8x0) ziLD)}6TmjUpRvvVe$az1@pS;(*@#%KRf=b)vD;T!LydIdwGAuYOE?O_KgPb7lp^cK z896^j3(;EkSju+}5>Kw3NYv7Prl=jX#% zl78fERpB4_jYy$y8QBssWY}3xx-X>)VU3%7~%>JOT{j_E?JWv+yC(7N4wZC zRMxH-a#n{MTNK!C6tzmr**6(mF1JfhV~U^9r%EZbOv}zjv;2N)o!lN%M534P&G|!i z+;(!i^m1DailI-%CfgUtqixt0xjprA8?=(K9desCu&qvJ#aUpxY&uv>FM^@f?Ng$2 zO3^AeMA9C4t7xP@PGexZ(MF2bvR+noMMWSQ4@854B)2J|cv&ac^{5f)23Ut}a-9_! zNn+5z$ebctMakhJ*tQ)Ij7`wl+NMrkYM1IP^0uY2i56>E>g2Y=ge)0g8`sIt;Cr8R z@+C$DQ~ZB);G@ znFo#tmbax#j2GW4p~Gw_qhP2Rm;m}x`PK8S9b*KsF7s*Ou|+sCeFe&e zh2DMkKDvA6br0D+#4dElZyi!PONZ^)M|g+VcfE}+TECHY_C7#+bbOZj$DMZaT1!%V zuy;#rLx~2q)mad&fVX3tz94L8C43vUvof{h!$|+RKWt}ug@+v2MvaqTn`!t9z;<4X zUO%wSE8P#;b#jn4yvS*AjcDj%rbweJtx%j<5%HX(|$>h8CZeL-Q^ z=DMqW<+k~Y0^3{8E76@s58>!*KEQH`m5l9twhHZ76TJG0D~;Zj-ZnTOmT zwr!&b#zm>yvE7}2iD;Ve6r<5X_k->E@3UvmY81cp5lnP+9j)GH>U8p9WAETl!4Oz) z4V|)(8bQ}p2ZieJlXPxGDz5LjW3zR1vb=Atz0vI0PC9w;n5ZpWHtqnn&z?QENG)q| zf!3mrG*TKS3)e~5F#!dP715E*fWXvz5%Yf&wa#k<;M4>dpUYBXs1s^A^2RvfPkFNG zlv?S9XEcZ_cLs^@XDJcNW{A#wfc}&sUaGp16!$>933eRIA{Lesd-JGZhLex?eApi3`0_wgSjmmav%rY=)HF_ z8T}wCrC!6l=fJi+7iEJuj8l(JP*&2XXo*^jwO-8WAd8l!!dR=%W^tjLW;krawx$Ll zZ6%EL%=Fb*Dq&QZ(wBuOu)W^EcJLKfbX9Y7+8PEkBAT8_?x5x8l@yO=*lPx;te9tP zL)bu2)CIPevwJdMrBb>yFr2$%JLf8wP(ZPJ2)aoQ_PXsI_$1CR4Io z!@#>#Q#4=uJ$HPL?mTl^{(a-wlXUCeS#u-{Hg=fSoN#xo4Cch}FL6vsA{r!N%Su2_}Y zV>@HIQ(UI5q0186d1GK8;qw{Wxy9>x9QVa`j+$cKj_oP1?KM|~W*brHUQ1xxf0qn} z?buF6(EVbYdTh7Ju}w*7gDJu2MSip>OjfTUO3s#0 zIfUPo4KQ2tx!JR^d+^}wyCQRn$p^sT)ojtpz+wMF`mtA~>x>o#C zqb%$M%7K&@I#3I%cC}Y(s8mn(-(Og~B6y(x_8P$Wj$m zcOZ)>g`+G-?}6>i-+6COoH#{?5ASZsK+rO3E*#q>iUmY#Q?`kv2I?^XA~cGNd5v8{7%S|63Bs1t|5oOSZa3>5Gv=;Z1| z7)<%Ev^3%~-;=YLWr}om8~fU&^#-=d_W+p>`I^2d6zQ&N*oApEw$W)>@K)14B|b0z zF0G5IWu2V$-PI5o8FIOsKXJ>C&tLebM~p-`JV7K8Mt6b;Vq0XbN~%XMC%M1 zzQ&m|=j8Xtjvelpi}DpMenp{djx=G7Q}%YXM#!Cog0Q3sJdb#m=HGqr#NA@V>>fKp z$7Vx@?dq$BnK{8r#kD{4Gu=8Xe|OySS-SF(*U&Y)hiG@c#$ETGp!eT+vt3)gl!xZC zJv{$;>Px?H~G~|7GiEm#^nO_gVCkmwZ)srX0Th^n6Z8PY^eXrN_3jVQ|N3M93mrRp)Qp%r=_h{j zUyCvG@^Ab)`lC1e@r>&o`l0XtUb^nuYs?5Cdd;u>1|6B+PcMGj5gHC0rb{0AT{P@o z=5lF?ZSa#Ua8(8wwuk6eBu0Sk!G}KhVY=Z1AEHlv>QnM8hYlSS1Nm9c`qG)Uj(73} z*Ii;8w6in}Vh8l~>R+pZSd0V7{m`COgBjk$26^7+C5Y#d)kL=Cgru^3-WMGV?W!W@fpq zPFbX~ZIj!2|6V@bzuXQ5^#NgyG9?v0SJRDV;i4?M?4%6UjViX z((^X4&0XSnU9SI4Q=hTY-~d)bVJWwj-jM3o%WXGSwqcv~(QPwtsCfhd`viR9nPDL0 zYwGtS4QqdFTU~P7ZuE<@xD<+%cIxCIzJrEXz;<>VcG$+8#u8n8ah4o4cKS5Ajn|T< z!a!Ygc+` z7aaBc|C}#aIxD@;OUGw>Z_{c+$@fQWx%aQhnp?whCVWRrAo(@tlk+&1ky0NfjyTI{+cYV61IwPbP-1o>R`d(Dl7^m>Cj<@71KZC37f4j-foAN(NkUSC;ugcNw6 zrE}PP{ZF1bO?TdU8(sOR*^oJShz_(lnseU?de;X(LXW@h8oQ>ZKz!oX&(Z1GFnsc3 z9!Zy6aDlAr)1Ui1-Eh;#=?Rax*1RHx&YU|-w|xF~d9-I-|Jd2!hyihYjgQPm%<*H# z=n)TnFddz}>3khFZa(tyPtv`oPRV^Aa`|OF-7oN(Y3RQN+nEu=khy+dD=U_zL{ksm zSB{k2aKne>^Q>_G$dCMEzsEoNM?WH;f8669Ll1e#Ro(gU-|v3+d*#~v?-#!C?}$+X zW#wmo_7~`uTRtP7yY||vXJh4sqL6V^=2M@#h2HX(KcBy=k)l_<>hH}8-qjtpB|2+8 z@Lg##{t(#S^F8UXZOVgq@igbf`TBwFzSaSrV<@lu zJk?SavH|g#&)iDC^;`cp-FfF-8~cRoKj%5mq?f+*t2>#+=e)!=pDzpRb2G-EaO4-T z4dqGBs+Qz|r4(VS8<7aUXO7f|;t+h1Y5I45=Rf$lZ!_ficgK$(rRt*2kF1xJ5Ht*pt{nG!j?_TnY_wsAL<|{j;bt$)}sdb9D?^RO5 zRDlcm(AsjXR{Kz*xe&0uYzVS+IKWXTG&06amh;N(g@VgYI_Mrtxvf!`zT*_Xme}U+ zWh3K(W81Kp)(6?Nl%={*@+c!{@P6gC88JheCQq(>Lzfz9U%BnhzXyhGNxgLc^mc5^ zGgxg2r=8Z-;0>FGVYO9m1KW&Yq(0>il6-jJHoJ5*Lr(68?QJ@F zWGzK4Se)-fd1!s6i`JrS0iPFLG1V;Q^+50GKD$M3V^90%R=R+!hMZWX$Xs?R6x$%o z!_pE1rQcdYmpyUfWMAyh9x#4|!X4r9sL_}@!Zylr!FN!Wj!}UjoIAHC zbh5j<XkQ?l5DDy&D%Er4ygMjp~e_>o0o{ zT`)&d4$p=IM^_Hbw75I}x%B8Us+V3!4;^;sFbl=`8YgED{H?d&L0|mnN74mHj?9-i zLKn>n;=>JKKpq|A-Lqi z3uN8=y&G=2nI17K{7-nqHFRKpHiWPb&)(^W&e!KnzvAMHH3e=V^tNGpsC{7|_9SDQ z9NWDY3i9$D@A!XbqZMHa7UhMhZt=*dSqVKYOG3yZpOPfBKf$5V&LZ9)DKu!T0^EcfOnc%YS*7 zte3z0idTH27)iVH86BIAyazw{iut~erw@GKgK|$chMw{Cr>5FFC`M3FYCK!QHt2K% z+g9^5PW=G2OlKk3CRxMb*(lC@1=!9CDE2*{7hcm=Y}fAo!L#&*vyz_^FI-~#g4wWs z>XW~S-umZ%LGOCc`{*y;{tk)Ayz<+>m0s{=&y&v|zvx1G?4ut=?|I+*=+FP+?ew7! ze`NmoZ|IfZ_O0~nXMRbf9Qf4h)?pj>&A$u9YtsqG@3A5J3%~FyvtYbWKF8^TFMPq5 z(e;meEIo3jk=7{bRh~bsM&!;vvlsYwVQe78wAdB(5zwo_Kjr z3!8=nt|dGY%@eB9(x-2^MGX7Hb9CZ~U-Se?pX5JGvrNN$7HnuRrrtO2?-QQzIH762 z_DwVX`Om?b4?XEgPqgoH>gI#xcYIskkK1m$eWv{n(^H=EWKUt^z5MB){(0F;em!Ew z=!;(Xe0u!6r?Ho(=@WB=n3cgt&p58bkj}_tBT;9(xw7L5)My@BZR@L1h)74xG6M?L zesa6R>cT2;xlIvif#*Ntp_Atc+er7@Cb!X)W{K^*&gJ@+_-nKew#)gjO|A!R!!{-3 z7dn>HS*Pcet#Vt_7L|WZsh$ccg>oJ0<+j#Qs z&!g+;yT-{LOwkq^5iR94G2ak6Oy+MH+iijE)}SLGn$_z+uDF+ITb$Rfb!gP-YdPwq zG}AYA0AI?oG}C9HP3JWXu}p`(FMV}Y7Q^|4C4eH$#9{V%c6@yaU^xb$%}~Jg-|Eo$ZUybL5>h9HY}`8 zt>5uk8Dh*-J~ewl06OK~O?^EJI!mb_3-6&4K6T12Cc>}EV7Qt(@Oo_l^&P%s57-Gf z6cfCSO0pz#@njH+?i9Rua>x`Zdhp^Rq9UG)Vdx9SCJk9)09t+_hf+a}Uft*%N3IxT z2C%fM;bn1VM#0?FnkOG=}59N`N>S5F`ITk}Wz)Dd30hKrTi z>F=sDEW8w?=$?TAQrcVqfRg8{nhTE*bbgky05_HJ-cd?7C~iPUy2-iO_}Gz{{vK3y;yq=4io&5@&`L zu+0Y31+!su->EZ>?+?!&@dsae$sCEfO1=ZHiQPC~yy5=FW8nrk{GP-#Q?mU{9+A$;mn zpFA5uAC`29+i$;Jyv%QX%U{TQ*Um=ISAOM-)!W|Gxl^pI`-QUs`0|&3J-y~N|L3gy zeOwgCE3UYrqhY--d!f*UiixK0!lHDv4q?wU-NJ(j!@N?TLcq_Z#pmSL+J^0Hpaj1w z$+Om^2I;cPj?*@5>v|?vkUHgwvSPu%FCKMXV*9eoE~W4Mwr`=I{<&X}`@ZtqzlEN| z21*HUH5-}#@PB;u9GUq=djAJLL@)X3ub?k`?lW~CDHOSkZAxBFFZM0u*w!|#st}+E z7TEsfU;Z^w%sD#oov-{>x@uO~o1HWN?>WzT)*PYuv)Lg2Gl_JtF~AXpT0^nR*hc*h zS}tpPQ`w4b?VQ*;TFi0}N*)ZS>{!9SGoFwljO(!B@y)XV4qQ_5+Oi?@vp@Uul9u?o z*S(Rx_j|u9Wc>U`zB@_OXwd4V-HYm&w>1;SJuC^f?%W-jJsEE zr^!2#EqNT)zEy4)>J(b6$+11<6#wM>pweS|h-MfW+rBrc_A&De(24VH<2|x&ml>&+ z&pKPWu~4ej?^RD3s$1l?T_&(ybx<~cPUfQlH}ik%No!8BaW+j;FSjXbF!G*bqcZQ~ z*V%JtG_p$J*w&WItvffIJNUQErSd&82S=8R&|O-r51roNY=>c%by>*QZ8|yGzV5i( zZejGcwm~cTCF=rTFUdwb$Eq@-4h3^$<~g@6$3vB;@Y_=F$}d2}Tg5{V~j3X4oVFDitVO08~UU*MUo zJ2ff>Hwa+iVNIFFKKcn_wNYi)C@t~f*u6kHwzfSDZIXk`SW)U?H)*mRUaKg&Z>Tv z>ys2uch6o_{`Z3~yTq}bz4_UD;@Bqg_P!_t1h%JfJGPnj`QLAzm7$;exnHCo`>~&( zfA-`5l78bi{+)PqIWqD`fApqV;rTs!?|c7i*ZMZF-RF|Wl%6xkY}nBav56*)&5=@dDA;O1wnczGx36ZRLWn%`f+}$kSQ=h$;+ZWG<+jE}tZ2275v1DGQ_bNUE3D|Bn zE&W9={4%L`;nyv<+$zuXiBEh|_L8sh(wBaX7%{RpwRiY^?bp6kB1QcA(1$+kXTHQX zc-Io!x_9w&>`8Q1gFHgbgv-HU<--E={vegr<#u>sy}KH}me>x3Q1Rf#f?*qcIb%DI zSuk+hcgPhtS2%}c+*IJSxFMhUTgEol5WG9f?b2a8hK{$SEXJgHOi_2`JIU=XHLCUU zLHX<|$vl(Wrd#TFOm5Rexg)1WvkcoidS;Go9cOR6J21qgzY-%pnxNoX=cHkcDeI$l zgv^S%&`HWXf)XufzS>FqtDlw3on$O6jX!iW6l|L=J7&3UbUP(orih~Fb1Y6CVPuz#3v<4y+=CWWa`aAVPOleBG4~CUX%4K1s8~b`Kuc~G)Gu2pj$qF8(lSfvv(|_i29-XPM>xr z$OiYPKX;pa_AysKOg+zKa^`n({w$h$oIHJsZkiPk)YC|A`@Q#y@VMl{3p;G9Z(tMK zXfMfkSQ#e8qtl8p!V)c{4fpu|&;R^uq%MKq<5U;+h<{-AzTa@e2kG&TzkdGv1AgvL zd)ia{oRF@QBgQZw-~RUhEZ$&#U2(;OHoTl@d5(N{q<8ST-u3RkcKYT*=#PEuMyJu^ z$1ge$wn@CtYQ&JAcgD8lWs6W=b%G?kTCp!s$`_ zcq;cA7S{idJ?G-Oql`mBbvxny>jmF$@kJI!xDJ{}@SMJ`j8w9=F?iEhF zmoW%zvkuj!Wjp?11Ka(pbkUFO6my-=B4|*I%YcRe)fHUG?cD>Lay!q}(;?=qYYgOa z+dD^sf1%^3MO@8Mss_IrfMtdCXG1;cHuEJtyUFB!$nC*osOWdlZwhti6v}q-ZoJOB z;jHXrZ~7qkYObBq_ca9*bOHlErvsu+MmppU(XlY= z#95|bbO6=|og7^iI|H1k)5-ajb@FNIvj8%-@r?1jxMv?(1RsKt={m3(p?&*h0ec#F zXr65?B99pqy4Xd>oRaD~?0Oi)1?$p7Y$$xMp+swFNxeMMcFmPxas}MmUM?)(tXM0N zhII_@M^^Z~b4jY5fJY)yh++UyCTye`c=}fAIs;HEp{=PdhCgPd00gs6xrTBeb#Q^q zpIuw)XFt>yxwv}GzQ29v{U!B|bjnQ$FAbO`P2q*H4X2zwml<^kEb53%y(7`W5cgvb z3Q`W80gvH5pox4>bB=uml?-kp>Wm{iJJwLEg-;_g?2KL)L)~?W`VreB^C!|4aJAKYW82 zF|3%e0?1v+66r}Nq&x4p)98Zyd~TeTq8o3zS^j=Xi3MGokJzz|b7}hF4%^@d2X^{geX^8*jBWni-UhZ)`*@ibrp_Y$fYLo1 zG5`Fhep=?meD^EAot`%tbZZ%_3)}?CEuyVEdYD9xg4nnKqbynLfGD|Fv`E zkd1LR%sE<<1wGR;zsG4-Y^02qGIeHlApFL!|CV?V8t^Aio}%A* z?SGh!q2r?bzkSBZ@;f)p5vy0c;_I#b?25ACioMKo8|_b-_W8wY6GgN|L|^!x52IZ9 z`S6~eI(5n$WWb=|=NG(Ob!DfJQ#OpOy)s8I`H$QuniF}x{W5(ilt1-aEDatV>`8Jy zd*j}Q+zzK2lwRu`mE<<$Io1jzc!}+tb|keR$)OnXGMr2K^P@!rvJ-L}wgX%7yc*~$ z?o_r9IkthrP6^M&KjWQ`Z}yn1@eN`JLfcz2vr>+}}jiZ4{l z(rBH8ujJGztjT9m6)T+>w6sIyc8TZ>99B6(*Jum2HKY;_Y4E`nG8D-6YV`dO+!y7i zs>}DYWwK7rkAiuKnU-2>9cJ~rs<(okmpb`mMsCJ7h7xyPsl75^7bqFDnsEaB=3g+Ahz=34m+6<^%01M%RLtI8)}>X{KC;5tE9B zD1o(A>75Nlw@~EbgQ&FsynZKlNMMUL6P0ll`3&Ykz_JV_yAMBSBP*f`=B-Z(l7q?m zX$K=O6iRy&Loj<^)KDwVbfC~+4-k$lP?E~zXAum#F1#mGmnH%ur{psB_Xk_(#tj6+HbBQAs2I=IlA-@EzN&q^fb>e&Fn8urfZ&4$U2L|3>& zSyn9aLdD_#T?DUV< z`)9?A|71L6oO8O%cYf!$xmPMjF5WD8{eRwFFUxr@XnyHSzshOcpNo(pyTmpO_+qwQ zoI8|e-UBzPODNpHOumoK6}7e1G=Ij2rYwxrI91QTd>W~ zc=qfb9XWDH>7F8ufz1B{)hCl|MnN?C;#=&(2xC3KTKD1#4+Jm=)e>#q&SRw zs<2C?hi&4Yp^}0WJgBUUV?^nFy8|G-(h0^io{eSa8`qMYRRpur! zHq;k@ti*Joh=BtRgdDq0|D~EY~?&$1-Ob`^37S1?e7Yb@N zW`P%1T*uS`*z6g|79G|-pYyEy?ImXne;;ytwFp`SyPm8v{PY$><#yRCBD z=sx(9D$btvS|ZAMe{!2=-*s}E@lxE4p>@qWt4+Dh2J=pq1AVQGsSu7?JZtVe`-RAD zM5tI!?^xtD^GH|ljgwNsHm14@AI&%`ed;pgG43bMz;zQj&%cfq^VBC`6vPEot4-((FctO>vO21D({=qkLfs^TIzaM3!U5}H+Zgz zTqpO4z8EUW;GmF=a;+ijq1cz5jkScH#GmUsxOq)7wGEvd`%6Q}Q|x8P7^IR-{&}Rh zPvhFL4I@2cTX?u#w^F6BAr^)Vgi1aTgsIxPIe{<3MwvL|CaY?eYF4&NH^)GUarA@2 z>nsAoQO3^Q;Wa_c(Iskkh@NwVfBwOyFx?H!IVT*r#uy z$6o#L*k7g>6QH}?oiHi)7;GzrcQZ5Lj%FX94I)lA5TsFqX0sv00NwGogCAf`qwF8%E)3TABx9S?2hPq)^nLf85_%%z z>uQipo|Y;?e9zkda#1-&otEaXhtR}6ojiGx{>8ukS^E6#x6!wM%Qw@Dp8sX^bHDH! zy7cl(>04j^jh^buwD^NR{G;@$@BU7D{No<$Jovx7>)rGpU-t(3SO4P2=^y>ztEFA@ zPyE!srhoQN{^vPba|I##H`?@QO&2U4`2b%5-dTVvwyjmPy$x3kjPM$nFCp6M{6TRm>e?3QW zo@%^KJ+61okuWx*@G9nj%EmmWfjxEp6EC&2+3-Z`@}<)NFYfSn-F0egaW^vD#A~Y( zwn3lHCm3Uu(&rYbj14K>$&uGmnwlA-kj?C*Vm}W~qHyZnH6g_OYc^NgSjk-f9+K}6Ii`-Uu-q&&=HOUR3B)7AHZISY;?*ENq%R_1XnW>(_4 zF{aB(IQsYtGc==v33f7NXD!oXcU8Vk2nh~dSX%efdafrB4>k1+pMSrqeK99M?74zO z&fJ!JYMbW0)s@jjM;|CUAQbE;6m)PVC$0q}(`PQ7@-6$e8v2yJQS)q(Kd-eeqbqKn z?%)QAM$X2ub@MY|tk&8KRCxciJ|pN%xe-xG$i_Lh#HsSyvuB0>W*{Ty8u_9y2DBKh zbO6Q~Wd@>W()_$K6B9wfhM%43axKG5YbULhDJy))btU(=>)!D9xzpJDXC>*fi!P*# zj~yd;aD07ZG*&>Z3HF?y?Lo8g@S%@?fv93x4h*)Nv=M>j?cykxrPoIKSF_~a&uR{p_F4!J#C^y4moI?pX1!#SrO)XJd-Qe z>TJUK7xz$S;RB&FBqtH*wWO#Lur~~Y3s_!*b_t@c@YUBpfA#Re!}N?U5P~N5Wx}7m^pC3<$P2alUTY&h`qa+_%aJQb~g^ZXFV?J=eA2%k>rYT_KK{ag$v)?vh`vb;?}bOWH~F%fn) zC9+Ojxg}aCmaVHtgyRK#V?B4XQ}F69dB@KPp%h=lg6BVj1|F`$?f$tbrFcA z-1g_=HMh1^ZfCE2K6gL2tm9C$wg+E_+~#x1H5n@NR-MtZ%~_5;#U9GDl+asnHhDl~ zHd2O~XS_7ZQLj8yp5I5*6OJiT_Yq|S8v7s5U{0iTe~-pfPgjBMl*ZV4om`EWh>A04 zFp4DCW|z{Z?m@=q5dj(7;L(b;(7W+`B1a+Lrld=m?AfN11Ka%S3>h364k#-Qw%UzD z&Y@sfT9Xas(=e2NkEj~($By}9WAlABH(v7@H4LVy6{C4U@H_s{ z3{Wnx(HUGY-1z#)(_5(|H-Vaql0;WEVU9J7-NB0eTmU2h3aDt>pkV>iMiYldU8sksQx4|Lg6CfsA#G16A?)U{qWf0}VXGQLid57^VpTAr4_@!Wcg$NP^aXcS4 z17IWMrdvKs#~*Xd3LmQ*Ylg| z;U)yYb~puyLfCVmuzH-bkmj@?R)W|F`OV+_za_7o9|MK@TsVK>1;^auRtrMn&FP3= zJjjm~IQEdg_O-u9-~HWxPa-*T4&&$^CO1w?^{K*)L+K#2N~s4^6b3)yk=Oe9{LSCI zpPu`?=ZLafP5EVo7mD*|Zn>5IuiyM_d4})!j&Grd%m(Eiih!+|1{9q}p?J&R#f!g)H1`i@GeUMQzb@Rm#+8&!{B4Qjt5mTzN`oZsi6&;-o21IIQA7#6W^N6gV!9fK117nc) z`_LSv<7f%j@KB5BiaJ=#Kq58fnEvH+^XuZ{7dd{6favj0cx1DBVBs&^xWOKBc(PeFe|qT17M^!RND~ zg^ZX?V_1t{lYk!*U4~na^O%5a%wmnWP7K<#j&oB)#XZ7O`pge$wqVaCMvR@^l&-7y zvyPjs$2JU@4%>9LZ@-Mg;+Gl<(Tdp5wUmv+36K4#!g8olD-v>qrsNsRmT^ghoUcEo zkUw%i0V276>${7<%F9Y7qD0IPGvn(DYKJJe^K_wcP2(6-bouA#3KXE*W&ly!EN}#a zfifw^*4{b^4vR=k0Wh?71rg%KAyP2XP^JS2*k3)%XffQKvnfv+rd#w{Pv0M`fDUWS z_rsnA!S%&;SO+{?XwkeL*WG#7G~^QuELzVZO-7lIw~sb~kN@OeU{>~AyuTu#$1ySC z0E9B0psze9NprE~Nn8PfVLl{JgPwil=e8*izOsD)a{`?d4c}uTeLjz?XN8UL^Ue=` zi0(agQhv{#vk%_8vU$k)DB(t3#g@-P1io9&**VnoDGcEblgEXo@zo$O&p#D_o2N_x<3ii(ZV z$xnE~xwT^eWOvwRk|*fUU1<2DvT}4F-`K6 z0NIPGO%R$1v1+npg|r2WSia($zK&k@)n7&Le9wF7SN_lc%P^wRO=<6H*9&7+1s>l^ zjhHvl6CeLLdiATmOXx;YL0Vc_E#Ab%PXqhzS?>bA%_q0`E}L zTRxf2bDDq8FOKwZD{+4BPyh6-^#1qX;Mj(8+dFDVqB;EM!V4~tzc0S{5~&l~hHbQ` z{>*1SW4tjOqDX<#^C(ga_uAL~KE3%ZZ*|2-6`Ro&&`xd}Zx^Rak{gjrzvoIEWF#D3 zWV`Beo0e&ytuw^%x65ujU&!Swx3jY$r!{>cayuIlcxH7hO&e?JXy&+J^2)$(ZmRZ_&(2 z-b*Sv8!W1$3>~&JS1z^3BKA=;Nfw=5)86~ft#op`yHDv;MTttPOA5!gV9%ZIizWdr zjTjimPG^Nt1-aeY7lv(q^))h7T(L*`Og>6ZlMjO;TiJ4WDJOCn-bA6=I7LSYfF_4J{d{fTaPHLw zY~L9!hYOblfg&7A>(8lJKJS#6atWrKzYjX25viYB!MQX=S9m`OQ8Y`Dsga)K9*VTz)jIVJmKIjhUWh=OKmXLnJc@3< z^;Y`JzxjZlFSlWS^8EXEe&9o$U>=jF1nqq}UFYcRm3-KPE~gtmed`>dxttCRA-Gnl zrKy~OrB1kFWczgeH4mo?X2as<&wN&DZjK!~EbrfY>Xgvb!>_p9yP{?03Bw%h~pGd^&)pG=`NF=b&%@*gC@!vm~qcE?V|2*bVkD^z9@874x z677cP**fBtpx^A^@a?cj3(~Pdp&)wP;~pbL_uTRBuDkCR!y1Z2vF0k8dPwxPS^4Hm z9G(rShd=ybiuII^@!8q%N4Go}qx|gJWlzt74V2>->(J51KmM`w@>hIA@Iq6FT!t97 zv!3bmwh|u*Oow+l8xip0^7FjpC0|7!``FFW9{RPf{g3ny{=utf3|*qes5t&g^1_BP z9oSYyBe0F(f1^A*M}2s%%+0d{=9+7+PW-TR9`m=q{r?ripKE-^lmZ`6&`-Z zq@ec-m!@XkefJ5v;DRHrL!cf?4fEFB2Xea(A-6TN#8MQ^8M;d8a2s;FwJwr7nO=l* z+)r*pjsj!QN8~(J35j!^rmb=t-^1R(Fv6KQwn0;?-T-mgn{+6-4&P^*Hk4Ty0dRy6 znvf86G@F|l^oCOFbgL}4y>66xxhYz}PPhcq2$umU#Tql7cVhVP4y5$HExuV^7 zrpr3YFx0f(((ReZ44jP{-qjtsnIGkSLUh5EbL@#3gwT%>SqHX-uMd>uHo3Dn*I;4Z zkzAYkb%p+v<+jy7TgtlVkOM|ML|f~OCq!{rL;;<=yK3mIf-Ina3h>(;MH>ons-($~%T4+|^u?o*c4s(I9;WeNH826M? zUkl+L^C^^NAy&aicqqqJ z@2&e4-(Q*MOG0h61T!kK-~ELlwFM$~D&?u$ins4 zTuop8B~PR0KIw_{!lyrlp8D8F(ZK_nav{cm)DDew(a|IH+%JBj86%Ox!T)~D)eog- zJ@I-`uei{jn+Wh{du+EZ$9suw?w-cq`J&m&dc~y|)1?<(K#zI&L+LqR`~-T`{P+IY z_S+~^qDaBOK42K$|MRwY%u3|P>84qc{Mg5Cq>p~|MlnV>x&a4C#&R=f8N8}1!}gP( z@+6ro&abz>?Jwy)?|ENGpD=>B0}#$E)1ao+4S{(RxYy1G-P5cH`rYq(Fa6|C{>*&+ z|4cXE^a=X#hyIpc|As%NU-{)=|!Sm^zb42bJfA!Y_U*;SV!_pd_a4OmF&(RpJ zefkIA|0+7dkqywO@L(x4GQ|f%x`u&Ot0|@A0#s8`&Er3R?x|0G3LTVLDoqBma$8|U zvVd*=_q*Qx9*H9I>-sq|boAI!xn{K{FZ}x82R|J14y;=iKNr`2@g7`z?bWi@>#n<6 z-uu7}ANKtQALTv2<rVJ;h*-iKW~I zk8wu@+Em}4+)n4Ql-nhF=8-u8xs7MW+Htm2O7CnQHtSD2S{rphaZCFr&s4MAwr-uR zZKm^?*8(JgVTo`jpeYe}DHKxH5fQ{kesKVc^)1+phDpsiOr9!VV zGr+LDw}I_#a$9JY(u?z5l~9+3*W?OjSWkVsK7L`LF@ak*Ko#wk02mW-vqvBfvvuBY zFg0|-!a;?CI7HDlQL_B9WxilqZoQL*Ov7r;MpPf&2`e4Xmjw#{{@l5<-i}lNGijSz zNgry>CrJk(s)7SR3?bh6h3%poFXm}xaIs9A$ z!zo_+yyO^yhYJxuev8{Ce{42_K6A@w=nwzk^)gKHqBK+xd<)JobmOWvy`8;*c`g9s z%^M95pPX63Hkt^i0-*PS!6OkJ!?xqat|O5i@!F}fma)w|g=-9^Y3(%w ztU8WU80BGfEU-Q5@L;UbRSGj=s&2ntXa3Fw7wF*4znYbGzV3Iw@;j*3NHyg(|NiS< zFDYgGy6VAK%#p6cYOFLwa7QU=sjYOhFq$#12Co`CqtUJ?s}q@rR@2DXh@8I#-Dez)8SjQM^UJ^dYcdb#&;R@{1e3Uamx7mY z3|W<(Vj0^Ujr`_s{wDhMU;i!Xr1mSn^6OHEbImnZ(pzHrgR$J&2+##?mq_su#N z)h!~06$TC*^n)AVLr43_;5jD^sSfyBvg4xH(L#>6)3-EtC_xfqKx+gX`gvZ^c`RVl zVH>Z&_Ra>j@!6$*zftUu7I;0On(*@)h)7Y&;WunVc!RX%AU2cRp7PDX1eS`F=9_OC zB)A_6_*d3~7zP%E8h<{oXJrF^a(Er>OeH)%3=tui`bn#uCqxVw72E*E@{sY23ep|I z076N(t9{oe2>E7&8U!ESYD&bEJ+Cl))FLi!8O!y|OAP?Rs}Z@dv}xdphEb$27f~vG zt~@J;q~la{vWu=T3fxfI{rO7Y)k2jd-4`ETRwG>y%r%1zFIfw6x2beYi6b96FD2z# z4ntRWAPjAqy62ABK&JdqwB1^Er@`|;5apJQZNYr=AXHB`vHLi47`3<>bB9`5&uz29 z!~-#(^yo*@pYOasD0SLHp1kYuE}T<4gpqhI6t3XPkqXh>6+O~T`^>nw6oIN=BNj!sPK?J zZi&q49FKe4W9Pj%OP61EnXfZaOq5o>?eD&V-uh>MA-wEe^Y>r)!oMSD!Hos@`kaO) zxS7;|5!wev`3zGlW&XED7H1=AHmIKWyl2xN&z|JF=k?!d^+6nkdHfTur)SKOvjZGS zBsEHTSR_&|9NW|6XHy>}^TSUpJGwuG~{Qe)zhQ+mWB<5Mq{1W=@-}zlx z2M^N3zG)h-8ZIb0*Qja{ekl8GwL(xd$Yh-JLc{iR=d?1TAJ`Lq;gcVZ z3?s~PJ3mK$E<~SrU-+4qavQH~2*f#?j?gBLn1tM(9kw$qjmen_x$TCbeNGkR>QQCT zHQK>T=fhIER@I%{wm&d5JGnh>k=y3XH0yzoNyGe-bxIhQvZG#miEexYr%brQJ{2{F z$J7{M*)gwJ)(o{6&^)1Bf!an}>MXbO3wjYTUmv1rQVgiZ*@Y1uaywx=;VH&q^l8RH z^K1Q{jS9%`W1V@Z<;rG@-5<7jLy*<7)HU?y>e%MjM*C&WiyU1saG_;FlL~q2facUi z3Jr4n5XQ~S4vXE0cJO7<_HbIqfXc*dh+4;hLa6o;7pwu^F&HPX!q+MP710wRtogo{ z_1LX7HaqGh92mM|F2AIG>&{N{jH!m44_!e5!%aN_OJx!Ye-=XS9h%p{%*1{viXHx~ z9?uBx>wP14oGi^?Y22W#D4D?srC6?(iuT6TUp<3J6|EHgNWyj4sM%?*T+5zik6u|s z=CFkVCOuOWz6oRIH4d2TV0ro;DN;b7CwxvH!y1J~<=5sBDmnzzfiq2=LGSdJXdN`B zX$Vng;ocUstgSHeNFo^W{rSHGY^a!)D)TDlYaX3F&Ib=3ptt??f2B)ik2Oakc-5bq zl>x3-dDO!m;+XJ=n+?{4u+!SDovogXX@PBLIu_1G3rd93aTa{d^*DCSEHhRZ*BRT{ zqsr~m^EBcc-hYD_0$d;P&Hw#3d7d!d=NEU8dfVIHAs%uOMDv-xWmF29Vv`4!(_ivQY`x^H^<*LBVk7?21RpysB)sA(F(&Yt~~N4c;K@cCv&n`%@LA>U4Kz4=D^y*Ivz{=1jGMCxT=V7>m0e=2AGec$sx(Cc468!@kcBR%FZkEH+c zRo_j=jvbR!#9#gO-=twS5MTE4Z=;==-jCDhXXei**j6FzIpl=8DplrG0SqrWu+4@B zx8~;AE!-0Pl(iA&7c2SP;+TzUq)w@RRlRjLU-LU=@IjeD!_Rl|94)%$nyY8S z|6=oQmmb@os|B{PpIGY?6@>aUx10V2~%={kj2d8UtLk}pOuDFjW4XTjW zo2XKj`Uu&GWWN@y+JbLDXqS#Cq&*L#sh7t;53 z;Pqx~Cug2S6O-Hq?o@6={x0Np3*%9uPEDP_XriEep}5?J3{p84JX)Q1QG_qW>K3KN zbA=MA*(LkwbxXsh!Li17XwkJwp2+037%BYyEVpZx+mk;_=3Oux>M&6r%&Ggw=QDKr zqw}zqbfanNQunf>884(^apXb9W7vBfQLEM+ZEew%?0m<(AhgC_w{>#TE(b}Pe$dp} z$<8mxZ81uqL!wcZb&~6xghW;YKDbUkuESA3F61_ZM9A%!m#2;ibBGlSTqlevPp5P) z|;8PIpV$+raj??({Xs8sw$TKf+7iz4;Tj{P=v)e|qfL5%b)U zAGCXKsksLe$}V!e`F&WcJ?Q(nAQ6!mDMDeve6ZO|&qnr!be1e!rT|ZBjhj6?+3F)| z4g~aj4-l$hqD6}u_Qb*AwN$o|*9k_}TI)6*&*7nDiZq1G1oD1qS`Hyppef+g7r*6D z^m1)^pElNlXpa>ASz$jFk7}u>+8B|w2- zWB)z+RX1~(RY9rN6^xRxU>=;7bHhu=ocM2UnaO8bhZwA+f^0ntSj}0!@PeZ*eDd%^ zmpi~+mw_AIfTLAk`XM0w`#bBfmM zU;oFFqtAuL?A^{$9QKU=n}72QqFg=u* z&&qp0@+1G4E}4yhb2E1DJ8?q3x3e?2u>-6$>OJ{_dyewW7rAJTO8nhpIu

CO*R#gl#Ah_lNB)3&GQv7EYc#C9R|n&4w8aLEJYY>N;$&CFf<1 z5-hQum1&*yK1#&to_kKr4vpi!-zb2FvIVa?)5&Vf=mDH9FuPRNmvYEC2OYFjo!>X- zJxjTbXb=pREVr@Oi2mw8bkk+v(3uv-R-*SDQFLeS;`|}E;q<|K5<%S2$N_Y~e9bT< zHw`2VsjZ7BORdo;$aO>**ljzufm77?qJtZB&LJ74xL2k@HxP^t_rvzM9<8~{=*HGE zGbcZz+Yt+F*I`ITdUl?lAKPm9reUQ?b~4sCBQoYm^E_u90`KRLr+SyJ$SNB#`R`>I zQm<#0>y+oWOfpPPJp$D?HE*aJCE>=&F6&k1d6fkXPMy6m5mM$XKE6qJj=)>;U9CY5q-rhO&auy0ArZ8eaJZKC6 zgT@&$3#8V2P5?}PP>FgWbWOztvlBN`EYmq6(xo7=9^Yo{KIeK6?qJSf$t0@S}o@3-1()2%H+>a6hZ(1lXRaJ-kZ$a;U&;sHjad@YepU%DetCe z4TQd&d!k!0e$1=EOU|`L_z*hSktu*)>oTwJ;@POWgj@KQ5X90#oYvM>cSkzWEQP6f z_GoZrY;@xo-jCWbTcp?wws#QjV2rYlM&mtR+lE(8&)BfN9$jgWbx%5Q68-L<{Nyk8 zjzwHNpZSAhdj6TaN3jQ7JXFnw&ywch%5~cq^BX`Kyx;4|SQR|6<}o5okyDSgenlfq zCU`{oRdK?_>oTlunxwlHYF*^a%{wKGxlS&qCDd*;BXUM|O?bXIXMON9*ENk(?jp!h z1ZzgoB07jUOZxjHWLk6OyOo%+0Yyg)A1ho2Gjp@ozPqxBHLsP88vfmA3OaZLr?Ike z)vUG#`;2-na)C&`f1VyPKi}Dpe2fOJMVa^H_)O0&#c%rhua#@Oel}(v z{isLMtLI1zw=DLwqxrw<+S{=T?kuf=LUB~uwvK1! zoEyw{G>YOCjaQ_Nc3H@zmLpO4*cNQ#l@(n6`RLIj zV!-5S@JgFWZUd)NpBa&#i{Q4fMTr3oEiDXoig+GsS^fl)Cm z&RuB3Wbc`Q z0*dfgt&v7lOeumQk_pY%*rK*5a(NL^7(9Q_!^)*~z(x468KG4(JU~1vTPMH<4~M3B zRNs8mbs)ON9&K*J*BqVE9&<#*Y*NF^_pwcGK%)IM$O_E_&|!*eC3a7E~gl3!%9a9bE#!3@Fx zhfWdRBJs=n+Pm+S;>rPguvgYSEAs|idjs2Um?eA;DH=7@#6a~Nj?5nJSH0@HW@F|Z zbnC63wYBysq*q>f1wH4v&(f*qR2>r88s+Y9k$U19fN7*TrDDmcCu(Y?amtQ5p18c2n;nZ z)Q8GAn3A?UFX#;Jg{#%Ejeo1-!is*4o-aOrfz?~+vvB&2P>y|;JL&8m*mWLAX&>^s zz_)q5JC|QVcfIchsR!7dpXbP>$Gbs_8WF1WjsM+C<-EV_+0T-69B(;m%G{CNDrb4; zZJ(v17apez4uz8kJQYTn8-l>T8Sa8nD0EOdiatrDG^yMb2L61c4@!PN(-)NK0R}QT zEi^L{^SmI;!Eo6k>BteGmz2JO=y)E`J9JJgiHNoE;OpO$(c%yyb+O~ zSr|NuZIOvXoB<`8bREUMkGfY@6{=zT;Ee5-_GuYasA!tdTKBBe6yEe~+(B-$Q-KwK zc0}cRqb#@8iD5xpx;S=$jzGnFqba`THhgP${9H|8KH4bVGQeYgf0q0Kb|S;yR4I^dha39+cQ0- zoB8=d_GF_t8(bPGDQ?(gqd$yp)$5QZE*RfgB?oTU2FqG=7;w)NVV+&y7Fh>08EQEyqQznLbVO*Bp|S}`Xa=Y{}2 zKnt|fiWeSkoM}@9Xnpo9t#-9L&QKy95DZOe7hP8LXZGZwJuK5sHiCsoCc%W?w<#2| zwr~h!0hNpDJgi)(YhIv+#UNf~oMR3@%N|hmwzI%?UK6mrvpV3OIySCq>7$;&Hs&*A zoN$c@&nn?U-(0f=z5p+hf8M<3T!^n8r-%U6^f@VPH-UlKED(zDsLI-)Ad?!sXj3jZ z>m@LU&UNNAcV)qa3Giq?YvjYyA8U^CC8L6IK6M6cidqK(8)Y=9w z0lkjXFfBX5*1iV4Z zC@dDwtF4Q%x;6)fD8ryxQe#4}ZNk`PKncY|nzzWkCf`%9GqO`0(*F9nwB8GfGk|kT z|F3k$KMZ#6fXC^v4Gxx}=L1nkQO#&?s+>}IO;w@p>nPz^$&nK_To3H*hUe61D2$@A z;Jq;X$Q3t#pN)qW7-?-&ZUftBR^mKXE@+B38eotTy%%;H?og|Mwe9Sz62IA$+r`c^ z%js=~O_puvliTs!ZG$fZBUx^{9;F21_ZC^WGi-cL)=(p=B$#bew@zRiksdsAmK8a| z11BEVrXF;yZ-zY7>tmtY~P!# z{u+_f9L0wt4|=B05HtrO>V2>eSfgVb)Y;X@EM5SYFUFJ(q@MoG7F9^-$|-3IH0c5zh@G zTs{Z(4%RFdjj*(Wj1;uVv*HhC9tiOiTh2UM8iF_xY8@<{3mzJM7V>MraD>NN?tsF; z8eXVutoZlL8o|%_j3~xKpZgDmm#u29LqM+c61b+Rd9FSf9Sk_MP;_7=!gq$>ngc^U ztQuXyx$555tQxx4mVa2AcSCcxPm6H7@WP{hzdZC0T}L`$UNI za_NO#=OggCp(4$dy6?&vk~U4?qW;5&4{n^ReBZhtc~o;4y1JlD>+q8I9@}b4XNBIL zL83QB|3`6mn{HzdI$kyAgV)TLUTpFnt)qzobQ6g-IBXe&?% z7mBe6^;Haw#voCqS2AO&xZ$JeErTibvVJp)Eeze!Gc6SmWHFQyP7$QqP1-`2f9@jz z4;DyU;iQL}P7O!wXijpM}{OZm%0yb(t-=gz4n_>f6&wSTwAMCwz=k~-P zU&?L8=j7>%xfWsj+T6|5j|9zJ!berMGXgLt831P2$X>8!UKtQEauKt&2}KC&%ZhFgb$A{1_Atg;Fjp{;G`W>? zf3aQ|0Fugve*T3zA_!)<4Czuj%)yzL4p3Wm%xJyh*)-KiCOc2Dulb%3Jn}z&)*Pk< zBe3@|*ej?0Ak|CGZxsZenR_P0iiGmkC{Llz%mJN@sD(%0X$%EmRIJ-p^=O)Yb_^v8 zjIi}B`w*p>EN!5qymK{@Ccl>ek&@@CsaF|MnqCN#Gi+f*)8zZA3UF}{Wg(LH4AaQ5 zZ=hu@2rnDPPk8&{JDP9XD{9W1D5sFAvKtJ)`X0a|*UUJ3v|O=DBRjT$CdmnmmpsHI!mwzfAo}^f;OP$vDDZW$fmNC4@VSMl^Ow&{josQbAd2 zrCc=a*lud%Pr!J_HvW{zRfpGHgs;)JV%yecd`ySCm9EYX>w^)1{me?8V%yHMMC26m z6AmZLE_0eG=IkhzrZ`QGZT-L(hHc={W#Slg)TdHu3J9DQNEdOrU2Jc>9<@(P3O-^{ zYUm_}?HB`*unohukQg!d+;gAP5R@zECd$A2NCo!Z<@Pi=t?63&ECH3E6avltzC6Xc3>~w(DC)GhK?$G<6Ckc!tzEyNnne zmv{y!nS5t8Vn*i!Z3>Jj`$7Z`N_nB|j*I3XInZW?8W?c`F zQEJJkvaF)e;Ug6;JJ^>xd0^Y*w*4oLy-6{bvEA$B)TMC4@d#Rk+{uojtRrNd+!1&` zI=MFCD(rs07LncKU8|R8+65e1g#S7Z2r653bxM{ zqXT%!vA+e@usxqgFA^Z-Ig?fIksC80gg7NdVNnXTnPPO2hL`PbHLz+-qHw$`raq zDvIJRx^1cOD84>t@JXT0|JLhOn__GXvy_dTVHXye>FO0I8%9zi1|iz0!#0>ztqI#k zH=}t;rFqD(^0N^|poS3$rCDh-YUhdzIN%p)W8tI_&la$4JP48$DWf7#?LS->_%YR4 zzUS>zO+hWD`{AAV3L30X&>aPj!L@UAb~LAe9Ge-po?2*Uho~474=7lmOVIqz%4!w~ z#+aq7**-X*EE;{c1xb3VZJj9yqwk$7^o2Z1-Hh&We$E#STbzl&{0WL33hhgY^er-_ z1KxBX03Ohi(sV<9LXqCYHb@1uxQT83p7Ik_^i>JgwM=7QOb%MZJzyYag~t_1cX|-z zu>h|4Q^;*yQ`A!kwhx3cg|3lkd;$P}Rf3?;P?(VUj=po71%zu{G(r41=!mB33 zei4yDl%w|qA_~JP1+Lf^o_nxM*$9Bwr=|zUH&*79bMK~&md)L(LD}jBRzwrV{^KnQ zH38IN=vzqEF5QQ^L-O6yALO3vb@bbBQ*Luf?w!LS;2PX>To0InA;Z#ircm4ymOby- zTLp)KzUs^h7+)~x+#_jTe$RgRSYyaOP$&igv1pXC;{TB-+>{3_T6a~6EG zo_S`26L@GP@|ML*yNVjEOyZz-D7iyQCn+Twdlb`LS*a}zo-;oNb4Vm-hATC=U4-D{ z)c`V~S28R`GYEYTo>Sm$G$W7OVP{^^sOMb}9uSP`G(!qfbAuWYH3(F@oEuzSYU5yv zN{tReYnvY;``apN~50@{^J=LLPcq%KE z4P&lAhLzw+JC+JkY$LMw8%kjYEU@i{p2+PTm*>6QF7Ba+45d;$;-WNasj!IdY?0ex z@GPBFlxhZ>E0M8Y^$2sZzstyJazj>(z%i7)EVl*Qt&e~%u`OvzrexOAsZafx<;^1s zN0hA}`;9%VNnu^5*+3nh5H+*3>mJ)H$F^sy6zDK}ouMC2uXY}64++~^ljQ3%LjwAp ze9rKTsPq!sSQqNzu#T*Yd2O>9As*>Xkube>>>u_p@2Apqb0?MwV3+q{(5$E%2ujo& z_S9T1N2XC2c97dcjRCGu-hCz-wM4(AGbZ!eb7Z?(XES-`X{4p&G1DXKQZD~$-J+8x zCo9Fh7vvfIv7q~JIO>-4ol|$gbFh!lB}2ns?|h_prn00msnFr$#yz}3hNfF&`;Bvf5sPEW|f)SlU_z@Di|UbE$wH-t4? zc#p8*`M~olTaW&{MHNiR*|ha%WfuxM_7z3Id1G1Ig2his;AQV>+%pkS3eBU1vmKjz zQsgpqnvNQOjEYMdQd9q{ML;o4%) zgjpNode0*dP{3fUltLa-h1eQXiXzha#LGBeZv`)VF@Z`d#KoYYP^>lVs2)J1DN4cq znC6I2^jR!DLM1dlnvr zA?NwtMLiq?>M^K!#1cjs_8Ztx#clHa)bn2m&l1?~ylb@vEw2V+{5c9+JYoWafPdag zI7PcqH-Z}?6Do{GF*?_dCr<-~sbK;`+LU|!KoohZS2sM>S@7p)1P!`Jn{_ZUDgG z1-4-bVo04t7m6B+NWo*iw>BYPK-=b!3O*lcifGHNGSNOqmOeL4UUvl=fe{mQuZBr6 zMGCyhqu!Ppn@0rXrW#}7jlgyug4+^C9Je*1Er=9AZo4C?_Sq4@3iB|G9+2}}N19=0 zY?eMt0({G_SxT?eO_6c~g&Pt4l6au#8>n@pm~qprX#*yTJKdGupaEV=I!`>K&j6#4 z+uN`mh8J}@3;&b{mg2q`j@|E%t{>QTqjdw@t;4pSb2PPSP{bYEd%h;rgl4C-EALqz zw1}o=Y-gv%hHjQ{p0S;Ig*#Cx>2Z`A-~ih-(lA5$?sct#%#5@aO3nhT8-up>98^{} z;~)GpqHwl>lBoeYL5EdbGn!F^BgXG%&zbob(!b&K(&vbjMm#t67qlRT3xy%#^w7dt z3LXM%mxP~APd1uBT6xB{>sbrk8b(?%oxEDNSv*@?Vw-ww>j~>R5M9RFpx;l1Z$9|~S%@hRygHk<6I$YgXJs(;3-d-raHayOYSxtauj}(gBuwN=S zqcH&P$x3bVsTg5L8$LE(T)5b0LSf6rsMeA)F;8U@$ctC7s{m=18WJAnJWO&hPk|J~ z57pA?VitpfdhD1P7p$E-x9${7-fK53MWN}vBIwtyd#uqI{@?D-E@3#8o}EUM&d!Ds zdplSFp=%rjC(_7V!N>Je`WkYDSy?(KZ8OOk0~gdnu^g;11foc5oBKea`vkLTmd0kd z95c49u#$B=sher)A@R1-lA2c>C(5YIP?T;(W_YK)Y7`T@wX;)Tdon{zI*+AB3P@|s z*d7hr$}jZU_C^&%h&qGGzC3r5(1P3o&v&iYQGeX?p*u=`1Ct zdE8&`+bhG<+iNdaEI46xh)37eBTrI zo|Ivv&ae5b&+WNPgi$)UGc(--{Be4qa$ENX*oI+|Q?~qXb=y z$oUUJM_9KT>{B0!Mdk+#DBM#<800lk7y#0e+4w`2tDqI$uqk=v@%vi)XUv9hR<2cE z>$8k$_Fi@_qY=Y8VHEr~8wHu?Y|@MI6p4`b(Wqj&5%x=T0B$x@s$*LWvKh~3&uZ=D z0UHDfS)7%6U>ngokCvKDfV@?i6+G~)VOyd;=8%FDYMrnhw6C-QoSoc{i3(7j%ljnvuE^?d=dr3C0h@2%D()&*8b^hvXg|qAd&}h^hl&IyC+#j6Zoc zGX{pLX&>t`tbY(yR;ZyE=tZgX&@mH7UU^J$rWjml!fs_P014i*VuP|q9o&h$awxPU zO6`uH8wNs!pi{*$Jhm3;v1g2qPbiRXu2d9La^;>ahS*_#O)b%F2x~{vf<`EETREs; z5M)M1COoj0r%s-sLx*-l$+DR~h?uz&Qi~gd0K24v*=NyF#tqR%9Swt4ynQ)YhrBjz zc+POvi0I&bd>{8!Iu4rzIaiomu(w3l)s+`0CPbm|u2wm+s)hsaC8q|U)&hJW_wRRHm(nQ& zc#n;*-5s6R#PrL;@WAelW22cex7yLR-(r;Q#k6%`dqT=tQ-$dC>2ori5o<;YgYz91 z#*6%RJCEr2WJS~PB%2&Tvk5)Vl&VmQ^JD$oS`2@$kFwX0oG_}`5tYtR2}KgmmU*r! zDmfxcVjRe<36oL46KFllku@ARDN+E16Usr3DB(UZoQpAGq|kyl3coZ(fpNGq>?DU% zL`AZfR)5z=cQMDql|*wAqW(waMoBddB*o^Db~9|q?QVXIMn~sP}GGb$5nWFd%4Yjn0A?uGv=0Z8@O%_%2i(kuROjIqI0@$p?Jbzpkzp7 zx$W4litX0o^G*W^zm(X`Qt#qD7sHrBhPv}FISatQ6sLPzux)2-2J>>witU>CVBipI z%x41H1Gc9PY>x@sNxo1x7kX@`^Dh0YC7jLDP?7g+s5qVtzvmbBIe(wuV*@T@dr6~W zGxJDPo4RIH`aI;uOTRa*bKJu*va(Kf(jt1bN;*UsiXFBK^r-4Gv(x<+I(d$C zfu{0xv94^y`9R+mkuz~tEwJs866&!nj%`b2-iqx(gAq$?i#{*~z2ScQVH@|x8nF*t z-@IYS_=gKZQ9(4GvXhB?ao}z@w(wG7aoA{nP_!%tP=-2m!UnAZGg0=37ajyZw`7FG zVUsJaVW9M018RM)dM1WKQPYz{^wSg`8YnYphX)T{tO*gVF$}*JAwKu06%42%ucgqn zhG!mLrVvV1yoS{BLsJZbpO}Svr3I(Nx2I&gXMJ8xWKO<1Cg`AcR1VU3N{%z`c6XsxRQ%9>6 zn>H=Ng#s(!!4!Ls%JMk~pIPvhg2Ud#wzpa?h*@wSz!)!Mj=!I)cGD zph|0tnJ)9|#62hJ*ae5(Ym5B@w&6Gcexdjcb{3#(=FLZr97=*iqaVW%HC*tZHf3f?vXmD0M-5k&31M0rTQFP5Gh3S9PfE=)w?2U2D-n z5e7}O?}s2C2rbQ_^yb+k%3t+{7&U3cOn`sQ=+eYE+X^x)}5YM(z#~`4xZ8J%GLoR zxW{&{hvK`P+_tC&j9edFNu_f{WWy0UY&D#M*Dsy)z>PlxCBrGLQP*2LozP{8@i{yb zjLs~(w&~Uuv>n?6uq{SbM7);R7CmX3PL8@+kFt{64d=tQ>H@vaN%w>8{A}1K zj+k|Z%)x`Z@&S3c3ZVC%9({0SP}Mpt#JmjkV8duY#}rqr?Qa&805udpXQ;L@UM$sm zD-7$&8#InkCKUYPQR@$H`8%v9hwW8p^&SNUOzl93weY{CJ*gQqn#VWEut1rYFyyK5 zIDppOSB* z37F{1j&5-D2}*VrNNN~U&x01&hT@E8c6<|B z8#n4xQW|wbeiOEJABgU{;~qMA_#o{bJkTkBl<5dKs1|h-=R|ZD3(vQ%g*{y^oDBog z!HW{R|==b+MFSbf6#Ks-ZbxI8oOE-qUQHhZz~*S09!z$zr8XM%F1fvj04++ z^1$Eb%ID}_;$b!Ht8`^$G|ORN3MrOqIFHWv1KVM=BjTm&Ego5Bxt%e;l-vAozE9{9 z;k3(2D;$Nji0t~*~rZjcwrsLYN>U>kasQkUY49iVV7sNS>g zXcq=p9pZOtyuopc=-&{jR#T7dsPXCz5}c9qPB@Xq-dUdYtl&**;e$Rit>sqWE$KH) zCsQ^ULSZjHUPF0V--&C3*V87pGreXUj5(u*n%AH^k0{afCL3Qc0-=*Gd1s34 zJ=gb`59U-X!2}gg$?mW{jUIiZt=R6@C;EfwC!jU`Y+xc|dzDh#veRfAwt%|5X#`xQ-Ky0jMRbI}4To{or1s z>}k!0)HVwiYswp$b1^gFV1t*Nt%MdrQb3t3bb!)@&U(EOjzm)hDBYo;YRhCH+LYT$ zC4YDDslPc5!^I*91);hY&x@`{oWdmq^d$;;q2xj_?7M8KcQ?9&kOK&NfcGV5*BA|o z$~jeN&n7ZQ1Otj2n4!^`pVOvcOxRmvgpx8sk*eX5BZ@Yw1jfE#PW(Hr5jeQZDQ3y| zmb5XX)F|gcy^0DFQ!W-Mj3Ib}VYySW*w)rU@|)GhF2C}1Jrqvd8`d!nUtDqjcd#b@w& zL_F~x@I~o5HFXIx^mUE`80(@y43Rbl@25sWr^UT9KZ+c0J%>K+4+38A-#TnV2_&MB zsdnmekI|eYjgGPt6DfB~Y-ikdynTUfYP1F0Z3Ekq9-R0UjIF*~=8n@_ zHllnGX9=All+f+iUSc;Z#qP|jVE~~n18G+@?Pwd~NLgT9%%5vIu0 z+C5aZj1di4wj$)BW))(aR+uaKT`qC|F!{6a?)$Ze$b0MzqN%xZpNR|i-zXHL$Zc;P zaSDMYn>fHSA9|&ysX#}lPwRr>UZrCe%CJQlG5u*6qF=gPE7hR*@8J=t(YZ^QehPmh zB}Rlh1@qOABt^)zMUFN)>$ovy?fzOJ&nM4da3z2MU}abkl;jLWqf;dr9_!>$MUJVo z=xb!k=!%d=VtOnU^E8UFV1Q90juk{*Yi@7tLJG=Avotck(xB0#m|=hvwYWYevGX-{ z4(NJLoH%6+L>WC=1y6P!lX+z|q`pjN>5>G4ty(Z+${rDUBnnCqO_QZ7Ik@$6Qw)(5VM0*Q$b~x6wxY%M z(4}HV2%p@G1jQHF&SCvvs3b!*1NTD`g4zz**KhY|hL>yzMr6BBiNX3I&>;Yrhu$+Q zZ(_t;d^GX6z81?3?P*$II|kwU+LOTM!gkJEW=yDIh4c^IXT?-Fwxo`3T-#nx?wyY` zElQ@dD$Js=6uq|AdIfKmbDSoh8R2}p^+roh`wQhKu&uE! z=3kI;tdKG<38RO6Uxx*@u^;$1(xXAwz_vSVN?$*N{f82~?4E^;B2U*N+W2lhLl}TY zZ1!1|jdjolKH2DiK?p}2*16iq1~MK{BH9lhJK*->gJ@dK-n>c$$+m4 z(R|=G2(iz(1rr5P>vMtDRk4~VPtlfwN20CICG?Q54Wp>mu0EyMK}v{`*Po0}2oP1) z(|3v~KP+@CWsF=PsCPH$!p_hNH<9xRugwJIwSj>Q9v#xl4n(bE`E+ph=&?urzS)@3 zl%^Vu1{~ngp-0X$MXJmN?1qcUDb4X8kO!PP zwcuU>gEYrtdjRZ3uXiiX6vfKI@yy_usd^g0L^*G_qr+O=7@5rQM|$66Azu_KBUPnL zda$afwNQXcN}Zek-m@qY|2G}{3JFoFSEs8Al{hv(;dG5#=5C|_B}E`1pC^*hfhWQsHRE&1Ny zjI&HZ;|`Df4aK97kTF8r7C92*Xk|4)1x}Y^$gvG& zzqMrWn$pMDMua^pHMPbdT3j2$h*7&nCFqbZu8yZE6iFz5{87e>b=*UGk4Be(?c#0u zb&n%G1`*aUj7yT+X5`pefF^+H9C3pY*V39vA%D+ek0>p_I)|SJvInb&WB%E?&s(=H5rzFxC>bkukD? z?HU~;vtpg`$*H-^2m{|1DRbE=jAzb#gdiaLBG~Aah;Rz~DMKi*U%n*cn16CklC5 zbM{E@_{TNS^lBTnHIrtEZN*)6eZ+L~sc%$-dqGEn;{{P4>_;&jjY@Bzg>x#Lg+X(@ zjUip-XaTrJ%O1_~CAY|F@){1l0u<}kHZ7}Sg0&^Dhg+$st>aRdK+*M~Pxk*Pe9wf6 zT7b#J-ubawQrg49ZIq3y!8aB64dRcT5C~A7Ad+&4h z?z4vfT5F%@zF>ZRikExuGn})BHT>7OvADeVX!rmyK(%_*2;bdG8pW1iba}hW_>_WT zyU%2XN)Mv;v^;np{obrN5H?QxJ$F?$S6z9TtR1H;oH=ujE?hWFR7Ku85-qxg2aIKK z?uVvY>Am-SPohQi)>Fi)D*^80GF5b(>H!=}oGZkJj{-|I03rO`t7gD3TfRMGavnD(}oB%aY{_8+{uGxp?lHw;iDSGmX4U$UFDS+iUL8 zciyfJJ|QczTvDFf8jns+kIEZ%zQXeJ;KG*9+<%VFK6s8!o<2sGTz1OWuMWJe;5OIV zAu5CvJjip*v6#U}Hn*G-_0U594?J*&S~{}>yj1IG=uSqPt!D>M$QsN^+M?UxmBQOC z8c^Ww-GIHUZOvzvk2)SV)d9@(kiFS~L>RnQV9YHAr7==FGe4FZUcsQIh4nXtK4~h0rmyivPyayRPQi*yS9lFWMBJ19o*EecvV}NGp?ff0NFAf}c`Pkj5gckBhhaPC$?y4C>UDQN5@je;cgsIWOL}c znxU`U>oOh=h9faKnX{|Y4sT;`K_|Jk5qpdK4w&2=l30^5J+3%!0~bTD47_bL;+VYm z#6$W|_qq=eHK9w&7mO34fq^p^%8ToHwr2Q+^{9)c;cHtF3XdSdlwe5CI~8WwM6Eyw zpa`MWB-q?jW0spPZliqefK1(r|JPmxY+ydP6B{XGTmCz?*>hm(LZzF^P5>;rVA!Tw z$O}Z4y#WFbxUF#C5YX~&gyPuRyT|LQEMlTJie8kiJAv zih46Qgc|PCqTQ(GM<0`pJ`f04lWyy-r_bwJplh1~y<#BWy!R{?me)?5K0zl=o}m2; z`*OAh|JzG70_N|qb+&pUW9sbT@!FsyP<0>BF~^Kj%0ffGk0_LVGXSO$V$@ZH17IlZ z>|jBQI#e}cx<@l%SpZ0kkx>{Q!FR>qAwnHX_q_pYDBo_q5ranjqF$n#0j7f6*0Y-j z-ROyuvX9>Vk+bYmiz#|^I3I}DI--w|MPptwl@jwzvx~b^dJ3g=iZx4e)y9X)knSC!P_F}hGD%t~ zgL^%&*!I0v_r!?-WPHr;iSvm-Hx_x3w8rLh)-YD{KMMX0MAxVvXmiws-B*!z3}*nwvg@H< z=*{Q{6q0erVB8uGD8{!K2R`f3p(*$dj**j=*T!8qr)HO_Ipr6T$ZS||+n73qMe}1ROh(K-Qv75t z+ep82gVHc-o`X9i9fyp(o$I!E4%=<>^z<-FV%>KzxnmG@6v=*ChD=~^LAH^_LW#Fi zqzwF(aXNo~FCE9A)6{#6hD?FARy_+ z+eZt417-w+fl$1gkt>`WzN2KMSj)^7;Z_gJ*?3`y0SIHR2z4t!w}aPM5p@)iR|h?l z6*Gl(I1;EBG;_2$?e-l%R5InAX0J(fJu>jd2fuk?JkA-2mZnI(b5K`GI-NIxFGaG- z>>^lYVaPbmjfY~dqpdKR<%~`*URzR1I#^7FSMOtcL!>R}_gmEAOk+fkcZkgi{RweWM*QbybFhpQj$@L1b+dTz_Li3gumOm%EHvPhqahd@##fEE1L)ZJDxyx-$;M;~ zw}VB2ugW^eYvlt5kt`P1eeo$ctYF5D0Eid>2lz#$nCukd261kXg=7}0IoDR3057qda zyQJSC8gzjVu3Y{Tuc*m09Q=9wxSk<(esNmpxf+v1pCFtEWz%BzUin(%V};l-VMjxHr}(x}B1P^P}{( zL>I05(ihX)rC8UiDYtvpjDl&3E@ENij80ixp1M<0${MNKKx7)8d7?0YA@@pYBM_{` zjm33JALhW9AAV^Vj8atIBNT1yCgmwab=~Hd0%sXU$$C51tcqL_`DD6FjqWfEus3{X z2Jvm%1sv=1$EaB;sWml?(X>Lb=6D@A3sIYl!Ib9?hVylRyK*EWXBI`&qk4T4))&U; zIu#93vDp8pBkDaIudSgATsGcXlK)}!Ko4Zxo*iA14Z=0Y6L|_BFmf}Dt%jfKDmeTR zHO!bCcro@XoN-811qRn406)<1JvS7wCR6pu5*p0FX)YNb#@q5Yr7IY{i6tmEp*VR~ z7cQh1WcT_qUR`VObB3tnHZ63l|xNgI7Al@#p{{) zvb7KJnHQ5k!%CGaiKdEri0%LssG=q>Gw$z2s)Q~Zsk;tE3Lh`*F|3V+H1%wW=-02p zXkqxW84OEwNmGxAf^ltAtRB3{i$v}Gg{F(p%!AM!z@wHVqF-(x@M{M4v9^4{;|oh0 z9)WB~KwuxGoVyC%Msx$Tf}HQIc^D%SHy(hcZk|X(gu_GVr>8D>vxfe; z-7BK9B2px}Fcb3Jx7P5(X)YT##ad2U3J`LM9c;9*s8J5k+{Rf1+4}^AnIj5Ui+4D_q*|M6w-`FR)4AIR9* z7~nA}(4Xn#sT0~y|NWB|6XD8u>s~-t+V4b?nEEu@kQe zJ@DtKAIe!R(zS6hNcNX!^0-e}YUB9}=LE4Z{T(~5w8-;g`n=+DZA!uQf_yI?6KIg{ z!(%&sOlur@xn-QCiebb1efjeJDIMHdl99fnw>M-(>DB?V_oTO@)<$KiIZ%^lSTJ!J zJ<-BLc3AWt3gCNpr(OWTNEIj3+mNFoJ6bqGvbQ@&M^MLr`)MorRE%AAyPvs-o#n%( z47?44K#i+)i)r%lLO-Y;vFHW$RQx~Ie^4JgO0|{V#$l?3vSWl?F8TbEF(&wjnx}L+ zjw7OyB08;&DSG%)@=A`v<1BhI&Iq~ zGz>k01BPqrNSd8|nk^B|NymaF6MKh)EoUg8jKgZ`N{;Z7%KRyCQZx<LD>hsCV~j#3w+ z%!%_;a380$o_!zW2YJE>$4_4;GbkXG(5Vl=dbT3M9Ce|@$S}H~D3L}7Z``^N7mW;H zWWsrXg1n727C_5Z&~2O~Z{ENocw178y5{)Cd@Y<@wEIftZ3h{MfXv;!q7%S=S1&&E zuNY+0WR%^*V6Pfkt#IK`_s)G=De~R(uV|MybmG!z!^Vt0td*?Iyxrk#a?|h#-lp!} z%uuK>@FM z{yp$jrrmZFZ@W`WmAvye5gnCI;<9@n-y>8v&YZ@Eg!6_pO5+{_mo== zTTZQlvx#}+(0IGs+Tc5o^`OI$U*^O}0JJ-ATj!}B^&6A}1SR$#sVZQV;Gw7&$nt%y z2MQ(cu!GHcpfTue)%6?7&X zNfWe&4xIXTbD4Y;Z|mnLt;uWZ$Ot(c1_C8rIqK~?7&+O%_)>bCk{-+J9`kEMcT}Xf zLMFo~n7q|7vLD7MMaDFtw}ThasdUZTN9k?vB3nlqxHxZ*pxF1Fc6mGBFL&+2o@Cxe zJ?T#K0O)ADUw+?tyZ6+{CU~ZLHbJD>MYD-jqp2io*I4T)OpZhCCv-$Kc>xD1vMS(+ z1YtmSxx-+!_PED?EpIEIW!_fWKZ>^n%Ua6mnztR3FaJIC;MuX*ACZEbs~91nNEZRo zV50naR)~CQL9-2!#UiQ~E}fE0eNcQ1jQCdUarM`I zECyLDQbeY-2ZN<+KM4Sl6bT=kAbT4c8QY!S86(Erd`u%fUpj`#Rp{HuimTCYaX02%5N0%5*06=;V zf-01{?LT{Q+Sa2N`9A2lq(Upc%LkElDQuoKC5DBKc!LflDuPZ}$RFO?A((EMk`_X4 z(Y*wM*LH7f5jCtEidUHfwwAYwwFc<%sAVYvlrTsB?7q~nO`f8m>1x%-i6Xh43LMdt zKnzoKs540HvH;!#kA?LJ?>p*3!?00UJJkp8EtWb_2 zi715c#)yRKRC0qK@;&Qq zz5p!2+YU|(?Et#oLVxg2X}yg57;ifurLoSyL1T(a;#r#-dRy04Yew`LTgnB?Yh$m& zm;i9BtCqM)r}YGo<#|)^_LK~zHE$!@v8%Vs;3zID9HDh)&7EaaN)PsXmz-Kg!&zs8 z0h8v9_P?W^FWz4? zF^GHU??`9F8X=`{&D&^HP;1JPAkavpxwUN^Cjd;I>&j!V!kEdJoPXCAmCw68T)BX8?7LeB_a!68KDqP*?Ag*tTpKeS)w zoYQ$b`>C+`TK|m)=g-2QnWHxNZnN-Y_F(uV!N6qmP`EM{yBG4@;awSxx!7o|5dhX&z=2@!Q!H-wKDPukN*E5P;Pr3QoMn zqYZ}+CIwT{KB?E$I{6gyAWiUol7j&1k)q`an$(I117)UTz@DG6RvMJ zbcP2;oqL6b!A5yr7ES0JUskc*Q$t&42@pHcdmUp5wi)b!rK$A%zG)vL}zUdX(z0C*k#`pxYX0 zdGZ;g8In6&HO4R^|aAmgwxU1dOW07?^DdPINRypqhbUt8q!v(<=2ay zY1H8mP(vF=Riu7}r;cnralVTmkk%0$G~S-)a8`h?Oz`{pLM`QJCvct>UZw}szpOtK z(IG3cSLRNS*DX^NJ?xE!cDZo_e9bl~l@ft`-z?VL$~=(8AB`OF}b)#Xd_wt3yl zXeb7FZsE+L;9J2j7vb%ofsjABMiqPIILP#4PPNMhXRU#evZ3bDk6LMc_%L6dE(V!w zeB`>I)D>^XynrFF7D9h3-X5H+6j7m!Kk{0J-VQpPoVRuTIZG$w&`e_kZBTR?%Z8=X z7qD50L(12CGep-*IGD(FV)cdtSi|jhjHvl{h%Ci9(P|kRX@IvQiv?+Nbx7UL(dnA# zg;S9S>%>zp4$)>dLVLqPBoLs5e3tJwsdCef8UeDmI0d#u+7c#=4iD;?Zf4lT0%7s8 zXF-WaiF;3k_oO+YM1ueYv0&_A2oJ-V0Oj0lfLj-8#xS`hoXnB5U{Sp|G$>Vk4r_V1 zRjVCsXs0Qxb69DyiA05UBplQlQc`0YQ zjQO1F3(w@bBo*jpV0H3Ps2B%4Po!63Pi^=IfOZe3C z;+5mH{i*;Z^THIP{bE2p8;JZ34oS%>Z?!O%Hj{W$l?{S75QQZ(^u_Zo`)H>RPsQtIz=ve~H!2f#LR6z~ z^+u}4J{zd~*$q+*U;>*Fi+Z8r3L%;t^r5aP=rb!*j3bO6d^Sa^YP4d5UoK-+Z&5zAJDRNMKkz!n>&3xD(MA;VqX*4GZtCmdFhTyd+z+5(o}D}3 zH3yx7mUJHjP;^^!&}No5v;v{N=RG@5)Y+lDt;R13_ub^qxs&T{M0_&XoYQ)Uro_V7#R3_hqrm(EK|gG!u2-j&DR<{ z#5&pZHul|Xe_H5|two&Ni*DN;4VgA>xPb<8GzW%R))T-fm`_QOub$^@dmjybD9Pj5 z^^dG~;_aSfQP$g-6L3UsWMw{_#M{A>na%}!dbA_Dplaih=9m?H4VudaRY@Qx&og+t zd(;pHRcm8MyjVMn4043%aO-=6y+fo0*+T;+FEq-fBQUvJCWZXy5X=dUx%fhh?l3r~ zVcmL46I5PF^4oYDGz#9%PLMTk%RKr25RuWM!iYjZSYW|$vvqpZp7p%X#=_|32v1+m zbweI3FHrtoCPrO|IBqrtG${~Ln^&I_3xDE+IDCjF)HCnbcAM%z`t!E zz>?7F$ygRpRRd6MY>&ZToSw8XrvVgrPrPRiM}E=3O*eyh9#Yh@$IbQg_9jWrr59sy7FqAm^Ls+KEVWoYFR$$J5raBqbys?7Hiv7g=HSFs&R7 zy2nuP#h)Xow(~sH+CZ`T`C1(w%Hq6jq~@}*mWV#%^$iqF@8-P=4<{mSr2qt*fx)RX zWvrXbG8*@Qkp`OTUjG5Pv{iX9WrL;+GTjwFg;Ca4vI5^zLRDx-o{AUBylCEb&YZMTu$Hf_d& z@uT#1cu%8HIy;^+xCA)D8cqpEfVX4+%Pw!1QE%&7tY~U5lt!KbPnEO|cx~u#MPs@X zq9JaK^qgY8@q6mcqBho31Y)2ItPN^j%d4k)p%rsKkxq#eDD zy%}n4($CnVkPR4X#%r_Hd5!q6xZcfsi|=}xmW>a3JM;D^A4__Dc3#WTl#=vztO;n? zutypj%)Bq4 zf7I`8zX)%ybz0_a>_JIJbH>zI17uTV{?L2RgEQlc@ix`u99(`sSRyimA;T>qk>Zk> ztM^sGKLsEb560o);GxP2DH905elTLB7+?c45oW_83qx1XbUeTgC!Jm+x?=o;@pi zhatc>1>lDD8e`op)Ww|PEz)t7Bw%z*>vn;v(8KeC6N`ISFIL_&iFy=GfdFu)l@bHE z&$UD|yu2wYs76QiG@I%`o|IGOsp=24PkElzycGk_NY$toal*Lc1YfewY-4>CHm0XN@K%}> z9T0m0F1fzrDBkWgdK;U8hbU6dQ8&n-DU{-rYs_}*;zACll!Y2mV9+|o1<*zKPSJXr zDRq_!p=RkH=7gBs$l_zZz zZ)>#0I$z2DS?8r`O5SYijD(aMikh*x?bb-HX+b(0k)}h=NvVUkL08j?x22VRGN6%a z>K&jApaMvOw*hWyie}~}1F{sYdFok!_~{5ePlNvZi|B3N6Yyw|xXojgdRPHK`(Th9 zrMKaXz}YtdZb$Jpz#ch$k9r$(8})V>-gA0ffv*6*NX3k{zOHYQF2J0#-iG1g>uLMe zdfx$s>$S+W6>Enn=I##ERRj&X41Ds%^fu@cG&J&dV91O=g1+ibIusnGrO;rQt(h85 z2kiScIn#zz&OWBF&dIo?9*&o+w;iBo-P%UE0(=vZ<;2(Ng7KofJ*F1s$jWq--mcYa zC^O*4-eG)>$<1hr$l=JV@we4r4|<|rgtteh{Ka@X8+tpu4M9uUfQ@xTMgmdap`Xm# zc#U~m(!u$STq9GuMGd$sz_f8;2L{BAq$qZ49m=vGNy-|=gHBR~>cRfLdr7mWVl zdhdO-v_o)@d3TxVA^3wZO_@xScW!Zagju`-;8Ocm5dJ0|ez>;i*Z)Sa+iBg-S)xX? z8xn+Zq4&{eiSo3+yD8Nu^$vy1Z7)TzAR>{JCED<1uTM8GxTGA+t2!4RT8pj|kgXoY zF~E=oGRC5FnrZZUMUE|)s@6yc!2x|x47H9?F5Cx)Wr4|a*ADEn3ZkZ|KDI~b=?}pj zo@?Z0Zg%%lH$?@HHG-&;0-?erNA{?U9-GMo+H63WR?0&GdFvhESu>Uy1138zEIg~??#Jcq7~DK-3K zx_69=^O4MmHkqp4UtInQ=abz8WxnN#-uR+FN4Dc7@?H#>s^BaBt_ zgVbtn_!@b;4ZPj^t}_4*GVnNeY6I_K??>J)NAUIt#Ipf8@OJOs-OruviO$h&EIWPI z#zX9N=xyb@pv$?%Sxop$vou$3v7Q~W*em?Y>38njD?#@elk@!qlb7P_4+^suX%&H?dc!W#rYs1woi!BtoJJU_GRO-B z9j!fjE#>FK3(w(KypPjraZl76_?joLo}|0<@QBHt`2k@xb`4Q3Vghi(2f~nlqGkpA ziW(+m*dpgOASF<{qi83(e5fMsiG0%@Qj1E>tsT4XtGBT(faB!%lC`YxqE|V952|sUBZ?BKPeszuf-V);a-lzI)UaE~eEIJf|6MH)+G;Iu&|9~42Ct(~ z_uz0pr9H*^qOZJndLr&5H#_a|zGvR9o?;(fWqKyICsd` zJ=0l$6s(TyAHWaAnNn(aq|X?S$T_4$Dea{Dld#^nzo$y5CUf4_xs8!u&DHM~O=(tO zO9>2F0dnGPtiuRo^l{4Dn}N4|xK!Nm)*Nn~1Dq4eTTvqzIzsm`D>UgOC(50aA1LG> zc7f?Yc)QK^{Lo=q#IC!8bE87>s<9Tl9gQ^j%$96~f=6U+sd%juXu=&4#+xd0R0;1T z-gdceIsmlQ&G7V;OXy27!?YC7f5%#h-ZlfvQ-MiS^KgKu8!1jBG(>$7y+!mF>Ej*$ zxjZ6oa-!*u-HWM-LT{7t_MCWot+!ovCHmhUZe7kH3J9YR5h5I9>i2No4tg4SJBqE3 zis-OoCyz7N(BR&Icaq+&t4LGL86&0#OBiq(;pnTi8jX#7FX*AH)4|)Iu}o{n_KvOe zb{()6UJKryDH}3m4l7(EZ@0lnqHq64gif1#GK+CxO|wy<&2?~-z(2AMn`zYB=^uYqoC9{wq0|Ffdap**n%`6LE_i!PmBPB~ zef9a?^)F+!9!>!_evG%LO{LcQV35N&&S`e!GGfHSz~tVV+tSd$*U?}mrJv8*K`u8+ z7o1J2N$)G|E8Pw%Xeo)jArIgL0C z*sU%qF6^qr5aN7*%F&0}7x95iPg!Lr4g1&j;dq%4Y!7ilk2WIe|LQ4rcw zt(03bLx?z$mOlJF4QWQ^y`;$b4(oaB?t%lZG~cm1vj}nGj1E(b@RR@?!V2#cR=f9{ z?_{+Lky?VNoqMz}KBB?XL4My+5g;7uXO7rCvQmcUIy3v)+oW^1b+J9664AewY9_F5 zxkY73AWWFt1cd!B6t&&A*6b1PZt-jSNB~tB%ud&>rIap9cdG$V2y{}d76cKbWT1#Z z5rZP~?wuwnXcBuMV=a+O-4buh`^+CU2lEg4_&|rzx>#?Vc^e)Wv;p_ChOB!E4qJ;w zAb24tdyPCNy=h8X>!^WIFv|xY=EGtgL{8I6`3GOgI#`-2c*z`hE*D)Hck|{$whe$J zYKcW{{k82aYArDrvx>=`NvJSGR_Z)RF;3dSMH}vnO)VVBUP}`UFQRZ!@J>l&d zdq8V_5?Xhb81>a6l+RU2D$ac^mZ7Iqqo@gc5j21 z7vISSdBzjo0n6lzO-J~9vPMA}Fl7&P*4sL+vBo1iMghFZDTyvZr>=E-DdWBbU4_Ag!ztI%fV{^&$#krBu0vY$ zcBb_mLM~<5`dR&eu8K4y=A0v-?n@(_~Vcx!0MZ21UPJnB3+Fs`En(D6N zUz9Us=bfh;u6Wz=PFjP%2ycT1^-%0CQJbCAGE5*mZ_&;TR+q}C;-Q_qDe$0@849pE z$pl#j0NCgu<%c4V8t;QRoN#28k{$2&)0b3$<=0@jXMq~TY=wcgF``pDJp4J=Pn8Y? z7rbKt+ygPSo`6u~r3XPz&df3Hy33@dgu{D94nT2V_0n`lPPq+rNyV)2{I(ef$I-C1 zx=(Efgv9(4xTsK|h1RF7<9-g@3|s-Ixc8CrI>)*VV4hG|3jjIWL81B{gltWFf&B*f z0{zPRR&q}oA~VR-FGOQHR&O2^1O0|D;`x||ezo_mI1F9rdWEr>*An|)YjGg&dCNqR zpPQ5c1POrDe!v)v3CAu-yfw#M-D)tN@dmB1A=KIL!5^sCDRk4Hk?7_KBZPrUiDD-xm5fpm^z3qU7!fTyDzT=3JYgAcQ_7x2TZ=?32nnT8QMMsq6 z2)*4q1_v| zR7Uv)JzQXXkmHWf>G?3t^!zd!+Us?~LDksPtow2+Ykf02O%SOrfi+7>ZKOkQ=cX@? z3CdWfF-;L|f>R~$9h|MTpze2eo^njkas)c`w&I{p*|~~H3@+$xI0Q1N&-ewIMum#Y z*Pxqdb)9*eFJzrSccR`aJ9_hR1bLsFK1v>w z4ju4&+vRQS8Svx5!QuKqObUX_#nnc@+0#Txv1ZFqEwb*+fI()4^)w0_NL~mWz|_)4 z!vI3jqMuCOBhu3Bu)IthZUC5ohmdh*gVALwCIn!2F9hbEJ+fN3PPQ3iYfgLzO0D-* z3KTYOs*!fqX3FVU%?tz{0~h=%Ba|WS2m(ZEGSb1IL?O`pz_x}?B-K43P(DT>=JmGL zjB}*)fXNm7M+%y(MUQY|DP>rrFnWzC=jMl|HYjkTA!!K=1F06L1xhqkQxvBZfaHw{ zozeS)$bc&lSIA?O55_4O6U`Pf#@e+ZHLoWnH@Q&Eg_L>!O3C@|s=zf(Y0STEt-Hbt z;a()QOX#aclm=~rC3OWw%C3kl<;v&-f}!=OiNf0B8M8$h`QCNP>uZ3Y$lEN7A!=dy zZfhb`V&lT!WUYXUN-;J1Y%iu_9lK_9$&089JXWf#EX8p`T4@urhrR5mO_BYf7A=n{ zYFa2MOO+K+igm@?akh`Jc~5O*yPeeC8lfIV@wonOBoUy`2_<`QjUGB$kk5n&1gE|o zq+;vdAv1L^RVj9lmf`Zqm>HOw>PB|)1lV=$QL&Ka3IzH*=I65P1 zTon{{GtzjB+d0mG;{Dk_JOG#IO4yJO?W_$^;^t+VIHr^m`<`0*2>t-1!)i=qg+9PZ^c;HB;GcDE8!$T(~?N7OS-P(?2Fy*G(1PtFw0OlL164*t?@H>tR%yfK zc0S}fub&&EoyHWX5_-wg&Uzd4wgOsBcRH}T9S4#W@}BHx+lH)>XVfw63+te%d#01T zsfmthV<)5|1B9=@Y1t49hY-@`vfjco33{6XBuAIwvw2=6l}4m~h^v?tIK$7x6q#gEHCF+iq4KfZ^J12i|{ta0-nZCm#>9}dHeViZ_E5?xDbt*ec^LXTn=}}CdZ=q z0$266;_qyQ=7m%OsG&$n^XBw>p~+-eV?7>YDU*3>9eqLlW9RNXU%dW}#TL4cT>D6}5lx4gyxi2?Sf7C!n6M zDHk=8Dam@EF~?27!fL`c0Tkrwg5a3gj!3HWR~-G&}vIH83PysyQb(v zEkN8bjwqC_$s5yi3dSiwkbnp~Ozaq^@)q*0SBQ!>yN7t!Y7~^qnvt%V7i{`|;~8<* z!fb}P%s-`Y0eot^_3*m2ByUUNZF~oHD{=^B0>v6lN`R7%;O$DjW?L&<9Zr$%-RCF< zR2x0aq8MQ?_wKE^`SmRfata`T{e@R@#IUgYU7O=cF4a?`p_*zF>v7q4bGz27}Hq&M84XC-gRSBzU_e-p0P* z{#3~HUUQ(S`e+vYt>;74h~^mR)0)TXM9$wi1aF%|0Q?Q3E>4IqgWiU|>pc!q1l>XY zsVp>1(j%=)F~xQO_MwB+NXz%n`j8TRdtr6b+tOyfR2pPSxf|`LA9GS8 zISxOBF0LB`#z_{Dt$(IJ$aXOT_Ec}7us4FYtE_XUT}Okb zF(+GOFl3~AOeX=k**M83YUY0+S`dgnY3#H}IFr>0= zXICD`|Id?(B29P%f^Z>3)dDo{zNN{Dx3`jS9=-!_R?Y#05#u!_B|I}V3Hk_oX_TR& zFsw%xs~oP}Sli^N14#y>v}ROkl2Z%#^M{9rUdO}l@rFms%-DF0eN6-|Bux+ip!(oT z7H%zt8Y$X~wjB1<{mGU#JkmnM)5Zm17W!-8xVF5jfsL)7J3_6|qr(zW7EGhp23L+&HV4Gj3nx)$MkS{&gr_16P(FX` z*l~hU#r%S6PCVwk(zQF9@^-fq%IzRV{!A$zl>s=du7K2_mb_;;CcG$o5!$4Y1(gxu zjg~P8z%--Dx=Mrbxm5IRkS{)+DYoAdgQ3& zag;DXm9}Py6ct-kaVZnqvm!U2uoExj*JD~@8x%u{aU+dYvM z#1|Stcq{B>jb_^)M;8A+y+stxX^A4z z<$RGAGSdjgKbB1(A`;ITa6wVJ%AmmlX5MnB5)g_j03J+kf;E1-=~-W6gHK- z*+FcG(zrJ}DNrb@Zi>2^p#h?WRqKXMkLU{kL*z@QvkxeT`vAZ~s9LfZx z%yZT@t{YP-aR{fkp{7+)sfC}j*9FENUQ@=MeeD#?8N*YwWkhP1A1+DV$IVw1F6#5W zgAk1cUFZN;YUE)CAh#5k^m%wd0OFc=M2f;J?4=sIaS#;$Lw6a^?MzGrFoAOv+`zN{ z;KkMXr}_pkK`jnub)UP>3FiYq8D#-RPVWI0@oZOwX1s9w!@Nf8Ix+B)uWvHcz=%HH z5)7T|zyRFf;q&GjR&0oSxDiAYUCSuE{{%pnc-z50f8M~5^S03y>f)HU`Cpk*p(%yY z0(xW0+$P>`18>iem{zZ(Mn_9D4Ot?jWyaoA0z7$l6nGh{wPU8JHFED%ixd%V*UJZU zidWoH*C2ecf1vL;$3R;%^L_RVc%ZY7i82F~WmEv>B#>yK$ra$zdvhIM#of|d>&JzxhsP{$V0Qnr>QwEB3T{9TXFu~`Q?!)7iy}CKi z8O8V8tsOv0;BAdk%t#+B;YiVFaHSyvR)~_#?>y0aPs**1KM_T5&Bum9*q&$!1`d8l z4N^E7QoT`CdE;KtQU=~u&}4fAPh?FUf{Ge@P|AobzRnPd?=m+BqAU=6_)t>Oz$lK{09LqFV^LBQGg7KWUd(zuj z3yPX9&{a>o&Ciw2X}MLj@pkW&48Ahfzm-Toj3 z!=gg5xJP+9rhhwsF^xkpC2-CcQmnd-zwx1ERlSr`jl6RJY7t%(1~v+ry)zK-BLuxD z-cDy8IwPQ7m6p+>tv6EVyiUm0p_@ZP`2$)cykl$n$K`uxbe};F*2EQMk2P<$*D#s4 ztvP4{SY`vEPDoGH7ybKAr@&H-J#0BY4}qj4jbEz(Jl%DdAw!djRkn zuO&c8_E|K+AP4cCO3LGOV}Xh#IQ+qy?5Pn|FanRUDbNE8E5^&+p2oFPI0Qrf9e3EvC|F?8Zw zD4fUTEmx~XDul+D*ToUhM$agN&Djo%1CNhI(7J}f+nZQ;+dt?M&=(w(DtD|AM_PZ- zLSTY($;mTQF0Rj4b_V1*)C83Cd!rtv;j=71OF8g+ulEW(Fv#-~G7z#a^Y(fiwQh&; z`3tp)CtFX*!1!?c$A!p_>^y=(-#huuaM_rEXzRpEW! z>;1!>eH+GPvT6Nnybq^H7?~sO47$_y6S@}$v9FP(p=MoJkJQ_o-ZeI~(a3g;b2hn) zb;p=QR?N+11foeW0M!Yte4dRYU{p%Y_mCP4-iCbaNiPYWE@efdeP?}u$;H6wVeEp= zB${(mk--ELl*+8ndCpR+q0uIYiEstOJFz;K!jECxLu117@XT~`YKBifpS!n3|!{0@u42nktn+b@n z8z6fJa3J?mVj1_P+iSC}X*Z)DpKBNkBiwWk?CIQMU5Xar^7_Cyl6lRC@jZAA@qM{h z6ns+#-T<-7ee~>)P)gf#7laQvz3upk<8%Z3_$HnGy^fm9#bn*S8i;P)+#-8-+L&wyWps`)40ICp5_C zJ6v}8rF89e*DQP8EcK|_!MfzS3*Sf78GMMwC7$M6$n_}n2K1%!U@H8#ubex3fi7G) zaL3MMZA%S-+M`2Os9;qYtRg|jg5O=90=!8yv|8aWJl4zmTfL!)uaM2wT}ow9s2X2| zBc6vV&KCnnPpj@@GqJcG>m2gu^h0$=?6$TYK1qY2Z(6r1?UGD6!Or7FbgI90;5zTv2e2Z z-CCv}7Q&&cU2muLfZ^-Q4ZU5;u!j=8rKl0kdfS07rF*a5&xReRMJgcxC^wIev4e{! z;Z4C5x@d=XaP09#4;??gC$&wvX2u-@O(STma~R`tvk`VS0mbAbol%%n0D+W=Qy+!uN&lRGfkddfU)rB zj#=&YU|iewzSYRenA-)zxb$TeAb-$tr$8wIo8g=>%O*d(g_fEk~Idm5DV#T%b^$IU-%z5;z zs^=QDIxGMx2(3(>air0+*Ikams7NQWo}SaZ6YFkottr?M`( zorH%Zm>lhYrz!gMBRY`x1>b8aN+vzxH?fCKL+0Vgo~SO2x##QG4H$5J5axvRtL~nO z@B)U13i3VHLl|b-_!%1TAgYoX0hF{wwzWo&d+cFOeQ?H1k+!whF7Fcn3JNGaSH1UP zU-e65XJ?EKf?~{+1)_Ysbx&E+zsDkR1_8BFk0qZt3}b2&bD?ip{yOLLTVzY_6EhOU7cnh2Y>jXCHnHI zPkcu98`v+T z(-7?{W#2yoX1R4IUdMgVxegIz?0lR*Qrv@|=a6|XE6B{#!Tfr%D5PVdl#opreoT$-tb0ZeyUfnp9fu=)=WRw;&(YfA z_sjEy7Zl^;d)dVL%@y>>Yp>RZ4%VPSBJzDQ-k!Y4MxD^T49>1Y z$_L>hjU?|O2vC}CEcZHpexEKZ|2E4yab)QD@r}zd$*=F~(c}X$511FJxMQjsf8|I3 z4g(H3g-)6(+r`<2GlE*Av`DI}MG|9gY~5SZ+nMfYH;Osv?W%>^A)_>X5jBQLFAHAn zZuP(+*?O+mD539rA9Q&Bne{e~omjUb?i6*BE_0fo76-1-3F5J4kH6`>oQAg62mXvi z>ya%JbP5_DYHHjLE?-h_*E$Wl3!gb!Z(9L7J9Ia@DP;UwPItrmsJ|KXHrE20o*(u0 zSTX>;?Ht-+ltemsj&Nmpm*qKd9=fpQbi%`BKIhM!rw1N5yWpwqqQj0;PF>UI1ismz z4RMP4XeYwHg9ouMQ_*!6P(I~DuDiD}&-<+g$9!ZE0M13!T;UL0ImCKPsnewK&$R9+ z7wNQt7iidTmDe?*;VVo&A5kBb4LGN_raY3<6*D~|*s(E#kW;|H+iGy>>yF9$HtO6; ziPSm%Kb#}8x3}3Ldfk*h0K5#`uu#>k{s>`-3LvDUWhJjfunLWBCI=pIwoBbnkRTGx zVT?ROFm@J_@xAdtO%NN#oi`WvK(T)>33zm!leU{f7m8RbKiJU(>0}*gB$Z%L?lchU z!NLAut%C`2#022zp~d^RzkfiNoIWKC$A_4z$2$&?!aTFppFx1EOCr>16Z;2ctzAB5 zv+OstHbOv<(*4X8Jq-eV4H(y;T#BlV?Y5sD z1c7O(2BP53eX^D zvcfouezTJTYo5VvUYBVa3n;0?x`o0XWv%{f!{0HE;zqb1M(K7(A9yIAU4`dmd3-Tv z$N0R_xM?k=X2IE2D1DArbBV4v>$7x@`sZ{F8Q+r^uwot_$sB@w^PGAu+-rL!X+4(N0bb;v=xDXp+wM@KlG0qOJH335 zvfk#XO{X2b4Fi=708ZvW0AH=sfU@4k`*{rpomJNj0m4xb##Q3a5@}b1-k!~fA>(&K zx4+PbN9k=DV{7hYEJov?5#6uDfliw3m+G$*ixG27qC^~B%G!Q?Cm`d4EPGrIl-xUV5Q|aNc$6{q8%CAn&{O}BB z1FrWN55LaBO*RA3nrU+5!qdj4@kCTGgWTT)yoYzYw*KT)r-vRqE1$dKic5vbvL_?2 z5eQs5mDKPMV_xt`WJbjPWk7^A&g)GpX6n=vxY!j=xUy#<@4xmT-#UF|4-3)~v+OyMdh2aO@G6-+oKr5;sG+xBWM-REXkt=!!)nC)|Q#znMOr(F+izws`mihYrd}WzX56n z3gB%hrM830CW zp3J8hXBn7ft1GJ&;2!ARA}!<~H5)9&$JRY^q8?QLOz}_IYlw8&_&OpOv0i$gh_K>s z9e7<}&fT-ubD|2yi`p=_#kD+_F?6(jAd;<#7~Q2PiDQf4EQt z`@mwv9AEhCvdb@_&1Otp@z$;@{^ra1b{i?izTOOir;x+&*m}$5q8?^#CK0+FnF`>8 zOxJuxeQ0hZqn>`;1M)V;(p@*Z(UfY$KtFjeZFk+ND$h=>n9FNWs~4u(21bQ zwcgGR3)J||84=MnYTBf(q(nP<8uvK8 z$vWV*b@LtU8LmNZ%i3w1bd(jegyGhDd%z5dUys(?G&~1u4Lz?0Nvs$2w$Mi<=N%p& zPPxZC^W1c7o56{p7?|kn5}{!pW#h$R1x(%aN&2e(2#?cmnl2V)|z zb@i@hM5AK}Q5e*k4`(`=Aqo0FM0d;4g#kCS!EaW4yHZ)F)2Dir4gZsV9kbMX6Twy z$9&Iv_Y{E146$r=udgiZvBvp5iJT>Gj(fOE@y=tQs{zzl{$w-bGZ(Z5;5-U|6bD|Q zqwFz&VD-Gq5~&neEA(y81_c1K2$&>%RA9w?KZ3V|{>k@%Y|My~>N_QbXet^mw!dV;kMGOM;9&odE-e3!A4kYo zQ&DEeqzVA$Z74l3D$Y~swvQ-K?hhJEi@|3I=1Tb(D=X>|sxzA*ZY2hAO!tbsS_eF+X!iZQB`p zGK9(q;^Q-t$xImt;|f3%>yVua0gzUpVFk3~ep=g?dD|6f%>W_KFQh-n4D-%w58!p_Wv9fTx#PCGgl8@>V@5t_oyX?wyyERSrO=jv zK4(h@lCdu1JoCUgI==A0sY_0h%B=46=KIpDy*~ECFzg<3F7ez_HJn_A{Mk zy^ZJO%pmOj4sVwd=~-(`PUH^8>@)~D8JRViW{7qjq-)+r;~{l0>vxXgZQmEel+p^cItU90cq_}odFS5WH`;?O(Bt%9a{81(>Sm5KvnCG{n_c{$; z*Y)MVWg&+B{e2g5u9WM_(=$ci`P^O+Kz{+8e;zIS zWPQ?lHfpZGu%747UXZb0e)*+t7^s4cHQwy0H!PpyknGJ@A3GW+(6%Omn>xu6%VcF_{h zg&G(ZrPx50nD-Rpr`*naPWnop&*@~7L_m+(h^j|Kq;}2bf=sIL-mQ zk@YrsIqSYmJNSF8x7|>+j2E&D7Vm;qtf;(ZymE~iQ#TKeap zw@r1d^|sS^Plu={M>z;*t+xqs*XFrB+zxsKyglf1UF9P&`P$LrpH6yP4Y|M>8Iwb{ zfw#dIVb~+>&13@6pl@)kd7JMq^*mKEahAhbcDiv@XmHpIUoPLvO%~+)<3mFkiY1z& zExtf~Ec5{w7zDo!uda$)H>rp_Mo@->r|_N&JW7U;DLmYZucNF=01W=ji4!LTAW=sF zTk~^M^s_WPlL;7yVnKKZvyYxW2stMfBNAS(oK6SfMXQJi3>eH$Jp$dmll&Ae;@n>> zPA=$2xZLki%Rsb9PjDgF$J}`klFY3&pCcFwCzhM47{2GAfW}mg?FwA0@NKD9Cko#n zlqZWQ;l9}#7a_CkS8jiujS&T*n*j{tGxdn{w#?utpap%e!@OB=^1*ajC}1t~bMf6A z<}_1+aHtucnd!m%*-sNio7U{<*bF>}b*d>vtqsC)wGK6+Z1VRsj+uXT-Y$jmN!)Q? z1EzMkn|9Khv|EaM>CNEnTCms>Z!@o5cG)G1A+vAi7b#sg>O(q;dWX~DVAgF#ez!;u z&w)YUXFhWuJ@)!X(y`-N0IKrNVd^#m*k)N0^Uri)lXOK6UahM__j&LbnNz3M!N7qm z$x1mZ=i;6*`#U)V`T!8>KraAmkcsXwE{^|qjN4&;MCqBM7ZtRNS{4T-CC_WTUv?N^ z>_lz2e~ih%ccGN(lN>j#4Jkm`NO5B^(G10=6K#s`oGFJ?C8Fvk3>ypI`x zas#l(Z~L5W<55(O zHoa)4t1@HsF1z#b2)&If^rPwTt)_LM7~550M?^7X1-chz+V<|L>A=C>0^3mnytubC z7^yVq#VmJtzo6T|3!~nSY!xz$mZJr3RJ1rV1oV&rc|_u%w^gQ!-adZZ`2dXvycVNJ zgbU6}$Emh;FoOA+TsL#_#BoWLhVdiwvdkHrGt=C$nwl0+tUny8kb#;q%}`L`}!^v!i&M4G<|MY4gBG zNI4s9gC4vMCoT?{_s>Ds(CP|>rzge>vlSdBIM$lr#%txx7kg(>6dxNgc6uS}Nq{(kyrV?LQLy-ye_ z0I4<{T0740S$q%o=q*}j<6c<53~I4mkII!qS9LL>lhlfF znsVNzn)Jl9<5XMg?d;U@loo6K+hFXiy7dL!R6m&7)4l7M+JZ~;HXA;6m}QO{z(@ei z;sDvB^!8+WkbIAHUgB}K&Q$CWYqr+dM~*Z>cNU5oq`K1E3KEM)I)I5J{g8EPsXm6t zWSJ;1UgG5*(Tr-*3rda`$bWeL`N}D3u4l?v)0drq^&)y3j@|5JQK5teJbeV*Wo&qa zda!IfLT|eaY{BCm-CXPKu5GNd-o_basCNd>>G)?leqtj!jnAJMbOxNK7%zBT_Fd0v8`nxBgU<_ZI#4fnyimpU?)@tv)4fDWwN3MUR=WMJe@E^ITQLU8Wc zAyTqWRv4~lme9Z$xMxWbz$u;mgHyOwEkTg)c_8*;`+Z+E#kZ>MpM zysfEV#S|C>VMWNCM$oECi@Z?<8#7$|&wD9~z}B@}T^N*yI4a1Rb&!ItO;uxr$G|zT z4=e!ivDaUl_C434b?31R*84?dPELUc<1ZVUWd#P1MrLDe(Zwt)imcQ!ARyW;aPMZ> z0mKv-Ha&Z#iYqfh`VpmwZnH>JxBWL`406&HIF*%B84bF@II4&c&;SrHo}T8K*OsUZ ziXL6Pgn#=O8OG;g5M$aWWK=OjYwftA#Q*pg@|hAZ(Xh`EwbkcFx?Pf6WdCeUF$O9n z>7OxAJ!;rW+F#H@bMW=($2^=qbI-ji`fFYz5k!|#dx`vzQ2{}RT5Qaz#IqeTTQYAi zzwf0pBFN}=Ld0LG(e*afngAf==-$Np3*34&a(QL`}wznTg9Y{PoH^b09V|Lgx8Z%C6ov{g!bO^fqKY z&PNG7Ry-Q2{;Wvx0&PYLq<#aqxl-`9)4e$cZ9#oqv$5ZjV;A>TN5&k^+J13NJ|)c6 zJF+2Gsg97@A_velw+%*4ZoGJpqI0T?3~0j-&0kLXUf@t}7$zJKBTp?1wED0Hvx-Ea>I&h1%Q{x~Qo zTgkYP>Z6K51&y5F(XdY8F{6UeUni2_q|R74Gr2t8-x1kpqk+PYVYMj#m;8=PQVygObkW2?-gcpE&DBU4zv)<#b; zo;%e9x_OR96KmcUH|N^9BM=n))xSFHu?ZQ5uy+IXo@5m+I5O_SvNg;I0f3O<}TJajH!z?H_$ZN zqH9{fQ{&G(K7Dx9TZG}6lzSgj!Z0u2_XMtE&EozY9?v>PIbB|+XUKd?9ROF>7iRhr zA~bxi4AU~F3M1;8J;799w8nm8Zb;$Uzi_xX2adZpd7I8&1I-`}vYX>T_NTp=H>Y;n)7Xt|YX?|YOV#h|wnz37;9pVxXDvOCKNiXM+f>r?b;gYS&CJ z%coJZL@PtaL+=!zKq3diK&gWlIu~KEMD8hJ4>kmTH4rwh&Ypq7$IqNwrn}i7{?B6!hUcxCeODeuZ4fNlM!rn04||tszY}z%q`CBvB(4I86^H1(GJ4} z;lVJ7XpRF{3eVWO(^)8^u&{dq|Mk2rEwMZK{bh}sI-Yn| zz7$)ojUhE`$}05@paM~BAe*BALH2G9ygd|KVm%UQP4u7FBi|zfEp1UBlWEC2igcXZ zeF$seic_YM$4yTA@|tu_gUk=mu?BI23@)pPCWXO`EB0ZOU1?P)B5R{VAdG_bUIviM zdtGWoy<$K6Y99Jo?%>BwD(=7c0d=ZWx#G3)ye0bp+2rZ-aWF3t_Mo3O

SCZ`3#u-v2?4AG@Ec)rciR41?RFc+fq{Z&0&PmYYbKJzE= z8GvKxZEf_zQFGC`*$GmWKCrLKU$Mq>raPlg-*bw{)iCCHjKWFOgm&w!F(<)0w%=u{ zL%N~sikfOmJDiT>{4V%$d2fFoXZ@G~XimOd`;9Z`bbecZ&QW?h%i^|9iK|gl;}luQ zvF4ogyu4*u7?IrpEUYqPngWya{I>IMN4qS?hfJnazX#^_rcn5-i@%a&>6oRZ?5LO= z-z6$XV)AvXe#NC_aRMC#{z~$FFl0Q>l7g^dIBd6Jm5W!*Ph{3b1j|VNVox;;g*<8i zuN$mj+)D>)3p3S}%N*f2q-w|puD~V~5*BdXnl^iauyJ}Ht)-b#xE9~xaWDW2LX1M( z?7e|-XCb4Xj}#(rWp{)zA;5Kl0;7TPLA2X#tZ_}=6K_J$a#x!amFnSj$c+jh$niV~ zEA`%QlF<+zUR89lmpw&5N&>6$EE-R<&A;dU^jyw1w)e}u^!58;^>;UxGDxLCXihac zk3q=fvspkR8K4f43L;kwxwm=_amx4yAVhv&FgT(iszj^b7oG;Jozfwqn%P4f9e?y+ zHv?8r@udWi*CBsx2ryXzeAJ!&MR>cb`i_-TShFt6?nbePjQi z7=o6{MHN9Qv@$Aa07?1$iJs(N%?_L%UR_&`0hl;n^bu6AX%e6Z-df0kk@ks3qs(`} z*Px{o+Ta(9Hr8C@6%Gi{DaM=EAn2BSzS&s7Gx9;cKCV>s z+xJe{0g#_L7=LALG#1KDBC_)(I?q+#k1MXcR6(E6_Uw@it#_<=K$<)Gy*1UXXqUhi zsbAHjfx5oAy|8yzBb8g+2m|BEa(-hcwIgFdZiixc;gir)!(Ny!6GziL8p{Fzrzq}6 zy&XQ|hNSWCCY`sE5yxUw%ysNi^4#8V$uvORF(Xn$k`jh1& zjH_;YB4aJFE}2iklbKJEQJ^3-bSsEhouwVrrN*u`JIZ=nu*(DthA{_^!{|ViyVj!` z)o98#Xa+SHS#Lw8L=ETc^|a^+mJ7S{{zmKN;`EwHDC^$=gQfYPC3?=rS<75otaP8* zQ^)v{`83+m+vb-bID3!+o}Er2<2IbGwjF3`_I*l@rCJ8P4V>rQ@nA%K3B8TAg5EBs zw>64~!_Pw|e^E@nH+d=+Xn9Jwl4#T=;5Rk&%vrJx%n8|s?>Z)@H73{PMe~H7a4z1= z{641|9z^wUhMn@N@^)S~H)ttc5cZwIk_AworU?1tP%`f&u2zaKTrODh&``>!13<}< zg`g-JJj|GQHwFOV=K~z^UMVUB@=2onjQ#x!0s{R*GI)T$a>MKSjkWGc1}yoO@@%_#&r<#Tsz9cV19lg-;`$BC(qJ?8-wK`15t4dNK; zAt)=TQP9BB_I%hWw#vT;;W@Wqjfi4DaOvJg^92CUIBP@cXlrK)NS}Q>*liu%!Q85W zVdeeUL-AfN&j9r0_bVxEUJSCbY+ea$VpaY&`4(nfX*-58Olkrqac%CrVOc$}L z0c-~^B*pq4&_i^-J)|t#z{3D&N}sA!VGy(2uol4-dpXa|j8GV+g)Xa)blL-Gz#4+d z;Bgv_$Kv~nGy$w7u8RRSqD)_1QZ_S9%Xm7{3nSXMHkRbuJ<>1wj&LxgRRXZ9e{7C5 zq+KIS^!l(zA%g%Ibx%8?>4HCdE!T+LVWG-A38?hF0H*#9g|TPrUB(pRyvD=5ETWdd zFFfpVzaIN;<6(p0!kGito%(&`j6)6@NHzcq8bEq>p)jV@%WwLG$Ylp)08J4|(Sdf+ zHF}1S=|a2T0{!IPn-m$Q5?ub0$WV0QhI1s#(O8c;^mcDUw1+Rq zFC($RfKVFPcq(;3lH#-zKgq}K^O`n8`aX1RuC+j|38#yPQ?a;w$#e_=i8Y!m9ZC-+ z9{k)xtqf8YH1L|$rN-HG@(=+}PK#2=qaV)NrFb?1|CAK5gbnIyOj(}G?*$z! z$Hq)DHj7$?oGi{~{5voKGA6xI)I57cBO9cF3nC3w4)~UW`Ld(8%M{TmI1(e8M1$OE zmZfl%-j3)+in_F-=RZgMr*j z=Iv$%7I=G#2hobR+Z^ZZb@FE)#oNMDnJ5_WWp6kZLVdp{r`5QWIXC@;7#UP?=du03RD&U6_M2Hq)haN)_z-Xs1zPCd;` zg=d9#q5H<=&DF=GFy|2pHF85U*o=k=h7O0d8La6PzLkGP6{l=&&pDsr!GRTyaXxq- z(P!^!bp9;oSfjoNQq{nENny?&^)lwdpv$kSblDX|S6)*SkinQog%fmzeAVT>icUIh z*n1O|x_5jy9GTa*MVeE1IVCPk+0f8^LDs5bbln()OdRe1!jm$-Nr1i$f5#PGHZ>4+JwM+*N^d#)Pv}#Jx5Uk84c6DMeX*+? z`PnBNe<6L-sUN2k_0pZUJu*ilO+pT2dI#9fGQpo*M$dD8Ju6`QgedGzamh?SIKNlm<6_Q(g(JOLMk}-Mmb51~ zdJynZ5g}91+78=T7YeX80l*vITi3DPx8luJAf);xoINm3$avoLHh6pa%(z9xK~%9i z2|3Ie<482)db*LoXS9G<>p<3u{&uHGJX!1{Nj z{^qmG;C#tW#zc}w>h0jO;s#}DFrbM1mDyVbvr`^`qfervjN)sDrMgy2nLXS z-aVYUYku2+4*ztf0KVW1QRup7lJB2g<>DJK@J#>fr1+8k0wphQW}*iNZMy znLQ0U!CYKiljpRD(NM;MGX<#Zh1p2`K&?@zN|wJ1=5gUf(Kay?^E%?9ld-yy+)-sv zES6s3#LwVw_JXjXc#SvVh|^k8)P_*Ddpgnyw}*EAj2jNqwVb>iUMzaAFc3 z7q8)ob;VownV9Y4adS_?7{v>4G3rPGLziI7B>AofCuz}r$Tb`&p`%^mcS z1vV6cw`(jYn*4ZB1I=Es7UR zv2v22fdh;;j1%3>P!A~d*zJf1Zw7#ayVaP@xV`bMEH#}Feoa^-8vxTlEWc7&9$_AcFh!<~@-OtN z>OR%m?FhXsM)#z3%d_ET9Y;icRMw>9L#VEJdvtuGj%c>7m(eD=(6QskOz-yrpE@6y z;uz?pjdebRl zo(T$r3P59#i)|csh1ay>2GPOczB9NzG|~d*c_#uBH54e+3)>4JZx?K(4uB>O5S;t~ zs4Pe@4*)ZM?brgy@=2-jPldp`ekV3Bh$s^iGyFRDcLG41+h7!8zQ{qv9P_jIbI3Oo z!G!!-Qzq<1m-~4Bbv*a&uiw&tc*S8DF-PFGKK$NyKH>l(y>aL5oqp*b9nzn?FHW|_ zSYg1e4OP5fsiqvt9w~?_#hn3>3a7cb(;$R#b^`Vih7odPbAF+rbDXstytT4pHhX=b)4mQ+I-^9iMGsghKOp83IFQ5*+H0@{aX=Fj8AVP8Fg zyNmI*w+tuUJ6T7IDsGV`I!(ULWVDWsZs?|ih^~y^hy@J*hgXgPo$&tk1XSS^ zh%ccq9;wO2cpT$xLm_e0>-B8txfd@#!wjgMb&H>wFA*ioyq}dnuxjs!OhXQnucaGm zJ&a25Sy}*sAr0DXZc*w_FAz6A$$Ag+2I*sJOd*1uqqvZ9HSzW;+R%cxvHys&xlv%U zWX;=raVm(6w^=iaPTrbb^_8yOhtGbH{>3N$SNeb5`Xc%tKl0u5=Vw1K=+1kc}3 zMyIh34LSz~jyns?7*N@HDDUMu5YXtH&<4LA?j=eyG*4WPWup)che zxK0$co>{IG?<&e5IU8$2qtxB-R}7{+;53)^C+lsj1!S9Iojrf9>upNy&+(mpR7=$lU%0QPn8VP!a&{2j>q1cqh z0-=X-$FfHxYyA@feS3K5!bS{oJ{h}5x2lWrcH80YqUZXM2BJ5)2}D<3uW61K<82t) z)RJedswZ1`qiBN+KR~lbyGy09n02VwlGejXvr&S zIIG&KFi7ydGHjzeUFsO=$x*3VBT54!qq{HK#$4bLUUURn>8^}qbmXfgx*D?FY9?rf zKND|jD#zCOIzWe}lxAQIok=!E0db|9vDm$qF7x*N^XKS){P5qT_nr9zxi8nxi0+be zKqA_GfzHv--u~nCGt0jZJn(ip*Uq>XUh5&7r;A9`b-Q&Cbuqn-Oa^RZmh<5pES|Ow z84sF`eXBzkI5^m{t`He2>!@pZc%TkJEf5dA4H+GJyL&dsH0_?o9`dkz1eP!88DJ&I zJsj5ny$!m?_X8WG+Q8nOUq(k^fsIt*i(%lpc|?h3`gm0G%668(Hq4f>T$q%N#zPiIWOgCy&XnI ztXIY}Im#2*<|w^Q!+X-sibt?baDH+O>3cndJtP z8!37qsUK4@+;jSiVe;NQ^-farkKk>dO6F~j;2y=>GG;pB!kd(={&7H2Fa&1d4dDmj z{R|*LM48cKBPn_Oigh=mV7{>AQr@I>B#X!m`Qm0zGZr!{bXers%K__BHlc=r1_26! z!zQ5vOg7eZUSU})xYPIDvvs%~<_|*OOCiR=8=Qr=5xcWd4jb0yWHz*ACIygjtVPM|>NvKb?x z6?F>TJxibu86%bCy(91Mk93Qvs<&**>siBijy(lft_c{2XM7-8@NUhy-m0Xt(LVmn z*T@g!>plI$YwORK)p+dHGKSm{NgU-vS$$8RiS-Qys{g`EO~cRi@7U`oU~N0}fi-nS zF-1o;a()@t#ElKwZP)^t9S2fU@~{z&Mo-)?%QxL$O>^^oq-+3=5smna$&23IgPx;e zoigClk?CrWty*FHW!ICOQ8VzH;FVguyYffW@1`N_#PKyuEb8o8}j}lH@IOxF78Gqoy z;ka23Vr`(`A_~-wbdZ7`)*ku1elEvNFJrBsxA}D(KFK<5(A)O9)I%D$_4Obc_QMTD z3fUfDJoGm9b60O4sPoq9zI1Fy;ifX|KVElQnvT}n*e~d9Piaar4h~K?o@=D!!D;!$ z^mfdDS8tDduQD-5!q%7^e1wSVnzyr2xyFqh9wv%z!B~%s$rTHbJJU1nI|`G-a8vq^ z=o?b&veAYtD?d1!v|$bC3FE~Y4>dAtB_sqjjUX8omjfyb`5ZrSoZ>*mOps(mI1fxB z6G|Ixh{l0&q z=Jg6j8NCb4Q8jfR0|tU;BS!&>c@Ot5To~3p6R<>)s1GS{dH*sHX2pH`pUw2peRdPO zU4c?GWts8TiBpxXysF603+Ec$eP^5w-zf~2g8B4_+;cFM@HqwbLZecZLu|5vme@>Wl8-*OKNseuuBz9V-gbENakmIv+D*AJ3{O z)s15Qo9_vQ;DFoKJN6~~2J<}DsyIl*N|*2wp^#5b_%$#3cH0L9%Jov z3(d@$a>ma-I6MsWPa`nHb(ApAR{;6gXWS1ocJZszmo{dyQFGMm=^G^g`k)XCy1;a& z!S!>{JuCyo%>R&S=g(iD^XJaX=dQl`szh7KPy!DpSqhMhae`<08XP87LB3m}!yH4| zAq5a!#Iiw>|IYUw4;vkgA^k|~hkKG;@63Y(AUie2`xFED=CNdeu?geQv1J8VfHDuA z2BRvjSU1RVjMVo$eFnV45d`fIPc=jZACe1=~5h?g7A(RF;s z7yh#wG0+5Jq%QxRnl6d@Mo@_9ZD0cMfixFM9&>rmTCrv@4VrWulJs_40axGqo`9M; zGP10YsZ4=0P)n81P!YqyywoT@4xC__B-?p#s^#dl=pDXK&2>Ma_k}JUa6+~oMklO_ z^Jd6(f<*IEr_SKLF~XRgcX^*5{jme<_%Uq^k#){m zZ)faORv8W1iL6az_GBzDXtd!0jCZ|SI=CDAqhS4Ly)Aq(=xuV@I~W#BLUVV$jeW>Y z#w?4Ww@V$*QEA(h5^u(c9;g}^G_Mct4c^AzLPvYbh?AG20}uJ8aq|HPdE6h&qwAt!OQJdg!6eu^03MBJtf14!h9+A-?dpQ@ z50NTkX8t~`PhAr=ZXhIGSW#^HRCAGM83^k$cV%KT!_GI<7mcp}vSaj|7oJ>x?hX5O z;asO%KX^cIe(gEB|K0{1OCX9hyu0%bq9;5>lO}RalRk%r?p>HiKIt0kg7CAXE*5;f z(=G4&0KNY8Z7+68M9pE7TiR^@U%qlP6C~p7GZ{?WuJAjgO@(F2CI8`nI>dgWmeKchXf?UP(Xr zgMSAUqJ}>JLq|Sx_SyyD#cLv(4L$F0Af7Ub*{BDDB*FsJX1gxdu9ya9Cve731aH1$xVy-%9U(_xtGH&)?_I zV*YsIlb%2?c;WNu>T9m@b#r68lw{~dgana{QRY^3^c)IQGx)%IV=d!#7y{%n=qTkM zbRSVdzTNM<`Ze@NAN-KKcHN_|r62s^m-`Y608Lf}KD)Lj`MXT}%mYt+@)PJu%eq|i zu&c%U&d>gXx4eD%_cpp_G5-GFKk-8=pi)WOKm)YWj+_`gxygnN-mp0vJ6g0J9~Ft*)~CMW9>5^|Jg$ypqyOH z_j>K;ew}VS`9%84E1qf~tu4mR2Pj|AOIIIz1YLLh2CtuS2j#4Xe(SgM7P~Q-uO~d=E9kHNwHFL>)xEw+Z&Mk8lJddidK5ra8!G6!_5>=A)Y}O> zXPv>=0f!H|!QORWT5@K+;uXJ6pZ@ec^o`&6O!|gzc)IH(uMufz=Ac*v5mJD=ObdVb zp7+wNfBNUk{q7#t>wo&6{vN&Oy|>WqAG>{VPMwgoQu_2|F++sRKu8Xtq7FnJ)2Bau z*P<)lDepb|+22UlTyu?JMHqK-PEK!rvb_-nz41+NrhD(bj~?}?M=o=G=D;r@WAu6X zOgKcVz*J%Qgx=n;k<$W5d+k{%1J1-AfgU)Lv!l0LvnXO5&PX=*>?~8GDsW>-Ko@!& z{D>}FS?&!weyC@RBM36q&Uy{0rWM%3yNZR5$a9tN%wq~}mcN2!YZ&)vJ_H?<>saKw zZe;X?<*Yuw#yK@XfBHRk+O!^xW|Y4u$_WzRiZQ*n@yKJ|BdizZHb!Jf1*u!SX|XfF z=Lc{b#=}{??dyktm_)Fq;wlhRw%(y=GLz@SvrP!EEE>48c-kVIM>aip1zix$M z6d^$e;YAHA>`^eTdc_gGWG}+M|S(M}ft0~$xMxpNf)TikefBqHp`Okl0P^SF*xg|35 z?svUU{{8iryojFj+;4PQfR8#bptUDA?&ET(6gyWTwbV?WZEta$6!z!^PN`)*dq~wd z$lkv!M?Sb1CSSN$X_M#q(U06tH{X22Km+&=&zS+!7rQ?C(c9<`-u!m@!5?`!J?1fw zk}=Bn79$YrkijQXHU{Mn*}L5mT2<#U11zl#P~{y{<|fzSNu9leVKX3a`{c%v@*~}T6e}9nOGIHKO1B56D z?+&D*P6A+AWuMaO;r2i~xhDCr*4t$7%*hFxBMEulC1I-!xRqvA_MSg~UQc4*XiH#p zl7&-L42rHR3}=U&izfP`EV}R(diAURUGV10+PiHrV&3<@_tTYEUP1ruUwfe|Zpe4c zN1|gXJBHT;%@CMR_&Iz%leNQI}4ZI^pAe@cDn7h+v&y| zZxBN!u+^A8imVGtavbyVNL`O(Iz$z;kuKo8CMttY$f--&`4~JfM&YoZS}R4axB0DR zdb`x|F!hXAb9xw=BOQF2^+VQUNcoa=Go3kN^2iW^af364*cmuY5zWaFIz-Fn9_eIo z+`{2L%mFR+dqj}em>he;{E8zr)_dxEBDFVdNR`FH>}D}V`erd-=E&RRyv^6jkO@y8 zWo42=Qp{X38B;oVy%=L*!vyTns0{gv++B;R$iaKLXv(~lJ-(Ci0CyGRzw@cB0LO)B zSlqoN1Vq6iCBlH;+RDWOi4v)+jq=Z!;Zy68f&$~}>7?Jh0l;>HVV8>dv;cbR7A-7l z?^H5NV2yI>1d7=7^VPjsk<&U;3=^6q_Udb%aa@cTj<~$#HRt_xzBmGN$A=H;oo~KC z-|_NGZ#Ou{3wbxZwGq*h z(G$FFb!A1z$3^|zv8)>}LV?cK&wp#{4_R=y1)Wh419eX!0lj5lkp-xxXheZzfM|zM znQ{q64I42hF6s0){*TYmu}cDQCF{(;b=f0k`rcppEPdcLr|FMgbBTQSViBC)^4b;O zcNGdTwkY7=IQ?bA0LI9@3#ex!hJiarU%u(t-#}mg^ruMlg=yxGKJX!W-Rs^UpW{dc zgZ9UL*-bGb1G2?|G7T~ht*%4P?Se>Iv8GK}GGD{K9uL~=G`7!<=oA12o`XI8!^H^u zg3a&htFNR_ed;cWxIFI5Zlnw_^SJo$>#n<&p8cF}7(^7)+=oB>G5W)I-?FUP7wDh; z<6oeE@DKlII&t#2>pXZ2-8li;cDbcAi!TXsXb^ax_AXe}CBMx)UMpp)!W=pR0Hoz(aId;6jf$I%wj4yT%@E(irGaYZd zG0~nMx;$Gd8P*d(Q?W+Tn#W}h9Es?C9>$dzU!~k)1LMe`%dUGdyJ9nZaOf4I%w1R!s-a4u7f-k zu_EeV-^-a8JB}1HfU@4!@k@-1U@*b}@<_iq(DFG((IX2m^{-17Jp7o8pwsZnLJWD7&79y*D#tT%*| znOJK#Lh8Pm_?(CJDGEm2T2BXPDJ`glDbcBg>2vps5R@1Lc?wzLB#x8+M=)5xJqk*BjsT7Wv6hgm3)DXDovI)+M@d z$KtX3!Xmt{3TBmoAZ;toY{}==NE+X4#!ksbX&-16zxx_fcOZ%P22VjpTETb*(maRf zwwPeV8qdjS$_kao_P+OhKz_ge`oFw*zpfEOhC}<$d)~7h6oRHTHBraGIkI2#HBTNC zCtpwd+NaP{p7zy?()ndEX8!n3K15%;yoQ7Lbp3NQ%Yd1pIPvI4*Fti-z9?^7T9M4H z0tl+Y!WwNh3J%3X%{(IX%lwgxD#tur?f8~~*a)_T?o0RY@#TksmZJ?Az8?IHKJ%LE z59!iJ>;izJjG0Rxv89LIpoPH?eRd41kI&Jc00($E(@&&^#^HPNRLGvLt$_LauY2w5 zB|>p>0r@}n6F)?c`AgUNXBqf^{WG3MH-Fg;^iTisFN!hnYp-|}{ez$WpJ^~GXpAxp zin&Ka6}rgh!r?P2^t?`xc{1JMel3A}-Gl7e=IdSWe4qS$(v!bZ(#k&dsn^iE7enM* zzwNnn>hviG<1se<{q*wQ)1UdY7>%tjzxMQHUH<7}#ISeyUGI7?{grQerjNathcMC| z03Kq^U;tvAQ;qy|qMXT4jsE)}R$-X(OE@QWTy##+4Kylc)}v zezB;7u4Ncie8+p2NXq9AKSN)3`bj=(*;I!%}P zeDZbksVCCkeawGP*BranF#$ZXaqdTepqz@O5s-DWh}c_BALF_&%mbhiX?4&optEKj z?wqDg2H~8Kbvk>NlVz3e-_R|%92b)PNs2l?snN9k?cUjbt@G643<={wmd zmirsvh9P$D+*!HbQ=j@ZblK&XxnTu8_R^RBb$ZEne!Ch)Jw?!rXF!+A2Q|spFv@Sd z@p}5XpZh7pYq?WpcUg>f-?;dmoUSbGckL_{9WzmmeCl4JK8WvcdzD&MBl{&|GOQ); zx2w06Mj8l;cJ($cKZU*&*V}>Zh_b_RHivl}P}`l>K@0qascyoU^gV3RD!N*IRh@=9 zSEWZ^#gs|H*m%|mYf}M*wE-qy^QB~2Z1x5jU6S#T^>(*$9f`@IgUw0oslq9On|T`& z0_75ep(2>P1b#^vIva9udb<2-iWT6%&t^|pTNKt7lx$5!sRV1U_vm5G=a(3OVqqu) z*^b?~FgWREP&bMAU@Tyva-shCyNdL99l{|FVzhC=Q-x>PVu6?dgnWLr_y!<+h7K0E zT8qB^$orL(YSSFD!FFh^_28A5O0-%;D?JCjlXh*$=^ePTHx|(_%nNG+#&ytEQd(NZ z7PJN$o$mS6mTvvvAvy2}Ot*9W{;ST>efO@4H&=gTPe2xCsIAC?+(Btass*`%$9qUa z*=(<=(sZ76O?3439 zCl^SBDG7B-vOxuB)N=R(C=2N@a@HVs)LrBE56(`j_jV1WqZs7)>5DK;x);(^GLO4r z>f!lUe$ED2_V&vyB#i?gpKD+qy+m8kO)S#ry6p4!yzHfNfA*Gs@PmJ{BVVvaxWChI z2ap6!1z#T(3Cr{9Y2#!3>8X9}R1_VBf_8YkANj~_@|mxH`cvr{ixI*G+PSmm=wlzd zBkq=?J}|VX?|>B0BS)pKzUE4OhNt9(tVHxK(~v%AyqC|J!ayL(Mb$a7AK*m(?&`Up zOvZqu&?!j0#N?o%n`}lc1WU=u>d>giI;f5g9f18*;cT?G4CX)F^9uUe+kTvWX8HH_ zFZ?Ih+u-fvbdtX7+8?DdN_gK}zUSu`V+e)*FMQbd&`)0fbM*JF|0i_S-Xm2mw#cK; zXHnFox3f21qrxFu0hVw%Fimt?>}PI|pS|!cohLT8t;!dxNkh7GmbvJjNhYEpKUHrx zmye;hXP0fhe=DAl2uJdhWxX9vnxykUR|fi!*5z2Ghf@u@N#`2?TJ&%-D7rDScbQ7G z2p*+mh=g2dLv#WLdZeC_gL~(V8m+eRU8Iy_%mIeO5k@V*Y&09_zP{+_RxhHrU8bhS z0T>tWef~W4T%(xuHag>R7p;!2Y0zC=qF-2>>U0y1Tg*8?d36kz9p_HJhLsg(2L?d& z5JUq5!0BL$L(nN>k=}$(bJshGUQzMxak*O=jO)#`=X7_mbEqKG@IBFHW;kJuCO9X& z7Bn#VU?>~j115KjQo!rQW!NSi5s+oNx7en1p`aHXF=VqWt3ttLw1-^l@=OTmLIw*P zgVfhR=*xFnjr1WSX71{M!PivKh((fTS}R5AF)dbm^hAeH%VFINwB+|n*6~6;DP&$^ z^e!JQbz}S%Vap)M?$}?(T%x;8Z*e9DtV(SyJNagUfB>vU#)Cv5pSv5DiSdymx|ixu za-O;Zqn?Kek|S)+@BZqUodW+Wu313z=T|4OEAughPTjL-}+8^{_~$30wV3zo8R>R zmm){bLFS9|cR8Z-(wBa_7(%an<-d{o69#-75_iFG-Hg~n^om#fh8Pd*5oC`P7vDen z(T|c`-{1PJ-;n}HexHkp`7_UX&NoT)q_^;(F<-s)zi>hQJKT6UapD9${_$T<&wcJU z(KS+xJ$feI@P40x&HUcN*H!BdI9L9d81CUX zfzpjJtm!WsP~jbm_UI8g*fl$p$hmm`BGf&6ZvDN>91l1divHEJYQ(P z7`Xb~-+tZl+)vYYzT`zx>++r@nu6~Dccx7kF^I--iqgIPzF{Arl<`@-mp!yc(Y?xC zL;wxs)G-gGvORD>jGp^YXz`fnu_Q%qLD%`;lR@Gke*6DM=EVrOGCy1K!rI1 z|L7qt*#79*KbCZ{*Y3TNUizpXr6*nTbf4ohullQW@8Lc4d!KnFbVgj|Ki5 zq35VI*Hem|TVB8R+H2`q&-!}$y03exEv7nz{`J594Ka>i{GxB8H@xvJl5)szKlQ0k zS@goWCF=j@^xyn9&lDZ;U;fM6>8`u(miw^|dFHd8PET8+A258ilMf6D8o=P)cQ5Ps zd%wSY|1Ph0{Hm{d0=?h`-x9cpg3o1q`}_2U*ZwD|YvHl-{T}tGN6C0N>cZc9?Q8#| zkBNWs#g4r@?)bRTJJE|@{K94akD&K1_qpYk4@$xPiz?LD=h-u77M=NgtSJerxih{G2U}up_*-bl(oO56DcX9EY0#&LzGPfUNoHjyyf@BT zYrSq60Q^p|NMjwKy&87C`>_&I2RqS#*^1ZfaA(z`Mg7eV%KmJZnfUE2V7h!s8>)HNzlxJj#jBIQh&WKyD$P~~QFrMB`-`fFESv!U<% z?=F`jey)?baK6*`|K#N&lYjZ=9;Ey4od-jRj=*`t`$Pkw>bj1_j&mQGIs}Q{OlWY9 zHlh3v1%^-f%CDfyF1t+b$A-ik-}na_p}75ay5aikDW9{#1_yWJ;){&|{>Q@p_S^5E zfA|l7j(+4vzF&ko8$*1(;01q`F1h3qDn$_=e_vF-?lvKyeJ74`dq7W zpBW{5v4Y}Mu-k6?IQ`g<{ivQqynK)A6@KMcUO^xK_$LQp#KoPgbU5nrLqGI)#h6ks zs`<&c->!n4=Lx=g`qRHo3>p3o-}e}wkS(2;dP;xMjaqvq!P~4fE}Y+&^?$@89f=y+NRA`Y9A|OX*80xa*2~v%%5nbGNHef6Wbt>HS@^CmSgIJExcN_4zyY z()**qlN|%m4Q98oii7E<4H0&`vlaUEoeEkW{pf3@b_DB?*9685uiK*^bDbD6AN|P3 z^bX4#AN$DdVpRP8>)t300rG{{|M-volz!|dewa?4Iw8|x8viFh_Y2Zw0M9>p>J)u! zF)rRMh4^oR2K~s|T$p#7k`+*;R*#cZ1KNxQO^L4L% zgZ#YtaX0wdeCrFINB_q^{g+a(&wS6IN4{s^k6gy~fkyFt8PhTjUJJe+^O);wZPx}0 zJh4GP*&Cic-4VfAN2wyE3#6c(tQhocrE3{JryySQ$PsCnJuOyg7l&NRIalt;QoUVM z_c3_z^?WO&Jy!<=d@rPofw%5G{4D+aC;m73JCFGv=;>EH-*xSa9`SO~C9k{pH{^3) ze)_9r9KZ7EpP^4(xJ};whO55Cxj~&)V_Fs+skh-xCIL{v2hjIXgM#ZNASH0?Y%ovG#ux?@Sj?9AA z<7_+DE5B%CVm*SUEIg0j{LSB{_q^v8(O-8hMnoPPuLVbI(b$FO&M9ZSWDh*>pga#O z$e2ODf4hv0=Y&hw>~2{z=6UX@#?Gkoi{602A)mSXGqQ&HfrvmcDhMdmz3g<&^ za`1{*{2RX?E*=XTp*+WzzVtijYrpoX&Tl+d{_fBJ{4ZH^0lj#Px7_l6dH+X#*-b(%~h-(8(HB(14#MJA{CR z4ox3-J0mYr*u1$*C&RGT^0{@#xEPDFa~y=6lx3rZ@7svTNl zhxaw_$VZG^e)m>U9L}>zEgHoN?IjsINK1=$dpN)f=}Vhc;{ddf6U+IC#sb+8%m5eC z4g{iWw#p~XyH->oWuRB~Y$6T>VZ0=Ox?J~tex`r-iZk@=7o4K&7lVc)G{5|hAEfX5 z$;;^f`S&lUw=BlZJKl7`*X5`S_bn8jOzc0-KarX#Fcgu8M)6q~e8S)yVUqRN_aAuR z0dGJ2gvWn{&!4?LH{9@80rhWq{aZ8-*Pg+`l)X*-*&q0UzaxM+Tf`r}fkbpp+wd8@cO{CAg$ch6Cou@y|IYuk&kM z|H7@6@tH?|)&BDLzC>?6_Am5#EwvrX}lU9&v3JXQ+S?D_=SM;0AQ`SU7 z=MZT!{63%Ya(+HbJsIiz`)}U$&*@2*K7&qgE_L4iZ?F5i^p^Yn1D$JU=y9i?NI!eW zPtb?YevqDb&0iP#{1>16`*dde5Iy|Zwe;l6pG8kR_4U$$aLeG&a`T(H=WB$*b1dbI7O?#Zd5>i@8wF2# z(pUMjS0=+eO`K(4^EF>B zHCeJBrFbTZ>WTZ8&-}hOY~ebUM?d;HdG9^%d5<{aU_hwXU**5lFfQNa$ji5V+w&I( z+oe9%U;3qgEzUUBE8GC#f}A_omx#~nr0p`V#Z#a5)dXpA-F4T|SX)ev*T68WFIkU$ z=Xd_KWqgko8Su(i{#$wdjcr(y>x9nzzAkUw5 zFYoaSU-+%bk*BS!BLX;{tpgg81~rURD1g3{51fk#E9y`M=#x7CTI(Jqz_~wg#vqE| zPBn2zXj*92+c^LbyiMsU-pvo$MUE$}UKH|az~rqD*)eNO?wK!+$)lF58jVP|;AQ>v zSd7^lf^m&8(!MfpXG4h+Z+nYnDxNkDnVEGT_Nk@JrcP^TUpk;XFB4mVITy{Bua=?1 zhMf06MCb^mp)V|T3GbL)IUi3V1xWEKlmvc@)P)j7R=LgRkP~VDpb>0QOMO2AQz#8;x-yR!PB(cL*4tC_pxh(KR@+W zZ|MLf7!P5@fp8)}cD-75XaDV%ckD0Gmj~nk%@JNq<$A^^-3sk;v5-f+4;c;VS zfjv8W_N?EZ3*}+xom>>v3tsT8^pcl+$6`=CT@=@|o~6aU?|8?%MJQuWSSYig<$G|A zN~g$M=gGYAh2JKgJ1#nAqlyJ9|IHUXM;y6fgM;t!!WVvvgueOn>}qGD zbKmk=K5d)-Mg)pKbHx=`sNh__bIGNb_!`{4c(M?BhA|C3;IXq8kpHn)jg<`l{*Jf5 zTUsr1bn1tG`1?dSs#1&nQ%{yPT7Xesz}o@vF2>vH^;Iy|k}MDa){y(Ho}I~3znU2u zTsyE4$C-9Zla;P9w!uK@k$S=aAo7zb3A~bc2~nN#b-vgr;jUx+^DCZnR*aC_-+hwa z^P88_+y2$%@|jQn$??T-IZbbszq=ScfB0`Np*Q}sE9CEQ{Qd`IeB6fla~_$Ah|lPN zh}t^7)N9uUo+XMjI#L87o&qOK4XQwr_3AtJ6}KXlRqSefTjl)`Oc61*M2OhHdicYy@xA9MJ^krV^>Ou7CzTyTZ0P;^D_=#g z{MFy0Uwg%GNkr(^f9=&`{G2^|UJSq=_@VF7IhbLQ=>=?*vPNHbn@mM zBZeHQD9UDDIue&2tlfBy0R zgwzUO@cWLdVo=tbWujd*Yh zJv*W}s=(jlR4r*e+v5A|`R7!xn{T?2Zoc`Zg-);Xy#$8|b=6JxU|~pnj*s0FIrZ>8E^+_d>Q=R`e)&adJzDbXbm_y>9VH_p~*W)G7ubJnF_u2D zM2J|4g%?C=6o>zX@Ye$Yc`i3B#?jY&^^+uxPH8|v66S``a5qDl$90%e8L@7lf1E6w z`9ltZEyX>`)Dek8=$Y?Z<-kl8j^PbDIAnh3XLeuPNK=G>*1rFs-<$%Zyga+IX`N{B zjJ1|PoX(w#^}l>EVAwdhb@}(?7oC+h%3u389+Vc#eDU8;e(_nl?BSY5_7%@PM-P5> zk_Zi7A9#(fCr4%;c0Hmo={exXPCL<;@Ww_H11Mh1$#v~AS5DpHw5<3(CBrE3pDSX$ z$5mHdF@Qk+$+arX4><*k*Zf;w@LV})lfV0s4}VO(&ZKBN zZb@f@9Ax7oXjGNjjW^%mbN~EeU|l60shXS#!c7VI;&Hv}o$n30O7fX`p4Z^Un;sj6 zL)H5!{htT{XGSrPiM{LJv_ywapFU}O(Fc$Qeh@>sN9rU}GqX_|W9mfKjCifr6#zA_ zU&Misho-|g;j(x)N;T~H!Vv=KmW3`yNG0oL_=dbk$}@_nmF}?D(A&%t-*(M+`(c*F z<4gMUo%g+-Ui9#n$@e6yfMwG5v%{S5`C*>+{dX+i=d`mQ{Y(G5)YF7qUjvtEa2n2o z-tMlqu_rHi$+uhAvXOsyeORuuN1k8eC^OD9(Pyi-oNGSRP`F)XRRXd6{mc{i$^Y0` z;O8oM(p0}wr%qX9@Vqz`gbupuV|F?o%2_PcqvBjU$%jXx6)(iX)1UEm^!hiv*`g}? zOf-05SFYB)+FS-@F}r)&aubb(gmz3RS{EP_@<JQ`ZEy8#y)iXc*G;2^la()^X@+9*HehmKS2Y&ffOT;pf`f74UWl~Fkqw~79zh0N z7}sV+*ABF?(O`15k|KQs0tiL}I$`AVCxmb%ETyNGYn$TecBE-vurN19lzei!9tNeY zjgQCTkcHbyAD)55LP%CNsI{S8C3r706Yc@9oe2o{&K;~`Lv_O;Z09-ZWrWZzFB)T( z`&plN56hC~zvqqgD9$qf3kUl)-ZlvG?2V%ydEDX|*o%JUsBc1u6Ka+y$hG6uUWRwx z@|v^sfp=b@@B7Ki>2LkWrDEK$@xs4zWQPCdI+}rWvJ5RbM?GqsDmt?z??W68r9{mK zXl{khHomtX|M(}oP@nU8IjWGK+tX0EApnQ9`JN1bIJJO{k@qiQ=MTL9gU0v?m zSO4mBzH$UmQi@3uz&skK+<*51}Lc0Yljgdp2a?@$xWf z9(0d01+c%I|Bq*U_`@Gr=JjF9bQnUdOED@NGW>gPi_Bo{M}Fi7Xe@wEMYUbKsm=9n z_k*9=EJn~tF=D>`r|%_N8A`%&6n zg3T(NNjf(J`$iK!7B`Mb&WSmHPK&hpcm9{3kuQ$iJnqYGAnp7{uJAbG^W#f|sHfU7 z*KLCl*~gUMlAJ6Q{Ge+b4G)}-jBnMLARhxcjh3XCjqbV{;GCKv^3t*!s_2_k(^ar8 z%15;XJF{WUl0VVr#a;2wJ5 z!hLkb$*ZK!KSb96n+$u<2n!!+5!0mD!9@*EwS!ckH^ z{gI!?1_VbI4i?^kY|Fkg)B#Vi-sz`W^)@1citbK!@kWQ7dmEvKX42L5xE2JuDkD% zzxmh%cBr8?1K;7#AR@!Y;`t>i#A#=Fj!JXQLHbFPiP>Q46revluIn_GJYdfb4)^I; ziStgXcZ{nk?JKaE-g_FJ3!Rqb%#iNYM<@D}>f2(?l(+L?wQhVFCdYlj+kvaX={|W1 ze>g&Ut&bl+aWp0u@zi&WFErZVwQ{F9na;6w#`@rW)Dj7{JLHH}GGvUd;21^feD7s2 z>hijQZsBNy93Bjrtre;}sIJ->1QYQ>Cy6>l0nx@z8HUxW6Uf%(&zTd#B4 zOoT}xY}5+Wx|6&~ILAc^fmXm@nTmn2<|FEOGT_rq+-mgb*fBz#Mo#a7kq56FYGYz; zB2=fAyoSX@=#d`urHpbc7-_X$n1guee0-x44Qm@pDRSp!J!d71&E8%zjsS2#kH3=l z*%WL*td;9f7mn`xe53#K|9Afqw$=CfZ#H1Aym}HNX6+e`-=hsAJn`t)k3GqsXRw)p zu^xs-W*llU;``sP3KRv8F%9#|n~-Ip&z?38^ z;pJtoRfaOz>z8RS46&@x^;_UGfIeFJCG%(bde{vr*m0f=*6`@>#p@S8KV~#qF{V5R zd`{=0{3CZyj&Uz zhoRbv%%-GS!Lw0{b2GHL1D?;adiJIF#xNyDiq21BwA+|bbISKo{+ub!$IxgE^Y#lL z_P6QkV~?cQedd*NrcA!}>Adjc7nVrOKl#Mp^Vc~g?In-=VfxFb9!Dq3DS4mM%ieka z>uuS?m^nY6q4Vv`^2|r*fq7NE=c+f4X~qNXxn6Z6nnG{q^NCo-M9ojs3Sf_pA6G{! zr#2z_QY-c*fLsO^=E(!hp(rh#Kb%#DM|%V*Z}(eweR2q&itgtr#zO76$4N zjcH@oNZgC(%js=OBavlrfb$yj+KiD88Vtz1zTgj=p*#8{ z6Gw=aj=+m4GjI3zUo%~Sp5GaElj0eU-(R#_Osx9V)h;k5{41cp@uPx(RD1oLFx zUP58U$9uHqZSPuW_0zkUd>&=0mx$Qvq-fOGe%Y9=7I=^n(a86Z1)P%>n_7+;0%Tjwvki1F~QBD>WGL{@q%O`1Q5~Kn@$(MiCoqhjDKk!EFp_Iag;zu}^&ni7YA-o-276^sae|LAba|)8qjx6ta&sS#w zpYN4Nb3iA5>QDV2EtgkYJbvL9enASD&-=W0nK1+5qJN{CnH9@_%kQ^qeD3Fdj^*@f zmztmcnZGYT^V6R9j5M<{T#JF&lZ!4~oS&+%x4rdk_HQ+w)cDZ!9IQ>huR!sqe(I-f z4}aJ1`f@Y0(Dg+NIW;8#JP3n9!H;%<`FH=_KWoO>PyN*2wT9E6g-IOQ-6CK-z% ztm&gTcl`@M%=S6Yc&6Zn7aP1ir4$7OanW`^MwPAm5U(Q1sWicLntv~wv$A7Nty=vXd9y5AYup%E6b6(2(qP~PX+^Ip3QITvR ztTR?Vn1;+}Ts`41%Jn*b(36NknVeI^n$a2+_4hH&W#&*bNu-~^r4SrYiVuS z{B@R+Ru&zat|+g6_jmnkw!RK}Q{`4+oNxM!|E~P^Kl^`L2BZHlYFOT#qcf@+R4UK42w$I9!7V#M5}{{SF*i+8hAS zn5ls$j|BLPuUqGc{u{;vI<#_eHOruUjwXxVF3_95J^)IW69!r}HS6x2{EWZdP=82+ zhIvohLF-E$G0MZL7eS+zN_;iowF{ZP5Jlb&gP4K2(s@mI(b|BMk->bxdV3=$z2lS` zBQhh);@Pu@97SSulk#lP`9~y7=>vxMsqm)0;DqnJC(vS}YT@lmbyl-cB;yv7vth~6 zpPbLrk6lH}$TXv{dDcZ4mF2vF(Eypsj`uSB1~sGtPT!Na@eGggb{c>7``ubDXT&S` z2iLPbi#kDI4P=AZ^UC36o7geTsEUbfW{X*-W3k4InI{oTd8X5%l}c%mU;;hV%&!E) zwA=1PcvTd!0lA-PZ5j>_Ie`GS_zw1f2^IxY zNnG2O!n5`?6z!;?mgQ0QR(>kz_px?7Ln~bM%F2v~1U+3I{AoPz$S-$BH zBl>mJzb*efy+&u=|IIJRXT9r0gwIzCA-|o{yMldXAq|0=3@!CLH_U1%m9}6+i$yKu z!#TjSYl1w^<7?jY)%Lf3M+KvHEYt2T+Fb_s!`^DWjK0vD-v&8e>Ec_z_4nKRKm0>K znjOQmmIU6GBLJ>*n;9#C=ih1MBAvkLGeaZ-p$9nGG&95TG-ZM(QUo3ijHaZZpcbBPN_|;Nv|;6==(NcfwVR zR{-Fop;=BW_L9E;E#E5tn=klxEM3g953b+&w|=3F7)?X_&d>UnWq-IhnC+f*0D$`q zZ}~R)Q(ye&evGP0J#0w-~PMu@BMrK zw<}-&Cz&?L1|D?Jz8_}6(d%@I4tTlGTY`Ad3*(28GNY3`3cY=IC)pxA8~{i~0&uQ< z_Wk|5&-=WLCjHKFiKf(!(r`N2=

zc9?7ZWhOiF?Wr;NXWx}^Q)tE_1V(=9)GASuA@!ut?1A3T>1$9<^};#i>-wE}Ri^9y zL1`vgW=~)lVpIfh(teC#KdBk}???l^$UG3c1LnhU|PK)UGl!W$T(j;ZGKNGa+T25q7kv-UYD6+XGAXz`BEO46z%F zb8quLJPXDx!&Y~mOtq_j=-Tm64H)TxRCxJolWG^F0E$Dsz#r;MX}aj?EcYGtRo}$Z zkY)Eb%>?b%__=p!!?y?vR-fVs*CbT_0RPkxf}w%%zTIbn-j)nFCT$`?s6Ubsi)Df0Ytam1tjE;O#{U21((Yqq}I$@jY12Es=x z>&8fMWo2VqQ{2pb=p@(TG+ld}`Ol8oBpiV{=J0n2c6xl`-<<+~x0YjezV=ejy87kdof#MExyqc$fmd=U$ihLCYj zfk~npH~H%w-HweD)X*to>r&5pB8`PTUs`-H9l7s)7`*Uih zSN8Mr?V?@>a$3;BYi;0FNg3SUf;~UWCKhv;5ho8xYO!d6j9h~aI_k#zE^_1_4`Yr0 zRV57aZEUe^9atuzfSTTT%+`XF$P_!!uoX|GjEWN>J6Y$QRZ0=%mrxxes24VhQwyD! z9%=8)JT}og&EOTHu9XR8wX3?!G;e7`K^iCRm8STw%uPyUENQevHxk$u0p9R(xnyXa zNzU3=>{Tc0LB8^p$&GEOcsu+*`j_fuv2nHwA|}yfb$5c18QbdTl^O&1{mwSPR%X!N zKTAuZlP{$bo3?JGPdNhMr4AQ;&C|1z6^>;jcQanWixO$fcYY6Ap3 z48Rmh2y+8C0AySF6A(WR9d_mhRXCQ%SwLS|>%mfovMB1#a7r^do8EYcd9q?BjaqNK z=wihSO;@1Ck}Gf|{)}uLto1jF?lGdu{MJSf+S{o#&E;ymF1=?Hw#`Mf!LxOz#a+5A zw<9|h!v;ett711-rB}bSp5cEh7Nm%9CnUQqF`+)Q$+IU+C##<`i=Lj>#10Ay8DrYg z7d3vK9ue{|41AvN-<@ytqM~k0gz;w8>-Wu^+tbf2%=+UVORz+onJ!4krgZglffUKa zpMy5w`Qzbs%P)~PJ3eF(;%=@5avM0s=e&*G4|!{;{K)OvFM)n3VwjSY>G$^`+Wb%P z$Cjr4*rc|KdDKR(+bNxkxh1qF=N5@St$D$@^ZrtYiipjyvE{_ZubD2mwigNSLpJ{Y zL4LSo9>)DQwXk1U&{aXnP*rVw_%ZUzbSt^Pzld5bF zIOo;FicSJ{U#w=is?4A7Eo35nivx7fkfM(8`CS070= z-K%x3n&C?GKRON3`L4M28#+Si8ID;T5D=#z3*EvtMedHiE{fi^j0;~j1aLP>p{YVG zIk*Xsd^=P9&$43 z`Bnag&P;PZi?8zywTma-94prpqJ8)LR?Eba?kabP`aNMTSI#fbMJwgj%<4@ZT{tiV zd8&f_uT%D7MKg3mnCy`J+!L3zx6CWuMHYn27i~1xhRfH}ul0%<JBf-V`4w$$rq z3pkr_mLnHdF5dv3p6T)N9$T-V(NaIJCcGnY$8f8KtjfRFs%mTaQfGlN@Zflxf9<>K zz_(B4fVAD$SKiKQ19|SLXB6~^EUOilg9fSfg;c)7=l_18bZ;aaM}*xl=KdF%xBlLM z()-CNKoX%9?7*NY{wCd0?j2WDS70OT*>*R#KKTavjp?Z_)w0zf-MZ?F6&H)qQM|5^ zHu<0L$es!Lbwv+aRtpBc!#f#qqWdS_Nf@1t{nM|tjLrY(!yNycw*~f4^+K*ivhSFY3 zQCJ$f-F>VSN`dbUr%`#)tJCTA;Tzip65Sna2ou6?CC7Ly-)6i-(Zle1`L~~>THmT^r+&iEU$c#S=E(oOc2I3`b7(UGZ$hm zyB}vF*E$N$?6!paGv8#@;?RkW5D5~Zb^lwys|_)j4i8;6N(>Ym)<->geqbkkz;-F$ z^HVy5oL5-w{+N=M}TqnU=FI3QBQEL92g>fJ$G#eM8Z!z?Nw7=}Os^t`+i(@UOW zVoaDGO~qiVnZt?;@H7A+GBt_TR|7w_rD4h<7>Am7%Ab85%fu|vbv;)Ha~aRbJ#=g> ze!blMnXNCZa0a5%XHZ@NMie6P5%i5X@^z-U0x}fpy7Kf&Ben{afhbvPnHhB#@G>3| zpuM1u_^EP3#Y}^5X^IAQZiLgsifZ3-T3{O8-hE&@2nS@`w;z9wE+5FRE>$`UT?*9c z8WgL-BZV$y7hcdmm+>1nQGS2W3Ril1_*~EIi(!<}_o>2}H@|0;KsTf&X?}=2E8u7n z&~)$TAP0n>*C1PKL4mu&UG!A53*ixzj#F!S2ZJUz-Jh;0DmdYG&JPyfPbn3*0ebuY zVF8&A?qogx27nzeY^9@5?2bR-0L@&9Yc%v+t<(Ov!OPx)2K7R86nrqSE4RuJ#xp)= z*R&nb7qwErk<;pl$k=Y~0E#6_UT_|DaI=$6!IUs^kZG%TC$PvcDwv zUYnMNM4ThE!V!|LEL@jJ?fpqOqFzP6LVmiHsiQ&<7S8BB$nqK}<^TtydLVI#UUxJC z*cNY%;5p<%W#0(2n^OTNVM?NVA8seouF1a~g$Qr)6v5Y9V@P{jfjh{DaQCB&nkRu` zY}IR`ggTudN=JQ~FN1ZNY%H=uuKfX$x&n;Px|2&?R7jO)mQz)}o)aW-L4SWs zWm^nB^q)1Dl{nrISUo%yKTptjekS_sW$apY-i^zs_Xpe}JP}gncoth35!Z+1cZ~0) zhMs61PL1L}ch$)Y$zX2ryNAW#m>c`xyz6uHC?C#PNVV9cEUx}2Or zM+}e1>F|c=-|tEcxH`haP{VF|IcC6>i>SMcxq)ZfkXm1>cY~tqS&88VuBSw!ICse> zQVgzqX?6~DUqRk28@_(#+e*=8Kd85V{@|4Wz02-9X@m|zNrls0`+?_Y7z5s1 z&(d0~SG2?G@TVSBdtjOhuNQ&NMKnQZf3w6|R>narPpGyW)vP37=po8auIgJjDntkS zeFBvk4C&wUl3ml!Y(OGTh`6`{>Q%I zo3Qdj=NMuK^3l@uZiVOFReR9mQx45LNfeT>y0{4;&iky&=8qp19H0(RX$1jQY8;oX z2)CjYL8aFecgRZud1v|?GM#RI?y)6{_b#LRjn%s}ig2y4B^+W;VIiy0<1Wm3mX?MC<2;wbn2wYJ1 zGPM6_@5!h|R>8tDE~E2YT%MI%td>vCY9T)BEXhP-3W0C3DXv3PQ<>@f`BXl?iBESjmUp^dCo+d8VX& zGMIH{mCh~`ihwJGdq{I0rmd++Y zcevd|uE}+&^xf7LU9iYg=4t8uhvbJzh_YXGnYdoKLz$RAbJdPvS2|lG*7indj9!LN zZJuldQCM)bE@?m^`SZ)|XC3#>m|Zp7vP+qKvd@i`O!|YgKJ|j0o>f6y)7Jm17jg9B zegOHap$a`^a=l@vX^C@m@l+u`b}l^6O7WB@YocD>30SsgH|(pFF+iQ@h|7se)z((a z=0bO;@|D6^h17;k7*Q*`nlE9P@<)v&qlibh|6W}lqPX|KT*C$8N)?$v$iFl@*7QYc z{z2H**1j~cCjRnhm?s^WN*+XAux7X$_{NZXZCrD#1TU(=tSaAmKg|xj3ssM^O7Dht z{ydV~7R%&u{kkWt03O$-wn0nEzjFX4ZMhL^M+v(754yiuR1tSXiX5EiDrkuR7a!yR zQ3Lsk*Za%5Y^ zKuw`cyKHBu^|$0aI0f~N`fnUC$A3?7jy7O|H>aLa@6*`#3~uVU2jQoPL+?m4J?>FO z=Kz`WFZxWJXjf%6HtAYBrf$OCxW+QZrDD>UgRZuAMq*~UmSai^-7q_7leKLhiBK`8 zSc^x4rNS8QpZMEw;_t`FWDLX#*=<)CB>fI&ED`Iil>JhS zUh-a{9IwOKU2B8?r7>{PC2%v}lkay9i{PHPX~A|@SiIxnas2!{?I?lRLi3)9FEUDl z)82gkSIdkKG(JD=ei=>Qa|h;dWqS;Ng0aIO_vL~P|HnLW0eE!8@hJxE%X@4OgnfJ; zcC;iv zVQHV{eMtu|CUho+#Wj=lQpL}w5l=T=iF$qFpr(yPRF9eiAwt!|xsYH(6Wg6sVz*%D z`sUEk$shNpCDp(Q&i^sK7pvzlucnm2aRZ=7pp-%?GIe$VV%V*qPXND)91+^OuTMev zRX~9B#CPX3h(J_9_nP*FmN9%@WewPK0?#W)18=u^c5=&W!cDlRdbAy=Jgn*H!}&_3{zx74+(#&XpIUzgmM0|2%j7c5ha#PbvnHg=(M ziPeRWoDs&-bribytG%RgP@W?99sX~V^fSUb&6{%tCxb}tO2ZDvH9^ZKs#%P;8;LM2qyE7QbhEnW_&Acm( zV2Da{`|}g;VeOQtOOwoe($lkh;iUV=`1zr0+}O01J!SGvR#7a*8p@nY_t|Ax5xPtH zxT_F0&&}q9JWf>{<9t1AkNaxHAaTY`Kh-8KyI%CJcsk&p=00=JrPmbi@(gPHhM@2> z4d+sPzjA=SH1y(lx|Q>8cGSGC*Tyx|kQ;T*RpM`Whbk;QCgHMA!`ExIadR5lnb}E2 z(lWpY<8*mfaCKxWGl8e=U3g}au?5axCMX}|&#q7D;=wKDVU*%el@x6dn zIHc>yu6Duw_zAVHwB6PXR>eSDKPYCT{V|=&#`Y);x<3FLp0=l40#fXdKr7A(clXu0 z9l3V#>PWy%RG2i&;FYAV#Hj{XIy z^%}&$PisBCGVNMq{(p}&S46|ZFiAG(i?vMcu-?T&D4P%2b$`|@zZRe!a>jgF-9O3q14iFb}H4SJwwXR(GfNJ0}UfAG3sK3J^#e+ zW_O-`pI93-??TcrM@_NP5$s!Xf{(uYX+Gr`aJmFB+9HCCk!gPywC|t!mi1b6%VP(> zd|8*7iGl1wFUcQ*x5GbYb42^Ur{ev0yfuvH(Pd}C+N-9WZiS7ibJxBLjS{=PINCNb z@aA}bDnVaVE+p}ft#my}HCE^L-EL!%7b>Slf!|iJPPZ7h$GqLH;SAv)-dUQh-~5BN zvub#F1{KRS-GH6ZgcGCKT;Za!m%De~mfseh(kdQt8T*&1D(4>P5p4ZuEO>|NFNS@m z!C*z#8Xq4lK^jnQ3N&Ex*<{I1j=C1p5~srCZqW8v8mB6tKV;iU^8K!3tyfEerO1(y zVP2h3+9<+nAR^rf7s!uJ7}EkZL=4E$}bG0WCA)SZIxt9v7;dhK|A(060~e$z}jbu0rSI$$FPA zndju3CxN|`&vaghjH3(N_D=~IC zzs(23|4K_Aovn8di2LsFZ@9GZf+_2457bOqg=zps{8}&5)vZXd;$4Hrb7Y8nye0on z7qq4xUX2#YH76Q$?L6iu9v!ax09tb4w;(o~e&zYyZ@o;g%~TRj|M>7VIp`cP!X3jB zy0_8+nbQ0MXt=EbZD6}{gytFO-U)2$le4E}w%#$^0{i39!9V2C-PgFJS|I(d^n%^h zdV}%ElNav)isB2l)f|3XiMM>x|71xcvBbnoNbl8GWl_@zw@Hmmn9^8D!@`{)CdLyp zY8K7>>vALN^iz~4#`L}Mg{<&{&a+mhpWf%!|EFhvf_%UrPd9V)*O`t?@cQ>$+q5Cv zb9upgPnR=`&+hMcx)P#>!&n{u&CjrR>?-x~v>cXb@uxyZ*ZP~QBPJQ6Oj!cgPcTDG zY{xbpg{1(;Q2ff%yWev>)e+q=w4lw)Qp1(kmbI22jXGf88|WkStm2fcaYb3;4-4YY z#7F z3oAKlLpM#hu%0~s*&BPP0bUECET9FvOIOIoq+LHs_K*fJw|O40uaqTHxeaua51k7D zbVecmcjaY5+(x??Sa4%PuB7_$zo%gBQA&asDE@*krJMz{&Ewk;M$gqN5#yL3$8zRP zR8?!G!0lQ5FJqw|EQMHDI+7gc1$_F1Z4AhZA1;lnt!0v};aI)$Hgxhb`aH`yGU-*= zD~-O9lA6wO2=}H0TFF9~Ac!H(e>L639!VZ0P^m_VvO&EZ(3i?PXL1Z8T&xU)I;{8| ztLt$917q6KFK6BlB>!l@W)B$GE%~a0Iz`dcWQv~n{fb6b=(4xa?-^N-7bM%#iKyTA z>wrt2>uL_gl;d=Pj}G54^*fI@4+6Cz=Y64DTP5*mnybj;V@!!|&XdF58=XNxX5}AW zr`%b@5H%jRZgH2^JB$9Z99fqYY16P8e&E`wl#q|N^&&7zDNb_|Ch0!5eJkw0EBNJ_ z@j>aQXTQ*F{2v#}usRm6S3**IZB3Uk?$;l2XE)C!rLv(^I$nBt>tD&RBXo)qWy}@jR>NZ6TXtKi9d~ncTbf<4gnME4=95{OJ6Pg&~9`;Q8dlQ zpT-_Tn69d=miJeeZ#AVYRlei^f5_sYfxwDCnw-roR}z=r?eSSk;xB2`zhMQ1ZVFlx zG#KRt%~&7Wwf1(wv_HKTa}lB3)?{$1N=e>MEkMud9V!7v$FjhB)nj-pqbt*fmP4D` z_nY&YMQCreMdn%I z^qfVGZTBvEHDN8x1}{M{j9&ElDrjoE6!QKMO7~%|I_o|@+H?cvG=F!g?Vcpj;xSxh z&`nc{k43D0LVMtCP}8M#XYuuvF9OmBmT)=&V+RuG;3LkLUYIa0wzDq1k{5HnF8FPRJeA6~e<+xEb)v^Gnx`n@_U_2z zzOTAxk34^QJT^@1!^Z2t2R}Z~-!zcQdmrYL$g7}Sz?pAC`tdj9-O$0d`3rU?{)U8R z7IyCI^0l9G8B(}f4jtYw>Aq`b(7WM@6hn)inmJGX`{CNjD^~h55et1czujx%iQz=J z*86e>&$Dnpd~TEXk+pxt&GH4VyGg(vi>0sWvwg6rB1G4AN$px2gTMBD1qVIW{BR4$ z)>sSmCMNg^|6lQQZ?aQ!W8(Qgdm!n~iB=7A z5eKLqR_+XjK{J-3@ylqU^K3YCLi*sn@8kGpAj?0NN>JsVa0*w4E*MLf(Qj-Z7|*SE z@CHEZzOJ&yE<~#&< zVFf+Hp^(L>Q$}2n3sf(|{CePZ2>l>0Q3fe;L@4EwUWwcfehMV)LUtK31Yj zyZdezgq&pBndM!uG1do=`XihCdHnjd6uY2{Xm0{JV)?PBb{Rb5b<=P8w`78tTj+og z3n;2m2glW1CdYf#IYI?4Q|=lf#Qlaoe50BOKFY)#xkJS`SztnaQLwq^rxQK&_wp>` zN!VN1s#Dx9!wU}LC%(&qZU zh8DvwJJ@4@@MZVqD5XNfnni2k8iPhoE>Wg#ds>!iZto*zpGa z6iwp@q%~#Sp9XhV-31eQp1|T>VXn{NpSoJSYCk6;zhwd$1E&iQ&0EYhh%BatHDgsrhF=3 zzt9)~^I-`cyYvE+CWU0!Uh0BnhGS>N=Di3gG#ApwQ`M#Mz)`b!Ae1WM==db=hKtC?POKVq zQS+)-QypA`8vUW9^_ZKqMnDn0>je6KE8+S%{ky;s>Xk@zVN*1^;dJg~Y``OOysv-= zpp-@_(Y?VK4Yf;YlG;GPaQY7$^rrP61*kuYc8hjEr>~&FIxSUF?Ls~pF1n??i|&nM zdPz0KA^>gH?N=j%deH_!WizLNU;Ihg=Ig`8H!O};)Qlm3fZ6jFY|6ZUQFPdcSq=ud z_^!`Z7i5f{T82+v!!)i`C4V``t+|Dp%wo)EiZPPVO&!4PH;|oci(P$#AWd5$>Q|mls3tA1_wOW z=*Zd5DJ@QeHgyDgjd(TOkNLRX_x>!2!;TKhLB{H@Qa73zSVibXR=Oi4s8e(OT>*c@ ziaQ<`S*hmZ24B287Q?r5AU!`bmQKMv#dpmFd6zikPAf)c-IguETqJZ0omK%#sgyf# z5ss_n|9ecmwqr1vouzQxA7#J0vpPueOW>sIed!JuX;LTW6~k(-e}s9va@RBsf;?n? zc67D}!P6k?K)iM(8Tgl}JDEP2#=+rv*52*5hU3u%`X%21d< ztHFZ>wBM4z=yW5cC>;Yk7(nwK@S(k7JARbg@H?;Cm$NZUX3E;-=+=UyovQ?;a~#zb zKQG415(|kU4cHF!Ny_csGidMqNeDqD#Rx513EB=*j+I&N0O&+Zu=_k#4sjwf#C)-( zT0#I^1cJ?S3H>D0C}z*;c?9UVpkM^5Sqc{@YFh^vY41jItB`MBDVL%JAw-Imz*)Z) zXhVQKLB@@$iRQH6f-XKiPa2`X*dav0g|JZSJIYGHLPT%bAF`Ztpnl27F4|ikY7@}+ zX;+QB&1-S5`gb+x=semjcwJGCJoso*Grb-Pp=59LFzEWNE9RKrt!(G6aY6J*BRwG|L&>cLJR%!RrI7>7vH*+JoX_iT+5@28ow6(blTi^XY)_L zq55&-jGU&MQNGI$PDLP(G=Xd3{JbLOSlr>sMm?!Jej62|_-d?jRfpclGElfUUw@IV zd8?F#F^aKa$?>+}G4G6-p!C?l7X-rLy3UK~FMht`7LLnq8Ol1FJ{kvsH@~~-dlwRQ zUn$9^7%lYbpOrT(_S(DId-Tz8$2w0#d^&*SvTA9$d9`g{anvCYncr6>x%B5^j*&Iv zQN#A+(w3rjkN-(y43htba@9MlkF%U}V&0Yd>XO#16<}!1GkMK-=Iy<=G#~b;L7*69 z(`&xrM!?-R7wwit&;oyq67lztG*dLq=Mo9t1emr_pwbRAG7!ls3sBZwe-5|}|L+*g z*7!-n`WbGxp?kwFMtq*f{ZUxLE}ndYK#EL$`y`ok1lOu2j66wu@7w#kG;E3EO3pn7 zyAQn+H-B;yj7DBl4`Qgbhz$MRvQ4SX|4#_rZH4GwtOl}5mQ_Z}_wKc!vfAZ$_W%fS z5@w7HJI$Y{O(@)G5*ga+!cMi!K*fuPex1-DF(0nI-It0P!1)SwzRM)0|4}G;_1B5^ z#7)${ffi3q|AYeS)Iq=(FN5=G!oCwqfwBh(4+y4-DZMpwlkDPfBcoFZd@}eH0fAs` z%RTNoiJ<2UHS!%U1Nc~6fek$<*xJvpQs)A0Cu~3Z-=*mr>Ik(+=HDLZm@@XR-rjOk;SlJTYy}Q5s0UwaWi36F+UkJyfPFFj{&>t- zSv_<#+=!>HUXUii9Bir{od%~4%CYu4XdG`nSzM2WEMCjS-}{UT$S~Oe_=lI#>a0oO zL9N(jK6V;CpxU$lG7L(jUSQq2W>PO$xn_R-Uh3fI@q23}w1(kN6S>gAn%t|X`-P%W;0QM1pp8lUaiaR56dL~6voSw|ZbF6?uI>rJh1 zf2&3SgqBb{#ixdey8mtsg-^E1gNLG)!v4ri{jmr9T<2OXw$tRS>W$gmtOd}9Q1e$8_ZVWtoqiYnarzZ84_(FelkkWifW(9c zMhG1SZj2iQ0j;OB6k+#@9EWfhk%OTn&^g793}YqC{FXbnvZvC&J~q|}#QPP{>Rs&0 zCrCSlrLmjk_xw5_(-DA%X9fyb%J%>=Z$?%stB+*C#GL7Hb3Y)7*{0`lR?-*4pKx5D zKKU~Sp1?bWUb+N14s!)<%FI4OQcx~>!3xK zwEK#gTchP9zvC6v?S~393iy%ATbGQcJ1;#4@kM+%wrd8ILuXoI z6?~kVF~`&m<>hZ}bVf{Jah;|gywfSlc4Z+uazfUUr^W3pBX=d&F8IJ6$t6+fDh>liu3mUk^0=P-P{_?OM&Vwb z=_#f!ybX%A`$calG*NA~B?8+6wR|PRR`!vctY>{qJc0wxVEj%Yr}ljgh3_Hd-b`Cy#(>_ z3OMT@N)_T01_fyv{aVWHA?Jxy<6g3HBmEc(h*E^CZl_s+hL!!;QZ6RBLmZkF|9kXk zr7Idunf*Jy-dNCk1z07EV_blMNdDc%I=kLI{Pmy8KOXX)B*&+6>1CUsZb(8&H^A!Hg=LD@#pLMI zzHa)SrJHd*0e_r?3<1iistr|gda|S;)l~YGb@V{3wJO?whTKNAf>rBI;eBVE; z2xY63eMu2zCu13FM50tmWH*?~jI3iPgvy$%*^-d543m+4H?j>W&3Ll!F?M4e{`dFy z_TMW)c_E^(k5GBHdoXL|bx6yvC*$lO0Yi54W*9_S z+Yp3$TKZheVEzQm9mW)X!ff!hCd4)V1K0M+b zr-Lj>Xa(?-Ta^a1kkM@!%kx*-s0*n05Cpes6(r4d5RTSrrO@Nat~qVg4PM19T`n(J zbRc(9++znNbmIYSUpd|_Bd0C;XUxv{yFy?;o$O!A-vhZ4=&Rh08XuA9R zil>G%d)(dP@7sd{vW{u>B@YYtksYN3wP=0z>aGy)8?g5Z1=bN^B|`{lHl(Fp@fW7I zh0pET#6BoyD@lJ;f7%t?f|cd{q|M@r~vx~G~UYcv+Y z`mq=&z>j^CrCD~g3@j5S!^A0CFuvq1>EJvH(z(I6~i|d zX%gMLVX_4Tp9@UtDagVR^wYrBhNzLPCLeqLF`&Yr{Q=^_+?fqGyQOr@>)jcMaVuw{$9C>gadh0`cB zef{%_z`>(9^P45nAAKk8d#2@Swc0l)*~(AxoXYioz~^Sz^-{a^q5ZdL1j`iVj)L?l zM{VST+jCFtQs}(1mep@LQtv%e6hfzn3b+?ARr!sMX>uUX2NA{0UF}M8uCe%C*4a*c z!KXCK0sqWK5txc%kXM5F=XyVwa0r@k;A?w)per#a!%#)$qJ$*DD* z^Et1k3j~Bz6su12ZCy*R;cDig4S|h*4M!n!-br!?Qat`_oMcjf$H(6NoOHa0H=SFr zu-2g$e$XD9=)-Dnpw8={sBMWaIrmBt(}Q=eE=6%W@av~^-vu)F&;b(!J9UM zBt!$&IupSXDf%A5fCe2q&o_Ma+O zY;Yy~KVNSA48RH!zfxM&xUIsoa@GQ{u~NRBw@sS2WN~Pnn-&59J>X;RO5$?hC)QTP zUSQhhA@(R<9j4wq8;0Hl4?ZV^=B2+15Ht0Hu^s<51LVu4LaD;k>MPtD0~Q%~+ih?E z9<`?O;GZ${q}l1e?`OCiAmoc!w4m*`YH8FT4M+(>vwx9~o&?+^tg8~o@BE1tt4K-2=g!NYKBDNhdi?rM4KA0&w{QBNmu)lK>V1&+s|D4r+{ zt%4P4PmdH)^j_?y`q3TyVG zVK<%x;6d4nc=*4FYSr`jPriW(S4_in2ZnU+->go-n>hUxv|C&Jx0wR#$00dPcM^RZ zCZ(80buYEYcM@AyO7tzbPYZjR(FcVZ%c#ls6`pL~rk;bBS1uHF ze%E{%OCK+iU~}uiy6c0x7$Mdg&U1r-nawkbo~t9w1zk5zwywGr+4KyzExo-d@s63n zOC+Qujhu_W&lsB%a3GLAG-+BrOh`QE^5Tj=4b!W=MiLDlc4!{%kvWBSf4mvSb0l|t zkJV~c%rVohUv8u;lo$DH)u)j4Yd?vus-@s zw|Cu2-6(fmI(h34Dt_Ddt6L0w&k9TTD-+Ss0mqvT^`K4(#6CjB{~A)+k&huODR!yh zz?A5w-V3xFI7Sl|F5TVk~3DJXc4?>zx_xj`AKky6LhUd{gXM_jGi4YGAIcx zZ}LEaWdo0HlH9L55vaqZ36IL9HX|w2E6{H7M{xK1G8glG>0~}9y1>PWAGY}19)8yG zcb2L%JX;>3paw%yDNI4L*_2xf{!W%ZzjJ%mfNI#DBvccmhRgCPo&L}w3FE@A0q~zD z4$xzNwRKLHnBiIrDV(Y+O zDtH*jgCkLZF$cgSW{v!)^Qrk0fX{jtf!;~51gTrv6yXuO8O9w?Bto_{Iy4Wv#wp@zc!bxpN`7it+quy|K-vWZPsF1BuM2&c0mDM^KJJ z;u6nIliC-XqdzhI!@_vd;PegpiB8O(ub*(jv4W<=ECKe-d#=ZMe-VoWbmV&lJy8ZQ zjKCS5neiSF0q>qg4jI2zAua8EV5`|ksZ8h47sFUhJSPS74Z`sjj60Qx02?5akHjU# z(m-~J`$ItHoS%Jd#@kTVVui4PVpQwvW03n1iNTSfO%jU83{C-`zOSff1!p~!d=Lj< z23ub~4hwskeca4h0%!eFQ0p)ltE*U%t+yM4c06jrh~cfpcVqlK@npltGlAbGQqX4{ z;Ad~yxf5W+%^q#26$Oy(Tibx+-$opG<1bBoYAh^XN>i=$53EMiHaPDmkBlz(sK;03 zKB1$-k6Z~sRPFA6e?&ri_kC+r@7hM&E-IwB>|;=nlPoHJk)u|_r&rN6jt#OJ1vqxv za-Uc^t!TuCatfeP+U$uU(JQ1ocP=)bg?eXB;RFB;=0uSFrAt?)q9*YFJNKvnx)=f| zU+`<-o4c#GHwC-Ru_dMAT%)ao$k^En3^mV2zYeokJtuX{O*H8W7o$uXqsYqv_|2dD~v%*nI7!{3pl3lD%OhsIZT z^Q_0(dfAf~-!F9j{Jy5h@V1c~o;W>nN9B@YMDEMAtVS*RXRg;S#FM$=`Dr5g1h2>1 z0v}*HvD8bIoaiXU2DP%khw@4kNdM!xPId-9VO7J04X5D-TzH$98 zuhG43(x^~&)w^xh#|4kPJwx6&-lZbJ(maz$Nv(UNJ}N9`MJkW%PI;hH`RVfzZ~gUj zg!7Bsl>Bc1D z;X((UoTdB67F*J1!N3KyKrZ3#vDDm1uBi{(ruf>v4XezIZ_d5IlWj@PMqqwPL;lwA zgT=RG=fWKN0q{1x+rD{kqQ}9RpIn}drl}`0es1(~pFOQYA#uGPmkc;I54oJp@agxQ`H6st+X#`-^`$#Ilc3v4L}#q? zKoy-_Odkd44o*SuA~0$pOP%?1&+BdnItTP|-TkPS^`oK^x>#Pz#p7u47bobl_hvdq zBayY)PheeT=qgxPIKM?<3x8A3gEi|9q(rnU8{S)AqU`OJOg&NjS`|Kb6l*Pm;im!k zSf`a{h_v(UT2J1$)UxoGEb#H~qk}N%$K+BaT$a;ZHig&ge*Q^ZBy7?9YpK>HzwtKq zj`0?JxiYylG3?rq1vmbwfUo4nYObf!879x*CzOkdb?h2AH17KGpoH%8o-N`e=P@aA z)Cjd3gXW$+sUN){p*}x+hP~w@E9MS60|(PdwjTq0J(H&SWZrLQKbaauc!`VXbwp^F z7{0!K{P19d=oiG}>gC~eGutmrfsVn{d<6SS_l*QBbBc5)fmSL==;fA3HFjQ|;5D$zouN-w zxGt8QRGH1;^`7`sjPf&_hzo2f8u(e|wz>L(dDBjyZp?Dy{w+p`?W0pn9o5QVJJEU0 z_!YdX83vC7%zU^c>9-4knq-2o1G?zkFaZTfPGTTiLRUM74NtIO;uzJe1ms+Jb{Q!} zh%v3|)NdC)=v-1UYGbGv;QFiQ)txP&V|aI!u`ZZEuLeXr0hPatuc|*c;T=Jfcr9#r(aAOCekbg(lSm1NbD#?b(L z+dL_3PW#3vL0dyvUe`Y~ud5#31z z;io=3e&b?Pzzb?Lil_)0+BVv~?B}5|K?rnZLFvLG#@5lW@nXEQ-}g=vJ;LEhouqr3W)s zA)T2(g+20_2J+z`HasHbl%a?_t!5bD(+m7ABMDT;?vA|{Oe1oC^~Ax1&p5d*sl6zQ0KTEHJsH|E_!L zEh)QkDr)*B0jKHQG_tVhXU`8**QXFY;!|;B_CY!d|IWu9d3VFDnBtuOjIOy%h~)ZK zXwM_T*`U#v%5diD^9{oB(4NkXMI*U-rLi%U&UtgaBr1!JemqWO>9j-twegd3eu(e^ z3CH@5$pR5Om6^>?ML(_&*7{TaL6mi0Q6v-YqIAJ3-Gj=QSM6O30f0fpWR(_d{Px?G zQ!2JXhRPBZcYR%`sH^E4SL$p-Fjw>95~1cu?_Rp{gBzF{@xpUCt%|fY8pnio6pp^< zHPxPn-H~rxVj^3LBiO9nJ)!*Sr%d73s+*?y+7~i^UcG3f^-E$S{YcXzgAm^bQ;kQv zYv2A{Z<3Byx$1j4$&Lbi?ZVkk)bo_ec$O8?tg(9OF?>1KsUPgF;T3{!lE{&q%Z3zSHnrA}&+V97IEVi4^-SYE^(en$q>9T9{>axa8-FL_i)c|;rA@4iBd8eN9M zBFdK9&Op~)7@qZ9RY#|mU~{U=bI*R)NddOVat6`x?;P= zlD!v<$>O#3hyYYoS5$6`{#t#VRX3_@a44!Y!+wbzm#CiGqm=sXCFjwoYu-i{MG;pL z!H-M4rKY?16=KUgDnRch|&ZuIC^7ja53T)#Xym1LLIH zmRk96%=3!_i=E3AoWyP2SkZ>Xu4KDcJ;ne)IVL!2L-&4JMB{euMckG;v84FBdo$*Z zSdQ*QV`}h^K5Q$FPbx)O`}Ffvx^M;Kz1@XVMG7VNuFiGkk&dhVn9I;REwT_O;CRpN zv*@07tOI8A0!wLN;l-Z8Z@!n8g;Q>u98XxgL33A;mA)d}$x<<9=c;T|D9(Eeb;U4< zCJ)tHB>etd(%6BAC(0c6L-Jt{Yf(}5l(U0-9hf$ijSzz%BCO*dLAFA0X~t8u--Jo} zG}9&1NbJoWZh(_m1|%lZGC0F7a}U*zGQLlrIvg}ku_D<(g5Z<(;*;ht&4P zF)e#&=4P8>e*&j-M%G=L1t-&63nYF&8(ode$VrFlD|*T1n4bNb6fg4OCIaswBip+2 zZUlpO@i14NH)Q`O2#Gyc`9u?IQDm`$hdA5b2i6NCw^>w}!H= ze0t&pX||yo6;)zR?qD&vC}wVYUMvm`dzBt5R(q2r-K*9hT*&EI$!^RE#s@xjuWELRwDlI{mD~qt zNzn5;qeMNf`qpD&bl+Xyv-Ruw@6e?;>i-bQ3r4<3jCSpV+hlDet}T8!^0l6Kln*HwT0JJzEB)G zO#gt<+#SlK-SMsyv|bdkA))RykQ@C;rj(LbWMoMxGAd}BTQ*N99?ulslQktETt$#G zD0RXrw7_+el%0Odfj=^LIA}x0KBt@#nlBbnF~x`TF#WT~_1>>p%~5kmRUUEzm(tV( z({Ugx_r~;zO%F{Ap@>L%yx(jO8;a<0953zye#!d2u2^ZuJck~TgLl3H?PUiW2&Vd= zgq6yY2feN#(1dZ#f;%6SCSizlVRX!+j1HZS1&isfe z)EJ54w*Jty_M0@cM@E$Y_U@)iC<6!U%)|Y)r0h4(i;0AE^x;7= z$Yaf}g|t)EW0Fa(CHzn>!S6N<8XMo^EMMQH|kxKjzOWv<+Q>%tPMSJYOMTb zmZEs8z1qLGVcc;~Oq502eLib9PSn&de#>`;O}Jen{@qz-8xqP=y~xx66`Sb}>1W+y zZ(>)h$)8O-7k%_c!mloy_*p!%pNb2Zr4J#_Nw&wOPxKpG7?)p znkOSP$Om%d&GvDFdNqo*gy~O>ot1{$#ZEN^XJVI>k@5-2f&J{5E^8ConXXy4x${w6 z4hGqeP~m4J>I9+8${R;u5!%h<9NGj^?9`D+`o=VBw!$&g&ut|G*fi|3js$ITA20k4 z=#m(yu2YL!z|Pe&D{qiYh24~T1N^zP%tT3mq=`Q9&h1tiDyIr%GV&DVvTN;$&(#wD zk7+N?fOzFHS&4v*I8IUiAyDzG-*MIs@Wo^_ah4xqem}B{z~`7C_kGn}$-!r#h_D1^ zfp#a;cenWQU{LRGk|F;AaMpngf`ooXz~Afx3)E)nMxZOXZ}q3#M<*R zNoVbg4^-c@adlRqJTHKb%ig^QckuT7+iv(pBnlB=hc@pyp2_tpl;T(N)AR~SvNj9J z8AkD=@Z)!lGky#(p=$43xp_GSX!vpyxfX!g1^4jPoC)w$amL6~|R zTcNQMasMahqID?>VbuhK{#~)W*v%-^j8V?{OWBM>2d{vWYZWALx&-BN#I;dhin8r{ zoBQcK6R$5%7OYfGM3@r4w$l1$ompa`huDC2%7+M^U|9k6~1-0G%=kw(G z@d92`mCtUk%408O>l80SMLFAx=j$iAsR4yVmva)1cE^QE;K}*Z%co_XB*eC)m!m!h zsu?^mUCNP6OuDD?>FsYqF+1ZZ@!6G!zIW%o?NxQM_tJe82>t-%B7kRpyK1wWP zWJxx?xp}6->}%p?<=yVP!S$unIc^r*FR{&RNg2NmT^9RUBrAFnU3 z(MiLsfJv2k?k4O}7<%?4*?DfzD8|aw!R#1LB`_zO1bFF{LzZ{~jzWr)KY9T)dPa${ zJ+M^!g_U))7F1Or#?d}tuZF+T>tHT8vd!O>1_&qqDZ+=!`?6p*2k??lxuj%Ki*NZ% zBqPdRQ{)%rYr*^F#e%y%wExM&kF0c0mP?dEve^>-^0Xj+q`hh(t^rW0zJGJU_A(8| z{gIfd>*;(I8ews&Y_46}_``#zQT81-+;3fD5qL)U`kB7V^!nSAuOrCfH)iiH50|IC z{lRPN&2WWOuEQ^znb;RT{^tHK`9FKkkH?YQ{LzW0uIxXZXTJ)6GBCRq1ETOZ=cQR6 z2(bosD6-6k>#TibJ84{`**@RD`RYyXXLIdqE{Tfjo{_o8_Tb0p!fno^*jJxkHAZE+ zIUj2o7Cp`r^ZR}J0N#cpylv%L2BIsuz!g!5|A$`Cn09wW>r>?Ud2K@`X=C-aR!{#} zNk#|1*38>rUaG%5GIL}9XLhqf?OQT)b+qX}!%{=?ysxLe99Q$iFDq+fb5769@{H}T zX%2lX&+mQQ&8GZARYjnsmMv$5)=%QsSc^9^DM)MyExo%Lpo|It#U`yu^(M+^EnTj0 zj0v@&Xy(Z?I~S3a(F0?$1NQ?tBWKH+|H>OK^@S+0ig!DsQaQ(<%aTA*8q-D%Wq7f} z<93;MY=Vvfb*VLG5A01v_k+lZkAYlOuNl@6$;}zX36?kaL&>M2jui2&Z{K}G(+*hw zbI|l&TgMzYnl6*L7znv0mD1p}>`V$rSLM#q-PrZUmejhRfb7st{11=iV0+hh0YI&} z-L?B!6-eNn)g`E;HpxT5DetWLQH99zp9FwNYYaA7tLsFfbbUhFU?sJSY0@J&HY7&v zc^h>pTAxW|$c~@b_gnIBp-5CS)mI)87;kb8M~XK6HI!a&agAzV4U!a^FGfXKH+|R5 z7S#aAw(YFdgEnd)o(+0-G{4&=Vi&OY*)F3>po;g=JnOEVW%{1DD|eCF*+!)gDPd9d*R{w-h&+hNvK?NF@2A% zcpW$I+2gaQm8W|!JvubVeljgZ_x8Gbf}*6z-6sM~_EF@^xY-r?AntyqgTFT=1k^wD zb*bOKEgO>d2eG?pY>gD zb>BiuKjr2;2pEn2$BUe{^?cby&KNc2mI;#lp>6YTTnn4PZ=Abe z*#v9B_y>a^#ZmsdMAZGRo^90)66)<((hsgkmhC1??Ev^PMGofrVYTt>_K-`JTk+in zfac4P(=M|64Z~}|8|!W5_o}Dp-NcVsd6qf;~AiFI@ID$a0kAOZBe85 z^c^zoqabGhRs*S$h9+gOSCepp-diGz%X;P^Ae*1^`7f3NBg!kJEBfT- z`5s~Ce1RxVs<2UGR;a8S&>sxoE{*o!*?tDs8;Y8YJgnO)lCoE=v>QLpG=BY^~ zNM3UE^RGEhygV$JV^+4DR=1i&De)L*0LtO7Mg78s$a=UBnlQuWlNdJu!%nXpMv$|+(5 zt*T2BGanMjL&(?EWm0y<9SlUSynv~MfG@b1I!j!fDeSv;$N=TGDnKerXHn3q4LQXw z!>B|=7r@><3Dg_JxFeeKQE$lpO32}|R-fzxM`?^;OFr{kZ^>D7Y)Cw#e(a~@E95!1 zpF5wGfAi_Dg(9BN^?2`BFAK7Z{MLEB;^CZUA-JP6XMD5y7b>?CChI@NdAr&c9Xti0o6P=01Z4K{nc{HtTD7QWD$2D+)nZ zCR9(l=o1Be#@95p!0lyR1B%6zOeGSYAdU2A1^+|P#eh_nHCc093jeoZcS9ON!pwh~ zLjNs7i98^!!OOg?6zlt%f&O?TLCUWau53->a?AW5|143oH;a^Dz$Qn~Y0*kV1f#ByIGyxO{p*|j5$?#RjpXd~;eE~J;a_cYR z1!nj;o)?t&-5D0_w&iR=Z?>|wbn!l#Ov_tuC_HoKgE&M6+B~9k82l+nr%2=HXf}qMp!5TGN1&Bz3afh+Ip3)|zg9a#cD~xQU2}zQ`k6X(C1@=}>Z#^OnH7PC?L1>QU zw=er}9_H^_*PHO_9e;al!)w1J0f4Q~8 z&~z7muM>{1B_DuuvBGH&ToqJvnI9#qDN@cFGM79e6tu3yX@c(_*P;z-(f02j?G&zz zHPZIA4tHd%aFN!M|pudJDrv5UBbe8c=VvaQLpS?)T&U%*>_M)HC;e1unwn^ahIx>NrxgVK> zy#HlMLPvjfL&_5yFcndB3oS*lcP)EZG~qc_%>HYMn{ToF>kpNvm$ojpthf6+na8u| zm5Ep*LmcN_wYzkm$ZC|QPsF|Y|4yKn{y8A1o4uDkc-zH+V73%h)<__&ko2*Nn$gIkmz04h+~y82n^3@9 z^AKBdZAdtj60#E&^2+7h_mMSgSZArH8Q!QTu+3A6*dI3rD66l9JCsQH^&B>c2i*2O z8{@c_SmC|F)#C>Xf`(_$ofF+iWD^{dgwU>C&yrcuWIkW~iS+tRzyI~t@Euf{P% zziTL zUc!OBJ=N!NezDv$L~p2L=SR-d?Y+Yt%zu6E$#(BsdaR3t z%Io5x$xPpV=NX4$(H+H|4BM;y?O8k+Avqen;}qQQiQA^qF`Xl9Yb_(cJ+^mX(ZT!E zzq>8GR`gN7)9v#Gw_}Xya~}SBYWycvt=un&6?QibU2O0^f~EQgucq1id4!q%eDrfO zO)iD(8BZc+wHsA-=NG7o&&tDANFB~>cKpq&jf{{T4{Dp8e(gOaxi%GL3bs;iM9siv zYTb6vvlO5kt?R8oriX;0+23Di6i5ncq23wIlFj7n)VeIyv1R)a8u@G^Wb@r+L>(1+IB*FGWvk+Fe&OE z>e7>ln6kc}=~Ks&4&IOS^^LV)&g3-vI#pfTy~2&Rn4LHm5cVWHSmqJFByJXLYY5Dj z-~M&V*fl~$FYhRkcF*H2xQUu#^$JGX-~f1|e(q)GaQ2Rm51!aTuxxw(FGLY9Z4Q>? z$Y25td8i1{Ci^d~wFRv`@1Ti06uV6q^6FXVN{y3i=A?#xKyO`Z>K zzpkhxB3?_c8f(%-$Zyx`drEFgv`$K~NJ{9^|j@)5j}L5)Gt4t+S2e*4_W;VFoxOsR>W0*8JEWf+--^>g%qZUg>y zVZD7oTsJRVBG-z}qPYjtGYNK;7AMpTuBH|)4%n$7X&~Oyj`&tlVlj|7&54={60BXW zh3XI)gh3~x>1{ICns;;=DH0b~dGepc323SkQCnNS#Eq{mtCrp1%2nO?5#(bJB^oa~ z);n6(1HsN^tulFumxKumw$BlJS@7c>vuP^bqm}tVfZ88+6Q36|)BQX4L zGrbTUE({8hb;gD#$J_cr&$PG(Zb0RbHD_WbIP2pn+H;wL*(9j+rr>JyVNsp2Oo|FS zL04m1+1J;{s?3ckrxsM|G*nXcL$Wq=iWV;LE+zWL7w z{vj7AD6_u@6_0qZM;?5gjwV(Z^_&YwOH39S@82Ji@F3!?*!Vh1w#?0k{rjlyZm?Yv zmJKO{3ScyP(=EFQ7&C!HyZvsmvml#AlcHOe5{?o@Yp@Tn%9mc}iF4OX^W7BPGcSg9 zkuL*dmwbb}{sWT`gmH`OOZu1-1a((HgBHKyoZ+O3v;MgUKwjP*v@RI_hWEZBJlW8x zel(FDS5d<9kJtuV&O-?Y;PZ9f$fBZ_s}|22E~ck}|Rp)NZAFb%kEV7Zc1Oreh-6~X7yDJeeXhh>^f!4NU@9y=!?_bf?BMezv%Q)rO|SWnp6 zVKmb6;+daM1$Vpf!}(=k0S+Ptd=94}fOK4pmwNpaU$?cE z0$G4H5BgR22pPxvBs%t6G@T+l(g-6>62kcqXqY> zrPJ7TbI2T;x1-5%qaJMHk}Xev8A#7oeGZ@g8RHjHD+HfkYTEGCA=k8;BWifY`~;%r z$XxMyCU6oys0mqI zNVwH`nN_6pjOmy1SC2w$2YF`cu2hI;Ci92np_=yVbE#VJ?}65srrq|{fZg%GaG^We zoyUbgok(xnh&ASsWLn;L1-C!9QldrPz8iuWV}_4t+=!$+l=+5!gx~e-fi(buk=aL7 zQ$gutQU~q@`kS{Cq*a9oI3Oia!tozN+F|T#lNO?|@z-b<{%p|9S4|(tqC92pz!?Uo zfU{a8Od()kv|9UHmdz<@HpR+8alh1O#iWlJba@KdbmIAHG$4^iNyx8R4i~$Yg?g8# zLKa&0pB`b!%^3Q#g6-X#@gXx_8jW*55`?6WTanzq8TB|$soHz`pf=P5oCE&O$yXi! zW5>SOhY1SbR$zEA&R?>Iedz^6QS}uge~ zb+i+Iw39=S4TeqU97P>X*v^JIvK~K2r}pba!OOoM*P?aCPptX&N|X#0Ym41^z!oYu zRVSg@l+UXkG(MoZq!-sn=s58`hsme_ha`O{#Hx$hLX+asqh3p{s^x7%8rUE zi;fm?!;S4 zmZ7LOr?Psn*WULkiM!E#R}r^{cH# zDQ<6shXo$euIRWVWiS>M_+;n`-0=r9UVWn-tq)_K((-BjcaLLK3TuyGzo9Tqbj9%2 z-ZBLGD}wUG(nZPU>s_hI=iw^q)?cG$&p==06YTgY_r*pM!#o>cD2~xd(amw!!+Hj( z9Y5#mv6OTXF+4$%WOJO;fu9#VEq3~JEJH!ItRNx5u!kQSPu&k9P<=Jnooh#MBS6^{ z)WIU^jZq*C>GjA~P^O4?a)Ib=3kbN@U?nJJ&zQ}_#~t)|T0r6-rDD`2`uTP16*4=M z5-xTQNR(^uiO6{aZX5>woaDNV0y7qkQ6{MKQ#e|f^U99~d)7zd0~QzYbBgLI_t{Ts z%m=x3@QMcw+^9JW|05{S4C`HL@ykHvlsjoobEBqIg}eL01MuMVNpL@D_Pq?uS7M*u zyV~^whK;rUI$B{J{0{wA85P1}Ay!Kf{|l+a1_S!?z}!-{D#RgEjygO5lh}r-{W=V& zO8a$VUf?Ep+_ng|B#(`5q_Ni3U4*59>@a!trEq!ii8eyMOM|f zo#tP@`!SY+Hx7A5q%J8U;EA%zDBYu9fdY~El6^l#12%m1^M(v|44$QYWJ7A?4_F%C z+uE`{G-7v{-E#DcwY`wG3qH?ZW3BiMrB!o+jD(OQQEU)TY zjHcZ&EgU-cV3AwoM#e{}%LPZL>|o+S6i!FwkGJ>Kdj0egUKpDej-NeVaK|6lsuO)h z2ov{3=K3PtNmIg?b0VnWV8x3c2m5N^cQzWrTPG=-!^0Ak^hnnjtpc9*%nBU&j)R73 z6Yln$N95g->@)Att<8=`s%NL;lD#He%uT(e92Q&VHY9&2EXaGTjn*K7Y|9in_27QO|w07-`Oeb?_mUSnn1`8sT) zWvPR;WddHcvr^RKsCMy5jvSPDSfcZy&WT?E)W+lBB+a-QWB}D<4H+bLOoU`ceoa^M zI9;4X?b(i`+z}#d_+7@&&1u>3TTDDcwVt7ezW0Gf+#)XwV$b!P}el43tH-5nvWVfF$P%*t0i;|KxKH!2ezultP5;JYBMb zZ}OGEvF`k6Cp@8>>{>=*7r!dzHShOeR=8Y}Gwtvd#e;}p!8a#wBd09Cvg*@Q5B(BsArM%Ngm(z4 z0mlEll@^pZ1ufEk=WVW@hyIfN{{#%F!NY)6o=B_=sNizU1&e zuk+jbV-!Dkg;Cq{o`oH&NTtVv3i%zUc;x1}Whgu$iPtj(4JjS_zieIx3$h4O(JQXZ=OHYPlf$-5yTZSyEcT6uYalge68r^F{3yyw)V2- z(cc3Nl;`ggN2&}D{A(NLeG9fM)_C`Glx)MJa8etGM|7Zqxo3;f<1#p2z0yX`JOlnw&TB||q zPc9u~R0JjOPCK4~RK}A-nDAMq2SU~t6E_VuEjWTeh+5yZ z1h;dyLmyH{z<+`Fx)s@S>9wo~inTDft87&&0HH=gx{O6bU=;31sT@swJN;}|{pcVL z{kFeS(>3oZ;Vgre?a?ms=y2>t@WI&On()z@mS^L#ftTNZW4rC6ask@W>IVDK#GKYq z)%y0IG24(38g1+UfAM@{Z|?qH$g}!`#(diDSjjO~o1;sNr=8*2ZV@ST;Gf}*J9?$p H?ZW;K*hdnM literal 0 HcmV?d00001 diff --git a/fern/products/docs/pages/getting-started/images/ask-fern-dark.png b/fern/products/docs/pages/getting-started/images/ask-fern-dark.png new file mode 100644 index 0000000000000000000000000000000000000000..183317b0d7d3862c6324130adfa17d35587511f0 GIT binary patch literal 326583 zcmXt9byU+|*rz)MVKjo2(hZ|QP>~XY?ou{Fy1NI664C-92C;#Bk?xQh;SYu*oitL_<({R!d5fRZpdZ_o5h=^2{h=>?PML}4}4Omzv zJW=~RwDcn)ViWq`2l1n)clQX3#C}f=bckxlxi<+f$lSG!w26oinY5RVuvb zkW8e{=<;*O9;)mNU-%m9{k#yq26o)Hz1P;5ed~WW%(oaYD}`Syx{b_4MWE{gLRQav z`L1`9TrbXWd9D{yc@a0Qd74+)gS>62S^L^fo2cgNH&?6YBgg;0a1&V@WifNim$!Q0 zojbCAv&wh95_J*Ov6pnS(|PKhH?rCp*1Vb&v1EVwVdRZQslCP|PO5ec2+VA@ zk(9#O(pIuB(n_rYjri*lP-N?J8KhkW1-p8mH{|#Ye#INSh`>DMiMIJ9U!d5YZj3XF~ za~N>V=9kg@T0AsyEl5?p^YR8Up^ury9~n>X?CxH#&Y4Kz)!Sefi13?WwQS$ClF*K8 zO%EU!PtksIuv1mFuG26$SamQ8!mX?>*@k59wzjt3$Ez60+bvY7EG;eNAdl#-eybhX zsT+2BUQY;?96uY}Z-nJtaQIc5jM|rOfW9p4%G;8Gie+Qqct(C1q5;8a|7HfQ8 zKWR$}*^i8nRPFYxw#M`flXkO&owe;**(#}a(9A(>&T$s54O%$0&mP#e8)z!vmQ8fcY&C<~cA}F$MvR+aro#Sm zwAMUQv&N+Qil-a5yu>jqX68}W?bbP2FHII%-n>LWop}&7X})0K*mx2z0io28TFv)% zFf~)gSb)6%* z(Au7kI`T9fHuvqZ=8)}XhXV;nl^PCFX@S=#1XCmSLFpZ`r+_!D~TQ6CBr1{BNN$8pC+dZQG@3P>(A% zAY|Mc#ZVxT(_un;9?_>LkIBz~p5l9xk`BQ5F?dbb@-MtoVGucxHRk~Km&T1;gf`1L zSx3#T@BJLOQ?l;u01m!n19T|~-*L%b6P4)ReInHvE{1Wg{neljtekNG2JKfhs2K|< z`kDI>!6Y}-n(c(tMz|;_zG|@tSY%P70T{=G10b4eYT0LZfjoVwL7;?D6NYkIfU6uA zWzVI^>^x21mVkKLa0;R*?ng-i$6!BWag8Q-hq}vVl$+gBDmEBbITzW&u0g}AqBM8( z<_a@1cyrEojl98h+6&L-2p%SBUViViof)~Qws+3ryYCz&J}i|DrCKp5)yO4}^Yv$Z zlE6f?L*@QKhxF!P)zkTBR&xL&ZDl8Auszv88qv*Jp8c?svrFph^0+Rb)`!O zR$C{<f zk&_46&-_^5@=uXw)OFkCX_cnLcWU7xGD`YkE6n-%v7sZ)8s&mxaLrfNPa1|o@J59m zcnq7@Ke7~iL&C;A3-WEv8Fk$l0(6?Q&DQQvg zt6~#c^L(e{xLNX5CLF&IPeeTiK^w~Tsk8(6$e12)&^Yq_;%xi2 z!wI+qY3_ci+k_2O>@ntt8IJs z>tK5H1QA5;CG76TucfGCfx`a57Ck@pQUrCU1BXW3^~NkS8o7$^y$u|2wUTA8=vZR_X;j%02rO4}Br!Tz0*{2t|oZ zui|!cMa(4DSTAI7M14^8#iE!h|NW5hWatJ=?Phb3j|<3RUM>jAK(Q6u?jmvpf&4={ z^zuF%5TF@I?5W{Y$WQIJ8X*U9j#?%vp?_aJk_`1c{KO!@;{@Az zo)mSubTe7%yLa=|c=YD{VEN`~d)D5L;`ldJ(z`VB4sY69EX|%-wQ{2kjaq`A|D-RdxM}?LMUK=LJsCaN7yXqF3m zF>MCHsI}rh#&0qSpFfG7HX)7)I%Ke2iok#0l1`l6CSeODmIoE=vuQoMBdE1y3rh(w z)NWL8<;_ZKk10jcRJ>mJHkGpPWy@L=q@8D)!T5kUb-=fBIfE*M=8|X(G1<*g5`d>l zF5x&*lmC-pW*bZ+edk$0w@pI%Dg7cvTLEM0RLD?{D<(~qaz#*G4DzdY~y&~9**CkJiuTtFYGLY6b*`AiiJi=Q5ZOY>3LZ*C1puL zBt3%YJB7V z9LKf&5;6MC2U3<<)J)DK08ODgnespuE#H|*;wQ=f1~cX>DEGs(JD{b9-Lq=85$c=_ zpin_T9n{OcEHS8vvl{jF)1|XyWmq<6f0BYcQQZCAYCY{M2vkaSDPjr;rNspFK2i-r zxzVqoG=eDfU9xgHQA1ie2$$ajplW58;cg9%9;BKV}!m;Dp==Tkm*^vGlQpIJ6 z>kgz4l>5@fSdJ4_ zev;m#hjKw$G5!7AABi!}Y8$jifv%s8rTSGrP4aYK@uK(TWb4|}h^QD~&eq8L-I>En zYUndgPU+pG7LC0)a4?J=BDk(bOA3^&(xK0z;8>i2hCfO&f5$ILWz%8sgre?6;V!Da z!#XTC`0kDqNoU(#^HzbyL(O=H}2~roKkpcyxsQ`i1cmkU>=j$VOU~jIgD2R4(L^w(WgrOf-kx;xMIUk`Vwyw7Mweb~_K>#lyI3wwY7K%&>8J!|$cH?9^r}x^7SmW@NgsIYIm%~Aa_(p(ihT6X{CS5v>qa%`ZN0-TvE)C8D2HzB^eFw z$5)qQ-jU|JDf>x1*RP?8PK#r6wHj`25&1maj9-q z<@s#LIihbXQIxC^jjfoU>dhu&gBQzI2167cFVAqHj7$F6dSx@E44UG#`XnH6DvKEH z5^L0pBU4K(6+@9Kq}MY%36F%2b$*;{b_DNiH;%Z?_b46-!F5lF)Hn0Z2ltcliP&%G zzFt8f=Yh5zIe_B?B5LoHPQ%+0ppt`%-I_)2r(+1Lv8ZR2!X3;WFXVl?&gXNK+J|L| z>JBN9<-xpBa^>mcP0U~_wlQt~oh$3rVj8p~t#?iS!T2Xki<0V@RR&65UpuKU(CvBD z@pmM&Xu?*Woc5dt(mG8xV>xJz8rS;wC&x{P(&cHbYvagF<9>s`RHAC42If(O>L3to zhI?}*?Npfh&TrLw4))8?Gi;#A0lX2iJChOSnxwC#Gy*y60DGgr&;E00YQEZPQ|N6i z$y~fxN#dianWWCZc8$2ELTw$uBhz&VtYR~|XEb0bZ+y}pGV;Q|onF)QQGzaU&8bHB z-N6&_UP|?%TCz`^fRRY*KsH8&zAcvjTli7!1-rZ3O?Uz#K)>y{DYTnlh+c4btl$V6Ul zULq{@ZYZP5BczFr=L*{(P#=&by~`uoeI)fHVEkc=fu;>g*~{)TkyxrP$j=kH`9sF2fMj?xjku!y0evO z!V?ivVqhL8Y3Vug=Vw;jUtN!czp#R5WbX|MVo$6q=X5dcw-8^9z3g5+Q{^G|+S*K+ zNDXSYN$}vvl2dw3R7JGj^Pixus5IPE*1Y_`digjWyE2>jke*qp7uVO7pL1+|n*Zv4 z>ArZ%WSz3{KK+#r3QO1YSjdk%@O18`n^%(`FfB<<4F*1?GtjOKCXL!=+(sQT6nAJ50C>Qz55 znJiH_e*qb>=uE)URmaJq{XFG|mEXzF&l_*kQxw{gKx(=qv>5>C-Rch{CGrns{=X# zFo*|fqB@3r>UskD6i;}`_yW)4NW{C5rwBDoP`9bBg$5G)S@A-YPLGe|^)9m-R|>Eh5Z zaElF4^3zwN;l*eeA&T=yMtPa^?p=zB*EMTO9lz{cBDrpR0_Qn2fie> zoesS?mtUz#0(Q*w6zG=Z#|@=D2=y%}JOY0Y5R|)S11xX+A2*Fpv=-GXCROPS><}7a=gCJnNCJx7*%f-r&)6y#YyvF+p$-9y^X|H=lc*91!7WN zIbM@9ZG#VN#2aRQi`#_;j)7aj1{4p>DB3d?E|_hoIy}zb8dn&Ai1>%I+|6ICIv;QF z@v4ygNoOCB>^K;gtWMtwDE0i5@JyboctrW$>GE@2;*3CD)fcE{X@mI48QjlwbVB^{ zr)z}hLfmdfki?sxg`^fU^)&wLBAGJ>wbdyM+Du~mtpg1cB)p94!WHJATgujy+aHDO zD!((t3d18d%JVX?tna>xTJR~2mN`0v;o$VeZm5$)vJ9wLoS&RW1MqY2CmnmQVrobt zHsIG&*^Rcs@=`}Gt5_)V!yOUSdvbksL)OYSCPp0l*La7pSD3M`bg-=C&@_{B(>l0= zVY&tVDaH$Qs<$>Jp!P|h9y?S+t| zJ%dFa2s^jcuyw<50~V{w!RqRlcut^O9GMEyb>iZVE?p~{Ur>Swn$MeNYk;2>(*h0V zYYIR_h9Ho(V!v~Cj6o%Hnx6gaD`$Zbbv zcP2n#fpF}c=*&l#+nV7X3+l(2ZuBEMn8d-vJO5(9|MnOxbZeuDgMY_?ypDWJ;l@yA_S~-aB4c)P|))BTJpbuyE|rNc5;Dop+lD(Yc2lc z2Ha@RBIO37R5{xjf*AosW8JD=Cba0D%10BnU_yU{QJ{x>Aw08&GJ(&PbLh60?%ij} z7{%SJc1HRtXqfhp3p%n&QMGIZ^r%t2Qe>>3oa@}C5$j^6_++9=-ZfQ@Y=3L2^ienM zt^@qG6k33l>K@&zsTa}gYf@w6K!;ZzRh&WhX;jI&o!=d|l<1Py4fdmhmh=7mk{7Fg z01fhFl9M5!AF*dLWU}vkwzzqf7|JpYBo?ynMudLZMrC(RoqoHIb{Mk>fhUUQ_G|SW z7I`!M2IcF?qAr**3`Cx#RF^s;KR=9Ava}eICv&awO2Ab5iso0GZM;tR4i_Kuw!JvM zz;#OL&zwt8|LtIHav`(C#aiU8ceN^QiScY(_Hs9%Qkg@3!!hjIA0%Ok|r8~2{3otKN zyOOb}k^07~=(Z*fpF}7Lqa4J2`{-w$%z`CbWR14Ci=G3RTl;FPA%$?7Y*xNJ@WglQ zKRmdJd=M9GlFL(HMSCUR3vdO5cIL^gNM}EJ`}q2GRhjhAEi|vuf31yoj^B`?F9}_P z{OXy`5ii6UmVpXX6A&4>6ejH0=*F%-jye2a_}2K(m(P^}Tkk3s#E*J$? zq`?Go1i~6q2JK|AjLVIAeQj~;Q}iTgq-rBJu?#9Eb)q1I`qXFu-9bz$!&35Y=tuzZ zWdcv{`q)O@_5~;4Yx;4)gX!Ev5<(Ib%7c~%-b$AL+gl-qcn_>wC#6>cRQj_Q`k_k6 z29O3x$64E4*G67G8twQY?O+SIMaMb5WRSR3U?f^4>;A;16yD&t<^wu5Sl9 zdXH1P)f(kRZ$3JAq;BK@<^guxexY~<3Hn2jbZWQ~WY9(~+H_~xaQCLb5$uzF-TS3U z{R`#VYxl0a>d~kJP2TIh(wpxD2jZ}^Y_=inzbDT~KMINW#qBvg8!i%Uf3^AMKJB#7 z=RImIrph%3liX28^?nT6P`M*5Rebo- zYR>i7esEy-U`&^jU>#Uw!lmYdasI8Aa(VEVNobhuy+h|`Ojq}pz>!~76G_(w{F=clhrBXM{^C_3+L}*IZ`;;5JUgD=X62CnCx}-UvA$IyM z0?hZ?osLzIfn$4Xa^abzWlNHF(bbkxnhwNBy2d)!G$e3jgcxOGa5tbSz3)8bZ^47j zrbt2#}9CmT*RLmH^e`M}tLQeaIYF3g1Hdt;arXA60ZC3b4M2fID|lLOeD83fiL+ zp$}s5O$ehiZ7jv4O*o37>AGj z37+O2#|l{Nu>o1cLu5x*4i~zZ?wNKIS(gd4P0TORumVSG|I_Q)POomRL4cAx>t+5b zRdKL4T9hDcu>dNmD;7}3(}yUxk{#zAc!V#<%|1) z8Z8jfXO}oWWvDSz*-MrGCaFbq$}An+KW-t)L?)+`G9=G$AkA_+mTi3`z5lR3$M zPxKDvio0b{mDG6AY-;C)oA64N=%afQ1v>E``)Kj1!D|D-?;pwar}JCfyUJ<*c;(=0 zwH?g-4D`xnm57r<2?u_T`9k&i7V|DrX(&xyy?Hhsk{S2k?Y9Quj1(?w$rzH1lC74J z=D%Ygp=!(Df7ec}^qtUFFNNayE=iX>pts8=G(LCv$oHVWm60#>XoYs9KymRHl-q9g z{l<=%=6O_DI=0=B>rV{ybc+*>Uu`#fID;F!WDF3zbWDZjfkF7Tq|T(cY}98@hu**l zcKNBCvLqz&S=3K zK|t_U0SA$4q7$rTkwNt?aBO=7P&yTr>bGM*91>YOT#dtv>r01JQC^gy#_$LN#$paZ zPAS31tm3fla(8*q+}u<^RKb_5i>M28MvN{8|_ZP!^`jOY}4!pCkzBmptN zFnaI^a4y83qPWq{ab%A>dC+@wr#>Zley0{PW^fOb@flnAgTe1~wL*Yx;$lyrpF>*Y z=-64)k>ZkL@zCe`>xsnUmC^d#$*(_B6qMyHKdSti6rox}2|vVeH1r+W<~R<{C@?1> z5$TtQse*%w=^wk)Py-!3E4_(*uO`3&b&88D@O;OMxJI);2(muVA?)kk%juWdikGz@_B8CTvHhWzcm(w`)ASTfGiRu*i&laAPZ zbzj7#)YwW@o4)KwMeMtL{Y;B;lBDf;u*@g50^O}FnSH4(p3LGPlTYvHZ^GH=+JnXi zLFzkN9#yJ-Q|(*^R5YyV2DJ(lGby2eNG|^*@x^K38=|^yh?#IjJ%3mNG>b3VHA`$O zNT1XibjD0nXx{4&WWX9WSV|A1$<{gxEU$!9l#0?;x|erJhcER2BVeDmi4jg{!O6v^9OU1Zs6iVf z==oBL^-4$d>i4=VgD?Y#99t2eJ>Qb|KYay#3Y_P_<%|+r%5Jo)9>M6kuPVXIS=acb z@!u>NnpeV~Gi+jc?&!Z{=zu~mU=UZvj2iGzw)_#E2rZiaXq}1mpI|X`;99I?`J_2L zyV{NlR0sDeYJdJ@3-AVZ>=TiCp0EMx8&tW$!mDv9SOVm3Rbk-0dq78pI-wQ!4oHXJ zCs?@P#ti5HDIf#c{-bx^2cKU@fqT>Brlfg1uF_V$K@k@YcyPsgQ@4Ad|5iAL~Ga72+v5Mji zkU$BGuHV-0P^`9BlS0sI_8=#!U_nTlyPBdW3J{EFPGj|vi0B52plVMnFLfx(-W=d^ z{|>21K3F<0U5_!l{CoGgFe$N3OwT1O&-ZPQfrDM8 z1f%6m3Ns({siu4;h_sZ&(d_l83P^G)Y6a@1T7ZmLIUA)1d2Hz)ts}2KhqJ1p4Jd;M`X>>bq1p?Wb5#f>5`ri2}Vg8`k<4 zgXm)9Y&HJiYFtgMlc*A!P1C=@Y||0;qn@#xjEa%E$-{d1>tGdIO8B?0f$`~FGMSAv z!aq0SpRfAPXl}9z-7D!4`TL*j>s!@bD%w#?_!2DG8;z@xb+; zc!bG=5mL1&s5;|tDz3}f9cglZf|ViIB5-W?`&qb=3KNF1 za7ZoBFi1CFiTQN7(63i9lo~Sq_eKFScsXtkd2jh>)a6x$^TnhhQy5ujABn!2nszU@ zhv;HUIyQn(hv!yfaEXG6K*eH$oGT_2&!9%zKE^3y50?lT!;#Urp?HgrIDp%i70?Ds z!8Y-TL@0MmmA1DCU}6sO10IeCWI$(PBc{lVL6pct2OiWoQCCu;3L|$HOG#q_pCvo; zn+ouY35FUN(Dk-I*#XgdD+4QX>J;j?QIX;70Ak4vrO$WB%XqhkUAg+l)4-N~)x>Go z;zV6jke7u!-FQRSH%tjv^c7b(BIG zFFt4mN)j^qPe!&S+X9Yj_%otey`+K=E#@k zh|m{v&%!qu7b*sBIZ}5Ob%)gE9X>QOh}btU&qmtDkLIuq#~-{;K6r4JNj9GMO&Vms zqwuSD%up@A+I)i)SC?H$x8vJ$$w^N3@`({a zAkim$?pQ+4WiEP=)h%&siyQTAYON|z;)_kqE~Td!hg{qO7$ty=W_9Zm{xhd7fh zl5-ZWqHIQ9jg}bmj&Kxczp4~28DCddD`b1SyRjkgN4b_-WMAX?ibmk0JM{vPFr|Br z*00<%`&594cB`Ww90n2e*gsY-UN!zbCL1M=XhX{-o9)B`+jn`+{?eWF`0B&i(462-i{)gwu~* zlKH@~wgGK&C6xIVax?wKrfbnfGwLn_GX7nP$XjKt z!nSEdO0P*+0nh_WV+aPb=!G2Yac zJV>+uCqi%Mv23O>{pa>o$wi^8dG2`o;TK9%9{XMX7^o}wBx2J=BYf*QP1{T73V8}= zbM0t@USRkC(i!?kPmWlZ0-Qn4FPB&{yGH~8Um`b@B!!E*HEkpGOTLgyY zp?BG$L+|wZwvSz^kHE^(=Lt5s8aGm9id$v=z#49JCW!B3NAHcT_-xGFD*mfR4#*7O zsGtT`3LFb*oBslUv$du4W?$Sdb06iMo!7*H02UXz1_b!EY5IK+cF zxRio5@wN59&@2Zq5;^7i$Y3qcK63YusneIx^E^sYMXUADXTRuQWh$RV*V{OHN;qzM zkj3ED!Bvke566{3Urg-xc|nyDN3@e2&xC9Tnq5rZure@E!{|?m{?kSRB=sP`)?zx`VCg&4^X7yriL3`7;rd zQY^VZv_Z(n4`#}Hq-I((*+%}u-}>6{3BA9Glu1lG4SJKso8z=2c$T^1ts%mT*1uzA za*X_}kJ8r9qNz2sCPJtm{a6Tx$dlL*$(|5NjBzZtD(6fr+*a0^CFlRS{M%mXTR zOiM$C$p>}=g$ zRm33?8uaIM)R2%Z7`UHEL9oXJb)S~Q--&nzwiG#96AL`9I=Xx#5ZfBrMK&+7LUd_4R5NE1^UtcdA3+*~c~>aV+qsl0Er-0Q z>pvau3)>oOUL`^qe`n(}LahhhG@9#Z3Ii%lYt5?exNgPg0z-!v7fDuZ?5hyTia~}9 zlui#xF=pBOsMMLuR)phj`zrCHLB*eB=!wcb?8?NP%b*p5ypwg_DNJ4Y+_Ih`N%uX* zAr*h1#I5O%lYq1?4!q?>U{B-N9MDibA7Wrog51SVH^It3c$3lBqkzc{H3Q(_oX_qv=e${ zzJ8Ou`=dbV1q>$F0j3O|K%516XGJ9IN$|5ArT=;WdO0D-EWD-AQftG+E3Pr%C_TTL z`pd?GlxTphboDD-TygQu;`=OdN;=wgeF55%aee=#;UPWQYQE)PA&T1tla%$Myc||D z)!5%AOA{&ePHhvyQ%PnT%ujv>5|#Dyo6*NtAxGp?Tw0~!JzBpcB^f;Izb{>{DXq3D zlS?;*%_7*$+?E+woXPu?rS_;v5~(POT*t~XOLb!=+{782HjH0tyw2rd*&G{s>Z3L;GOMSnTJ%G-zLU^qX4<2J zdC;5{&V@mvaQZ8=L^+6GrqU+@#f*?9TOv?10Y)>8uj96aXcr0zH=1G7pq(cNRIt3f zKI$78%$Tzm5V`fY?R*7(YEFf+yIm&{>?{6|!Ih8Otmq)JA^ZAb8 z>l@jA0IaF}V6_!JZJ4Aqs2KPzPjizKp|0^hsCkT-E%?M5b)vvzZ(e>Tfyx-|S@a+W7MiIbN#TTO z)518ig7jlrhV|b4;(3n}@(gJd;*Pbj^O$&kNsL_gp_gN!*9SYhjzaOWG73!K#au&r zTW8tN-4UCxjAS7 zU>mErul;%ZuYUl$z9-Z@*)&7E&(A$t^&`I;(LRCTp8bFl|2$q}K~%aWHm2K$&ckt&gZ!!j zc#22JWEGfiJp3_H{1G;;uJHNaTqI+j`V<=8?C-Ak15W8Mw!&{V^p$l{oFfAE?mS_y*dnvz4ya2sCi!krOzRoISZ$k(1%Qm z-<2ay!HOb=*Y2tVrC`W~dfUkD6>HSuy_;&!;VS}MW@Rr59*D;Mw5e1hA@%Q5G(Kx` zK&K-n9eg49(@y_x`T#`@L5cbfaS5~=VHO=$O(|NnQxb(aRu@S;28EHy+1`4zc zoP3p&=bp}h($zG<34ZBff7q3VE#r(o5ya0M2l{k*6kX+vE|qh-IG_RC4}uXDpby{k zgv1_x)Dl3siN8`>HKW*DfXavvz$XL^>4SkBgizrC_zUaamljHq zuIBAeO@#KP7wErvZ8w7)-g&!DM$z4u4CPj+l28_4VKRQ^CT}p>o`|JVv{6m!KI4F7 zF2&?Em+pi4wgr+O@_)Na=E5j`wa8LsKAe3?sVSF8^_r|0LCF^OIf}g{8oJo6yz(D& zgCHOl5LLGrxX{(A_7I>$2~P~EO6%W5R&Op3CI8e@Bcgd6NBe+D|K`o@te;y42yw-Y zn#1{1*!u`|=vtN>2qbXcdW!z?+swGK!yjGHy~d@VVioMqdI$UUnPTh(btl#6Qxdmf z*7bPu<>vFKsU7i>xFP!Q0b>b%&P$sEVQ-fDD$OA-BL2ibDB4;q#~P@4>1hkRc;diN z;#=5U^@G2!^iG8|Gy}Hl&RrJPk2_(#hVRLSLFgHQP)k)7k~pJfD&0)bC)s3UQ@!tI zY;t7uk?v*No?kv6lX#tdcr@8Te9%w4RmVsL>SMan|Czy=-sbicl|*CzM_+=u49T)ih-bjl+&a zV=u-xH^GlofZ~!-zDPbL)!s1WDik>{#2+HZu!bRo^JB4p!|l%{VSW&MLO`sIF+hs- za>$RS_N2Yo^)o)Ab{u7mN|bDZkEx0IzHV_!r(au6S0E}S6lL8{8TDR(QcOK=zTSS# z0}Kp~Dxp5-C*LZ z!Yk6xPrZbI;-GoJ-(Z-hVHS=Jb3E-B;oabVqeQR_;;@X2md4?VT(K&_6Gi(8ap3IS zO>PdVY2ILs*)PN9a=dL6vQ~@7%yeY*?}e`t-gcn~dafrOakj`05}me}BDZ>onSS2U zpizuZ*QoMj;OAkN`9mrg|M%`|_CSq}!_{-~*m73A_phI%8&mnMUu~+_NeIL_>G=#6 z-4f4Q7;dK&C0gsfuyNdqSS^5U^L=b@LrNjBr;hJSgcdB4<6JFQUrT@&%Vk z)Z1M;^zOz}FTWr3U&rIdy(fArLax0YUpv)uSgy|tmMHZG&IipdE)~Iu(V{9PtEja- zL#1kUmeC@2)C_**4mUHL9=A^j7s=5!1nSQc^g3y`&+J@`!D}3o{i4=gI-YPNeg8!4 zL2W9OVOfZUgh!1(5hj_KA*=1rU+wIje>bhfpi3GoIwdsO@FWAeKPmxfAZ{N#*`z`5 zWeM!3cOuuhLc{W%&~XWuhaOwd_F_x$;IIT_UHkLgtJGrxIkWn_+diP^YUR+n*`w`! zsDcV?k5F8=Rt3T$4GmPwPh*O|Jlfr51(0(5DPDKbUT4Mmv++?*?i~4HIV!p)tnV_2_ z9N-_j&-BZ+I21k=oBZAjs663_Zyr$Wp5p+H{oLM%VMvPv)}ba3CwQ1kKrBQ}aIAKn z#bAdY&vvpA!%cn0UHy4uo!qNS0dIuDoL3g$nTe&kwz-$dfX#cA;KkJa zq>bCDoZrzy>BRC$rq55ay0n(T$xYw>qAslZBW@;p*32hz#x4I$TUa0ad*5WnkWQ-0 z4ujPzH&cl#kS1pMF9EqskYbh>1LEhi`2hQaJmDXF5?8bf49#B8B6Umu$@z zxuU-6a(EJ(l>fHSy*9?P1bLM8)1gHtnb9!!M5xk<*$)Ty(4W26o73EA-W_5p^f9^L$XnIJ)qlMzTL3geA6OIXC zbuZ<;NO%pd^;ST?1cc=af7}LzSa=ss4r1&_cTG2+cmbBs zw#hWXK-@Z#9?i?28o{4`B?YbXeCyd4cp1g}?pJ7Kc06N zQaZjqi-4Ank>n(3zSbInDxD$`V?|s*quuAG?z`bcfI?j&*0q_S;zJ5tHo~?{6UUtw z+)?@(;{@atr*CQ0tIP#>syKBMj*TSVdlOofzIZ!Kgby8V014B|REXDr-G&ij$0l#? zj?HAS2iWH1Mw}fOMtJP9YpIB>)+J4;Q@B0_niIzQ-X))n$T>mKsS2DMc zOQ!za?W_=&`74WJ`l21#nAx2lw=Os@{kMq2*4LT;wyQ-;;L#)xZX~=sD|ghs7|Fq`PsT7ftSL(e1`$ca{%N`V6R2RWZZuGs&zB(aOBtf3=;;^G;CUAZ9oQ@rBbEB-Wnun1Q)Hd_|8^_?TXZB(iS(>s4gN`RrE%NEs63V zzN4$mzhU#m1tcytKKF{;|Kj*sJ=T(;Yto!IuprnPAyPC@A@;Tg6nA@WTy07HfLqf5 z;v5Y>;ngYwB2uvtI1)9zCMU0a6`jbCPe^>5*_0CJ5I;9X}H*#JsR45G;=tyHG zGw7^giaNvtrE96W^mAX`37xLG(G3ollRz2(anORl(u;8_1^1esXCGU`(Y2{rOdBe$5E`I&&UR zJ7U3`!G62sv6K-jVA$-JW3c_sK!qu|T(%d1wM_8WtG8iS6 zS=!S{HJ!kQ7bY)JfmNXPh*$m?y0%XkIy8(AA~(nZOjFa(F#=iM8PH%zA29M(`2P3y z!P5a}c8fR;pj6_+b}8Za-6MowFR0thoYquvY(T<==&!JQwl>x(1)E^L3d&?RRHCpT zP`V}84WRYk-SJgic(t#UUsnjuzpRZSdmH?j;KFEdmVG4UMw{i_9=sJSge1_$)KAu^ z639u^E<^i0lE;&$>a9vD?+1Gs6yIum6YToAuYB+RlFKejiWk@9T*{G(Y|%sP2chK~ z=C@{oH$Q?|h%-4=-`dE)Qo9mfqzQbOl+Zy69M(>3F7^fyiOcI{wVHL=fY=${-S-%v zHnQ+>zkB6xAjb3CkAvNlq&LluBV=^UTkoT7Nb}%M6z0a@&iV~*+xSQ66FS>0wLg+} z{N;V0&t7PD;E#uE_hg1=q1)wIu)<^fMv6uS_zwUrW?B(hC27;VDWO~=ev>`lAw>&~ ztYER&{jXc=!BBU_?my4!eGVOdFsx7cA`bWXM@^B^Eg>)YVvjac1a?vuCQXPg_&#)* za>2m{^Xm^De&@1vu+kLd{AuTiE>&;>^E8ML5~0PGJLu64xbb1wA34+VK32r(J+?$@685ZpApQ!hE1=~Em2ei+WoDq?PIX2o9Xbgg=2d8!zZaD zS9n4|?-W#E?+iw6I4x#Cm27ynt92>#8H?xLN`-Jern^UgtF>%HOJ^$74a|&U zOzMrJxhN6Z3HMHf&cxxCJ@!@nB7lz|jILW7JNmM-4vd=73~0l^d#q7z?H}?+j2Z84 z5$YBx|FfpK$xUUBa~`bKBP9srxwh9dA+JjK8TB^HB2F$1<_-(b$s=@SMoZbd#u+BM!<+Wg52mufq=M8rVQ zU4M&*TW*d&KNxU-F=+LCDbK6!>)z8Iq$Dg8o}FL@{lcXYNzI?>HqnQy6yp}q9#t6p z%SAiu29sVqJhKrT;wba)euS+s@Yi=Fd3eQYzb>(GKiYBQY>`SJunkFUGzTMNrP0@E z+OtuR5AK-09iz=EP|jcFR&=VW7kV|d_N~(__mfd`hwm-Bcz0HtWx8m)vby5KtvR#I zf^K%#al<<4T@jSNPc+t~(XQB62IzVg*y}4q&rl}!GjO9fxGEQivAF9ahSo>Gc8Gucl?C=I4xsK~GVG_-7bDZ`FKh!j1 zGO6(|KF^7bvRxlzOChsH7)$1$slk*6={!j|MYu2%;Ansp%0t*k8vpP!6 zy8V)%QfGcDtU>~fU-hwHC<(K{?voDuKUXM$%$%yB@$+*P!2HDPKdLYYAuEo4BUSQ} zRvGC2j}Gm6&Buc7&@L8l3{odSuitZT`$Vns#Wx(19^T_?)XahnZC6R7Y;!{e{vqfF zyYo%NXcyH<%?#-J2s2uln5=YacSDIMGZc+aRR&l}5p3gipiz#Z;R8Zc3e-Q3t5iFe zR3!iL;D&!hc7y}v7NH(jm*%0?h9l;B+}iO!9G!PO)$jYq?LCuma0m%yk7Gw!MMx?s z<8aKJV`LpOBQqnBBYUepHXVC&Y{w`L$IOnyk-dNK@9$s#czC$axv%@Wp0DS{jxXiG zIXoG?5!VbfoLRoKNNByx0V?FadJuZ~YtViejhBWm4&zRRFR*&o;59X{%+Ecn2jAae zc&LV2L_(WVPtD*J2G$a{=9Ic1gvd5_ypgXymGe+nYdR3A+DiR55*+MUlgwo1-_$?q z_6z@qT^SyMl7J4W4{vfG91Zz6TsENEj~MX4b-b{fl;rM>RY*JaWWOcz&7{&LnW_8a zsnAtnGxDpRG^?g0?;Km)#=*qH$82;GvNx-gf2qHs*&*xd@KRgRy+&S5Hru9s{*|}G zT(J*3%nv`Em9Y^5Q;C6_qggf@encE--4S|rJgW1Cb#V%;$z-NKC&Xoyzl_zPDRX$_ zqOK-L&iH4vr$}9-`Aojpf}~#S^}NUZy3(vneqTW?lR~qy-SaDkJlu*t%szMMCdL!;)Xf!X`snh3YMP{j9!$o>m_HrE(qP*>7gU9(Mk5x@e5QnSqF6 z1b6eGuHMdXnm|5LRdrJ=YlS{ijBZIRaBeWBvGuBSPRsCKL3?|3rKM9#C?V1EJO6n& zubW+@bZZCXfR~(;i{E00LKQug_l7@^2HpG3tm8ZcF=-cxh}WdE7FN@K?1-Dcr``dP zrB`ub4zD}TvdK6sX1}A>-K?gvi(AuncGA;sR=hQN?{pn^XRsFuW1JlMPEZ_kj$)q) z&Y98MlzRC*{}BrfGjsTN9S3F;*seVri!GXKRaNWm)Ei$2wzjyGghU_rB_{grGX2^+ zf$p%z1SzH-$hLxgxul5vjg|M%+l%}z7A%vNy>(%H#lS7PkUO%2m2?b z4fvWZ+@|AMHO_DtPUO4fjZ7ZGZr9$2Hez-^T2EdF{yV<;AI4*1H^=Hz=Mb zv*Z;3sKnFL%m$Y`X6U<(migqAN`jvI`c6pnCcYPK0;GTiE3)^9o?%>42{N7trl3_b z=8(eBPq+k<2X?W#FfcrPeJt9mm#rCQ@wU`NG818G@aviiZIb)P!05(QjdvsyrjUno zbd>`=#?1P?Wmh(){M%dzAAkjdsti$mFT)yi2Q3(6nD6*WV~#C?PEM-mUu(jg3{Zkz zxiGu|V7KUDQ918Fh#^!ImC9Fwz3R6rNiehDxU0&J{iX}*K6t}j;6oERgXg+%&roX{ zyj(x3#jWLauzu@r$55FQj`Wh6rk5%~Z6j)0z*2c#Pz8b7(`Sw; z;b%-c{|ObIZt|n>G-?KRUbUyFMvYd8EUt5jV1zYAAU3wPD&D);i zM(TePS|o}8yHB8ADQ;#P_wpO$bSp2TF^2k8vv$7+jw6?d&yaMJQrlBM(A1ig{)O zt@Sm%bcrf$HIZ@r?HJmh>kftp4w1XDyJV}Dxy2^QfizLTU>+u0vey7Ldp5X=AWS2K4k}9? zxy*Y9T>f#6hVA?L`&+mje2O4F4F0B9kI%5@X_}2{wO!Om{bTCuQNgvvn4j)&PpLA( z+$Z9qz%CbN^NYnQxbBv2%-cwwEaEc z)b6CgR8%{{}`mg++TDqqk6qd#g8~eO=VKCJz0EFM=_5tISVDgvlEsXa& zAdn14IbbgJL5O@STRIzBZTRLl6i?z{jf~L@CHCi}Tj-fusH>n)6{8;Az5#?=2=LCcbXn??7l7MZ=iR^o+ z_xXChGDqmRS0ucD-&sCAzoH|F`qb|sK0K)RZ75Uf1MJ@3w~?_%NrnHa|sg>Ywg0eM~XKx2stJ;~F{0)p^Zk6bl)?K>@7OSn_mzB<{b9d&Kx1CYyq z@5c;Xq>_MWMa!p~R%!qJJ!Jj6Q&`_2)LgH%j9Vkam&OAmki0F=lMn=!FCOP`{RjZ$ zqY#&II}g_*4Vj*K!=+r_&(j4M>%yZvSstpyt_lnv%8p>r^p`_%+ibt}agRHYI?!h(G=YaG} zc(sw5M3LHnkY~X@B_9}{IeOpcD}|8jq6*p%C^;{{%A2?&28s)y|H3;{MbJ&B<^)P` z$xop+fJUX7Vck# zdO^(>r;EKI){D%~c>cA`CgYuPOH{SwQZW|{CGIgom*AN!lYmfX)>4ywp`P=OnX1t7 z?B@|ha_(V3m0`OcPM1#vooJAGcoU7$@|GnFK#8FT{dt+nD8#+{fX1oQ+_8PXr>B?C zn5Bo33Vdq3soVH3-4)d^*VIf{G4sL)1adITwij)t0Mzj(n8PD3622;Mea&FC1LQ-u2**3nN|Ax0!_&2OKC0j_gS5+?Ghwm;dwtOZE7;^sB1Zul+xPFOLU38corq>r=BEbB_A-5cw4K7bc+a zhffPiPT^cx9hWUD!Rrri z^M}Pq2r?r|wH@2hYs}~uM~z@6Q@D_)1I{69NdOc355TCM1#Q=d$!6|6HI4RtM=^{UwmcVsvwgf5tssEoJK z`!rN#cw6D*!r&N$6+ElJHcTClDj9iKAP41^mGtZ-y4iNy(JT9D_P3I|kGVu}#UF3z z-Ul)_r1*Se1Q1wA)BH@aWR zbL}I)pcVXIEMjvRxUY+ppQmf!uAFd~`$G-KxFhxdf>ZiloUc|`x5?Xj5E*0Rbv|su zk~+gxUi}iHK@E{6>lXfbuD-7}W=Wy(Qm`pZD>U~xD@Vu-D7SfQ18f#u7$lmJe|1oz z@r7mp_4c_u)Q9S&PrBdI-)cK%Bu%!?n!+)#PLsctE8H+z86o}@sAYJNG1#aal%R6+DrgpQ9c za2g3af-SkIM$e37K|dRIZ~APW*zEGhOKz|Z@vpuc>k+B3w^LO+8|3cT(*Be-5k#4- zN|L>)iDV%eRXq&WFB#zGuV#zObQxjNFL86p>SGFDl3M*pbcj#*Y0)XOenFoj&FPfj z8TolYbo#uCAZELEI}^NHU67;~yTt6fxO{3*Qb>oTq5py*X07F>=5#_jEBBIYGA8E( zi>s=xhmL!d(U!VP#7{3mAzayUw9~6NACU#}n|-BkaQD;2fmhx$bdhJgVBnkb9GI%# zbzTs5;=(nsp1h6$2Pl6o&OO@&s{eS6)I4;x!Gl#%j-8MIVNvJkW8NlN2>{4uql%`M z;l-bi`)bq09eM&~(Yv?ZXiVHQw}h!wkuaC$IJPUM`LoeU^0+WWBdfq5FTRw$2s;~< z`EF(ww1D&>QyHm@51rj2l+izR7EFn17z60JMId3iJ8?Q!jC)y=nG<~W-KHt7=HJ|; zO5oAlgfvA*&7k61q77H|p=lS|cVv7u0NElQttqI>^^X@GPKsn~?p)7CIJ7D$N^~6r zzQrXlMGvy0?JNJO20T$GSwEYsim%e>f~ZC2ZGGh&NUXlGrqlybTLEV8y<_BuAACXi z0S?_+BIZB`y(_dHt&_W8zgu$~NNPqM|3&D3Q~OAYrbXKHe&92DJ@z6VdKZ@p-U6nq z@ku-WQ6bGhbGC`P{*O9n!{hV`6qw+x&vh-03d>q`9dT}jY>jZW0XOnv)KRh6n}SQ* zbRqU9C7ugezLAKdKcRX~?mwrmH#fIfya&ASuh1zW1Vy^e?s9D+Rg1wRBc=( zQ=1~w1!qYhQS!A z{o#>Jq=K5Z*8rn@{$VWHmmBe%i)X#?*0Q4aHmt}#Q28C(%xBc!EmMYhO$2oZ3QUgFch$zqa7o3#}9JR)caUt?}*;p>x zOXabl{aW`y11^By>Rabg?_2m7hzg!uMUL-iVxF5R=535eG%|e#0S&@u>P~W9LoT?Z zQ@`gK3+kdP_AWwbdLNfl&SQZ(8aRLl4(pY)rmXD*L`8I=&9&7l<7)tc1S-f)*hBj_ z@I-jBd#GA&_MQ6p+3;|F&apyQIn4$G-uWrP47avF^lFu_niW5kxa+^zRb@%^B*$yd zP6Ou(RvvV~sgl|ivfHH@8|`YF;gMfQ-iC5el66a56iT-62`GL5dl6}dC0;TCJ=br( zzB%@gs_Wf!Y&)bjfAAZCSg$3PiTgX_9OBy{oaYke_!i~v|G??#NKtdTy@`F#nzBBN zrvr-r7?8ju!bzoh(NKhtFwi2&DVIwiTHDWA9iRtExTER`7;ZnR$wQwc_Sa1< zZWNxl<|5*_ERB_5Pd!pn?Xl@SX^S7!Ka#`C9^FG!f|;BLo~r}redQa z!*;T@_7}lEbHDjOzbo@n=IHs^89Ki%*l?u{2*os3fRyh*TU;1;VsPRNa!IN882pEV z1o)N&^22WFp7wZ}n*Z_6Pb1D0+>ujc7OKo_pKm=JfoRv9NGtzLs2X*4%I~)Ax(MPN zzDZ2@O(S>+#txSYXgf;tdM^}smy-683>wHs_q z-X&&m%v--@THjlA(QoDZJD73cz>ef;&TPMT755CT-(#(aR*ETu8pFdg_WPGb-23*7 zhToey3^m*R!Wu%>LFkTO00i=q3!j-NZ`-8ZH&S9&RR*LP9ygTau__%oIWDTJ(zQeo zR@vcE4~LI3`F`34R@m??$9_EpObJ_l+ggS4(Ct5e=%g7ll+h-bp{V39dHeg{-3W1E z?$qPh=Jt93H$_ATH-{oxd4B#=M^D*rW{Q;~2-tt5Jf$_5M=R+}T5dM@DNZ3^9Ny;@8UlmX z&kc3qO-7o%UyjPj(dxMc_fGz{j+GLvl02t>>dWDoF0;h}wO8$=^A0 zC8$bamJYqt;B_*t+ulHh9}_5JhB~XCtNZ0eeH#y5gJ$eik3gG1Q*O`z^Ip%*{9zfK z?)xs0p_VVPkS*eGm{*~mn@Mo+E4OwsOcg;>5B|zag7W-1(DA$j6HM8^b46=NqWXbv7WDUR}wYv zWbv*odX4y>bmn2Q*XI}rNeH9{FE6tj$2#6D3rZ44W`o_Ii6pvtA8$oh;)n$DN& zjmEU6DHqaQ<-wn@K$$!b>xuIF{JazkZn@_%`JZC7{k{b)?|-kL_Z1?up{yhU%X7Yu zF=OFcH&{s0A~Un61?o}QNxu*~k$o&6QI|E3C>pN^K_<9&=sNoHZHD#E&eC{_yuyBz z?dG#?rcX~%Xj;Cx@5z}bWngbklij5bq`J)DnE-NEA{RwDk3nB&+V?(9w_~=AQ%A=H zp1=N|@y(wH0GSC4wHC09^(BiC!k{WpS98Gk%cm-b&xFytsyct^bUpo<(WkAutLl@`tCE zUFQ320dMl;f9jRP_q8YaR93E!1K1XO!|H^O1;;%4?acuq>SV;xrj$2*&u>9zzK#bs zGOoWT9MD_+M0#q%0FJCv%^W!f;t7y`20Xzpzz1o6!F9A)I5ihaUpd?y^Kh%lgQM^C z4mz*Q>6^E@Rsa6g;&wX}?$E}=&<&K@{5m5IQ&o&D2fnW-!aV^mjh9I$zB)UqizRMG zLKDp~GgL`{039dhcL_L$S;=cXcsMY}$9z53q`=<#CfrV56q+K6XyIT>i8wC57>?*G9?2lThbcqR@d;3`t-22Hn(}z z_IDjT>sYw(aMa$et`p#p#Pw;yOsHLrwh3W34Rsa%mvt!Z;)AZGM^qU*)48`Q2 zBY)|CH2OWKMkWo8_^A~pjaulF(HLK%@^T(SPlU4k!Ml!?rk{h7Ukt+>`oam;aM)fn zLQnykvF=}X*ZHj(*+p;!fD_Td#g7zQMS8ZF{=Pm|SCYJ-*w`1wX1mY7I%=`W4w&;u zv%xb~1IHL?=@-Ht=UW;7ZY@A5P&CA}%Lnf8d)BH8(oBVJDWtIaxGPl#$-vHa*v$bc zV$Mo}t`Zk)=)P~J-Mp0P0s0n2&XnB+Ryb$fH7Q zOqM&hPF`I@-|QDXj-WQo<*`>PRo(SfUw*gXM+dJvlxc}(B|$HFJ4pyJz>_0j^V$zv zwt=fXlX}f)_zDo=GAGRCGPXWGI}M&>#Xn$kp?kL4-fHbwuf)@}x(x6K%ff-sjGzAw z^Gw+WUwN%D!nNM7{l#zyLnLd+wMrt?c}ih_+gw@vpUY+Qy1|k3{|(DV zfB=(K2ilBU2|Z`ReF!<&%i&WZ!M9@j2eBOwC>}jTD?`9|$tl1pr&Jp>TreNn3h1Xp z*>)H$0s9Gm6`_OLS9{>qf6I(iOF69g7Av}zmNs&HAT#xF7TqLo&<@id3ApDs@m-&i z?0^om;}RG@?)+S=VgAnl`s_es^cTKaiuadIP1{l5O6-Kq04q|TJ;rcb7Q)*4?CG^Y!>od{*x=ikenK( zsEPL#>^Ak9M-)Rv^0kOCSpHjQKZAX~`{)E{{91wZP6u*GYyWw&e>xY3PTr)voi<-8 znsz*%-u~mWwDK(99itMSA5}Zp)us@Q6yqUF*6d#W^Miv#s_JBA@c>0f9iHQ?5sBkD ztBBsbm*Dk}G{%33eU+~6| zz*bZ201SDl9m2zI`BDbcLy-q4p8prQF zjUCSw;3%4OCu!(;^>G=p!*!axwmgQAm{WeUq&n7hQLE%7pCVK>zRI-2hlupK8V_ij z$h=2bNF<2U>r8jttEr5~C5JQ@e+FL+HwsHD5qk8>-yC)VlUELiAL;|n>Ir`2KjA@vF$we_-zV>qDz zV0}1YeF}ObnvSv|r8ah}_iw&cK~%wX;UxmxxDiQ{X#qox2!hm4i*rCDZ&|=QA}0Wi z99KrZjYL?B__o{5zZoP(&KtoKqjb;fdGWZ2R%;ej5n0h*$&KjH9Noh$9N%I0>*J3R z%PF!8;g9We+_SD-a1O0d{QpojFsrrV0%`@V=F+Y*dY31=AO-lihT2r9G_MG+vBR?v zOSocj`D!D6SKFpk-6PP~-zu%QqFaQ^c&J-FVz3GVi4XUJ7(Yu=^2Kn4E@vP+`{E*a z3!KifZZOlV(ccqdz*Z=~nmIYzG{tYTd&bvF3`CAFvG8}~I=d-8`rs2X zE;oCH74MLb#GN5QWMN~br8Q3|0+_=1OiTyW`2W^lP}pl?GFg$@J+q?&<6pY|oR=M# zl1UUugTx+=%8Z2n?OY(6fqId1QDvQSl@BacGFmB9@B)%v zNy1XFvsX>&6mHh#l`XsG`q59<)VK3gzLHZ~vi>ESbUf*SczKKb9-Xrzucm-|@{c57 zD#lYGF1J;itm%Hj3>K`yV?Vk=9`ysfRm95X*z@Agrh+DT#by@8)j=~{;Xs{p9++y<#{fx;_HZ5zBVYrdki zuf-9DkmY5(Ja@$ziR*lL@22bNffMmRJF*Iv>yifeqhw7q2+*H!bZRO3|$)ei86 zm-KCT_hm;vYrG!gkcrS#Av@>!vk{>4wd_bIQ?b?-x);B@WJ83h3P(K7T!j z1%3;8J7@I#P+1u zFXkbN6F=?++dJd@g%d>rFRQ;5tg765w2{dL}X8ujZrBaV73f7b(r1>Ei{mVWK&@ub;85 z4Ty0Tfmsa(VH;rSz{3?m$meyDAFeW#cZx)$NOC=)mQ}O~*m_;L^mXLtzX%3>493E` z3!SKiHOYAOY)c582W-ShT<7Ybwv+2qk_ldysm4H?lquiv-WQE}d_3Cd6N!kUztoss z)8NFzGlLoNiIE5*V8=HPe}nUB^@WG4qt2nKL_HR#U0H!rPLlw|Beg$&agh!Q2E9JK zquci4L0$_r+=2YtqqMOq!375J@tS*d==hvPHn00G^U@YoV3P-) zD>8vDxg^`~tKYTM9UQevSw5A+aN~4e$|wR55E3BY+aKJkB)qs$I?RBNF#A!%up5iQ ziG0Z9sxqt;!LTqz4c_sU#uW$#x4iGulK-Ef$Bb*+d_JmmRPN_7MGJvcXX^1zd*z+d z>1f2l$8e+Tx5J#XOCK+7m@EDgZkWHXk0*G=G9eh}WT^1ims#y9{^p$5%sHXhse>a! z_!Q7JldBb1YL26hywk$PY$Uhq(U4i4+T!xPPT7c@x6`ykuOy<&sG3k<{bCQ=ZDy`u|j%sSu7R;j0(>GnY}+WLo&TM5hInB*(N}4mks>rRL(U~ z)Su&FS>Es0Dm&`F|I5^;E1^B)<@BfA&_`Y5=6ayW9_3^ki&eVaKt??AWHS&bQOg&u zj_NGgLbZZ&Mp$5oSc|G5=O}`Ls$hN}Io_HFJ=f1wHSAA~uDb_^)e5SPn*{AJ$N^@2 zz&0n}L?ro`<4BICZ6*ev(6kb7%_^XQ0jIfHoChUNZIrAcf`J(blaa57DEpnxyao&T z=JMi+q#0x3FFVKw8;z>s1wI;iXGg4U+?Ea45wEuyOrlV-lY@VZ0^>(l6k6hK=+M(% z_igcr9GPz{joYR`qHpm*3<#~GLR17g6&&0@%TvtHW-1XF?`dXdVD(GNf8hk%SH=gx zcx*$`h9~R)p9?Zn!R-*xr{DVYr%}9IRT6kjPBc~RRHkz~Ia=)mKj31$9k;#s1wys8 zq-OG(H$!eWaNAK8(t`NSGA!9N=vm!|L~4@rgzo~S|KpxLQv9lCfg4dzNrvD#AtZ#J zGv}_#D)I;lFZ?v2j=pSAs9Zp$c8DVz41`nDD#TYjT^EmOTzEh2|CIY1BdC^h!4Ou4 z2#YtIytHCeoC)lJ4oF8+gv9-`JMeKEGZuW_%bi3fz0f9oQ~gRHon9p|CC2YX0(yIj zV0bzmP~8GsOGrs%#r(OHnR*l@_{4JQR%Y&CwYX(>(0A%54-1ex4FS|BJzWxRC^R89 z_*tU~Nr^9F>)h~g-fUPR}GTH+)Hi1-y#uWN+$^K%gw#O`Yn(1#VJQ=BU85Y(fZv+O!{8SqB^8m_Nq1FC(p?!FPyXIAMb7p7uv(29b#r4)s+X> zH}tk4XszfySNCZo;h_2H{3hl`bH{vfHKcc$9sQyrUgpE7LvvM*)MSm45Xzt=MXjbw zrL%@8jX~=v1jRvB8Cdg^=XFF~`sav%S2Y=nHApqQ(`vEQaKpQRvcS0qr|P&V5gTd+r07jAEoT}=Md@!J%0vwfK$Ho*_-0SVZK*E{?U3U?fvu5< za)7(RWDOqM^5{swQKwP{F7Z3K$+Q&q3H9KkXddzW7&5w@U&83Ak$PXahQ_f`94sRl z(08h$Pn)Vq$2jWTrWP_|8;|eIqaKW=bxjg`_j8+6c{Uz1*t+*wF;tcf-s5k6w#0#M zKsi1Xk*pj}pX)>e(kk>e{l=^ ziEYw8Umw3L<-1|&UW1zH7DLN@yS=`m*5SjAfvU!>FL$=4xxecGLa^v9LV^9P*20m$ zrACJjM1Ql&F!DX{Xl8}KX1FldoUM6Na6eo!p9k@CN;sn=ML!<~xeKZy{LA^=|3@iv z-9O`eR28V}2WM;)p8_VpP=W~l?7{b!cF~jfsQ)Vk+5l8$BZj^Q=dGub2ZBlyWb8e6 z0GwY#==AL34!S~rur>IyhyiD6EXqd3oD|I$7ZTyET8JWG^#UFiL%(B`J7m@z}4G$va@r3#H+B;Ib`9)nIs$cQ>=9(89KO0ThUuJzOe zY9XKsZ;4B$MBtlJ^i)u(ZsU6nZeA7M^blMnG80O;d7zG7ZgGx#);5y9;g(60K(=%$ z#4H6E1c5Us(%HpU74>JI9oE0%$;5d8;IBE>F#JG8q0H#?pY zbyY%7Ym`6tlE&Mp^w(&aro3w2}MS$FF|M^S!7I*ynOPDni_E%E} zT9x8gqnsJwNXu>RN@;d%lW8;uRuyq6Lsi$`Pcghxg#Q7nqw}Kll!8im9s1N`2uk(l zX*PyHwc}V@JKh4!Xi*tBjF_$UZQv(>Z6pA5Ymbmcbjk+g2pY|*H_tr_>-tCk-ACHL zIWL9O`p%K@H}C?6wUo;hn_4+|vbq+voX_N?1RQA58=E)5+N6NozVyBX;OZ0;24ZSn zw-S_PjoMVvAH(H4(B)0%@U3$@Mi&~A=6J$(dn~*@f^hN%4UZ~!{SUbeo|<69uXm#z z^(Q|+(1*iH=Ew1j`27F+-FEsf&0I?M9e^0rc_&*hY&|78=#XIsAl$r(KoA`zLa8Wx zj>1t*>>wMu!sGriFt~(Xj#E?D*(Ao+*;P178dlEnXR(5$jzUz>84{YKhgra^TI%2k z(&O`6;W9K$vb&)6&uAKnJL}iz=j)!F9iku1otM(AR5(p+W#Z%x>+?p~Z_uMKi$(h! zGR2lAniL|s$cX7@Or$DgA02g3KT7B@SGUyo6H5l=HTcQNXx4P4F~!YMjY$fE!T;p# zM>#55WyOcaQyv&PQ@a~wp_r1%Z%~IjeIKW8Os)5%Bxq@#k-mv?u#+}ku%jX}D^&kA z`FW#3xn@blAQ8H=m=oRFrCRO5OY7yeo#p^*6wb<@7>Dn(3QLG_h1tSZL z34)8LN7vO+)ak%T^Su*p@C1`#s)EvOGtP~*Y8B;pFV#WQ zfAQ@qXc^4^$nB4vTR#i)v>OtA9gvRG6uZ}+m0+qjh}Z7ZJZO_gb(MxKa- z1$y}V?Tx=Tq%k{^k9S>Cwt7nfzXrm@Qwz%=2 zUm^2)U66y-Q#rVn0m=-D&oN&?4uA4n3ztzvPkgVp=zrQ9qdHxST;tnr2DaZVSI!Nw zD8S#4tP}H_ta0*S(0~`qbJr&_#M_-#6Iv!hbecU+oeS-pS@gd|j9q5mkD}r7C@=Nu z&~C(trt5VQcjk!i$iM!h;y~@SE49>JRuxIBGj5EelBc&YD?ucmayd%Jf@)kcS@WFC zWcmQbf$e|iCTbyPULy+sn4XV@46#Q_VPg;XA5BNuy9LypaWus7+nnX8NV(eO#vQ3o zL`%Q^mGjKBRUz^|U*fResAImA=U%kZfwv~|C@eWmoy`BA6)B9XQ+3Oc273!X( zR2kWO&{&Ww2Ip{r<$frV`5dXh^r_`ly!*~iP!-tx3v*U354iRXu$Zt9sIxodc00dE z@@qk<(QksTf&C+i&?ly^(B&RVe~akb>&chC2jA?8CRF>DmgmK}^+IB|-c%Wi#qqR` zNI~D|`)~pf?SDIU)R-hfK2&uG!^6Roy^L>q(fa~rk>K6c zt9ALSZWORTadjNT+Wav=7n=p>AuQ06HZDAh2xNQBlH)4{iteI*r-#AS;8B2=43 z`I{YLvJ^`i;t{P|I3rM&E~TgMSC$JDF4DIJ&H+z!DQS3D@1gw&HL~>827j2V*Ox@e zx0v5lOwD(sF6Su+7plmmWu4{FmW3g4HkImg+le0Q`us~n!O10mWY(as)Tl_43rW;(>e4=3 z@Wu*v4j#Yy^+>09VreV^6C$O-Z}7D}%Hh}dn&Gz;>+TZ9?Eba1CHE+xg=Yf4rpEa% z^K^FVnaKiHIG1$hgrmF@tnPNwuYIr)`ySeWEtx&|=J@%{(}o10PWGo$=X#e;|9G?~ z`njvvSmh(>CtIta6c0PyA>)?&wT(SJPIuSWPY-7EN4AZDbwe)M53W5X%~87zHsF}s zMT^a~!x1z&Fa>$r|E(?KoZ;dlDn7KHR$S}8Y~9N~{HLzN_x)XwqKcuNp>+1)@h&{v zmiT*8Oe4{P5|V#08o>h93-KFmSETin+I`Q6|C5OIc`LW2(dAP*t$;S+1^(|Fw)~R_ zxD>lFw5c@e#BuO5mHxfXJ;!FPew8!bVlGrC5L$6xpIP?3{Dnz->FS z9|z{{T#q4?&8>$@&l5(Rwwe{8_;5ZUzwW<}r z@EamFZ#Z!n;{J_6;BPxNgzpC3Da+(|fB$Q9qgVBR#L4Q~K42at9WjF0NbuG6riM)# zFPt!=Y59OC#DT0TOS9sCCHNMO`J{sI%uJMo+1ET!~8US>#!uLPVVTL1T# z6IQ;EaBAAZPOXj!KPO4t$Ul6h6fQy8{_B>zOeF!*38kheeV+G?t4s4K1-2fS{K zMD|mK(T}QZM5kT<8${jP{o)Zht|DJlk?{H~lQ<_f7MIS>LBDRQ+;R3?_`H$6h-HEnvGtECj+;ro`{mD zlZWWDI9c9iS?%u5M7`CtY&yU3YiF z6}$50jq%Q_NL7MI2DPSMU`~Ozncp#zKMfqty{J;nV@{3rKT2B0<8;fTqYhME+Yt z<3Z@TJ`%6PdA3DQesVmYJUNDI5_swg#HJjiGxI@a5+M^hx}Q zFPN~Ei~!eHNsW%V17s*lk?<5_I4l}@`iV!E@45E60Cl?sg~M67jU4=5CJ)ElHYJ|Qy7)TD+bo2Dz{#@AG0^kQ{n%xxid<5!22M!#`ceG{*g9Qpuei(A~`=G>|!S- z$VC8n@lhBYSCfFa8m?;b-OBg#xYY>D7~t#$9<4COoAJ1#TiJL~A@rD=e+hr%K$`M4 z`<#Am#}rovFI-4Ya0{)V>I=wev8fE6uLbIm<@+l@--oHvkjE4GJDj2C^!yBGSF^!z z$kS7f|mZi!tuo@ea-*1f?TYF-yx&Ni46B@>|T{c-uVm z+VhQZ)n2r}@Q-lMcYQ{ZqkRvSlQ`CP!oHktkbRKkZF!0MRk%w_`ih2WvO7y`gQhD$ zEc~Vj6qb!@G3MbsD|ayn?W}Fw7zibAd9f=Ta`~O>J4zk@;RpNep9frHo4JQzZ^7zM z2oVFXGp<|vMy^WCaZ#VE!x+cbK3j%7h3{NwI%57@WHqNn-dPBrBxcjQty4>PK6qXm z7C+vQs6!I2kj|r-e9p}%5zt8mFOXl{myMio`qfznJnvLtZ9woYUkJVAY;!ITZ7MNW z4}gXttX(KPJMw>vu}z1*SEnI)85FFhhr4>6r2!21b72{$p$OvdeC!v#jQIC}vF8Xl zZYS(;x!@G4YvV;IAS@va(qhTcSqpq`?dA(M8qHi*aYr<{%erYr-BBD{{*kC3p@`S| z^!Sp$7Fy(cKUEQ}^F&py#QiU}yQ#1Y1|0CRG^bon@O=;W-r!53)LO2waP4dwtTqOq zUcerg0Jdz~2rTh)dIHVZFKiwG!#P_V1CO}TQsihEhCDgkNSwuAgl{bp5@`g2^@sxD zqP{Bz0OfKoce8nOeDOMzba-AI%T%VMBlI zb^3|2j@w*cB;f{)KU6q1rf8NY&Aof4;iiTR{H_Z3D;oUE(w zb|!hsw>dnX8dv+*QuyvGXYJZ?(&urup6;d{b3q zsXp*rERSgebVy(D=-fzw4G`!lA}bfy%k}8F)A|U%rc}MIx+*fZ^HW1W<-^druA*XK zK8(g(Ink#y-kQs-)HD&1t*7!eoLmpyr9~`9iBl}7d)d1^Kox!bq|6*YX2i>?Uw9Pc z9NR0TmZB3zs7}rJ`M4}J?bUKCy$O|CHN-Ly>$@}@_vp3D2q}K?4CvEwM$n+!?gy70 z1UC-Eat!e$W;Fw_>UQnlwLAqJN05?8c$I#G_K{rtofKWMLEg$a{f82`@Vqn^U`GY8 zTids&6z~+P)B#(O`;D1tkpCG6haui>sfSB<`S>~ZKw?2^RK^b4qgBH|UJX_|c8fw; zV1BedAQ}(It zCFPJ~a?P;=OV=O;mGsLChDKKWR(g@?84tBaYXpM%CPmvwRlFzJ+G57P7W+*Ghd3j< zR7VfKZC-X}s_IZ+Z|E{5*hyj=XT^Ybo%QIugDa-EX+_HEl>%tF?zv)RVaY&YqSWEw z=6f5x#O8$b7eT|~CCw7ZmMv1{Q{8Mb*2E}A0B8W=Rqh2ZnE2mbA%I0Z!hJ+q9~78r zYbp->X+PRnti)0UjUvrM>k%&g8QTNVgj`<$EVjS3_N)nV1m;(#*T+!8Ro$w0yX`Y& zk-XQ7xCHgr)1&?1q^rRGstg$P4QieoZPry**}{VstFp`Pr~zL1*4`2Uffvs>p5(Ug zlTvV9?QBD%yHY;u7v;2xdGU9vXp2TS`df-*+j)I^OrALuNl)X5goISwE6wDI%AkH7 zvz%2I2&bU~cit3PasbZE&?{mK4WF407iH26J+wN_&TF8F`&;s~mQpsJH}A!+6Ym>y zfHPsm+{&dAzt{=;KqGum(#qB)qd5}Ud?j5fTk$r9M3O0BBBEXA6ZLN4`c7;-)(3yE zMs4C(TS0pMiQ4h)D^aEonR>Wq=5s&&Is#Y;e`})o%tgmE$9j2@B+L^1N*!!@+tm`D zrx|N5WU?6kO{5J2=|}g6U$x;Ps^4TJOS1I(xN>%BJ3BgAXj}hh9=03plqnslvuOgU z2JpuBX6l6-!1m&(^`lJd&D$2I)V_d%j~?CKeWG`(F&zmZ4KLJDaas9~#zGDXD%r@} z`^LM{%m3a&ZAPsNEg0FCpJbGPczq_wIaRcvNRHloeiJvZ0&lXFz)Y^HxKK;HGQjxn zAidlUsPG`e|D))v~X;ui}ne&QZGMalR%EUV40*n)|CZyWvzn?F|z-{p3)E{k6OjiNBS6 zr?8aS&b{;Z;1T)e!vHd<&|N}!^8Bo2bJ!r~=fD5ZeIP|VaQ%^8YXZvu5YMPX2hd&) zHs+sYpHBD>QEKn(eA#j?lC3KMz!>(>v?44O_=nS69f}sLR|Jp|NxZ@3%14v~w8%HF z3n`Gn{n?i%RDO5>0Xh(qk|7K4$IX#1$qb$Q zgqK>jMP~bi*!U{|D|aoga=an64MfY|0SAviK#50_k_gWa?Di?FjxsT^3IFGsI zOGvDf&Ws=OuemAGp97ey1;5JH1Ll(vxDH+O@k|R7+868yM2-4d8B!8dt zN!easlClKFy8a~SPAdyMSd15*uUgmd7K7TZ$bt=A5+aY966a@k?nU<)CrDraktVK9 zbijl%i*b_rfSIyiYyn&_zn*m-K3(A6H$O1+g;yV3I0TVFMz^l@wRgN_A02nk#F8&cpb~KPq0}EG zhoK@Ate8K!;5%jaiG?eF_qWH#d?$ zegQrxp6mmB;4$k@#J>S7Z*IvLa|p@6@TxI4fBmO01U^-`huYu$gQD|kc&{|%iyxc z09OKHHAc%O3PDgIUg3^+d1DFrOVhsqJE=!YYX*_Oxn<4>r#mRLoxK=-9IW8z9DSeKhP~vua&L*}^E|!!&1ElY zPRwXM;-jG$j7xEAblk8Yeam8CdzAYD&7bN78h_4|zjXnhqwlec&vkijNGSZH`q}k( z!={q@bmJe#hw6kcnFZ^)ErBiK%YGGRzjeg#k%fam%Kh5mHL{c^oq+KlsZkwpbWjlnoHLPj_<@l`l;Y5^~q^@K(vXM3Ov0KD|tM=))}E4j?PKh zCo7PZuZ>PsGc+8lFes7T@daw?P86E+5>HhSU#Vg#$6r1xMASI2-4$PNu1^&92m2MG zqErAd9>0Fpay$@F-rPuev2w`>Uw%xwtTq7Ja$KVs-JkMbQ=jx1$X3E!KTYv;GzxRo zTlI(If}vVDCxHGxNV>D*?@QFD11>>&YI%+7&n=T*MkZ`^J>M8~F0zSMPav$)f=y zaq!Q>+cf8-)hI~bR7Q~!2pqu+jN0#NWF-s_LbmsyE=mEuvHfE5`NxM8$gp(cUJTGs z++F(#KNeDx>IEK<9~WH$rqJ8mcq=6Z`m0p76$ev<5`XP(KZ_)7u+sf0f_ zuWI?JcD_9LO?KwUCzq$Cxdr*j)d|d90I!7-N3-WrI=!Z z7gSBg5&?;dJ>>zb$k||Oz73)@Ha1Sk>E|4BR>PA^HKw;;-*|o^Q=e<_{oVA=n2vxx z{^^StK_c>sonY*;A4H6&R;=`o!K(eMctq^j?uQ&t5H9Sim!G-{>l%*oky2(qStWzx z_-C+t8Fnnfr-#n*s$WCddzbYzo%L4}8~;o1dQ(LL zJUkB8W?n>FrlRUQO$yQXw6{~Ik9n`}xH>jVMU+YzN<|&$5mSiPl8dVYs@s-e1f(1V{1lXM3pdq>kOWVF%$Y9pyRDMjc@hG? z#toGQ*C0(99Cf;=WJjWJ$X#y%_egYR0rnQV+UOV0zo9gMS*8Sw`+l#VMnd!D?@)O{udKbJi z*Rz?9p3ojm4h=&YLP8D=S?ZSe+Voz9axF{)PaJr?Qj3bkRRt!YE^6g*<%$QBJ9fE} zO)Iu;e2F7=ti)lE{%b~f5l{>rKV$@)crdV0zS{p8_um&g*?(RP!pnJ3|LGzEMb zW;+iPaGyuAAZ)%r;)&BZc+uarQ$Q+A`@Ma&Z`YXqvwEI#;TYLXupRP}A*lKIDY#HE zBn1~(WrfY2_t~+99Z&&TOwM$+Iu19h5{2{YB-CVf-^X!Ln<}lr+KkxUfgIE>WMRwcHzVsCzAJQPA7TuGr(gT>SxQ!p;e1|rr0)o>qyT5 zE-@dnRe-+_z$}*daB|Gs1?)}S(EJ@pzdU!vMkl4-%Ia$h zq?3^fGbw!1ISjQ_hz}vn=otVe+U&W*Fu_Tni9)GL2Ta~cdx=&P*jxuuDKimUT(1;O z_pCR9D-FSBESA#y<=^8yQ!79?bUXU+HyyDk&Cp%Yyl=h=>j!yWO5}TyB>M~MW%)Ve zg4hbO!Ta2bZ1!0v5EX2BtKr&#?oI+O#dIOLDI>(_Z;Pcgh z+r5LZXFwyn`jj0ZHebzg1vEAb1EOVn5(*wO5zV?FaGQgR}PZgA<HR_1^nG;B3TY=X~nCnTD_ih2Hx;-aF z)S1UY0PpO0O`8dU!T=B0*o=)2kK_e2i28x0Rlb_BvtOUfB>PxOYFKZEN@whGv(Y2- z=QU4Sm9c^OyY0u{%fFebf58R`onNb)xCXhJw#WY^*{9fxGif`QebyYK@KNa0<~4&i ziJk-f((2ZF5>Rl9Ak~$@-WhFgJ3ii4^i4Pr&8GdJhX_PI-HtVylICEi!c#K|8^rym ztVf)<%l!VEu^^Ltkw4z=H#h-SBW*^E?gYlkWY4UR_wwr+ci*s3i)_+VWcjtxMXei~ z_Q%=%P36C!g5D_i6SDfrUL48UE_0J^cx zM9GHPysEARqaKiUwo&z_=A)ZylNkW1f1*XUQMX6+j>R6VX#J`iLj%ZsLw;%}D~D~o z4D!yZ1!jleHb+1sbD4oCvk2^aFUC0zQlt7v{MA!2n9gThK#1=bJ{`JO2QKKrcGHfh z6VvU?C+TnzIyM-HwsjXl-`QX96w)C}!V*r9|2bm)X`Q$vXJ@X( zS=SK`**hiH}TKGFoYgUe! zjo0XFh8iU}`RrSGYJ-8UB*)7Ekm&dKTROLHV8o&M%54ZZ^n1EmFw4))0D$orRPXmX z8dZBL^@-$`_w{er_-r2^FC=$3+ZDW#H*WTAQYNY(- z8hy(z>jEWJzkqRDX&=t{j(tmh-DtL0Wmr?-CtD4AT1};oUT;x*=55Tc-&qH?bMA=R z8Tk`L|0)*w^5bFEutNJk+af4^tY_;aj;EFnnprj;CtcgN#w7nCP06;+=plrV!P(=N z;Q~4N_fU44sEIEW>*Q?X*!F-!Dw-@Is&1%zPh9Hfoqdss{%U4Pw^!2%>NJiPEwU?_ zPqFC+QROCy9*6nryL`$dM3B)Lc0tLt`lkZA0%8<1&O`0$bsfzQvpw&dn^wX~#e+}Z zdpb^}tL3(|dlJe-Gp*YYJis>B_bMw(^%)YB>YA@TDUep=`h9T!_j$lKKbs6+F{*Ft z^k2io&Bi%Ny`!i(mU)WVyCO)LE1lST%qzn8gN}gGg(!&sWIYcpL;N|g>77pp_rMz; zZN=@l3}l&)bb08Y;8Z3_kW9k1cX24^BuKS+8Yhy(b33kR9H3-z9juTozk(qcfTJC) z+C&$^g;lsSwFbq$U1BgkNo@!l*z`d0aHot(?^bG8%LiM z;ErlzMOA!KIAG}PY5P0|kg$G|TF_d!%SB4|{4xuhF;U_If^&YAS5I9l51awN-X_3l zcI0v#rqr!X9Cayh_t|%-0w9P)g=|}I`nG<_?~bNR2~+3($pF_k~1xN6(YkKab4 zZf)k10zOA@X~(GKA51pC-vI+fo#nfRL$K-NBeB_4{B%2HJyp^_TBI`dUAUR@}Qj`lGcpq7GHJw_{P0o9kcb7c5=`6g(OL_AM2eK3! z_JoCPHA+Ximm>;AL>C|DI($hh@hw6&Bt~JJTmZc zq<_-$=Dt27ZMdeu=bwzP4(#K7xO*J2&~p=7E;J19lg)>F3$~ddg{c>nV53U!ge1+f zr(h1L;?M0Xp62G#w_>W;#p$oD__tHVZSGFZ_P@5e{-`XOyuF3w`RK&!5O%xSeUufs zad;-Q#Z>6V0Z)Fon&v39rAzEVZ_NHs{aLM_sxSE6dx`=|9OUR}TD~m(`Et=?V~RZy zTSvBark~00?_XWn*))G4^xsM-lfg%`ZWN(XxjVQnFI+TMsof>feO|~ zU{$<7MSD%$Z#hu@={i+x&?`ke?#n*3UU)E z|F^=oi`rRv1KwDUPk)n!#jU1??3X6SXX=&@fG%huy;2V3o6jKvG3}H4xARGl&t&0q zvRi)}9gyd~6PTsRRPUO#G#B>8HbAMyh7EbH63=7q{a}HYfOlAt22^b06UessR0l*q zE$#q|dtmD@euBA8Lg^q%6s!JqQm}RRTRm@_q-r;2$`^WQHji;nwi}NiBZ%s!Am}y` zGPPcvR*pJRgkN$d(J&=lFThmL-SC5uPNp1ywZxA|W+$~_9p9g-9b*Q_OnXB>XN_{3 ztNzZwMndFGS8TqcQhlQQ(fl9IQQ$-Y!rz??1ULrPV`*u_DoA*7DhoUB&aoqEx6^9xaZYyQ%gAWHbvk}< z9Kz53U~E@pjVE#bb=L$wcXlf;VHEoauuSMHs_}znY!wG$v~gefxA1UZ`__tlWVOS6;c-FoT_t?81{rN}T_7OXNTg5<-RN&bbFV|b*)O%sdTP|jxg8+Wg z4ps)HgJIVIB8@T~06&^J?tc%>ZKS!^S7hRevmKlp?~m$$XJG=mr$5XhUVlmFjb@MW z?w(`+J&X;#SdS?i#cM1gxZ8er*OGoW>BS0GGbNUO_A>dYW2JgB#2={LV^R#Ff*V(S z4uiSa5h}tdibPMC z;cW;}Y-BSP3^y4IZ*h!#ib*JRv^sU@)X5DMrH?i3eKmH z{Vvqo?Uer55(Ee3@xpEXfpVP@gVHTi2&dEc$qgNVCT&5M#DT1C4Cr`QK@3$MK}Te^ z(?4tbu%ZJ@VF-8auC*om!wv@|O8l4%UIbXz2F)u?z?luQ;4~I)4-_y`AHP)evH&II z{ry1PZL2r!GEda|d31=8lwH-w>k{z`)8R^L?{E!Jj%@7T7Xhd{b~+CYx~%e+V4RlP z6JU^Ae#m5avu7Ck)_-FGI8Eekd2!kRN&t}_mJ~j>;neLtxCt09bWDMFy~YX}e1UWI zM=3gC6nN`94=7qaOgl2P)!6GfU(hZ&k6pc{cM&niBPrTirjW54_w2gZu;GjivlE(r zq&}j5v$s>&ib?H$F(&{Il!+27SHe9~!Dkc&>!@UwCD58{-8^(WhH=r8<7GwJ_SUEW_ED*E$xr3I^h`c?LzE3w>X4Z0^y-Q8J6Q+7ywp|%e8j+2OGqu=-TrNO;e<`)2s zBsdxszV}@)3Z)cJ#8`s4DGtpYR(f~a1ScLJ?_YM_*d2Grz4v!kRw(6vO9GaoAwxdfNjngx420Ms+p&PEZWNp}HSPcR#G86pJ`bdf#R z2eT^4bzaG0df^gJ0g91oM2xb@^WrrIr2ZCR?QJi0rx;YR;-Mk9obLIV%}|Cbiv&@u z5>*mp4w(cwgZr8N{uTHLI;(|F#Vyt>J+Cxua0)zpqziTO``K1M325B_dTBiQXgjh*Ygp3Y-t+;`%gxsFOB7hP#9(!HQC>;+h!=5$@P#Vo3pl-kDD*xw*q zXMmZe`(rroXoT^p^b|J8j6Crq)z;emXh-1#ajANA6oQA54bDxZXS(@s>|Kc9({*ya zui9HW$WO!JJOQB7zX+A#Z~-!tnDXmyq+*ioXdsiS#Y78Zen-;vu{h{^zX#Zsjzq(A zbxWt+QgJJItBB7L>+|D|KUsw$b7!_EknxvKN!m!s8!S=rNDtO2|r zj|Hiyvv%w9cZ7|+N0stiCc2Os-Uz?dH@r9EGu^6kVZa(SGT%vy6f4mI>o+U@YcAR) zCXX|;7Av*}HWol#*4@|t`C@n?LE;bDRxL3baoqGCX|i2VA%BoG&{Nk$;eg+u`!YVo zh&K`ly_MOq1zt&8hX}w+ls%&%Qj+D2j~;U%rFLg(9d5hf6j=aGMZanx^WG3jDKXr{ z=Ti+p8y*a-MQw>`->r0k46Mn}`3N)P#Xiih+IBhch(h)rBv9S=m5c!$P9iT3wx(8EF_$rH-&l`+C!Qd14ooZofJFY;pyc1xR zcITgYuyR_OMq~F{JAWs%Ip#t;P1{jWZf*R8z{&1&II*=#ZU535HFaC!d>QXtMdRjS zWmbJ{u;ks$?JtnX3`4spyUbFq_qJ5pIpe?G+rVfv@u?o$_D15{TH$l0d9kY#B6w%W z?NqAo*p%PWg3PE5W|{{K2j2%F;#`<_>CY{U^oN^b8-w$?$W@gn4G%v ze?s^~FW+}qxR2 z2us&{LqLI@6g02#kzPweGubQuV_7gU$6XLupvKyf4PR#Va9xi?5x$4Bn<7f}_H3;S zP|ho4i+hs_!s`02*EDN!mt)xh5sg3`fZ{q`nwyAqSnWq|c6I>{7lo5Mt9gENAS>Pe z+r1AYfUI8uXhTi?c8`R%8v#6#FZckRgc`&w&)rK#aKM)X$W+^2Wt6IQ>YF*V4S>#` zf@>&|EQto?Kn2S?8XhpvKp*tr%IMx`P6T9k>#WfYtJNp4GST@a12J=dD z%d5fmxz~KaDm;4r5mFN~kn&EQ9#HVNpmkN;1VrYnjuwBF9F)FmBt@eP4c>Vd=(mZF z03A(C0$ZPAz%aB#?JXE6`T)li+5X9tdV2oB@dB6ArTwf6mgdwMS#Lj26c6kT*H7Q2 zJ#?m|L%QwBgL*NVvA&@V32qK-xwzneXVZvyVu49y6=^pC@-U{@3XlQc7uZ{Q6Cu~A z9cSxo3Yx2zTRjhJW0?(yYe>FCK#m?BaN6qDW7(08ICI#9j{{Dx?mODNLqi>uq#5Vt ziAwCQPj_CWL)S)VbPpKdMb4vJQ_hI|xvm$7LkhCZ7U7)aMCy~VZ5!Co;DYRnGu6GB&(rAQ5%CUwglHkQD zyM0glR)OCBMHo3UWzeOvZ=`C4PgttTta>z9yO)S4E)YL}1*b@d*NcW^A$FN>FE$NP zwv5swm-E}}2^PhsHgU?W*Po}osjUPEs2Fw&?(yD7t(~npuGpX1;n1P<9F?u)2f{3= z>-fuL`Y*4txvHCJ{W%xNBI*o_G_Vq1z3|)EWFVTElOp}83(6EC6e*HZ19{6VGnQ$J zF`UdTKBw{xl{Pl@Bc%svN%%j}G9NxZ7IdR?9DJ^E@!Dd3qsebFQ<7|Y@#$QWO!eo8 zSuRFJ71aAegfjxBSddNS0Wtd#I5mr7zgMhul(2_2N0`Lo?JEea$5H+XNCl84u zR$DJ?N%7(QGqL2ife(^hFBE$n+wdK0E914luQAl3&I;_=Sd)NDMrKiO$KGb)lW0_V z$8DV>(yF~o~CMz zIOMQ1?`0z6Mhp*L61{G4ntNJnKqGpl3m3=Qu^z;FugwFz3pfXY2x)0V)$Fs-mFMxn z-_ZTHT26h+7~WJ0ASWStos2z{gRQ4n7EJy7KripHe74K~S@uRaLr(4{dA{E>kw{zo z@7Hu3E~Okk%3HxSH?Ul*vj+jxb}XsR4*8zM@l^9MDNPp_1by5g2j-Pap-k3v31~R# zwfo$FhrCgn@8|zNTJASESm8#v;suoX!R07(e?7~bx&3|s6}o;{!PO~ax0_A)IfDDa z{ifd$qrYd!wsy%;DdaXC7AlOAa!0*ddifz$xf9D@TsuGZf2)|YA#@mblce@TGv=*k zH|pv(#YFkK2q(?Ld{RUiahy4FyS%7V=k_;APdSO}gt-mBU7OQbe*5s8MaRhk%kPw^45nziG)DX+(y)&MDE(DMg*VyEmzNoM% zuj7kf6DTDC{k0W@NIwqM!m2}{Q1_whS;tMKApvI~m{))m{v%~`K}Nj1rJmwq*8{Mp zJVf9jKQ{nWw{c?U*NwGfoQ;yN`w8KaB>($CP9pLpLwY2S68X1v?AEGTQ*S6WF{k96 zEp)A77WcJfn9HNc2rkG=#GN#EHE-$RZ&){iP%Jd-f0}hHIFMRO`2!vfy~c+5*5er! zKXFQceMmajW4VU;vI#qFy+XM28v6{md*Ce;Gk6 z^}%<}8MUUs9^*>x`@H|pvOFCUNTkH@Xp+NkML-_FJU;FC8~Nkp>j;ndL!}&dFJ7R; z%(v^D58-*IOEfK{u((~o=HAN^a8%d674q2cBAcny&e1Nh!PQ1~whsezJ+L#>QW|^; zcCsdii)TJdG79{4|rzfuM3}!7Ke#mmo$r;q^tLT~;<;dEF$zs7p z8Uh_>n8T zHn;O+{Ea}ugm-tu-($fzwlGUx#jOCuNy50R9Ice4k6o`q*Pam3mC-nf=mO25awVeW z@4b^rKC1oAW4TxLuOFqzUI}uqpz;1W9JI}aoPwJ=ehjBisSFg7zkB#{GGi?J_`$XO z)!^wAOSTHUq_V4IAqcS};eZ?oGTH{BMc|S%n@OPUJ&Ux!nialIUeIV321NNbjd02z z!iOl@iIF7xZeX<)07-<0RMnN+*9A{IBL+0-soBFI$@hyt)`w~87)V=jNO=MCI5O9{ zI7n5{tTqvU%_~D1|4ZyaETBKQPIwNCB&}=K=8wPWY+mMI0(8mc-fo2Pu)F7RZAd6k zOM66%bb9KSBk^+O?Z0#0iLS@C>zbO z?QU-cR4B`M{LKUMA^~NanVpg~z}?lj%e>C3a8%cezaJcX&q2zc=T&{jSXm zDUd|D@g2tBf8DLDfiITIc1ziIkG=pfQg-{2GUf(rt?^2XgsmO6%4a2wN$1N8b?-#1 zP$^eK96_60@6Rh5o7XM@5-Nqz-8Ku$O1e7ya|$3+dF%rnqjrz#Lj(Ij#2#MrEy z0sYni{}%9ctD%k^_PHM*dl14U<{wIkf$rrXB5#wghI-Eio>(@SdI@h@%LdJ+{}S{NKu* zv!>XILp8WuD5fnB&F!%kPbtIZu9Z*@`L#OxJ4HH;shNB ziTCU+y-gO6vJ!TFm6bJwP4Y68{Pq2{Tev)v7RI9g=DZamTGh|aT%yZclnq2W0>uzJ ztQN1aFC(&cn*X|`7{zBOtf}No5NH@k^vuo{^1F- z@O|`iFlukNqUnRva(m=ctafHwd8r{H`o3L(v1%6dn^A(J)5_dpi4Jq-k$i0D8egQk zBwXZPGTnzRteCjuwm(Fi&%Ykz-iIV7R zTf}MGD%OC_^JnNcBHEQ*UWPA2jZbFE=^c%tRb?)jH_xYZ)$;Q$T>n1O1Ja|3) zB=8Z{+5=-W6+HAIj%$;+2SM4k# zYoFAvDquoZ8fJqL3fozZ32x*6{#~89IX>Cji>rWD9gGC=AQNIQHQ-e*!B2B#WR&ev zAj_F5OPX1l>8RO))Q>w(Y|SnzwUu6mgCN9Lyr%lrq@=l_^F50NxPlpF$uPX|6{C>T zHGMU?P;W)z-{8YLt6NQ%x+u0IOh_u~laG!wlN%EkSK72!hV**)c< zUCjZV>jv<0SFcBis^#yoK0ho#k6EH z0Y@^zGYujx^{>jAE!+W?D3#~-kTgtWpR;dy|xRX41flF6nzC9knwkiH=EVMBr^(44x9^i1=z}qGv2To#%2!Q{`Mt`+ z%^0Hr18Q}bYU~HYonN4!y%EE6c zCAM)NpLVnz3p*KwCAPrLO}L&@?!VMe!m|t}nG4oVsZ%l-*?m)s>oWS|)>}B9@k-d< zEPJE0H0)+D0Wa}0>h!W5HWp!lFj*+LM`AtFK8Z%W z&X0D=wli(#e(`X7ZLW}f_cE;-A!pmfhjbfnI6^IQZArxe!_PTQs4aZxEc)qp?L@F1 zbip+K>kxd1_EGnr;reO%-KIQ58ljxC(xZ$PK@T(IZ3Y5-p0?6W%Bc-lm2>6!iZtG(6-NQK_*Ip z(}_Vl6?4j7cM6rm?w$VZ%=RnLJ=7+YIkcyD7My;afIG+HlDTWf z(o1RUrya>D>ks%%m})>bIn`pmB3)0PbX};}!hEYCPl->{MM*QjVqmPM$sQvI;dh^FUc(Iskq||M&91CEc5PeWkTj;D$-+LKR*Dr`6FqRPqyZRh*Y8=ZiBb- zqsDNNfG?kEX5({WELF6gO)u`=`P4pNs5uM!a%y)Pt3*pphIe@w^=oA|raxY3pXB$A z;2Vc=Z2Gp_e25&CM4#8FDabMinxLjo$eTy1) zz829zrdnm`$ZuKKQiM<|FTjX`^Cx~#+gk67V6&2->4#t ztQ`5{K=(kDPBRjGpz49zQ+QIIUvA;82Y>g98!2ncM>L3;XwxekBt9jPbY2-5t0@Q9 z@5uj)>NEQ0ptZ$p21*|S{+H=sA>>k8b=}*()+RSvNA*{Sx&oxscw%vO!71QP%nzt% zlLEQK6!z%aDHnmA6~@`QSvi`nzg1YU%}{U&M}MYx*!5Dv;?(n>?E(?gZv6`t+_S5; zflr}MR)uv-5d}Zu93NAVKI+(QuY!%Wey;nzQSa2+X$H3t{&Nxx8*4gmN5w6~2%sS^ zvxHNgd(~$`W=R)_+ODre(!l7d+XUBSLjR8XM&tdW*A=dzDXq8AYg;EP?658Ty(mkj z5Yp$}Tu$dT+!?tTW6x8H2A-%6D{clKuoTtb&~v-Sg1n3T*{Rl?PR>M~ksn7lAq*+a zw!**o$Rjb@QCY-H@z}gQV+)>O7!65=Ea;0BvzWrSoSgZq`kU!2TeNRj*+Z=p?wH8W z+k;~XP7OxgjvB%E?Rip+_8XPIgc51Qy_YMR@WMCwMnKoE#gR>u$CuvX3YC1X8@~0Ru6do5 z)ZGm4Yj+(q3L|CRJ3HPIvnUNzfPX+!hjTlqQy^n)1D-h^-E&{*#g(NgKNN}REgapp z!>S^Q2$S3cyjzw9PVc1|RG`6vZ6tdu8-iG2M+iBp0yTOP(}9d*t_~=? zYFq4VOo6N>dk1b{hcKM-&#Qu$t`%MTrfG1mG&wst7G_;fn1+vx zh{6gfH+qP*oL|(x5RAZSa>`xBMs9xt7e4nqatmN9oD{hJtFVA+F_8;cE$|Yp3^;ky zI9f5~oL!)ctcQ&$%`m*L2P6J;IjS}01Mz?jmG(?XrR^Xl!aOt4ju$!1P>=>GSl6yt ztcTeUv~EZQygR+oEz{fk=`9NN_s@*~oek{ff= zC*t4oa-5GWoo!^puMH|FEIM5!X;iPNUa5_575ymlT5fCce9>CLT2hz&t7_Xv)sPzJ z`;2=>nzzY*#K^!4+yS8*3=KzAsTOoFaA_81bT}}6amH6+Ne`+dE2|>)HhA`K^vl)S z^D&)x=nId2e%ZN(6i*!o5Sa3?C<1eDB*O+D!i_`7Boj%+1%0~6>Q8#Sj^4v zPqsRzuxpOH&=IG!C``fvjSMhZ;NRlKM$EETy}+|Mn4VSY|K#pkMS}5$jj`^L6U8$u z`u{1j&T(0A3HbzB#;1?`ok?&y*a3{Ls-ao zf^~Ri);tX!v4<64+Q&N8r1jwe3MvA~myRVO6@!>3gCAEBsf<6cL%wbggad$8Hus)k zI^?GhFnTMOyg7V%&${Ai{j&x%{7LcR>fG&Fn-%=iNugXYX?*M)w}kwaKb1op@q zR)ugvWg?!OR-$zY&-jq#Z^pR?RBM9y>v)i(!k)Asp3INeMhh6Xm%)<3hMG>y(p@j> z`#fI>A&DwPHm98yQXOiPu@j2*;=6{O!p+r9h<0GST1p-UL7$M)BP^i&Kk%p*Y#a5W zH>E@32|eRw(XE zJD0nZvM$jh`DK5lI&q7*TU#Js2`U5&C)KY$bUvwa%54af$ktbaRq5%O5q$?kmp)oz zJJZ1tnX3ZG>Y&z<3;kbzu9Rh*Inkjx)l5)!g+2xeQn5&oQ!Yi^A(Vm$F$Awh`TGU2 z!60+8;`i%yj-0LNc$77rhGq79(4%wR){_1+&nk!#i6h_b-XkEWv>g|#c)7aqM(^2m z@Yk5OKz_m*lGEq*MH3qve&Dpz`#**DlLtMOzcSR$H?Lmw%Xw?Wd!%p$j|;zwS2G*a zZhDgbjoRSf0^J9xknLzDPBy!LA9lLmqIz-Kzz-r{5GHP7b2R3qS*5Pqf?gmAdM-w{ zyE#QnQ}Q}+1Ql)H8tqy?3Xf6y)+WJxEis(~efb(D!%>@a!qbnl@HeH>r|PWydhFGU zbBVsif#A2e9f5+;+m6}w@EQEwqL(lCTj@x_&q3kEE4 z?+)^;?eOkTVql4;3@D{lX`R*S5pE+>-KS5aW)pyck>_8T7Rkb_Ul*Lvm~x^2A4lx~ zXPMf}Vkh}RKPoX`E#OD!tC|MG6o^b0m-gGuc4r@Js3&>zFuYTZlYgyrP8+`Y*ARHw zm)-bz4uLf#Szele^x^v$L)3q6deq+nH?^NLD2ZWGAjA5(}M@< zkAOod1`Dfd+KhLylDxEqv&0M+TB^mhwPi{D5aMt27Uk(i&i~UZ4iEs=3)@OyBC1q> zC4!u#hN=8{uzVH7Vck4MBnH-V8f>#4vp{M7z;j67pyAStr1su9RF&CTnodw(AM;E(gH>z)7?Jq%`g?=``gX!pqKuuhWGGG}CquOzC6 zNKmP;1n(pd?>T8w`7}nuA>j=*2r!T2{%CQ>L6gCN&mqu98xltA6>r~fKYm*_l)yaRU z)W4BV9FK_3aQjr@(eb3PDrzUbFvJkZvgxSEWHp--&H(#fdoB9By)URD z+(8`KK~zd#G@hf@t4BJb%nd*^aDMg%hvruyu0sBq!p4GY(OD5YPDuPMbgqlRONHO< z;V*%)&7!gm8}#mg8510$1T&B{+ooF(`!%5{6qZe1U4n)Pz#4z1Dhne|s__uq$iW9N zN~+mN>hE3l5TC*#9|w-ZASa}Bh;3myYWmIKEIY5JE)Ma`#GALvlDj1GFHoFpG2PuR z3qeOZ7^$eJP!|mcUNjd@p9^>7zK|3Dvnk5Oh*9apv9J?c1wVbdi1NXp*XaJO_zV&nucC9c+V!q z$YS3@(Y8NDdLM9zlVYKfeInEG5~S*{@#o2{UX%akn(FYAl7f4!h*LXmzwK2z%`Ucw;-BE3oIu;J*_$?COLCDMXliz6dRsteu;OnmsKCfD3=EuM%VfU)y-dXX8v zV*`IxN`Z3DjZwSCjpvS9nujLn#v}LjfwgL^o=g;Wbx(5zt`ig^tV2(;MrJM^21$kR z`7x@Q!cf7qh+g@#Efw3O+2ldcFka|30;Ym9Bjs8g@C^Qv>JmGW4j}|;S$r+Hj=aU& z>6r|IpIIPB;6hSo3(c7j+a+JorJ&PGufH$m&}k58Iq=)Z1nY8;63ULAjC?Yvs<4Uc zPK7}GK`D^95|_NFL6GNrVEu3Vhx;7Q=%uw*01>a=T^#ug^tR>%{M_#{6>LxZVg@a7VKDmcgpxv{itC{M{=- zfGy}#6@aA|%X7YtA~>fmb@3lFm!5NI(|^qH6loOzoIuR`JIwfAbu>B#bN?@-UW?Qx zycb74VE2Cp?=}?uNJThi@h+J9J~DP1uD9Ejmm|Efl@wlgE+)00!*W^W#8yM!%WE#U z@Gfe7CckbfvYyDoa!tmSGK$8yadhX#{XwKhUdJe7w%j{aL%WiWUf+8xv|^dfR}H4; ze|Wwo7&Ig+;{n$+O5;ZX4a9)9_enP<>wm%!5aF+erDGN@8x){P%8NTjDZ?E`w zA+;9#8)!-sfBkK(r>TAQ({$fG=J-FFzACJaXlWLAcMI;Yu^=J128ZD8zHx%PySoGk z?rhxM-F4#-2<~o||D1DQ=V`u~wYs~ix~myIjG>bhvjfdwW-AVqw7#ROadX||1r9<- zOsmTFJQ65&iBG|ZG=*k`KB-vOas?+`U7=6jP@atU*WLH7BqA|dCH|Nbqrsj#7plNnf<{v-(rKU250=c#=Tutlo&y_jU@ z`SW2+g5bl#+Nk!bVr0Qn=Y#ZUpW;32VTWRq`;sZi(B+8!MGZQW0$$%`?ovNJN!*6Wir#%hMaaPGM=WCfo}3*()1rP(ej zpv4>Q8v;<<0`>2qZcK+M!4pD2i*EE)$?=X!7xw=vXE+gPFJ=U0_e!*_J1%ILUlTfi zZfaSp8FiC~wJqP*{T@qjnY?XzytzU7JhqTMO`F<1@x04kKjYPMAeyh_NH2UT{E@8h zJgp^!`|az_2$^M@7*Zo`Dk}bdA_u36maw;Lj<3;10i^>NNK1E}RWN?6;B~Nb-5GV2 z?!T$)&HKAwtK6%~gYmmazh59lv)T{VgQJ;xKhLetbf=eklf0l>(+1_UY7^w#L}N)D z%c}2|mkzG0*Xj__(ChJ6Ei+=u>8~h+pLY@$xvu&2Tck|vyS?+JfR~j4cc2GNe{SI2 zC$uP;9=#{9A8BF|7}E)CHS}>IJ7?#uv%mfu0@iENTYaERfsQo0BUNjKmmwTyk=J*53FvzT$`~@`llM@Xzm>JZj7LT%c%KFr223X%RiSt@f8;{xPkCq%n>E>{z~kB@-HaGG{aGGFL9RAU$J^>KnSzI6cgybY zR93mq7^%%z!5D^1P&@<&{sOP#NoSsJ5UM#zXA1;j2fiPHl1)`Y{#F59hh|w1n4d!h zbv~?hld@~3J?n(0Zn`L|4>B_HO?QN1eJB8q_B7jl)hJwNL9gl&OFv5RbF8Cn`7mpX zO}7^%cqw<1A=5MM?8M8A7~-=G`Q%ytI^|UUj81t2qV~kvoOodyDwIK`cs)Z2mD(hw z4+_5I)cDwvD8AvP*qS1*N=|*&T3d>WX2d9Y68;Ie%duNgx;9BR=on-#Z$5P~BotuR zFJK{Vb>gg1ivI%{Q;k02%80*j)~Eo>X`PjIlPjOayU6+}?!HSDke?1rkD?dgDh*83 znb4PiSs5}vF@ETIJ2xX%dddFWZ1VX9uHKO{R9El6RmjF_m}LnJd+C^ABMSoekP@7x z)i_EaZ${EXWiNG=|5EQq9Xz~#-mjZaR687=cCzPuVY`_!VKI8|GbYKfQRA_$-?ZAz z0KVeiFmaN%m|~aTbnK^Px~lI6ixX~|q^9h_oQc3%#2!x?af#9xk&9;lHShO}J= z-(QmJOVo9l7IFCv=skj8Y^~YC+Spdw^RsY_u6s@^Yt*mY|7aO>xabYtZNCR8K@xVR5hB8cE1ACs#~oi)PTocd5Y7hzK2EqL3#kR&8B2q_)NDL z%KRcsr>{+8+^mo}RFwr=7tfV8&e5aX3|(qXJ~q?it_;x6w9Sl)P@?CanvB zOY`mpfu>(UGZxrBYn$%a@3V|x-|nJCi>bvy_*He=^35&%Cbdvap-(ry+#B~Y3ReH% z&d=FCRpL=^4n?n3IMoW9n~5jNRk(i?;DP@CdwYKT+4#-C9!T|5qW5>l)lj)pvn(Jv zIIX>|FTL+VgxM!&@)#>GKj$;aNgCxZLBEr_c%EwE2_tHm`n@`t=>U{iz&WJL-AoR{ z`Yfvl**7El2a&XCwkgC1SG=ompvjA~Pg20;?3+{rlWO(Tsd$qIT78zr8drbro>p&U(1qz=!`WbZM;~R5qFGbQz3sJCNc=J0V`5jQRy?0`dU8? zK$CBQDZu)~6-e9V#%hPtbL4xi#$K;x@z7HuO^r>2K8%?AgoA>H{QUC?wmHZ$v5noI z@Vi4r)5}<`85QcQj(z-KA|_ex8N6v0@I~|Y$nDmxSodFa0n!)vt*$rzMpTqBQqZza zDv-x$3%RA=;ByZeRt*8&fF!@otp8~>PdF=!HH_qTG8dt zE0wfA+-ciKey6M{=(_*Gw>BH=+F;OGmCT2>P~j4ERyDrm-Tl|-YTP_iFj>U$*Ai0X zdyEuv%aO74@Nt!l7~kq|YP~(3{(nCoig4hm7=HMt#hNWV#}Z@_TiNL){N7$hYTY#G z$4!O7kwoIIk)7SE{=s+)F-w)v4hg9D9a^bQ)pM+PmV!9P8*bBCwAzjv!Cd6zoraKM zpFITKv(QcNnhkI2@yD;7EDI!3+#rE?kDMhJAY;Wa2X!m2-Uu`wL_@|I)+4GQwmI4b zi&BI*B=wh-PMLjQk2<1TeOmP3*(u=AqDCMtCvm0GAFA^j@6WFu084&Ab~@x*_lg?X zAkz(FGIy3&(F#UsmaKyrc9zlX4LyeQM7q|1)p~meJ&RCt9;{~i*zXZU7P7l-5)dyrYJ68i z#1!sgV2{q|%qwCrSF{>W_PVc8b zqvK@N>%XfS%*`;}Uv<*Cuz^q_5>D;mYSGQ8J=BB&Aafqza26koL;(GzcwW_m7r2!p zd3qz93qcg-CRl6Dg%hONSR@CBES`%|#s1VhRyQR13!q&T8&Xv8yGwt0AzVcA_K%ui zjhbn~GlOfTx>K%vhh>;gwb0u^303Go&C|^15i0m{X4(BcOB-$DSX14ahB=2paoU-G z;>zda?>{GEy=*-AI0>6 zwc|8!Y6}F%@BaO*o*J7HSU3s4I>!lzY%G2{L;&7fJO|Znl^-&*EY5QGLGZNQXC=P`uBZANRWd_`l<8!Uhi<|)){~0wH*zk z9NKIxC|H2jLLVR=5==gUd*TltfJJr(6>3Sn$}^qGnfA#_ zXGV@djPI^u01ZDwC9PYmiSUVZTN{UBItBSs;pP}%*)~B*pAcX*%D%CHL-;nuxGLdf8fh*qc*NelXV#7Pb&S_GfIo8+LEuZ!E z+!C5&%l|~1`-*z`{Q^PTmpI7t&dEXx?~(!G>B0Ot2px|xORKV#1K-8Iy`E3qzxY8r zA(V6|c5-X{Hl&e8D%xPa3IO4I1`ouzkV7C)M_La$%7XA}A9eBHHY2IIIHnny!6P`N zzA%SB#x(hkFo4y;C<%^uiyS+yz<0CjG`0*KEK744@&D){ii(rI05i)9)S-*w)CRA* z0d(zBFZ(VX`Bt~nNe3*(FOVm6i2p$HEd!`f4{tc0TdPtkhjsVYkqWE%&3;NRAJ7lj zKKP~(u<9O;4_+j<)WSpZS&Rlim08_cSN-&wK-5O>`QX@KwheGdQJp4C?p@-1ntCT{ z3792`ni`x)3HHA@UQxlqT`x#fJq57?9RzkVJP6h-m)iO?4HXCMJM@& z*U$TM3C23&(AGQ~jzntvJG5__IAO^czas1A5vH*0bTCJi=S@Hs8;;p1?spHd$@hBxnEm>ArW|G=NTl#A5$5rW!<)ti!k+n|T0ErHnJ zS;H?eVir>)AE!J$L-(kNk{$#6c%gRyF1eksy=D+)?5aXjx8lx0muC+(@WF@8s7g-7oRWBCa@b325n zHki;Jvd_;SgMtla4|SnXr)4cMn@T*0;5etWF{PzFFS}y|h?=%hx59aSV5Let9JiT^ zl6Fs>F(gog;}lm9xW%~07K9jn!jV3qm5WMB}2q}aya=_^>@>YbtHCW~ z4kf!0_t4#Xn~Fz7-r4oTj^fEZFW#rF^F#Vhfy^WpJC3TbuWK5v}TZst*`A=vcG%u9no^9cpyCw+PC|T(7*W| zDGPz6GM>X-&2srg`pU8Fz>8?!RzW}>YVk#<@#ZMfq4O%%XMYB<6#YYymjQdr`x*6v z#F7b2JJZg-yL@VXdbW*|YztA_Rl)kzziIAyY|5MSjjV`OQ4-Z}(Pux~B}}x(UR$Kh zlicHP%kjMN@04vYSPKjj5>aFPj6^?8u&&SMHL0OO$i<%H*Rm+ow(lX;(zla4f%(t` z^x~5EDUNN1YUL`ZbA8Fh>NNAB%;T+Zzq{XZNmxw(8_~^xq6)h~_t`obWNQy42Zu7^ zy1?$UE>^c(Q+P)KW(dGbx=P~%IWcx?Sx`UHtT@;+v!Tn!4Sk@##Y_wfM!2CV=QGBl z@h}@}We&^}jL^YZKy=I}o@?Z2f7`r*oNA9=?V&cD9bNdYWiw~pn8GJ#j1aEbqWt8Z z3Mx$I8d!tKJ0NnUqSD8y(r^A%UxIoP{sI{qQjvnZ%GS+U%e<&EiY=zK#&2N+p| zNF+>}pR2nIl&c`ldrrk8(Q%XQ0>L2^RjZn5-hNkVSpf5@OC>l!ZV8?2OD<`TYvQm` zpKv77{o%f+Cv%Z5Fc5Yf-ErW-;A$*a+^c&eU9i0TjND~F%Y0~o7sF1BifIf(~W4=&bSQB zcOMrlX`|e+MR&n! zQ=B|YrH*W&;kWAfsfoN|z>NnWU%h@m}gEY z^}mYklk3sn_3qz(uImwq5m7#^No9#)t#i(aN$_xY=;lGSvFJ;eUT?g_56-|Pc6P3O zduN%jPfu1|S&>V{e)+;>t>0y-tsz3@YGayCw>(@|5LJ>?SCcKLGEZlt7^2FP#D0`z zx;GP1m{^rLn%*r^J&-)a%m1KQBKvYXZ{NgIBV_+Sgve?HP6&B!x$xbh-JW<^>So91hjd3<1U5~6Gt+vPL?9QVSYR&H)Rw#ML)`swptdu|{9B=23Mc)2$2WvHdtj9L z{66(CIB-4+uYH^_V`&chKz+6E`a9%0gJMAYmo+yx_8TG*wfEi<;J}6*KrgI%$EhLm z?wEFy3usJPQ`Gz`j_ms7BFU*e1U8I-nTifC`i&9krhIPAzcU6lFl2ld#6Q3_o!=sf zh$h`=zUGO=SLV_~B(ooY8KW8ww-r~zxx`c3vPwb(v85AP`Sagg#G2TNPsY7(oKNZ4 z8|8v*v0>8-ms8LnTnB%m1V8DA!q8NwwJR4;(!ut6rE~B0tBq0vXJ6khx(S%#;&~vFwjk#&d@njXhX3Dkzdyklp&p} zk+H=u)m{b-9-sP)PXAN6bq&}mnyQX}_sK2%(OrP#ib+t(YVGj{_eoktX@58_eW+GL zsaVtjd!{q>u2>d7L;qV1r)$TkH{C(tiIiQcSWa#Ysv zon>#=TW1BW_Qp(V&-aoWhC>YevfEcph578&S{;H)emDzh33m0|pH!wd%z8(H_OB-Q>OIeUd#4CKfO33C5ty9Iy4)r>9;N;nWw{n;{C${z$LK4+ zE@_=V?V-I64HIZu==rkX2Z@`|r}=&Z^d4VtCNAGEfJR}}2=&dlCq4U7z-pz4(t%DVhC33m)uOnR zfQVN0%_3!i0*61m{9dl8DXZSN1--U4XEmGbztwqH$LBxB>PUN{h?5EZ)hUNUY#5r0# zajv0BRY&fE57mfcYQGg@mt+gDv<{$tI~8}r^NW#kfMVTW;uQ#Cee* zT@SQK&vquDO6Qk;JWI86^^&t2?g($8czKW2eE1dzBorC?9nY5JWZ*UXEGRidgdIG? zj`++MR3F9Rkc9zPVcrtSW7W!r+oLApp-U_a&+uI7cU;!t`$o%?TjJs+6{_AV$D(Wf zlj0JIyF#7D2UGJac6D5HBvTm;!XKkkQ_zed_0T@#2l~_Ya#(Z%fmzG{kKhJiY{EB` zc<{{Q;lupwOMULWh+H&Ai1jtvDL`6^$e_t0HsiU5h(R_!6lS!_dy|5MiooyZ++w|o zt}y{#2t_A%i~;{fW}APn?Rcf8v~Uw3;4(BceQ%jd8c`h&!fGlqUf^Z1KK^$W{7em^ z=^1@6J&scWfu`T%2>nKAvoC9kmO z=F)Sf-UVoi7x@_%n5Q2*-|&I4=Jkz0@Pi%Vwcvsme4edIj|<9mz%s_;qF$qZ)27Z; z)Nka3BOjKYDbf;_F}_|`w*pNoT$PYY-E$fCZj|vIhANTm@uhVr)1@zW;mV2>2MDM7 z=^d4_BTzdO6T~-4n?JyX{=!;ufjK@x{N;Adpp_P<948v>g(UX2_7&a-Fe8h9mn%g- zyTuqL!G#nG$P-VHjjP%$3JHKBGs$maq);NQ$w>>F#uzTzmOkiK*bo%$emDKXPyqR! z1=_{Oa=%}-$o(6P9-7hRbeKND7%xqpgO^C1GbC8QS0&VbdTDf8k8u=4wrhrLwyZYK z96aK?=9d0;N~ZN?9p|C?%z$Hvg$v`q5j@tFQ~ScUi9XsOGalJXXwl0I+!|%{Yqi;@ z($cE(q|I{U%YIWs8;<2~y(n*HUlNI{Q?iWsrpDK`(T+i(aEbfYx$cgzWkAqKgo)Nb zVBOdohCkBdsNu1Ctw;$uqyOto54W1)P)+NS4xjM0)A1h|TdP6HhFS#wM-_LAY)R1o z<-p9k^xICfAx6v@r7@NgIYBmI1B@7#3aD5^Hvi)%<-vho`F?AW%x&_-iCjE|FaFm} z3K0a7*&&N>-=5ZlDY525a7P4;^*N_ymgYNi3l&?sYUA{~efdDit%^HP7D50O{3S+a zSZ=h)3YB(PX6v^uPyR5*d-u8RaW##>?y%t{-VI=~`R3;nZP6A48f z`CWRogLbouKD3_c-{ua zD=o^5Ceft;;oK=dajuut(`$v<5Yf4fYn7tV8|UG~)rB<3TPp!6sd?1acErf=yt)7D zQT-4=#M5ouT3TYqfe@@wZ0w!klEx(2c`H zS4#CUApc01?5Wdf;jL9(XYaK>XS}XIlPh*!`_5HcRumE=Hc9+!E;v?oo|uI>guK_p zJA-PNTia@MKU4{r`8YB7m@aPR{SU`q;6te6XKi$(r)p^S(@K8N^wz$%?G|Zjij-HO>(uNTI2=PP?Uj2}`S~T*)K|Cj^YSga?0q8=>#w#gRv<9xo?W zxo55aEl#l24PE!a9qu@5TbtV<==Z$9P1>+Azar>1oirT*i_1Y=TPDz^I!CIfe64+P zBxp(?>WB+Ka{m2`?hyC!8y|PN?NC?Rr#%kc2DckNe^6wSr=+a@jFPUti#-h$0Y)@T%(;G>`Xr z>^F<)CLoHjUSmSSogMAhbO_F&y--h7wtw`&U(!O2I~f#;`Z8!WlGD=nr3mL$HmSEX zt+xrjKki*&k4Jg#5+pz$s(=4CPd*u~QUz#YY%#H#%v4)P7}p!$Kg>ka3DbZUz4QJhAtVWXq<(P@#nkE`E=-NM~g+9EI#GQ8Q3P-Ve zjjy}kWk0n3EASNfwCdz)O-!vmy$xS8De(xcYj^oIYRIFoZ7S|c{tY%=#VkKI$yeJm z6})?QZ}!Z#i4u*vJI}3ioIPujU!sN=J>+0-q&Htp_J6uV>hQ3jLnO76=P0(ty1}Xh zY;^Tu&Gh&6xj;7Tr6U|`kh>;Untw@4uR=76Y%zxJD)`o1;&~r!>B!@F-tw+oZKhDl zSo(49gpU{Ja@&di%VM&To;C}LDOt-_a@(yE^{PX2^81yvWF_28>`LsNI=h07-qxtd zpx3v6mJoc!9R}+K-5Q-xbP!#%jbrt$yas=b$21l2^z8eflw4}Bt!zGoWpQ<0DEqdf zGZ{NK5v%CGfKWyPeQ~2n0{dpC9U>N^4P-eMtN>~H6rOTMRnt-)3BN7Y*oO>C@ zwvo6{Lrs$j%>kS95vfo!ET=}>1$ON$Pea?Rwx8;j;arNyKBVdx;FC}n+~&Q)VP8w0O1P`f4Hxia-8qYjlx6<4&Fa!NHUx2CaiYd=SzS790{WjFOn7G|2VK0i zlHRVucw!lbEfg1NC_GmdMia1@g;dz!{I+SpQD@P!+ zt0~;44`fK)Pn=MBW;!p?!cS2DYM(^QVC4h_6 zp+eAsoS2I=RU0>ag`C=b?vxjKa74zIJ{GZl=72t|YDDzjDVu%q7UHef`P`b!qkgmB z5OoIV$QO2wq0GRAj(1Vgjxt362=FOjHJcEG+;MCJd#>Jhx?CtQBI6u7y-3RFEfhJz z3PCY)s;Rw|tO@+v$1mnb3Gy+g`pZ4P>^k#r#chjooH?X|j0Tz%TG*HQp^p`%6-bcP zlmvj{lAH~XhD;aDbY+2Lty}7}!p#OIPOoA;J*D#M*}$PdO5>mmD_67M_sD zWS(pDFx+TMF({y8YT<-h(U13-2rRPG9|=1of(e%Q8o%IK-LGGakf4Yi`Z&)}+~5F^ zh#&k{QTgOqku)y=ToU33H%(O>ks`v08qD=fnQifM%d+3j0={Y6unNVQl<97@6^q|< zhf79ZC1>Q5%NoJ1fnrr>I@>Z$F+7(a4UD*KrV?a$cV+JFIQ-9Gl%nw42G-^l z^LuT!^#|U>$z8Dot|*TgLs$cN@LGWB#bDlZI2T!fVL9mb7iysT%(wk{7=BIyWKkQMp>f|3EfgV$d|y;H;$?vQB`u zaQ&SNw@&-lsk47w&{?}=m9UH(#6m5Wa2vV$KrqvL{g%L#wDp(4PW&e(4{C>QwsVHB zK1ZF_JANPlemTo`|^ zPIj`o7To)Ak41f_#D^%Z$Wrkk_W3iNU)0JMKJkBQ{ioE5Xtc^SJX0s=X7lCY*4~c} zPU+OAuI_XidICRh_vT4kn}ki0F9saPGxOz~Usg{IAQ~O_4;^}}f6yw)6R<~q!GbJj zCoy2R(}%h$jqxQ|K|qe2t{)2P;;9{?h?fk^T~x8?(HB@WpJ>X&x$R%ALN9(I$arRx zCT9dvUf+eAYRRS&Y(WALxm)N<4mG1yBRy1iA*$ajOp6iPLe9qRwN1B?;@*fmQ3hT+ zy0uBXO2l>U+z5J&_($*y)GkL~JrYinNaA|P+Vxxvz-!q=U^m~u?0&Tp-EOJCIoWqR z&d(nFJGvIGhX#ZS4hxnIQVLV{;8hz%=hHvQ6L!^|^+t0mccSZmLt-Um;z=anT$DM<@DK}#J&^MWrzx96%qnHe5j~xj7FMiwF zfeU}CJrq4_48X;OFWsAt`0XanH95gD$xfvXD<_3;>zH)-y-lo7rV8TM2Rpbp2FS`r z&@&x6N=8q9$|-l!CpCGIS8*?amzoX`K2Ndaq^$s(mXju9HbVb znX-b8Z%p52TT9>7M@7|LBwpK`Nd_+IN97zb!%44L4`l};q(~yQ7&yGix^0k5)jJiOfn|3b~seJ(3#fD%BOX%4CyL zp3?P*1^R#QeU9V6j*zBiV8c>x{Uv3q6AO@KrqooRXjwv3Wy>| zMXE0?9Zxgo=>L7m&GD}19Ouv-Ir@8K)6Br!7INHPCyTAh(_C$d!(bZy?4d;w1$xOw zffKbM5j%xucsl@bi|Dxw33@Nt_oC<`+0|jKunVXRIuW za4eLN_{4c|$YZ89)Lg%Zd1N`f*yfqN@3R#P+W_pz*n2=93~0nvu9(?-fw53Whe?Hs zI4f7iG98|qXOI_&y-^Gs^iPX#j^+PTF`zSMiZki$t`8fljc|Kz-JbFS78Wz4wg)23 z#^BNld}*i!nE)66tHMN3BZx?q##Q+~(J|ts%zrag-5+2};&MJBj%SsQ-81av9^cjE zcEYkdWC2}pDh|j3GjbKs3lbE5vcn|ab3Z;Y)b2=YJqY$!-&h;djN#fM}y=Y1pm6MfeuN@F6{mslYzwNFCYiUxQ z_D1x)O%Y+gFoN2U5MIk`h>6Iv(P*j6;=*_`>mWwi+&3l43T z2%X5PknbtL^ENn3k#3vLUhK_J3p$TmUnGSkniq@V>74$&N2Z|YkHk&yh>|SXt(t13 zTZBlcHnZRAnhJ}u6USQuaG4zkM8usMXT7km?K<^Soo%)qKoN*oCpg80%s~m+NRg`E z)@025lZ6H9R=hM4e9gkr`04^Xk2-x-sJzgU;|ZY(k%ff5_C@z}9mjo{t+4|5MTjuT zwz$9Xe?;p(K!3^1<)4+&k&mC{R_;2dt3*4=TSFb`{!^!Jm1Wkz{NpI>fx;EqFO7n0 z)9pElyjSl)=eyse&u;{>(?Cdl9het;j;SQe0iFA8lhSFz*VKVw#Bt?nCk~x~)%b9T zOIJKr#N!e+du_HP?#(@p8p8xgW5twB?o-CUc1flc#&$}+IS`f`DpVEiBtp0amK~w+ zzgPqRG*$9_`YT6?5$zD3n?G<>*wrGuLOn?SuZ0a;Qx!(|IAjcgEvZOWP=m+Jk?h^k8etnt`RoXWZh|JH=vA(=jFLbBSONAU>EdgA^r>fX{z!T_Dmb2;}23u8isO zR78%GOA6|cYDr33s3@f+vVrQGVv3CfBN`X?+SZuB1eE{iFu0-M)y5+CXLn8}(y42&c zh?H9CkJ*lbKtoRif`O@_2%tHkX7aa!ZZaWMrt&2np06 zv-drfaZoope4WdCZ5S);4HJi$-JAQ$){U6{qmOAFrOG4{UBsAlj(%CAfUPO zGA)`4X7u-wSK>UkWoT{zf7j5xSeKnZ*1nZsmWP{C++j3PJ6jYjMhqbra0jZ&1!9If zYin{iwAmZCwwSF)#5g8^_SIsB%p6qIkor`85k2F42<-G|S>ycBX z@l|38hPq)c8=bi(HB9VG!4V7(qVVrKN|eaq3bfYR;+CkvQVCQK1a=7AU2|2RumtKe zH;yca^PtJjS>*cUmhC|Ni8mmQ5 zE@CaM#NnJZvXef8=h(sn?zMcR?kA+;5x$_95BE5Z2SR?=sW6rz6GFR}M;P857#gfSPmW)wT>=*N zL%$0MkRs<}zmWF|#iNr3jw!U_W%Zma@WVj6Ij3X|zIKeFbl4h;o{B+(Mq7YM`m_{t zIF2@|TtUU;LqS7$yXWVBjS~LLv$1-e{PiRuqyB8gXi2@>DD#*0y@=g*TS_?wXSVy< zwo`Z{$Y47y_S@P*Y*!y;OEWO1{%M2&VnTIyV5fnW8v0<)B^%8>cSyueutess zodbu?gv`$%252#Kr4hI(SleikUOj3mD(1;GIqa)Z4aOs}2rPAP4zxze z@%x?XHq#HN{c7@?!UDvoP)J!pD2a_oIeFw3ZDaO!XO1*yT!=Ys?Qt(?`H+xWRN+3@ zCrfxfPb*B4k^avz#`~-F5Jkt&hx_KJ9sA4QCGIuk!Kmqt?ijv8Kd^!@fq*-di$IXD zxZu9+$F%^KGC86RY%X=l=aF4J7xip!V+^_M6@;N!{icoq{-_ zh7qeH-0=xtUa}FX4qyTndfc9cXGSqn(F-=Oi9o{@=~D|t!4hW7`nq9(vNo-`D5;@13yG2{;${d2VZ7mXNW`<({w^c z$>Fja23(tHR68y*BJxCHp>b4t0u5qvOM-+3PJZP|DgYsA=${QDXCg^3vUY3j9W@V{ z^@%7PNII_a)ZhPuhFOFvw6NJp5xB#FeOL)~9qLk~<^)9}yw}M;C)nIU2HQ%{aYjHq zPh{9=yW3VsO+7{YO~%?)7-zj4RE)QNesVsjS4~)LD)y&M%^Q`-uVEud3ib+QgwFGF zN2_J}_E4cI3h|Fy61kW*b!fT&3eCmf6kWF_y8#ou_Tat2`Ruzs#2ZEUAj3SVGs`|) zMQGdw#r+zGM^*e7VN@bb@-^o|N-Huz$n@6&C8tIyJ}WKTCQ;<0PMerk{q3|Gcxaxf z!YhL@uSzYolG|uH4RS!}^)e_zY6jm6ia9(wpWH(K$Ih%e>Cb3X48Ju7FmJ4n-Tw4? z9|7wCYDjy{te&x*)b(aa%u8P*I`7P*(*YS)fxgb|#U86{`rA1L%^+qnI=?Q1b=$t+ z&p;sRu9;hD1oUfWJ3&TRn45zPH!bJW zZ|hsu-O8C60Kct^m#h1r?suMs?)&BUp#QZ;YlGz!kmOE=>jx!;n05<>ac3>_Q*x7_ zY>Y-7DkN~jshw3T3^U!`nqR+EAoO@cbcQZU9S<_=Nl8x&zo?Q|o57N^g!EI;K@Y&u z6G!+|E5mj+N{=fHH8{tk1NFl>psoiS;o?`W+7Q^5gOiy#aywqET6#n_dlY#(I5OL- zV%FF&p;5F5)njd=w7>nWJFu$iB>3C&rC-m!>RTbGZeyuOu`{sri(ezkh|mwrak(Uc z(DUF=i{;#xhjYQDAK7D3>3f=B^Q-QioDjaXGTj61YLP)fdh>A)=^|IzNq&7nQga8Q z{V1PEFs=+RtNW9PM|)rz8SU`^(pV`wob55XF%DbVXVKOw!}6)Kb=LsR&F1AyKZ-71 zy6&HVtT2eukPG!;xc(Zc+BJ$&GG^7bs8D6Kf5`>}t~0pU=vu&;p6rm1(pVsAk|dq> zrhzi=Smv*I%qdN&n*BWu3NvHhVI?)@f?m?U)RdK^@MFFh!+c0A_%tLhyE9Lc8qzuL zw1@C*L{0cU29K<7b^qqT{}=d;%5QaHpfHtC59c=qccYKw73oCCepOBtEp9qjq*@ga z=}1b1;H_4R3p1cGA*4@A^%d>J412{Q2dz!HMZgW6F?wun)h0dCCFip{peDBO_amzE z!k8Xd!Dy7CV8|_JgoB#cNh^I>sA>i#zOz1T$?D9i~0@mPZ z%&n2^gY3h3?@;k=!Qj8#-hD;mSrxN1We%_TJ1=k0(JX4;-rCs`hr6$r=UGoPWFnW6 zP@TK&U&aPzQ~W4`Ooq*3`G5yRr&QYgO1j6*KJ7a5stmm4DjQ&Y<((^b+WAsW7Fp~h zAx2=WWPX77#UymesCLoza^`SI3*SncS|@hYpue{gFW6Tq zQe7%dnVR*9W{^m=0#|dWk)#uK1)#3A2;T5}9SBZjASD{Yqb@O^bp=~8yBhr=h`hCq z3$*Rvb904OWY6Sny3C_%8Nv!VM_)Mk7k)YgWmn-uR?CDxeB*Efz>y*jb!rJzeeoQ3 zM_%dy(XfBnUXJFqmY<{OCZ>+rc3~sMgFirL3LP}nTu0g7S_=RE4IqUx<|F*jlNYyl zcM(Z|S!kDAvaE<4EA2lAE{E%((#EISks4@Enz4m zZSKBLi}m5FL$xG-`LpST#kVo`twCa7cXMkm{`<*N<>Pl(0XZXPq%7$Rm7rm^pT0L) zTO>D-QH?j1x#$HBCGuS~KW74^x61B=;!@MM?xajlzx(YfzRupy``y*-yLI3F@YQ+Q z=ze)ar( zV@fME(xdi)MDn+-Y(?b5MxU{A?|aVA@tzyoY*W3e>VOG1+8k8G(9%)fbxUqXD`Z0& z0^yBrh@GIX65Lcn>PyLWIl?gXZw`1MwOTSAh2Y@FTOs0;2}bLE07%yO&Qo{ z5C~@VHaE=! z=~ec%%{j*$gk7^|Zi_R(ocGeTdFJ)T`q70eZm}mMNo$!6Gq++L9O~sMyKCBm>Fxz% zK1n`956htYo&38`*`2Gy`*cgn!)EMepxmzW((s{qj|4>7s1&+hsb-k$PT8%$sJb9v zldjR*ZtRp>(Aepljh}qn^0~Yh0%%~6M zoBq(Dsp2JhgA?RDGXenbNKkh~ZswG~d~uE~%9c+JZ;8pGuW`k?vDeA$CU`Y1=IOVM z&|^@y(d+BO$6GgNLi*LJ!TZD7$J3QFu=}q09s5i}M#Z-0Kiu=%F>sp6I;T0C(}Q%% zk))wydVKXS3aPl<07%J3`Jb}xc;!<&2a;ueFFNu>-9oFTkT%Ab(Atm?%8t^y>CQuF zX=sNc%Aj-|-u?H#f)woiYnUx2(i&;0csSi#07M9p1BJ{!-+7&(KM*;j%9t{LCWz{H zvX-E-xtrNa$0xAPjapVU`wL)}%O^td_9FsA3(H|`)*e!QPF*`Ac5kycnM}V2O>A^~ z5j-4gUx)jIM_vllg~lv&02kNmol%)~>|7&&U~N&U5v;*!M%B%^a>Gg8?o{$L9O5$$ zd>sr1R3tJaCl$#k;_miLk4VeKG3<-l(dXx`NP!0B+4s~QeE=yDsUxOv4djzvID0BX z<4PxXWfXCm*Zb{6kNM&1MW`$w^mF5m^A)9TpNQY!Ax3`Q4#KI314nu`@543CA+>;g z;QBYgF2y1tbxH&%@#%L`M@bPw8~ZdD5SIO_5b~%Y%jz(O3eeE#WSs5kFt>ZEHvVej zdDydH5Rd?5wlee~&NaC%zo?H(sr|$^clQ5}r?(7itBba_aVb#TCAhm&oZ?an6bSAV z2u^W#cehd;iWGN;;8vgsZlO@z-9FBF&inn{|FW;_HP;+-%zIp+2c`=-gjN`Cyro?h zpe+1Zi=A>R@RkW8p7*9Gmp(Vd;G+p`nW=xu0?PqXvY<-)U5R_=sF*!rx0PFU8OsUl z<%`s4nY=z!)C~N_?C(+#*#e#)F0bgWP!$+3P4Ry+Zi@bqca9ZyQxOtR(E`MFP zyESZV%Q=00F@YM3Pj|*|R15Z=UB2$8!m3$Mv7cw195)`tH$-1v?%(W$H$s3K(cZH= zt(Du?H_kn$!_6A@&?#gA&l397yzz<%>%28ey>7O6yGaGQJubuC9SWYW)L+xTj(GmJ zS=O+88AE0${k^4}h%}G}A}Yrr;w5y~_@#3n{R*D$Z-{0FB`-s~7BQ+FWx<0^Ws>-N zvt$yiUk2u3mPlhNI`z-~52CjjCgzl%TeG%$O3%gMD(cp`iE|;pY*WHHQjqvXAn0kG zXjUIK?i{<<=KjV`T6d?nj-v@WB_QUF3oG_!#{4r3Es)0poB%jbxj2J)CYzjDF|;|= z0OtruzY{_0pZ0Z7+P!6gwt6Jla~+)^E19z0?2&4eIQY}~x;LvjRfNF5x%Do87>JD1 z(vjvO4(M5ItzbJnW1D_)J-0|=c$4`z%{O8oW5okQ#%jM{Bi@T9w;b|S6D0e47^dvh z3K5s<;8df`}xet_Vq0kiz{K{ zb+X_^>zM2HZ!bUEK&u^*t_7zpzu-v0tJ|x`V`JdW#`sL{o^S83XSUaIfc*wOeS|gr zZsP0ttJ-6G!Lz~r65tW~;t4C)i+B;0d{9piX@I?aeVq?<^n2+HoH+$a-dOZLj{#p+ zVb^VCMtg}b^@094eE44;bK6@Ae2)G*G?krvg_e&=Z+YE04*e%!>rfMYriOy@Jz<(f zynm6XO386|(?+Q}_0@3OD_454o3{?yD(a=7jEjoN~`V-rZ z5u%YH;OS}bDLsvOuT7rZ(w?&I|6wG0iHoSbz zusWaN3_G7AhKzhRH?XdT@U{%N{7&inv*$v|!)z*CR}yR#Td(2#&bsN4_(yL7jAGQ7 zyt2A}SgJ@Prxo(O&1Oq2>?>xi@g~n|DFxH_0exPk#DSWLoDKtTb2e-NxJBr9dltzw zCYmGa!|N!896is+8k1WnMirA>QG3SVNGI=;g=a2eWC20dx$J6;RmgUjjb z7UoT>n$=6tw?2eq+FDIw(TO7Sa-+pbt6`m79DKh6*6_SX+#EPlMi`?zf;XHmV<;5g zyM8w#g;(f=G>2D=gpnvUQSybE=;ITQ#oPwCyUw|t$6#XHK#abfv$sI5qV0ChMhe#v~ zLUg^ob>M~i%lS?3tI*3%UEGt!>z$L`>y*MoY;sh=efI0EFod^Ik78Q=c}G3YBJhCe zbpS}-nD&$txC6z^6kJYxUOXki?l`?)KXs72)_NVe5qjM<34FQ*B=j8R^uj!!w2p}b z&-Ydeo+Y0Qj+tKaC53u~plus>!Y3wAU=tD;58GtovuEJQ?9QV5%Vfd5kb=qEY5$P; z0*#Oxsl7i=YW`p8<1w;*ir(6Hmrwlt6mLl=(&(kj%GK@Nsil8CcC=L`sNbgrX?Jja zKL3b4S=e+CP(^s2ZLTZ7D!<{)vuOhPQ@2ndiun0_AkPx_INLu~;@w#$5wO2&BRsX_ z`%p#cqgP4>HRhtRVve-Dff>pfA+3iJ+lq>`*8#Ky=gUfy_>^o#D$;!HJ*@|yc6?U2&BGu=L)>94?ZXNBAv(sBw|=Oo_l9*oE< zc3|H^-g0Wbs8w4JtD%f#eZl{k^+c}QXM7yOBvw%}8tkhM!aygalAoM4!egYQJMm9q z_2hFqe2?C|ihK&L3&Oq3aGi@T7qLP^ssAAdm})KiwmN?lzaU}+BZ;2Rwo)x%0w^GKdil=%%4cz`);fmAGnsTd!e9b;$QV@#jQ-gv z^Y&ow@bvtbcG8RR*Ojt@pTWO`-|{R<*oNI5+oHpf88nGx^M;qC`InLg@IpaG9Si)P z^*rG)+iX6j(ns$&5YqBnV@3vmq-k~CdhaEkh7L0H#oyC-AoM9py;>n%{L1Eur42LC z+D5NhWyB_4o#{wI$PJxnA1y*0Fg}s<@be4kPL_iEyfSzF9wWI_DFST^JV4bU|I;>+ za`!`d;b+Q`$N}PTz7zFL>00!yg%3=n`&{5Q)LD~;&z5>1N2MgaPpk8N*^clPO;aVv zI%kvXTIR^c?&g~52QI-YBdht2`kB^=W64;A^hl~@DY$CHH38X>M5mBERBelHn1bc0F#2->UF?UW+$SPs3!#MR#IY-!_oFOfGlo?r_BYskyhs9LSE` z@O)yMCrR;khQV$t6GvtO1Bgd15I0Vt_xrsMfq~|fys=ZK&wyt>^@n=c&B%*FV#)AH z_+svV=i8t8?|E`;HG5#DG-@*(uNMo3o3J`JS*jeC zU~#r)o%g)2!l<>WtXOS%Q-?79c^IRV($}x#m(7@1kSk^d*%krIk98EyV0;qH!>I#& zc#);BBw#4J72Jn)MwB||TcwHFj4-&?%otJUIZrZurxdbH#$70#vFGYY2PU;Xr@9Kk z;!$+-x>bCS4vA&)a3rYHW$B{%Y!QozKKZVKD>-Iqb(YHf(*$Lb?Ax34^PEo`H(<8s zLNDUz8%qa6qt+@GiH`R;&83d=G<{OhAxh8{Pp3vkrCKE*Z4?GgBd|jcS&+TKExOv~ zd(8yG>{4Tp&oO3`aH8T7~z)_7iuh>Sa<=-O7v(k=lg?C?{ z-&P+bhQZ=If-7t-3ijVQ8cD}m${yHw1cwo9KigyXFIl*DCVaK^&E!phrnmp-_V@J< z8T&H_eyFdFO`>xDIB!Y7;f0pfHFjyXicQ%!2{f$P+{bRq!2U34fwocSEcW8S!>}L8 zoOg_az!&))*Tc0-TzdidtwT_pEyS3HPwP8g^s1@2m z5a3?iW{GX3_OTQTm8+Fmjw$?;*Rg$<0|jqyEl$JVS-Hp^H7q?FThRSbP3Sw=+HRDs zjswWZzyYcvslHGkp7VaP22epNJl#kyU2ZS5S)(XNx+i}GFeRVZS&potX8cTwa5Gm6 zXf+M2hKCefgNAkmqvrjs+35rtS+)ci5kV-z=Wn}B1-rOx7`E;3XY}aQi&T9^=d`7Y ztwZnL2&l>kh3Mrnsww;=Jq;fOZkCQC1gg!Ovl4q6Ekjg}nfyP-p~2TbdOhEFP9EGW z?G@~ukIuJfufAK{7*$VM)F}~Bss#S5tK(LW`{+{NEY2vYq8R<`aA^n11&dl4Zz0@f z>^spTJX-o?%A%xV#Rf6<3Fe~U^{?g)rByCS_&&D518B=zt?6OAX=6)ee?7xOE#d9H zHv}A)2}61%u>xi02pJ8gBPUX@5%6tRsE3zpj9_L%5iJtv#`9Q?uk6RwctoMDR+m~`ldgqT5pFyt=clW3-eZBnEERSy&vtbjbW6wXGxfYYOmtS93d&L3l zTuO}*Sq9nQQIf)YSm0A)LSMk++KZl4kDkYkgD(pGlQ~c)K;&#oWXjx$1N!h^y<0j4 z(BfG*1Wb!F(D)e-GNKe?eXh-jL0JC#j%YZgOnpO~glvz)lCcp#BdWJgZ4zc%jRkmC z`?WlO5wfyK{T`Y-#CPYCzIJp@xw`gqpbn)as)HGhuPU5(G@+g6y5sh|8<{9k`Ak44 zG>bo^T&1}7_83We`@N6)MRNqW)Il2wKNds!=7e>3uQr*d8JVcByAqYA9of3g?0jEG zYj;{)FQj@ccH%h;M2EHoQLvvN@!XIPoTxebofUdGm_{kUCwH9@^lfES{x8pv$0X`6 z31^H*?o-*&)`Sb`s+%C)l@m8bUV!fb3*%^0M zLoIMYMrQt`i$iNSf*ULK9yaF!Y?;YKU{eUO04n_KC(9FFB2>&JGU}C6rCWv{%Q-OM zMlVuMRTcgsP9EC%fQ*G&cW_sR^08+p=HWGCHB(#Ang@{3b>P~4%H_{|y=a90;V`nO zC?XTFLlBy?}aE}$g4v2sRi z5a`zI5ofZtkc0l+d;_b+`@8Tjo+Mk5yp0{Dj>c8PI0qSX(?WdWL%idQA0Da`P8Swaf-Ks+Q&dJiqHo$AztQ8?TKD=bi6mCrJ7Fm9x0qX^SFKt?xsTO@Q0h$#(i~$t$D||ai54|*8~FR39J+s( z!vuIG;^c8yVRTCM*D1>^1NW|J!g7uAyD=QkVoRenQ;1_FW0&C^Z(Ay>&2Gd))sv zj)?a94Sg+6NFZq8$7|pz-^xI#ur~Hd^a-qQ38*m`PLks83pf5WSVI%=^k@D{`5&{1 zHo}mTO7SSX4ox=C+hueHUP}dhIBKShtFZ_2E$s73uzIo0i1MEA+}^afeQjk)%OPIW z422ox+qgWD>2FK^?HChagp5l>GGIODG4(_2PqA_;8d)g|gJC~K2rs2)heNo%kyGop z4Z5nuI$-!JX)W0Khq4d2_ADrOXzz$egx6BJv6%~EkkSc9_IxC14o;V+`&hY4^XGS9aH_h&GoWPlIZVz>yI!yr^QLa79QJ0Ok6u07+Pi%g5cFP$c1fan5G*X7 z$rCpMs{;P3w7M!<;n@-wF{V+Si+pk6Zpxlt*3k{BKJXdJhlOdDw-cKx@@34 zbHm*UFsolub>ozEb}YP3mKKeHI8=#&-lP6zuM!xE#GM&t%DEsn13pagS_YkrWVsq$ zO%$%`rMdB&leHC=XWlzuqcNmZzUkaIW7l8}h#;`HSKS;1BEK{<10o2~R+*=s_+4%` zj6p-4!W^`nTbUR2xB?9w6UTj2)zZGqk7y;?m-TjC2hZ6|IMs#J(coYja6e9OD=q?! z)vkEKLBPj<#n=j)xYo>B1rHhKV~eTptvpM@-e>|dcIPm$(MSgza<=_EGq-~r>)d|g zofQ1=%0Hn6KM$(%L2w%gfA1cNUaBYt<-^^7k}rD(-s+B6U(-tN)tj{e)Zk1fUk9;! z8!d%=Q-dU+E*;i(8&;;q}$EgDO*y2kSTC6j&3Z9pG z1x91qQ?dp22C*f{ppCHVtX;sp$;&T={45i+xyv4FmhZ1tbUYr@Z%@T3H{NC+7pH;T z8CCx$c9d6!5)~Y|3kT^TU%t4S41Sx>DT6Xt4=t0OsG`4k&S(qKes<=SIT&pC0U zmvjIl=9VZmuZKcTa<-k`96v@jB)#rw&k|2@*m3Amm)nGxlqni(RklBhc~wlI_H>c= zKeTCk-w1}hbhnrg!m5AxCEAv8#y#`JDZVr5G%hu$%@GQt-Xznx&^pm?!6w;=1O#yJ zMtd1!nQR)W31R&XA_>Yq=8G*fqhi0JjW$iPV#jZfFyp88Kr5EYe74RWRXveN6ehM? zNy>`#ZEzbsLSaOetdbtcS;G*(U$eRpypbe%W84r8A~HtWJ9ob!IZ}h2j)mPRo61OM zGm;ygws{FItFl&&mREns;LiC!wd0wBvIFite6ylZnCgT*idz=B1wRCbW6jaZv3LVr zQU(9%Chz4)7b$J!w9x!P7!qEb#1{2XVr+7uJMUf#^_RcaBNwgQy9$n~oV@fjnVTFz zlv}a`UDwGSChPpfNy6Qj&vU?k8fJ@$U(;7Hzs~>EYY%x(htNX0A@m07R5fmhJyypffbrqTOWeo-jzkL2jdVH@bveBkazo?;y8I|<9@Z2!i~IMZXk zod0zrE&pn|$(!5tmix4Ep2Vq>dv7>mSXjw)?RE~byXL_&ZFvA7uwCC8aweu*O@?O$UR z=tR)a}S2T=i7*kwo2U ziy2r1RfJX{J27d!KTC01Y+ z?&8N%%h?Hh#k^4eHQcu|I$!5W6Cm-ltz6qoeaMQUGcu_>&3knEh)9Gi=XApY89OPn?)dDTI!R-g=h$T0kdPcdI9Q)dmGN7Gha%0O(T2<`Ss3DH9?9n3deAJPW;z!R|jM zcHU$61U%b5E<<~6(B22qFzEw6Fe+K%^JN@L*q6)y{0P@;D>#jN25t}FTkx`N_g*OZ zg3!qzZJOGER_E**dD#Ba{k7cG{3cueZsoyrZb4t>2R^xKjpD+vhNO%@=5N5rr4S4z zZ9B!w@pQEDko}+ENa4}7wY&t3nE$w=zgvK4-Z|9G%)Fi7?6B+v|63r)CNluPlS|y5 zi#+)Q?6rjG=8%W+)P4Ut+ran;tp4*aRe`P=+8?`_+YLAS@AsZ6XX3-8=Xff=2zpM6 zv>n;W-J}W%gBUCbO3AZYiGF-r={>cIGYr*3sz^YBUsK8{%L~Beyuj{ywD4;MX`78$ zaW``^4b ztgJna@^o981bDaAhS;zdPS3r%m?Ww;Jc%~s!@Qy2eN`X`^vZ@slmGOzkRXs^aL+7W zYV62ulhoG1k%K$HX2W9Ip8ZX396NhI_xzCp1)2K~mRb#?hZFN`e05e!f$-M@rVa%) zLT%Krk7)$JRP%e@YCR`cRU8V#e|3{)`K}?`ppX&l$_9ax(P8uN3cXhTa?cephrjKbyX({ryOp61-oVmC>S4z%EgV z1h}}OIZFA)x}AD@n*fOwraqv&(Bj~_G(g?#pvA3e9D8or7>z3vwsx*ul2F*{pyC2+II|4mTWW9bDZHkY*zbl91f<*pA za5`3l3q%`1v#67aZcC2ud(AKw0B-W5J;^0uv-7;W;tIx4LY(wWo9k;Rl0IrPu}ujR zC)uOWvbTV5CswEF^9<)Es2%cw`Ic%19vXX240npXO*7X_p6xQI;oTD4JJ!m~GjWuL zYn9;cP^U-U@-L|Q6_?d4`)>aUaIj7?0Uz)zF&cgeuNR1aqOET-+xeU+Ecya6c|7@s z8^&FUup<{1CVWrsXdTEB9fz8EPjA4q8ySgyNUMWJe5KrpQeVG_=NN^G%E&H=D}*d! z+Hiw0-fqKU4?p$lI1b;9NhGNcR+Ad8A+bUo7+jX$V0*wIhz?N2P@Jv#mxZu zqnpKG%kcwteWAnZ0iME5LT6_t>i=(5#&_lRU%2%-DtELLhw1LpO~@3vaJt8Hk_P1| zqKO=If4>bm zYv!?TOPRb^I?v+b^nlJpEHRYu&niH3xPg7a)N!>|A2BeivAvtdVZ2$IXhaxv?j2EBfqZsz)xV@D< z;&6EFvSspX1J&0FgVHY)WbrlP=mWe&-Zu~A^-EWG=2RToB#-huz%n7!_{nNlNWm3wiQAl8_ z_}2T^R|nn&xlj}c(CcrZwN&4Jk8r11KFsHQ-9=xqWcF?*a6;!&b}+akb!Q%o~l2|0pj^v{Vsxkgrx1a@@o+M5va<4_M1pF2C< zkdL$tSH);>NA502^$=#jcqq&!3gcg$$xK&V%v5xlz{a(!0`a}6nPe**((Lby-7d{H zYO4&$+lY9`Oh2Ecu@<=Hn*+WrVQlhWubb62S-&HSvx-3nRU);b+&2Wa7+Y5&sD!B8 zf@ih$oPb}}s;aX^^EU!B5e}g&wacr6RF>72)w$5FgGn0{o}A%hZoq2laMhjnitO3q zOp-VVhl{&Cu~f~`*^9oNc)=Yg&{$DAw2_IiP@fqs(PZ`!Pp|ah#p7 zO);PL&Sp%z+jWR2uDBwJ=V1xb)|;(CxYK8VL3JyauSX`o9$; z==7zBSr9`wwDjt7L-<%>7i`rfkU?|wpuQWzEiYeyANSWN3Ck2kO^8GeK1RR*EL z5yT>TS;X@+GQL3yHTPqIT?m7i>}EO$bliuG8;`)ofS9&}Y~%mq1qkx<@@*lCX$vfNazRB(4q^7ennD`Ivsw-`|rN8&L(naJ6A zcnn23Le?z2DpK3zN#u0itf6rgKSAkl(h*=7T`A) zNuIxU1L330Wqa(&BABgg$hS2!FeLn|bw={kP*-;J>va>_AY*~;Jr$e&+!3OtJ|@^B zuh^KVr;@p@7j2(kmF!0)KN+6(Z{ALkf5X{JLffJ+2!mHYt**+r=_|G$@v!Cm9T!gd zN~v`?NwiM0vXjl*kR)!N2+!;UZK}n5s?XEJc)@8tUx?ujawBLAle*G5F|-aR3zuzO zwnf2VTI7at@slM_j~o&?kZsre8_2za zPZuOHK-HI=sbXam%AZsUok{d6%)?NZG)6%v`29bmo`$h|sxLwxRqEr@>8v=Be&btp zk9x7p6n&-A{KYsR-(hWc7G%-Ip(+#qx2Rju4?@vh#7GAgW-qgr=Bul z)bjRdlVyIh7?svM!;>y zW2CZKJWl;0KwiMt)%pJ|4DUFUFKG^Z4m_>qHDZze9E=vS(Q=>z>S_ZQTbV3(05w-X z$OK+X{5ixHs-x09QLmAMEcgbWU)9#Ln0YfxHX}*275vUeBng7$P_HiIl~@^6F`{Mn zd9`9w_qcV>Nu3(30`?9mtV}ON4(6l;F`?Bm5k9!ca~!bmsXC=deV`PE&Qv#>fqJjS z4Uc@+NXgRORYxMzF<^X_GrQY%iTQa*OriLUEOHfeg|ybrtWxhd>+`5jvo|ydo102@ z?0hC8$d{gvB%^HQPUrwN|EDl>23==Mr>}Njn*pmbpHtupP~6I`ooA~jvww42u5n1L zI7=|kx@63P^~7~X(-2=qKyj(B9Yn;%RQu1TN+xkrLh3n=us$mvA*?`NEGZfJ*S_1- zBS0r&!pL~A`U482xkn}T`N0vWn?cVM1BSo5xt!uu$(d2W1z1i)kMkCnAs1v>ehauh zw=K4+SWELL5&jg3MohO}qsZsytBI$--Ml~KTf0sNkQDp^6~AA|I#nzJpFUt}I0na( z68%uIWZwOqT5BcvX%6o&^gUzwu5fRml`9*JrVkO}wY{4mROtsmAYSB5GBJLpr0{<6 z@$r0i{>#Mb(?2FbE!=9Ahb_CLv@%b(ss*E5H5aQJE6lu3rDjtqDZ_%i8#~6P-S%#5 zXv2S{eOZ)Xy->s}sgjd8?{%YPWonf-%@nx4!3z4=4ll~aG z0@=4G^&I7OtXqyY#)1)uY8tVz+D8>#1%{3IM47DYj$Vl|m!Z`y8Pdn}ct6xJug6Xdv^u{I*M%=5gROhGY_QH1{|pnDhpu4hN|W zseH_-uKbHBBs=rdH(xA)I(Qdh7gBXuqWA+ddUz{HckDu5()4tF&fTY7T)%{#MvM|@{spQWj@Z& z)ALQY;ft(kHQ=>pM7`xWTv)6h9soAVeUX$$!D`nV;s*~RdqlFF5u{p8sU>Ev{yWE1 zgG9ViE)nt%%PD2)1sO-ZTHd2fV>7S9xHl>{e~<>1x+YSsxDk^jWE>ln-CRcI^L+bL zkzJRI^PdFtJHgr^x0?4ci}bZR!D0S1)%TAMJ!3Bj+0_Rx|K0Abrz?I>F{hmY5Jd7( zkEn$^)>41R0pm~+`|wjN^&?fS+Fz=9I+Q`ataO3V9BU-<(=Cn$1u$?<;ngRX{mXuB zL;B&kvVEk9K=7aMIO_u(mACI?fB7DS^2g60G#SxWrM638#e2j3$;ADo!jAL969YjS z^HX|0aPH88&@eXwI#R>4f;?CibZ2LJLee z@=U^dq&Ow2M#_=XNtMz-41fL~GymQ)h}!qWpWMH4wmS969pKLrYRqb?laZMe-l**buj-oJ>x;VkHX0Pm$D=%YYS1$G({2q_ zVH+d=t_;%&f3`?OIvEa;Z>U~%Tgmgrf(>t?wi=|cfF@(D!v?o?dvm&;4(%Hup%k8AtI$COj89~>Cas`pEYO|~K=-VnwUxT;#%;l8X*>j>&m%EMWnpoN_XJTT&P;7E z$#ndZpm@8oMZ*hpq%juOij7y%`4?HPE#tmV^T!wl0ct2d{D#$^bC6VpFg6wp>Kz!oJXg#mXNe`hHT>F30U{~y~7a?yW*AEA^}rGFsxg(Q=++eHw=p5kT~|AMuN&_F+GVfmxJ5E}AJ`jst$ z-CCXBc zo!o0fljhyMT=84A5f!R4dgJ_?(nLG1M8pr{*G81&(CD06$pWw zA%eA+aeFA7j=*pfVGLq!-K_6(@d0D)t3^M`O^6XjpL@Obv-%Z@!7S=3;L8-aKE*hc zC*Qny2B42X=Q|GLFnr__xWq$4XKstw0a_2L;Dg+@+c!mr2eqYIWP#0s@-XM*+p}$6 z+hoOzCauqeI@X~ZB3kzodNQ3pMhJNP>1 zT%axex7ft8)jLY+V7N!CO>oq{G|ev>vV(xX+1t~aSFZWaHOcRy{wy|57|OaiMK5_| zQ6MCDs6<;jFDiVE0AKFI&AO`gKd&k`It@i&VW(hkni0{C$DY z?T5Twz2`e>Y&+$!HSNum+>tYroq)V+ZJmZUj-S|LOYa(4V-q$z<;EZMED82GRl&&? z4k6#1Ub?#RXWi2a8jqpT|BKhCo~r%S#nigCCueiDh>+5EaM|TMJCBU`25xS#R}OvU%&Bu$=v;s{149EBU-nmyf)v&WIHXk`Adk zOf}wQJH{u<<)zLuMkRh!7U-Di%|1TuvbL*nuY=2w5pSqLY4bJpi^#|2Gcw!fXf{Ip z2vIT!_pU7vMte#4k;dSA7;JRwxZGGqIUJR(|FnWP6Ve=5Er_FevA1yh>2>xnjq?xco+Z3 z3+^bZf-AY0X`oTT9)nV*nXBarSxK24r%1Ar=n6x_``HEEgiovBqpQ)n^(JVdYDOHO zEtEy$vxz*N?9SnEWUb%Jr|bLT&n~I0XHLzzUA^VBRXb(Gf=+um-f=D|(S@pJT&Wy7 zo234owgk|+PDRS8lI7cifEzuu++6eKpqWupDhQh<`^vpXtu6N4Rc3A>(&K-Np&m_k zR;1pw=~l(10$*3UHD^zp98T;YKb^D+l2Yd;bs^ODqCtKj6|T%SY4(Q{sSbA+_h=BT zyT3GlL%8qv9nPy>`ra{cz1fG)I=C$uUq;K2bfl=vFwLiKLjmlw{}r7LS6F6EkDdBM zjiy(oGyY13fFlYsK_*{XJ(FS_+|gFEYv(8Z=M^%}TbD$OIMTs+e3Bl&zd?6R1OcCg z8W4WgdIQD{s_^knOxsR4q;pQ_i!--+R7|EZJo!Bn?^QD(V`K*8tHf0e@!sLY?&VP-0{L*tjrOwCLx%zv-V)WPJ5}k2q z9=9Y!=$wAYV^Q)@9r5^7hUUFII6qz_$o_|)ZbQGnls%+x1mJ&XmJ+UkXszI9Zh?K6 zl#+V6&!5cCZYWP;i^HBf15GxI^VLNR5^x7taPp&|tGsKDk&^^ z*p;(B9K+GcBypdR-$Z*Swbuo)Hxu|DgG|UR>Om`(pf$24gh7uu*KIOiN13*!7sWkr;DX2;hZkOHXY z9|XODw(&|b(7TC9=tFmA%G>OL9s@O2ZMsVJ(~KDuYVVWCeClyX^tiV_j+@!-ICH`L z0i32D#9gN&UZ3{FK3NN_?MBGxj84x2H}a^LyecENph48yrdOXw1zR^)<(`~C97chV zDWf_}T^y6A3k~m1YuxG5x}4xK144;kaEFoXlU@L?xH>q)8Y1}h18-NXL=vz*jD$P= zhzBEz$t5%%+t|QfOclu`TWb2Ltsy8QJNu zgSGoh+63zzODw1P`!obClM>H5Xf7fC6ocw@zlJkm5?~;Wo$~I&+Qjl(_)8V)tqzZL zt6s(%jd_2jr~WbG2Q%YWL!3-+juT!LO5aQWtks+8x5UYei*V6Rs#KVo6=+MRT34xS zuGFo1#DBVw1tSZ;AtM^3r)PR*5?WU$0HWz8JJjuc_+yI@qt?3M*fc9|bA*A>C!!^% zv-EAKle>1M;}g6G#2#TZ(Q!o2np?0DyZ{8SBRwxKu93MFFq-3YGv>LhTLyni&i>8!os0!CD(_igBqA46=;(AWxAv{t zK~@>gZv&4$^gR^Ue%M#0cLzr4>6PEDjW_Y9AX)CRs1w(e*ns4oR>=p^!@k0cCgyMq zXfc6fJ!Kh*29~?5 zLA{ptLVbBh-4@S)Kq2A}h$k`r7^22_shyxrhPA7{`bp%w907W1WTHk6Lfm6L)$bQw zIx-lIWLrL-36@xI;C7Nc9753qd&lntM{?8M5jCb1vp$L*-^nr7tzQ440Oix8N0YYI z^eBXeqwQG*9~GgiidKf?F{tQe0({VGoQq}4a+VB~tyK?fG7hh?GAJC=u%@&zwm0R< z8QLH>X$!4V%V$B2yb14){w#Yz>H*W(=tmNG9kquDB{wHSM02Qj8~jK0XzoQ{O=$qEqYg#%9P-V|g0H3>Y-W4IBvU%5AO((VNT4M?XC3Pfj}iRp zpUsY9*G(@1XGx8CA5MRUPhHDtn-CkT$||z8zOUQ=frt;hW4hBx!ep`KS)G(%F>#FH zjZoYhLl0*-KQ_^B`%GDPqZK=?rCRGx`W9g2kbC&grUCJcd&=}j}>b~%2bu7A>Rw}QHvK0k3?P9HfyGi3|T=!P2Fp&*CUWHQqX|rN7 zug}zke|w&rrfF$pi?RrW{ z63tY#ROY1-&_I9q@AtX@xj^GCzHyl>E0(kL)Kp>)wrcDU4`SQm%qA487RY0y%dbx- zR6MJ6E^UdJI)d_vF2Vv0fz2e?JfAyGN()b6Ir0^w5y$~#kDO_X338cDmVb>8|B4hF z3(y7JyNFpfgr^1nj=S0{8t$@o_#VwoPzldu?oNu1z}xM53}P=hx|dtU8S$*KiYIh0 zMgkE@v-4g^s3tHay{@@BHVwb0Cnw$PkhhG~-otf+8KW`o=|hNXovWE-!PD0}SSs_| zMQuOpofZa)A9I11-E#KmgK+f8-P^bB+0k*xXKcO}L0QK2L3h@@Y4@%So<1|1tkbO+ zTMbt6n8ZnBQ{RRWILpV;C8$2vTqHG8pQ!AWL1WC?)n1ab=y+~5fRW%Poj(SH+bNLm zdTwxTUv%sd%;cggysEsrm!7y^9c;vEEgV<>p1A(MPg_5igALDV&U1XI=6G~UYi>}~ zr)Bc4{(Y^7bv`wwLF_L)dSB(mvx68Po}wiOyWe_t)#htT_Oren`uX%937mmGUE`Gxyp(cF`} zDWRAWW?M)jfnTVtBCn}SU$z;9;Llb9ne7ljN1n0VkA~iD`azd1} zlz$X3d8)?#-p(D~B)GNBA?B@I_mybhML zpXhb+@@iAk7gdCQNFHhwMgU(k!{We>jC`IdwwxtS8v8%yjN$=&D;Lt|?-@tF6uno} zw7|HhuRXEQ@%JrZR#t1aK1!F9tBwa>d%su zfpA*-z8M^5OTi^6fql41K}T}Tz6Rin9qC2rH{8Zk${9k%5z5~%tCP@KcG5HKjKK>R zfKJ-NH0plCBMG(8+XBhY=7G?Y(-6fiZ>|0_izAuo8S`v1CG3+buj0UU`nPn|t5P1} zq}pz_jE*uaP>Lz^O4f&d@r|-M;VZ@B1Vf!SH$o^lln~H;Gk8twMUy?qO0+rERh^Oo ziX&3kr7v!?XQ;zB-lgK36hpXsGl|dNBGQF_r8 zL6WSKWTLmVjn(o)%0E-lzB9h0obK=WsHIA2?edm!$y|X!+|Tb#DM_`QO=L-g>9~%G z=ZnYkmX6ZU8I~Bf9#kaC!~@lM4aqn7FuoG?CSG>)9-u?%znN#$+K^Ax+H6>Z2R9x1 zn1@_}6id|rT@#3o5ZMS9Ck^h<0Gp5)t7N8Y;@9Guk$@ETHO1TO;Tp=9r}wnM#yMTJ zBsT|5!r839H8k>t9;OEhU@7$s8du@r$4f}ceUwEkT@4%LijG=riEc!UVsOryS<2AO zENyfiz7dOWFAH;}IWP|tFwzQ!?%}d=wAzwE2v14jQ?sPQdu5K178Zk5EbT)N{v%N7 z7Up*5_2$v&0F7qTwxfEK!D4ktJ}Fe{3JgYgC-(}?ceeDUvrpl$y;U$B8XunK6N`YK zi`%Hl&o;w&5No?gu*!6EGSQc)B1~Tnd=$d!IF+Oqu<$)i_aS>ZlKnf;+PmX*&*L2Y zIu%4~NxY@K^zS?5BiJg{_h^8v*H=BKS%|nOGNjPmjTw^wzhBRh77NBR@kaRR{y1pv z)$5xX-USc2r3@gSpcf=rn^ifWZd_;-dsCU`8$)Y z9w=n)|J?jajXC7zwqO1*_dRSCrBEz7E*&j8U2>WAoxFZSVqh%8=vSuC?0q!#P_uAK zWCZ->mSp17@z4zO+V!%+9PIg6w}%2vk|!SfyC{CMppa{PVP|W9A_k-08@c1;QnX~! z?I1b)t?uxX)bGfwFE&`(Sz4o3x^A=-G^Xe_nZG@cf1&!eR;#|vMBD0ceWXiY37&DP zs|BmLBIKvC`=&37t35k z1dPM**eHrQQmH07YtqxJ-#ip~Gx|Cdb=*y}948%ALLklU3ha`o1?s>Qz`s`sW&G{b zE|QtTIP0qfFwh9*}C@#KsxVFl(EdT5!5vlFk2fUw*vG{XCA*0p{qTwjf2 z9G-uX4&y{Iie*6x8FdcUZJF>xl;W~7arZiTd( z+}L8fv&ko;al&RYYWbgf=i{*0VJfd1Eq*;KeK>ns~aWvN_gux`E zJW(Vp`ws`%@jV^RCgy#~N^ZDKKgMiQwRyOk`=w!d;)xg1YyUkHt%=UhwG3&2>o7!8 z+w^d}`5Jl{)ncwBp^hUQ_kANq1l`p;o&Ku@H75gt5m_i7Ms6g6%?i{Pn0(fq-N3Es z++|{dJcf=#(J~I~GemR?nH>3-t47H<5DV?}HC2Z^R}QSe_H2#hj0TVuJDUtOm$=S&;A?W$k=Ng=FEqC`uJ9K_zJ!Y zDk6YI(J|X%%`^0-p^}Hw&m)8%R@7P^4%8)HW^7gL?oLef$~&2bGA_Ofqkrbo`at=A z^etloi)2{fbN3`)zpS7alj*E5TEABBT>SY42=1q6{><32J&|3izg3ZhyU zrS0f_a{{8;xfi}Do!DyXg_`uVS0I+Gvn;!&o?2t;zhGCiC~izQu1ORfS;9%`q2@19 zoqdGhX48AtsXla@uQouVL-x3LsM7|3&{Th>@Bdo)AVhlyY9DG+V=vsP8E0g=@Y!DM zFYFG}D&wwGBQ=z{{aqV=8(z|wpzwBr3SqrC6DfaMr6?bQQdZ3NIu~=Gq?v#)gStNN zFOwZt-M%-%FJzX)^29C#%r2dO7fI;YBlLhYLhV^dK%p}P?hp*B<~pa83rih8wUU32 z0rdP24><1(580BOWH)%`HC!>z-ju2ngrCO=|G+KI?~BAJ+6Y2HKl^o;V|CKYi6;RXozSmwK-=8xop|DlMAS@P%I=fV{TN7h0kpKlumft`lb4 zPr(S^C$Ln3!s-XL9%j3&F^I|YT!L;+{};rUbbsJ%HbqeCWN$m$0EhvK5WW{(T`80H z6k5Lq|1_T_?}xW=*EHmK+#KoEfr6{`b?67EOpN+C^AGvyA=_uA zXDhw4$jpA}hp)N%UuO93;*x>%=RDSphsN3ZtDQC)nUJX=+>nkA2tuT7Mg00BvZV=o zX|{Ea(itwu7r~3c%$0D3n%jt&pjkg}#px~wodIe2v`6*@nU2yv=RBB&ru1%J$*V4U z4R2ixZRp&Kyef&Nk?`|!b6+4u$jt@bS-$(?=oBivNWy2;i9{1bYB%#6aB@!3>7ilq zuq^X1FG?d}hd)BfSzUVQlA*;7r5n8kD@zhktUj0a=lx?Lk)8-VFK=;bI$w|x>3Ys~ z@6Gs)Py0?(n~{us6fJWX$@z9XCr&eR)~WSBc~1SPjl{DwRR=9%nL@J0uc@K=-;WZ9 z;4ZI&GC4!|3d_v(>>KJWhjf$OqF837f^5u~n0#tO|9Gfh@L961UeUs5vol}zq?xSp zEkzGs2Rt8tw3hG};Thh{d(IKu3mEYTT_NI`1PO&ZYIO%4t*)PSxuSTO`2Ts<@N?2~^*tUzDYn_#%>G+%)UWw_uRBM|;I{D>f0=Z@05o!E{7OuC7J#mA)f|irdn~d;7 zF6l}PC$Y5!-?;#)Cal8Iq@p9d@brp&rEkmGmpd{A_5CjOwJawl6$imvcq^U_*zl_7 z(`ZF~mN7`TYI+T_;rcJwDY2b}KP6JKFH{EceZ%Fj{LkYV4V<45OZO^BVU%|gh8*+n z=(Jn#`pyv^W7la1Nx2u*8bHouIa}xe7z$ox6SLTxZ!9vWz|`-wD^iY;woS??yP#MQ zf9b6pY)#Y>A%1eqdw@RFb|Qprb!r!N{=RtnNRcfT?$JNP@0Z$A;VQl1a4kDmy+|!z zhlz2ya8n%8#O-dfWSttMm`C!YX(#~iQ!q)6O-eI1a{lSJov%ktq&7P7a=B_+YNJj) zixP;dH!}fSr2h6>6M@c*BA-m`3J2aeJ$v;X65G@Nk(1HHF0BvQD7FH6C#TpP&LC>* zfoUG7fZUHH_c1IZ~|L!Pa%0u2K$2_T3N|65m7I zBArJbA>EZTaNsbFRkPg~^NicqYs*7gy*`a20= zTWYYYB-9Og=jq*i%Uw}OFi@>sgMIBKqDBQgw5^hIHWljoVw*@xL7-r57*q z2&;Rl`0e&MqN_fl6>mD>E0@)e?>r_{VeO6=YX{4WhYB1K(KoAe1l{En&(+*wUxX5+ zI_fk4Kju+I+)6vsY40m7;$-Yl#xw>3+H0jnb~Od9R}F>aTy0CSLb`pZNGFUB`!Y9;}cg32_&yJ)yk(;#n=v9H#uiQOPmZEb%`hf zT>i)c9nEv)xioQ_q7Z;B{+?;4+}7J~VgLcW+m@#^r(j9q=V)494*I2zt1m0uyDfWsInX7 zI}Kwp`|E|H#rkv;4`u0rX?ljJKB?F!le_^)zlCak^Le06zpr z+zG>P!U1Y#jpk)~ei%BBARMXgE?YVHg<(|Uq+zvJ{N039BnF%&6sO(AVVqAGf4}`D zg|Sn%;dVqki%+U^CV_~zah0B1=}=lycv7AbP`H=El&qnqx>HGXnGy{KNzkH8ZUk~p zS8QBoH=-|so;@W<*A7u#&xl)#vdBY3cN#V_HNzb-b!QQWV1N0HxG#9XyPh4)X7m>o z(crHmI^W9~=6zi$& z$me7>VnK}T0xL|LBMG0#D$K0TSkUrAa%Pn|L+Fb;`O_>7#T#2^#_Ut1hxb8ANOPHP z7ok0LTtneMJB3WS8Jx{8m-mnUenFoB!z`E5yRy6*xCMHT3T*hd%w#9m&!yfC?%SZG zu~{~P$KGi;qQ|RJyR~HiU$!p)6t&v%u2yJR%$MhisecB_{#aSDYX;-RTZ@b^T2@(d z=Je1SaPm?tv*-EIuH3Dv+jte-SuPJz#?tN#j*x2XSXNA?+YUd%MEZ{NkIodTe9$oK zpnE#_oMKmExd4B}Wqk24PYQ8A3d}t!UJck*`7!kv?S{iKGW_;M zQ&a7N;WWEaFU4@h07jA=ZV{&iF538W*jNYm7&BWwvhV?(@i@Tt5hlgEpCv9TDzEia zwtmk6T{O)6l(`B#dfJBYPLe*7?%U$V>*>4FjGK9!^3~uj6>SZCbtNy01oR=r>4i=ytoOhI^;CiLP&p$7m4PB6kHRO}om9V)E0` z9>@ULW&2Ih57k&%9&9XeHzS9}gm7R?DI!F0Swy-uF3ehGk~I;Ng;ZXBZgI#N!i_W`G@&eGKY~&Sd1ib{L;R^(-TjVtGXm8>BKo7WNti^Te5~X9>E*4> zdmgeLa;XIEFfkK@;?`fEj^So5(pCl!;v-aB;=c&9u-l~eXh2eO z7;8}zrZ(%VT^SJNdIEtMjioU8{IGS|KTJd`z&ccaXynv1Q@|U&4wdG`sAd(cf>&Eu z)PM23|5peu5?15dFxXPrhPeu*S6~M#$C|iI8`n~awEy(F_rdwkvc@<~nboK6k#Y(5;+_$L&#Du|pZQ`dDk0_~3K zW@6!D`a0qA!}N(sVEl;jv#Ffs7(M)=jvdaA*xz zYw(Uh;Imt3`b%l@sq#AI!-gN^cPs~J5(zApQ6i${iOHt71I9{#?mymvQVE)9Ln1RQ zcEyeI&V-sLxx*>V2H5!>?#hr(GnScjWI>(-uOcCz2z$DdA^6X&{@&+e-0~AY8cqD{ zQIkjLm2{?aTu{nz?0sVoa`+FE{3N}l4wDtThsjkCzAEp7vV=BX)U6wSVoqYjeTq>| zTm2MbZ93D%Y3X^`=dfxzJfQ7nwbYSZvpa&a6WxgF6&dr` zLu6@yAA#wL9ff*0_%OtkZj|%Iay`#tr5TiqVcHeQJ@H;RqxD-2=}k6z9Q67=*A^>? z3KkcTG#uDwsDcbhstcX@K2g5s;k~Vo5JsTUG5YP+21>9*JlTVrMO`t^FNyaG#Pi`mQNA?%$@Aa9|IvVb*Y~UM z7zGdiT*kv=VW-_^5nLMmtDjMuHR84gN&@D9*3Bt4AjK?K%e6#X6k3ig+c6tN^pwU7 zAi|3Exv_ZtXOB#O=z>o)29+9z>M6WUk4xNVJLFl{;;vW6P7sRK%fULxZ@NyQGQ$p4 zRL=<;fQ3}X_L8#fSrbhrTsA4;A+?C&ZyIEP1K^4bsE1)LXXu)Jqdy%vR%dWnuf{Ax zO9x$+ zMbs1Mm4$BL;^s&<1W)u-MI^qtH(QTxVB&PPlu>uT89-DS&-Y!X4TYT)AkNM&2*u|c zS}reqmdMx;aaHr?VW4a@N5v7b!ki|j&_j#<^Y>~G7DOQA=wqRo%QrL`YeE$kf|kI? zSHshF`?Dngoh_ak6Dnkj5TK3XB!0o!@@Rd36=Ikdet)C_^~_kvHBR6S?kn765~*e zq9g7b)e0(Q1$1S7--L?RVPy*qzi03Vx#;=r=}6m@ft~fxx44!vJ)+xoRhxdRa$8I} zOzVRV-K!{sTrv9)eeP+Um*X0~mN1d#KPIIPb1GvJr>sw@{AS~nm)yW}n;<70=QU$3 zMzakO4V9d|Zejj(A<4JER7+EtuxM$PutFMy_~`LBugRp%g-(*Nb;BS13nd^tEYv>F z3TQ?Mo&sN-UE}GhB`a8LFE_AZWwIdyx;`7wBMcH86NYAU=cP^VmDBl)k z@%(Q1Y5t-TAPy-4rxLFnQo5Jkh+Hu37H*+4k1#o7fJq+S!*lPkEKK~&b9P-tdNHv> zM!HikLC5Z^!N?1|e=`E=ST62Ml40hdJw6;*^N~tfvuV`r*jTV?lw}vLe7%L(zl$d4 z<@M+&nq)g0P0%JIn|=bkPkCUL%{R3!t1!0EyD5C4@JrD(j&b~LiV&>)&U`Q7`nd_H zMD9(`T7Qc_qCIH#tJU5}2aj{f z@{G6z(7$z=6dLf)S%YddDu1;?;=el>dlEhBw(5>>A+`0nY_{)9%*5=Tk@VQmAigv{=+kjQpsr2J zh*e@4yxPL#F<1C}E@d0LFEPYqt8YYDp^%F16HqtGid>}Ku>R_-a7!88Qw^y-n!$%o zdE>T9$cFUCvzWqJ0?2q;M*=^hd*)r)$*^wuqDJv17f;QY`6^((5En~^d%q9w1=F+F zszgUKrBM#@_2?sADad=|$lYcmKX&q1U#z>XP*<;6v-kn{*?Br_`wy^gOm{d9efm)b*zo`E;$7@1CRKpf?;)+o6Y z`*?Y0UEg`Q<{xnM@UEBP+k&}g5*PkBzldGz9$AT)W`<4OB)cHEa09*fRelL(*$0vefDy=sJ%lrSNqT?M!AxB0}7PkMJG_^@rFTS-jWl1o)* zo4MWY`>hen;!icc_$?^rLb)FvxYEe=$|&i%n@`QGD2OFuiIjhj2$RWJwS9^Mukw~6 zTojH~FOe#VSx)t}`LBHqt`tJ(~?G+7w6)f+c1Li))cHt=XLPR2D`vf@db^Gf2O7-Xwpi_e1DR2Ghkw`vX zTu8hrWh@GlK}mJUXnd-_=RpGUh`M!TVN$BtpqR<7$7p@Wup|Q-4GE8}9=bme!+l_2 zF{gF>^lj()#FgfXs|jq2QRf^#d^R*Cl!RQn@R~giGUyO=4I5n^;(GLBqRqA|{q|?qU zzd|4#dNA*uHCc)@{>re|>>?RT^d#o-JNGEw<4ugb)^M7?%CLTNHa$U-z_**$+{bWj z?)rDv-_STA-58@~#`Q3?AYMgruVye${gR0&EcOcU`RXB@t>kj6AyB1EgsdQ3d>h&S z*kU*fu_}IB&syC}Z&KR@Y^#AfEp#thuAb!IRfHcyhc@?Gu`~dH{_Sk7*P9qA*RV?D zy!JuqoHB0V@N`^9IYs{6FND$VoY6!T*;I4Q3#8=CjC})?sIHHuhp4WVo3AA7TXh*6z<-iNk-Y<-#)4 z<`|SvRCkbKP%l_$QP6D0Nv7am>pHd!%L(7M=WW&gXjlD;i;nDKy9-anNKe9;Vqs}V z5Wb{TW}ELRV8As!XWv(&F7S6hO1XFymOB^b=c-`B z8j+``NS*-8XKlKss-VZ@ITqI8LIG8x)bT<2=02VB|D0`mdz;I>VIRWXr6JWsifL;+ zWhOP;F5&q-J6#Q@=IT&xQ5XJny;?(B?K4ljz5D3JW=l}UD?x}-eyHlDT0T#k>Lz*)%Qm6Ryo-$wb-an?nP@!P6kGfMkW0So&DlaDsE3I<@ulMvde5QX>`` z>^Nc+j>@}?C*k-eRuu0lei`dw9xa1w24uuaKBSVljNGfB;a#>l-jA+c<_W(KXWRHh zs9ou)cAv{u8fcCLoE}8hxfBXQf7#*hwq+# zw)_kTj-+kW<;q1cO2of+#zZFV>g0>=@ZJs-v2rKX1wr4NB9+N^bXduIQ-y>@pN(%y zwf@pjhpwl+-$sxCSnPXCQGRKyrXWvm)ufd83CCR0Rh`Jda&UWXYYJQ}3A;$NYw4zX z`d(Q4RMRmtIcjo*virPIxj9JGB=Tktx~%aOxZNAjg0idPzt{gxXNNxK9;74stp=H9;cRKm^f*8B~@N3*+-Odf(N z|zc8Te{moHd=&D$iIdwMweDTj7ayIn>%wR!FuyF*)5%04h?C!N~ ztEgM2y_{N#aWZ>;U_iwx;VUS-{&)VYDT}8o02HXhYH1;t$pZfbTy}2~aOr*uCy_VWC0q8Pwd}%lDxe7QFH2amTERVNkZ~UEE4#(hs=PPIacos27QOqM+ zQb!&*p(3x5m$vZ3T-juoNd*()4s}lU`ufnAM>_IQd1pS%i&8?b&sJ{?4?Ya-FRmtv z8IutJiq8DaY&_d`SZ-D>?t+9@+;^m4I&R^s-!7Sj^d`&Avc$%a;)PSO@6!3pY zHuR-PPog#UhbR^O_XLd2pU(x>ByUTsJO2BBya>1;#s5kUqC>h#e7v~x@q?$@&;B)Y zEjiU*RgseE9h1+8WDWq3;1~Ye>lDN;Jb7?bt?^S{q>lTcs|phvO{c?UW{HY;az^2( z{Sl)ugBhna?f}e=e}5(<&yHd(1QBaoPYvEVo0i*>6JWNRM&R9{JKl|m%3*`||=e3=it45U-C zpKzAYFl^wYmyZnomLAD|!ffMA{~RB(c4yCCStB-J+CVfNV5J~#q^90*vk+!xZMNTh zOUiwGRHT{`5a=WyKs(FH@5(J%r30z|@$_8~!-Z z03PB=+pEH$MGxfopL3k{qA$8#i2fhX65#*|KfN z&XfZ58op%CHJ7<1Ja@5^ze7epH}}*X#o0QuY36yS710;hchy=y8Rx6Ct)M}Ygm98Y zpPmUy#}O0^B6>|(4o?LTs2sPRn)%gd{$yR(&< zKiPgrc6hh{br+(aFZl~&uC;tWt~E42&*h-R9{0!mj6^9)I^uI9b)(Q<7-_0jb5uf= zkI1=Cfv$h<`#|cN8gg7$(ki}6Pvk~3v1bbmX!OFX(IhP=HTTeg$ij5*KmLE+rTXK!9s0D2d4_E>nNGH|0t)1wXNe zkHq|Bc%_%Qrq&)`Xs6OZv1SR_`rtT?pY9Rlu#YNg^#LYRFK-h$v>&2seLnX@Dx7tN zUX{>8)^33@x+upgrt*b?DZa>tLBx~Hs!kc&jfk-nJBKduYJcj&h1$^YEonn*UtF*eoTU);FW8wKUlpqP|wSljWlo=OfQ2 zMnyr`usbi}nSD}Xh-&t{apt3lq!}F;kKa7gjTg5OZ1=Q3v}gAQt-F+3}7{y-EI zs9!~R#dlOSiStmLvqI@e6a7=Bnfz&mP3_=vtR4OhRA_&wEiy|}9~tBxIA<~S3nu~1 zTK>ba5tk~@<=R!2G80{s^y;XMtBpzL2T^Q<6vEc1&1SA|JBsR3x>817oN&_n9JxA6 z5*OkfZ`dd(SIBn#@zns_=}1q?#m9Li1XX6HZ9%bgFQC?Ej+s%ePiU?1Q%DS7M;et#E9mIPKvV zCJ$(i4pkrLqq%BW5N%3Uvp@=#x(bC8$jOO%<9@k>*EiDP8Zi~&a9E2TjymSZ>a1^z-XOk;7OW0@TI#b@5WR8o!qev7 z#EN13TM`V2tT~EtT?|;DbXQ zK}XGXDwkSl?9oIF!-k-c^dXO~lg;n&Sm{}X0hoD7`NRvKWtgr?$apcQ^!Nb=l$P;h z;qZWtUoa$%v`eP?nkv)^bn-~w(Eu#V(pu+ny7a;LfW)SVsVZM$d;H(34f6$)OWJ5~ zx)v^FAA}6T=IE|F8o4LyYm52mf4Ac^81LbhqOM+k233l&Cptyu!WE>x=w)gNO}Afx zh;r_VPMG6#D#GlM86*&pmCYk3xRDf6ZIYo z4%()o6=JGUOKFNs+S+^wYy?T~*{Ds`9Ga8)R_~8H3hf(f%Kx`UUuwTkwO1j|ScZW= z9XFeM=dv8{6W|eEGP-Wu zBzj8D!@R>}4)}x*$iWy?lMMx$HkWp?V*8zuw?H1oa$8Ms=&?vwC7B>3C5(L3{A`EW zdS;j)i&S`JyGZu)5Z?Y&ytKGkE-e$tXy z12#^?tm)uXF{TdkU#i<%L8o=hzB@2*8J?D|69+s6ivY_ zG$1Y~(|53q(b|n<*^_Ltw1g{6xzcLd3b z|7a*YnjUS+B^cTlVwqg|8m@}UN3!#Lwh9V^i|i+JMl+v6xUF~nfmwh2pn#Y1Zl#cb8>ER5Z`gOh+EBH?VD z;ID;O#+94+95R!ATV?Q@-1BVvf2z8=z*bOjVe6SLyRf|uJxcjdlau;}{9!FES@XG{ z^6H#}uldeiTZFvO$6flL?baiX+ee7Y&)-`Zywqn>LTyu!V2feo4sC!RtnRCd954PQ zn_QNgR>(Bjse3ZDbNC@`=#|4o%Fk23)ZXqy` zjNVNG(%tFz8L8Y1o5y3qj6Iui7}o^t(ucV@1Pl!&FQN zPqg+x%L}P)M-R87jee<-^%x4ts^sL$6zx0q6vt?TM5OHBH|e5otZ>=Ldlly+L&!%j zCRH@%iT!YdW!I*}vbuYE5|P}*mfjj0Zh=@SVGg6f3_U`|hEP`x@qatrJ4qadU@j}8 z5agS)*zhk)0v{qmOdONpaLWt|RCUGsd&AhJz19>zRwJcx9Igp^XV-Gcr%Cb&o-xyA zgTF;`&=J}cSR@0`u5p?}JxpQyA=F7U>Sf{L$I=(pw^ODwdDGGYR1gn)nk1*eOBdqS zj4YwhNmjt3!IUxo(=J;M*)av@kIcinGdo%j?~lrAKUh@!;E5e9m6+iSrxa(4!o*u- zl~FK|o4@v+pr`HF*ngREJT52^d6a9BsSGIE+>1*X=v zaxpA51?v6L0wmY(obAy`CG0=I1~=S3YJ*0&YlOTc7V>Z!mnyyl~t4r6ZLx#b)IdQX1? zhm%ic6d$vF>{8L#-#p5YNzOJGAiednX?Ito9Z+HII5!^iUW4%T?9S(XZI}!k}j^0ZT@?tH2sG07R}Et zb<2ro{@Q2}e4(T*($qKYT=8~GP6QpM`wIz(EQ1~Ly=}ivi5rLV@jmI>v3S1JHOiz1 z*tP=1$IWYvdn6o-v~rRCI11uf zmf5ZJHNQ_!XTQvh1Ogf)t5B?fD+mkGj}Sm;vNu{T1}RX)P^K1KQGzE9wfsQ;s{xKB zkg>N}#wEK`ZEN-9gb9vmKXphonR?qtb|g@F)<%73zXWCPkhp)ky->3@X&q8ay;m3X zXa8H{DA(Arl@g~0DQ0Xx`|p(fi_K~G3~cHdHz&lJ#z62`3;vHMSh|Q@D8Um+?+nwr zu1Cv(>i|BmAO|ya^lb@g3D5~^Vdj_!VEJw|WuP6**UioEO1pVXH~OFc z`G0P1vVM4M6|}69Gd>X?vk{c1KH+L7GorW&|0qf6ETiaBn^<>q`>< zdeC_~d?y^pL-EVurgOqAHA{!5yr>~_8MWIjl$=2}$LvGCyH%Kq!!&Z6et2Uc#JOsp zyZ(D*#KgV;TcWis8M1P2L=!Q`Nk#3*EZA>n*KTCuiZPgV5{(#$>v1|x&WN0cDZw@C zf|U0iF=B4{SN)vKBcX0@`iOhokRGo?^2T+pDHWU<+sCz2G4>b65rr=v zm5vxlSbDmZ>KQEC>Azi|Gxf*g2mt~Fyd_M_92O(aFF#Dl!`!OpTVgc6_J)!46@?2( zPNaFYA^uc8bf6*+yU&xd)U?cv9vJv8Xk|vcBi74xZ^9Y)UhdaOEu7e!t>y~*I;nB- z5NWbh^RB-lCY?1 z?BrZKHKwkkL}q(_I6<+yyKJ|qXW{e3B0cX(9)akXqTHI4)BgW9$Y`r_H!DwKr^6lN zzY{K*$phli)-%#}$#we7Yo-eTDFAI6c(7LBo?)G&OPfY?G7+RM>kEg0A>3EAbi`XIKqrb8C(AgU- zSM+%QZq*-Z)KQC+sTLqW=#a~UQhM?#`qS=Yj@tP%KDV(!9Lqz0*h76FEo1|{nJqub zW*L%0p)>=gjjLB0836EM?CNcCFXl*mm1*f|S1o+* z_~`=ob5xc)Wn+Q;WhMCd8^NSJ`AXJl11hF7ZFIAQ&GOgH>?ZPc6hMZHaC3|V%+Eq- zsv+>NB`PIHFu7wlc?Z6)4y4dR1**Kw|s$X{Lq>vEcGk>6t- z&IyzM8*0xPmToz2!p=uU$jMlrE^@YT?(Oy+f^4lZ%O2T}NBhJkn{P#>@r(0XX*fn0 zFyv2|d!1a2`yv#E07^A=Te=)fD})~f@qvrgM{0*J$ zwL#PD5c5-qtTFt3z2hR$v5huI*HjA~62;xp^l;KAGsX{)IOBlNl}FOPSokuW6&j`t zHUHer$GjnWAGsSs_a6H9^>VFeVL4XK7A=0srqt^2nxJJnPx}pWnWCp5Eg%X^+yC%J z5vqao*`PuZ>Q7^b_LB0=EYAoIdgH8@E?%i{KW@YXZ9Icyz^aJi&;bafDeZ?o7=U8 z^3uv^blWjA+;hr^5I5?>!aGZ3GtsHVyfo#Bu+-FW1KNJ1iT;w_oCr@|5Cxx%qn@MV$<{gPCe?J&KXv@Npmw| z44`r{j=@JS_CDz^Gx$RA8t)7wHNj+$2f2@t9*s&VE{WpdnxKgu7q7!b6 zK6HRj@i9z!$i-T{*+21}gw!fmk3!L`@@nFEdFx?(VlvVa@$K=Q?n{J}*hFb_b(Zf4 z3)i#Q?pn=)YQLph(ja{&^ACigeNQ)j|JE!e~J$(nm&ARc5qu&kj$P|51@5MSz{ zi_Md9<{2Qb2Qagx6AHmK|rE)OkFgrLwxYrI}nx50@9d=0bc`2r5FqrW5^2IfW0g zuV;scq@P*?tRn;{9-{Y5^T=rjYkYY_7-Gjb&}gk0JJ}Kn1+Dv*Vl%B$<%3k!ryuEu z{V#hS=!24xB5r!&!-W!pC4x}?+Xq7^Bsn(+#W ze~JJZK!WhKf3Nb&o{!p?*_8#?No{_YAmUSo0?EbPLxP^R?p zgmCN9B==|cCq9 z5Ijo8A04fa~i6!c=0;D(jJE6ZrDgmoZBdj(da zy!jXh$DTf+?6mmFc+pfH5nPP1b1Vi;*V}H8dU%Yge(|8!i!bByC|MbPk8vkNINmX z>0H!hlIIq3n3fUxs4wV4seH-b5d)@;4XS0)Fs!dR3BhivGz&B^_pl*v_D$#EGOtu1 z;vX!qbcB6yQqh@;@w9jtH+XhTus{DnO=8x!5 z>RL%2OLwwu%YY)nYw z^FBG>SgQj@paqEY$yWW{UB~o=>zR}kwrhqBiLEv|V<~dxqmvHUDoBO{u9SgNMva7f zKlwTjs%zl@Uroox)G65^C2rDi*hHgOd6YCC`6=dw0OKbBb*Q>$6oQ53AF+SkUc3W$ zcoWueW-1sPQ3owDsDuuNVMLIJjd!r6Nfz`JG?)~BYz2CqA=4}oOw9IV2VUWpeWkohN3}<-c;TJmJRjpT!2eHvv zv)8I5Vz^V9?60RRNOfOex-+htuHeL)k#3SvCR%ubw2%=xi|U8oO#l#d_lWAlEw*5@ zA<@j`BxA`$FTKT+39d@%S5nYjOqu+nM@)|PDrDqASTNPw0a{zaKN`Y-=7EDwpTW}})qzjM{h%kW0x+laDrvfza$ zh=zxt1gfr<#N)Q~v@0w2wwt&TXP*1?7T*Z?>+fIb|I-#SUtV#hEVYz)XXYA`>McMFyU zA5XdDzRG{R_u+MC0%3HaaZIs+)R`8F_H%s`40pa}4 zFj;L$h-ET7Pmdg*0V}y#eP4nurRsf?r_Ps>?5UM&%Bsg+Cx*#ZT~)=~QVmi+uk2v6 z1keu)*>=q7ub?rHQZFiI^vDWk0f?6gYAU!2*So;Epz^=zUjQZCT9%samYrePJyi^o zA%b7>mCs^05f|AyN0P$!fI^pMwB>$cF}oC}W{UCIn!$RB2guKMu~9r8PQoV)^UBe= zu&_M?U28jwa`{IdU~$@O3A0rmIcs1jM}`1CO@#>{>Z(Lfs~%nPvt9Uu9WT8X<6_24 z_s9W697xeyk(6ezGF$9qU4_Z%GdP7myLuZ3(80pupy8VU`Fi3bdXdI;C6>c)l}UUJ zPK@5%T?%0YMAS4Q^x=h#-Hi$(!XKb$?(E-?nn;$g)7SDadBWH_qGW$gTr5m<>b$k| zdwup%Ez}hLn2ozZ+^GH_~VxDf4=DC%MAPS@YM<0&lBwKD88D?-GKc-ek(U<346)k4u z5s2K%D13$cieiS;m6QWH)@s@^uK>OsQ^jQByqJpf44FBxV3oyWu;+!m*|6CnVS$rP z1Y;2fHiAOA8$Wnzg>RiU{C59BmU?!6ljTL;!DvDQ-oUwWVDXDKj5~IAo-MJc<8i~( z-|Lx6gs8(bvH1c{H-zeH?f{Y z;QI&uV*#IOMUMo#hq1F4k8RWBpy7w8%F9HCxZ=qV+fE~?I*Nf$l-e>UF%~DAL2t`& zUjQf>1yIgrViDX0x$~#fQw`&~!L=(N$1VeA7*Me}ihP$skBSz+%r!lh2R{ zm|y2_c0r{9liiog|6N!ZUC@6^Tuys6J+D1agVEH$WqFkQgNzywWO)0nByD0#a>iOy z6Py>EJFY_U9!4P|2qi88lqW&w(5@a>wQ%b~r^Ez1#o>*PctA1dLTdDw3ptyhdi zIG)|fS@R2YmR#;cOB;a?qYap$?aok;P_XTG_+Uw=!tMtpo|CF8fuGfdn=YqS@ z_pr&8YcFx@=6CH?T=ebz)5n6l7<=uwsuioit<_r**9mdF)vq=$)pY^qL|I5kkGICp ztWQr;fVD;6=l?I0KmE3!mD$VMoTk>zrL2GnpZhjmS3wQWtac&$!3CdT;+>4t z_B0Hu2O>iyv>`qXGo%5-;I}XB>}nAm$en3;hhB=C{#!7e*6?}@C3XtxERLGsYy%Na z!XNyTA9Po#S>JfafoSeMLjN|Ezv@+k+of1+ISz6=efmr3rJ2}i^Lo*4loRVQAS zSANVRwRL;uBcn~OU@3V+Hz8Hwot|nK=H7#khQeu!o_G3{kaGg&ONnp;?w6@GNG#?U zoUN!-WGy_z)Xm>Dk69@+(9ATrZj2fG#cs=y9?^0{n!r>IA`L{7PfY9Zd9zbwqeR&I zJ<3>*Pg0U2rRo~7X|8KYZX>x_&bxXmDYA&IV)))`P}hF7fAQ;cc=wCKDeBvJ zs+fV1<)+tv+u10-!QD+FRbxjP0Q!{46Lw?sQh!iiu(j)ptSS$XN*s8Cps2Lh6dgGp zV%S42;Fp|7(}Rn=FTG+8uvF}oh1*%zdU;nSR-PVh#U-&6Va^cMonU#rLBKFs_ zRwZFy0$73v2@{;QUKR!Vm>~-9{SH9TaCejc%H@X*zM)2EZo{)y`s>EE{oMq0kw`ba zpB=dZcsVjFMyJeA{8Q81x`0V4ytoQeb#v_iFt&{*%juknAV8@~p{n2i(d&J+b@iGBd#YOzePucqyrH6TFjb(DY| zRpOwnMCp^j%bXaS?pqPe4;0*80W%7NYwofNj2aElB1v^+pC~WylyWZ;0HE5#Nk?Gt zNFVU6k^@vB98*7=zPQ)*>=4ooM#0u5L3J+%c@ZU&I5)V73p%}b6)yO7pY|}t?a(Iv z^?3I@A_=>mPPmOLi53REtMFN*q{7!y{unJ4KE}acqA{5O@czAXl zxknG>)xfFwy}Ek%7NsZN zC3Wl7`@B&`gk4&DdiQyJsQ}M!-{TvcV>5$}F)tsCJ2f0cNiOT zkGQ~4#(R$Ul~q*$r(fhd^%PYCT`>o4rRBV+^HK?_w&S0yIGKg>xh4+232Flor!{Uu zdXs%}MtZW#%%o0*713kyrHH%?^JjfCJfmyf8xwW?gmyE2>xlF(bCQ9Gp-TD=c1(5x z`O*#Z(-so|QxSRJ=UQphlz*H0c%_E2*X@r7B&&>5@ZpoIe=B|Dp@kU4;O{F88>fBz z^@w0mFPAAhdQF)$7nQK>W)XZmn8fUnzX0bPMYxahU>N#6+nAvL;q~eK7&%uo2pQ=Zr=Wj_cLQ&G>vs`WCNv=(fN&>wb-<L z`}zKLIi2dtO!EC`RC#p@G!UPCy?$F1UvRE^2^6p@)TmPZfsQ;mwye>ZvE;?+jWyASj8JRYxA&!? zZYVQR<{ZtY)G`385|-%#R@H0DDO{ywd}QO;{kI3$D!RFhp35KCZBm(kYd z?>+08`bN~-ODNkK*!o5A-Ysr;`K(UjMW>z|wJ-#Lvd0|UzjyC4Qdv5P##tRT&!@)o zXcmwLa%~?Z&xO5_6vG5?29s}qPI_@}AJ8dbk2;0L3$>7J_kT1ENoXSzJo57dHTGFa zw_Z{S)M2wTAZqG{&UcET#gU7~o`yNHmP_QBO1jr&0Env~mBb(Xc_qFqp(EdjzdBIZ zX)p5GI8ECBsTLN#jNst1+S_@13VK++gB5=bK=J&nMu&Xr%I2f8l0a5Rc$Z#=(Q%w7eW-a(!ADZW9v=>}8A6*&l~rtZ(0uLE;Z!m8r%zjHf z63gu4f0i2%E5cOS@TnMjyX?LMUA6^_A1c6W{P!@%vGQGHQJrV=Sb%|Wb)2h6c4%@&Lb;s#xq@KvZWWfqh(L}Xw9%gQ zptT@9dvS^0LV4lC;Jdx7uQpX`FB#5^pGzFB~MIm92i#VeZn`gooP(}54SYH;eA*Yj*Qb+lEbVT8|c8(b0a2;sAY3W=x@VLgWFFflu@9L@~`*EXLF!EJRWRE4_E zyo;2juG}d4%q@pne!uF8&rimQCEII}T}iR;3DDD6J$IY0|O7S5VcMo*EZ`#i37vZ#h_cH0rLo^VBd7)QD#zpIeb zy;D8~SJQ5|!d)$3^f1y@Lte!`cinN(fBEEx`o-%A%VR%)yCU4pvqV4f$`MdlQFR*kK>xuKvR0N{V z;IK21&NIr}#^iD(6tIA$qFw(pTY-f$CHSz6l1ZUFOXPg$jN%Itq>t$jb+F(5mW5^R z9p`=dEb)DmOQBM^B?u!io0JV+UU2AgC4ryj!~!&BAzR_ zIKka7OGHclZ^kcOcc?-8soS^4|AgOXUm@+&>bL43gX(Lmw{r?M)0`*56(0%4}WZ>Iz#^B751AV-%3N6ytJNrdRw6y)InWVb*GJ4F?WC~!&pvB5yyZ#&b}eP>2~1VQQENH7709Sg z^1J9lc;cc)0-0(<`POif$$esx{t#l*c~J?s)&k4-EIrn+--A_;;~jX6fAfPr!I|6` z^=wZ-twAv^R1wl4h4N!-46IuFlPnXy1Zs8U_mi%P-@;qP>HjpJS8~YGn`+dQ3~k6v ze1->(95oDtE!&|t6*21HGWAAs8sfvL3lBi`b5iT-%_=!i0OmPl@7nA<%=X_rmR)10 zM{X?ls1!10pj8#j2;@x?opuNp#5DJLL<3iw1AAMr*}>}v{Br~Ag!wa1e9Qgoy@>?i zSB)?SJyBTu&Sr+A{TlPI8$mGL5S2_$K_LmtwJ(k5eY}y}q`WLN|sM93G5`6JE$N@u$SY%*1Y63&ulu;;Mdm26t#68q2 zJXF5Y0G@{LqjF_7A}_<&`Lk>opOH-i_jxrgo6F8u+sqmQSLNZTho`s6T&K75x9iPm zUsme%1bWFfQezk&pEvEGSGP@PESes9>_ba?o<%Ek$5ez)^eG?jMJwOwO+`mVu}HZx42xZ!yM?4rCQSIhsgm5j2G#6h_@m^ zP1{`CRhj9L=)KN}sT6jY;x(qti*#4?jur-x{s9}8c7@D5(wR906B^?S8(T9361Y3R zdnlHl(_7Vg@4>+qCa?;J?F9&gS$J4?1m`JCYc%bgRX0~D6BVpA!Y^_lnpXLT2yzLg zA_gcdOsn1vPjZu{qtxV2$egv$ZW;ZQJ!;MDjQuQw$6HnQA((-Ao9&~$)(+jSDfYf- z+wYH1WI9lbyqvU8J6+VsKlm-#F{l z4S8)~fs2h@WnB?2JDgepm5WS1NSt24XLFKLSN4!+W-ElFdTEXrVmbV4Q!LqEh|gPu z2v2pJR^V}k9mLo;(hB)zUtq)x(ne{onp-T?z;j|((oxBd$O;sKF6(`JWYJ+v7I?_8 zu!Egg-rG;a(&>sIAHxw^DWp7zYyf+mK$tDWKLdwJ_^&m$2G%6^wd3V(_0pdl6;hGF zN4Bp;?u&p5^%c6En(chpQ&;l+_46a*uH~>q*Zsy5=LMeNq4bFP1tvbr#T4ZN$@gq> z>!c_%4yYu~czu+wuGthPUQ7o|9y{e4{i%IdcMn zdhzE|@z?K*QKd?NNP|VE=k18m1=><$9fD;obJzEAG^q7u^8Gt0cen3?FI=$P>uB}s zpP&yyL<~Ipe8PDX^#cc7gL^pY>!FNhg(TXw>9Kew>P%+MKkJD&ecv)ht;7J0#;hd<#o!#XIJfAi>zdyHV{dH^kZVJGJ(4I1uCtC2|VDu&bQZk?((Z%jU=^<{!yJT zGF8co$+|-yo95FsR1`5(KS&ra<7sFOc2o?cw=k9z#na_|rv)d>6K=;*1Pi`^bNJw;x-1b*TPOAaix z`hvsxkHmsUUmkJ;<}X9Vw2=kptc=k=n@?*0BD%pPh5;<=_^*ZZ$Tzt!6mJ7f!h}dq zVL_KZ?bGi!DG6n>FQox{h+Rq{=;trGJT9;}&Qud1ij?TLqlfaltA|Q?XqUI;kACdO zFfZdYg)tY0po`YY=AfIm2L@n|`LnqnkcCt|jV$nO+fIjmm<)Si7gHP#BI|b_x4HN$ z|NO1o3dI~6b{7|PZd|H)`=2EzR((7$6}n#!#QRs!6(P5GWMx335pjj=cBT=>m;tXo z?A3U$!b)BDg6n3Jta8$&GUg-oq$BM z=pLBzwbXeFm&OAj$3_UMQsnG9wjY6@Aiye$A+eG&5KeXu-f3A2#!dYnDSZTYaAYu} zs|wPE2e7M=L$>B}w1WlaSquLxZU|0V%gb6Em}xGvfLO20ddMjq2F{_s-)Eukn&9D0Wo)$!^2lbOEw?%WqB< zV#9OTA4M1Ii~!2DSRRi`>>T3!M{ekzEE;xyBG1}(_{1hVLu(=?$adT-0BiuTl`npw z!m3_GSwgWa7{3zi`8sl3L6NdgZ69t>&F*;?EhopQYI|R*Gbwmu)yeUunVssW#PwTo z_z>5%)M#+SHNfQ8T^qo5csaV>!@U8&mjd|+vhi6<8q0f$!r*%%hVB)y52tNZhhAu_ zp~CF^efv)5ZolFcQ^DA`7gcpYHaTBTUkB2Yo9cd5q7m~0F;hT7EonMN&5iA#`&C}s z5b4h+16pIV{io+;?s|&5n~?1N=^p{t+gHEhX@mqwbBb9{e&R)wvem9AO;})q5~}lq z{JMBi4`%FvYkQXHgXwlExnlF72~N2ngGf<240=9%N&o-|sBt!mv#8^WN;K~B|Gym(SeoqP}0#)!SzhS3(3a zDb@A}IRz&RhTngWSmH=q!Sj?NXnK{!a zOe2yknBJGyf6c;K+LE3>EKv&pG#j{-a7@#{z{7$?Nz_X8(~}dB64tT#NMtUUi)n~P zXV=TB6G!n=?_A1={=6NnXQ z9@Ni{`LYYqsy#kW7n3W9PRn}eqkK$$h(J$YlboP7{Rb<1@S;AgJL?dJ)o%d65iU4u zJPjs_|GV)Jp+LHii&XQ0;Rs{A4BfGJ7zB!onpg@%G z@Y?KYobARbDl~suTVRU!qIEXD!!MQBbMw8-k}0zU=*p(nCLcEj-_;Igz>W9E^NRUH z8PS)UH`olvH-v^t>SAt`VsF=qKs5+sblYD60z-f#J)yx&A$sZ;Y*j!FjN%l#D~KsR zV_sHN5!qH!-iG37Y3R2L4~IA2(*_=lMAh2@aATr+|Bwh*6{l{6T7R6F;$@orW2r38 zhn^zAYp&`nO|V}qtf7StdG=7^_HU}wn{aplZiO~H7jzzpMBOd8A--(wjW3Wb7|mBy z*~r4AhFinP0vk@q4Qlhc>K2L@vslELPUvhc?e4+5S=5&7vePfhiE86S+E?uv~>@STamMKvlJqjJdPI0mRF#N2r zS4&pzlbFMyeyuvz=lVHgXaH|x?bB59IsqN(ia=0)U1NNW%OP!Z1oh5mv7dB**y-X5 zee8e9csOXo%+VpjWDt;D7L;X)Je5%qTkRE9N9eZ|yHq|waggpNM8m{5Y*;B2vpK8kLJ zMy@Y)oLnyUN553yCOiOgyXhMv2DIdlbKGugdCeY$KMuVbk#Ci6s`|Z#1|O7w%B}XL z(QPu2h>fZ?5#>x6x(>uqAs zLsD@RtOUx;G%%dIxxp}?0rCNe#d$s~1FSLOkRDT*>27^GlZtewpzRSm$pEW!P9A*% zUb6K3h9NX_y;4hwkB&LWY=D#=*@Sd{VbjUMd?2%-n)j$6me;T$;u}X9B>l1S>ZV9O zGZs=C!Wq=z2y(jbH@C9m;Dss^VGPe+y3F_v6W28KOp8I*%O`$D%>y`G`V&#y9ZBFHhhz6dFh$?Y~C z4iSX-aG+|>-<{^q!0Cbg&t6#Xq`qH$rXu%USb^}eZLL}+)T_)FuEDEmi>%k>nsv~{ z!f;Y}xOIbwF~w?8tvA0hU~89fsu}PT6apEx=X@qa!>~uHEqV_+F||1Z*9F)2C-mr7 z{mF@|h%-Y&lRIDymS9z6tOjuaMqxQVwZQ{8h}M~4S>J_~`RUzog{itrS+;uhg;IY~$_R;oYpF9fe=8VBMAy=G)5hH6oE3&J?)}Qo#S0oFseyE{PS)hnypPxQ)&w$2O zOid0S+Z75d1?af{C0(r6+x%AOe(Y37h5heO1Hfo0mb|KbCR& zyoi8ze*CFjV{SEiBDDdgXux=#v8VL_jJ2DTETVI|`mX6E_Wa}FxV*foNq?;25_5Ri z=5ZjbALL3YN}S%n6u1(|#zjGTNi)9jeaWP?_HflaYQrE*bYZJ#7^GDvE6j~>JGL`s zuvz|JuY+;3XNc|*1=VFnp;c#aL|eo=-{%AuV!G-@m?_4I$9g3t;#8F7ywCi&9wHAf zJl*}*hc9cf$P%nQBOfT2nLWre1%@9FNC_+vk0j!ez-Tvq+)MexcKlO%ijSbho^ETRen>^~4{uUdRrW;eY{88+s?NC@E*_F= z12m%yukKyJA}U!%AXh=+@A`P3Bg>GTi)!09X|C+upU=-2_QJ163`!|835}_mmVbSKJAA64DBmW9eB4s1~ zK05yP+Qy85>@8Q{O_!a{FEIY}P+Dxs&w<5dUk@ZFz zqq4d++TQ#ua<|J{i70ig|GsH-vn(VI;pJw1nZi|;$24#}gCF}1#6CutY2YxnczzOj z!SKF6Zz?FrmZ+aVMHP>IM?-7K(hy2YdL!M}RuhyAmuN8?+!J zx$2Rt1&lfS!kRrsUwqVY4gt+NVp?tq7Hn4B>cBp*8$y z`{@JDr^a7_pm43SGelLxJO@9*n4AKngi0M!P&|P3*1%&%3#$nBO>+*s{2wHP!|7xp zeAKk~^ElsCHTkn##a_LGlLsS*8>U(xbci^e9os(KN!uZ8v@|TeR1jbfI1W*xNrM+> z2&Pq5$y-*-;9DS#XhV|2(v<0Uj^!i{4jmiFXRjzDDUTmZU2FjQ3+NEiIDmoSRJX2J z)Qjd1TwRc3N0SixPV#YURyQB~R2i}upyW0CdqIu+LDVZN7~qi!%0lB=8Z~RKc!C9x z@$~7%7nlv{<84uq%#C7kxW=}gi7FFAGg!vRtEGRz^VOdz8iI%XfvYw>j1SUWje>x|w~BMWK;wJ0uePq)PO0BJ!FD#3T-1sFB)eyP#=d>q^=)m87lp0|!^@xzN}j zpF?>p9Wgpu<6<{h7@n@Vt6npA7tjc+$jI z-HU0R>qPb{S>GIoq(gfZuR{{!V}AvB{r?_fXAC>0nJ?Uahu(79+HV3}ZcdI}ClIo) z-8I#<4oDHWT_V}Y4g5L@N-ZBwoaaucn%6}@w)P$FwQ+dFn51098BQhl!LO~`oO*Wa z91n@QuY+5rVmM|DC&5@#LumRehJJo;1oJR3q5zPu=$`l){ek%bSSa5$I+MDTQyX#` z-*i86wDOiBi1L+iZc?T*#rfTOVztjKXfZ7to3B>OXJ(-Bdv}0W8_^vF!$1h0GO5SN zLfH1N-9AISMyY{IPU9n^%=!dWRoEjp!6d5>tOdA6o0{m}lrFj>HAZzl&A|MMMV4*? z^L0?Z3YNbrgE_|Hyx$j>vgeZ@Zz?sL!)|(TBgrdT$HU(2c0w}zRynLThwA`1Dhb6* z1OEv4>qa^dMi%?I7{tD6GM%L;lOjchoV(v-6l9@V_UmWhOzwyQIHF!4E!oePsC~9L zk^A!}cdSHXBiL>?_V~r&fH~5VoNz}V%lu%*tKo`XeSk$Bfa~%m7z#y5BU#!g_usx; ze-3U1;{`eR9vnvxa~=UKV1!b{he0=sZ^N9VB$ekJz?vYfX=h_ z_~Pw#>XMWmgU~&T=4%72*g1xt@UUbuW&*YH@DSM+rV=6=C0N_Q(G3eGQ?WULoDgR0 z^+-3Sw4O+`2qxr-at$jO9V!Bn4+noX4w@=ua$?(5JSh0_Z96pvE@%T|4T}`1K&uux zNt}|1l~M(2`QZClUnbe{AFa@=_rzX1Py=eu&*YnOZT3dM?*Zc)4DHiM1z)5ic!N_f zT{!F^c3hzh#M(CIRN>;7gnHN=>L3aeq^w3_bOtVvYvE*z4!Ww&sDWMPjvK}(-A>Or z_T-F-4y}0qd*TsELle9I->8_rY})5Ua!Heyquo&xJMRS!(AILxrFT;(!=5^>1?y*k zMA*Z3RE`9ukt{4X*pJslll$Q7zX&>R^O3`Lxh-1uiLJ^8k&&gl0trJj_g`#f`y@1- zzXBspDA;^_HwFwxuIgh%$gaF>QKHrkG_0@8bD3FoElKD+X5cFy70 zaFFC^*9qVhFxPjA1H@T}lj1X7d`+>`>gIn&TPjM5w$em};o1!OmHSthZ;~ga8(1ht z%aqA!!5h*m>8<@OC(-%HMT4HCJtzo@-D94x@tva ze^=2=1^bo8w#ic+V&=75S+R_07%awn$!OfZPj)Nxb)cwIho>qeABP_uuHiWM%rd|}ce=yoZ;D?ev_NX4G8 z#91UKWoVPW+DMOj$+%B$m+=uIE~s3C_r6KPYws^3I!18TSM+kRq_uBg8l)4< z&;3no_bPrbI7?};oPADd4Y9{GKi5Y>G4LXRA+D2BB$&{Ia)cfU*d&hc_RUsD;wJ(C z?m~i;Jt)!dk4VCz1qIQ0>VyvP<`uugZ2f*5g)MvA3@C~gTg%I;Lk5V*LQIXz`<9vSU`@A7 zKncfDcEyc=euUj~1#xOn#3FK^zYjS1`*ZGp8{eR_Q;#$Y-@m`SEg(*Np8}Y=uNt4h zM`e8Eg&ku^zvS(n;a6?bk|LYD&tMdhW-7b3RQKej>=vAAbM0;d6v>FF;`Brg^;eP! zM%9}J2-p+T>lUA+D`VrW<6 zGdAco(J`FClAxM-2_|g%ac;H{M*EQ1?1j);kismWq4CE!N2IE5dYEYP{iZ=X4{H=- zmEE9=Y!n=>*7r}x>HmJU?GjlW0r|RvN1mSANsHCnY?mMIDut}Tn7?+q+~JYoHfBsd zLsar}Ibd&dhkIrYg0q~CN=dVkD|{&ESxF{xPU(H{e3;@<>R15?GA4rLoPwPEA%U7~ zy&XDL(`EKX=ZA!708Xn0_kbP2UQskF-lKlPf2ZooZKwQe_#G-Q(8rQS(3uNE=O(By zI&NR*b+{46wg-+BvFS+4a5S$n%{(hO#OLX>IjPcgCVa1f_8&lXEPpJ1^WBs7t!eV0 zE|Ecm&SEH70S8NJVBVHt=#CbB`J7*}6dd*kFxvWl-81&x;(sYP1Nc6SntFWogq1~e z%$~=$fCBqWVR`5Fle#mMp`dJN#aES zn(o{AaQCNrh>eOh{uJ2?4;BLIb0N)Wv@M}UbDdL94gxVL2e#Kc2=ESWWOoj7WE_$2 zc$ea?vzvYPv%P*bDUWAU(HEcBEm|mIAe;903vtS%edJ)n?nbTY4MDpXnh}f6>ybSB zvL6(OJ^9pGVmK>GzBZWo&MM*Pv%fF-k3Zl4k93s3 zu%C-#$9eoGRO!&7oE`B?DDNfS>xN$Nk9U62QrA#DEWWDlm2j_k=k}9;grfTf)EwGZ z_>BeUkrRGOQ@`2}8@n~m4z)6_+KWkS29l?^B%Z1vj~-WNs#xlbL&=}C{&Tr!APXeN!hHg$jOqFAmQ zP2?8B+v_i>{SS|2ce|4Q#m@y&pwPMi28FZ}E>4I5WfK-d;p^)JnSI1?DV3TetGdxq zBKD{SqNYF%knS&P_-JzDLrj;Hk;l;v9(7!(f7dmHXbS_Zg2VkW1x+1a!ePP%{rRF?(1 z8PVHkAhWM}L~_VUyC~!K7c+5`gH!OOtgK|zAT49%t9V5JvSQ9qD!cKaXz5mYDABSq zTg$?d=^D|hkQhV}XdD&Db|_LUF^I4=!VWXaJ4JkgL;!+qiwnw=DoC>IBt7tsu6Sh} ziU*0Sy1B9a*Rmh*Z3UNS zagiJ*sbRH}{cf!*)hr!$SRE+JS_E?AFayA*dsg)GCpz1Vk@nWZFEC85s_vN|THJ2j z;Vf*q8x&x6%GMz5A(fpFlK-nTg4EvHNY3J4pFS$#H{$D(oPo5giV~fT@0za*v*agh zZ#Ynp(zTs9=}}sKYr4_U-1(&nHg;$?{X8unCHMcJV*1tJ*-9Jedrjh zRI{a#P{=Zs3Y=a0JFc7aw~i917~!_XQVY%^0ieaB5B8Bw7q-Vyh^u`G$0m)2H!+<) z=DbDIYV%YCZ7L49VM3$Cm|z!KdyGJIuVDEeo~pTizr;*33|)J&o_y@yfh&a#|HnPS zi$J^`+>?bs3Kf~;&vGlQb@lh_Mt=2sV7UCw@(16yvA@V3}9B#2<^*zVp zL_MwiRQl=Eq(GXLYV zi5Z2P4YF^&K1E}6EHNDnTXMvChhI8rVPs3%!1kV@7AVG&td(>xd=NYnFT$`$oP z|Ec%J^>U zl#T!C9<7tT{iCy4j`f2HJj- z($;}h1otqnQ8FmhG}9IJ)b~W3WjKcg*4YKiJNmNyJ7e*Z4cV!?*5gxvM)PzN2%o3Q z*2W7A--_H3Q*lB2EM>R6+!;#3_6yd!xE@jv!>RBTOzgMRcTFn?LT`5%;%>zd3#_q{trCBiB$qKxa?iRO6U%OM}93b z&5iDGNJ+ZonAuLlvz~GyBVf&HqksBHITY7RxP$bCTvKGy!k^IT(N4mv`U|F4g2p*# z=bp6SzrG4oKtk{tE()9LZ$Ln_m!^OE%80FoR_1}iZ!6YGGPKHFkxI;vXbvtIS#oi{ z(QWra=l%l5+jLja5Eli&FmYnO{pK*+LQd<1;oj=zkraR8glQEW*tWGy=F9 zDd|fvD8B_{Ve}uios#E1HLv#kFDhxWTk}rp?Jk#P?2-v+ncEZ^U;{+jzO~uB!HbteJUO*CHC_Qf_4X1C(&5Xn@{)WNBLH=o`Evbi$^tdlm6Ik1I2 z(Dk^$)73c7-1BdE6WhbOSc;%-ENQcyOaNuCYw<02x8{#ciFNB9eWYRg0p=- z0t62$TnLc-BkDl>Upy(_)3lqa6NCqm{vS_o!4_AvE$w#W65QPz3GObzHMo1@uE8CG zyIUZ^-KB8?0UCD*9z1Aphs*uW-upMq`K&osjjFe{%%{eGa0pP!>7(7(n3gYSq#a9P zNBYL}=+L0hdH`tfpN=1ZS}^#gUewA1V7Dx-d9~vXW5N${e;=Vmz%KcLWc0p7PDS8Y z3Y~!yD@vZI?=}D9UmjYVk*LgeC6&%;qYs4TRdxqS`8CphQJ{a=HKDfvss%wGHn*)Zh5N+1%bFbz1em**UctF}PDSA6 zcb~PwMouU&RMpMpxq3zihTX^cw6vb} z{r6!HcC~fSYX|As8geo`i%Q9f|73o!Sjrb@2GD8<_+ zOTX~6$`g?V)QA^i!y8J%8v>ATlf8462_v_e?r4{g1V~I1y-g;mo=n3gyeY+`ek`p| z=H3a&kco*?P6gDAHR+U&pDooKOd~~6e`aC+O<-vk$cim{6r7ddOhKT7Di0OkVym4e zmDlZ1NaAZd+6`aa88}ji{p(){3-W~?OcgMSgxBP9C)I#1Vw;sz^GwRgJMRh?LR~K; z_6FKI7=w4uj5pdkH~BZm+oo`~;;&jGZzLs@U)Tfgjbkz7h7zDxX2V;Oxoqe+#Q){b zUbW`X;QS?i{&d+bfsNe-t5MuD+M71yF|L;2C_sa)d$9doo6VmR;ucj5sdd7v&-3WK zNt2+7I4ZY$cc|W+n_-uaaM@~iVFwq*9#8C=&b(ZC{qr3k^l`KFFag3EyGt9j<^V!? zssjY@YfWiO3*shi_*3#nB$7>yLj8$`^X1A(0rIsn^rqZI8HT+G+im1gLQ|gTLTHCb zxWUy7p|OLQi(X zhyCzvWoh&R*kYkDyl08zF65FbR(()V=zi!m{_W4*MbdC8!CsJhbEhkM^W7QY-qwk? z*ZFL#5um}K!obZKEocw&Zk>Va6p#kcL<0aE3|AjsUMA~$q1%@=z^R3p^6lN0 z_Gc7IhLh<1HfABT!U^nqZSd#3Ia7aHr|#a&%|xKphFB9bHe9T*Qi!;HPE;Tx7mcyB z8+>qiLObZK1I3iSfjKxt6FFsxg=c$FV!&wfV3FD-)6oTn=8IMBEE7B2hlWEF_lYox zRM9k;R6Gx;fc#83@02dts(r@WCnc4Qm_H%k3zcK5TQy}W!hT=iif6RvHteoM&!8>S z1#9de^&%RQ1mIJ$J#ce=O(NJOoq-u~>G%4zkH&{&yQX<{v?2XN4YV`iD~-ubp+kB0 zK6&0p{!+CF*h@ga%vqbZp87^qIMYM8+9=3^xZN$4Cx{i`rfFc+y7ObA&bN8>ZW7}k z7p!`=*ExnCUPv&|(0FUBp!(awz3w6Ui8s*yj*W)g{mT??NA@T27U<>*l` zlsOrlXp2AG^YZ8jW0xnnZ%v=}cbkfe(l-otaiChPnW&A(ydO>9H-%fH1pGV8INME2 zhz5I6>;wy0r$_JlHgEf_J_|mS_cDlw@9;}zM9F)kODeG9VVG~Ue(eFW>3`+wckwI| zzrLH!_ie4&`dl<|`S0sO0F8+PowxOfw-B>j=CUkPPp@##xVT2`op(aW_3O8~Cw(`+ zuitcFwo}W{k;+pyy$NqrgTTI zJf5N3Ie3^<1gOw$M*BY_Hym{`^_F@d_$98}rtr6_rJ-FJg{+%K;g4>*=KJhl86dpR z%4V~~sU+pUrMqgT<{Fg>T+KwcDnE+SP)b$5wK~d;IXRn%)(av~xta?^em`Y4g>@XF zRL;@mE|V6b4+bd2$xD4FInG+j7AR?o-aTd4^=nReVy3n@^i-15k|BCwF_BlD+>f-9Tt`Y=Hsw8C&<3185l&Qf*lXnMo%PVv82M|tfr zubS=DlX8f+W|lKh6psCBGdQbRo;)x`*m%*(mfZ9v_R5Z2rD0PGFh?L}l;}9pmb7E% zau$TsJ|k=J%d&T-J{6u6vwm=Dj|U~%IAK+Z7=Ov|62^t!-cbo6MLgZQ@55u?ML=27 z!YE%rif39Bnn%YHgXi5or*SUrbnsRkI1WX%YSs0xQSXr(brNCfaZfxN72GKvIDX1f zzCsGNNqH$5bSD>w(TrS*xCm7A{{gIK?obeCMNsl;>;I|7=aObfkgTHhcP^~h4KbWu zAw!76-0-&wnBB~wnfLRGJWeVn?~@&oQK*mk*?Tdwm3da}z=n^Wa{o)9s@FqIP7lymivq=u>{ zH10;W?EnByA@jD~rt!QcCV_8)4D0(cXqgqCf270~%v$t`6~E!FqTW6ja#oO-8t14N zqp4hXevskYa*$CBA4RrqW1u7i!ET zqMX{GlZ_1$LkHA|zS9NIP_Y^&S&L_ijx5lapaXy#( z4(R--`Xpt}RU!Y0oe&U_m%Z`h9PURc5(n=);mqCSOeCS`cR-)QYOy)YKjt7yDSzoc z=dUQ8a`%bEoK+2?gD&(Y>K)4Wb8ob4vk>v#fkXoChdmQQDuSy z5>g0e#^)}89~>06_bb!1>q$16gH8nzKzIQhXPsTLs4_B_25?l{J%Bk%0!lz|F1?4L zT#r9Y>U3h0&#@L!mw&HE1a;o;dj_<*#FQH#E6* z#l){(vKP%$R(K|QHioyw-S!GgAH%q|f*BtShO|IG06*jZyLgqa`VjZ)`Gtq_fLirD zK>y)@2Tjh;Qq1a>?#@VG_I!SJ5h4^jYbawS<}P$=lA#`1dQC(4b>qbb{AirX>mabU z0|WD~TEQfp>anMQgt8?1lAJ{Iw>-RLW}PkO-)JbUUzHsg3X|T&J5ph5ykn_nh+w7M zd-d6#-L7-J2W|yfSBclMjwPa-!)JvUwYFZO!Myf?2kNFus%~LcPk_+3CZRG6=4&AP zQsCmprI*uQ(7$Z+f@8g$kx$=qp4z~UoGMV4jm8m^Bgt$Ij$AE+<~T@9u9iG+;MS`i zhx@S%%Uapk!suWe6{u=*oee*j{zQLIhsE}A)mivO+kZTkO)>@#pbTLM8bgPYa1a=h z3ual}wd71Q3t;%+<~0{-&s|Xswowu)SJ_aX-&<%fi84Eu*_Pg+ojicW_RqAt6rc63 zd-iK^+BmJFE!n_s@LFqwi=}J%Oe6;OYsWJGe<@Wdgfl+okM12Y&1`>ZtT!C91Mr6i`C(#nqO@9X<9=ANvf|K?@ z^B88A*18S<-L%)-{N@$lzBaMS?BJYe1)wA(YaKe~>Zfn07%a)39&9hRJ*@N0;+^~$ z;eoJM|6CL`_$T(sZhx9VTpEt8QMLWs4`-13Wnp9dU;iU^ZSCznN8Qx124u`I!!pZh zEdmC~9?=sAL^ev>2&UX2yrPi-JaJVvIHGYoa8rkemC?ZpdB<#5v7e^9_Qd3Z$Ayli z06D?PW)@Sksq=I9f}&2ddP@N9AxVNLURqS~!65{KIEDeT$;82yWr_IyDIsmg2}~3F zyWFNaFdA`8XNfhSQR;P%df3cLB}EG&XvlL?$@Q>$88_?W5dK)gWKYXxc}^+WKUlxQ z?WTskHPDVlxU);Qnq*#hU@+@La2pwHn9f(0dN92fX`nx$1q|1e1fcx*(ZTT*q$T&R zW#=`%>Ypf1wzACMML|Cb(F!a#L~$@bi0%aqEz?R$`3`}*Go8CGiU+$9@Lk|*@5nK^ z*dE2=pwaQJJfio6*r~Ad#finvv{Cx>`}O#pQb&s@eFb`o#on(Dob9TjN?!;uZ0m{B zL;g_1XU#`zv;=T&c~ZNcbbO+Q^*{K<{!q`My(cI-IF5Zr2phwS^{DN%_Fb+U`_FCk zH>b@Kt$OoI?4W+9EBP$!Wr2xItb_irgVMn7+FsC zjDa%Zeh#urh+V@0;0;>}e-rT|p8^h-7toEY(vn+K6<8~LAZ~ASd$U6$MnVJhwExn= zkMU{p{+2KQTR$!}-iI|pPOL87wj=g+?3`VU$Y52JiUmg&3Bmx7W|1jQT{N+#MrzzK zi!lHCW#{V%tXYr-WI@#7!3B5pjc1#!B@ zAj&OMWns<8j3UC{PWZK5?37;o$&q*CqC+nP@1e>>B1R!1h8IXDs|eyhy)1xO{v$Qs04p*(nh7!6VU5cb8_a9-x zGM`n#ZynOfTEQ3I`^=iLgowBE@gRO?aks(GR923S56Dpl1gruN%+(&W(>@ZqCoPS@E&xW zKTo1|H?I4R`m#2*KgmF`GTa$7<~d70y~Ig>*yy1TXH_@5L_}*6GL4?3pn(4gAdNNq$pbkda|HDLbb5*8Jdf zC%wH*yfYj0%_sGkj2e^~5Is{A>~J2a6bq%ZBA_e|$h2p*LXC@_UY=bW0qN)>H%FlSKD}wUX|{D#so*L%z5)fWAnb z>b9PYS6uaxOCuFmx|_#aV~fUHk>zp@n5^)V2{6!8&%j-J-Omy_=CojNo;XNNpAP4P z*;C8tRdtZgKLGo45tVf`ftpE_HHjl+rH#tSR= zWOam_N$&|OjKA~yLS?d=ssY1u44rX94b}$v9T&5p%!vRf#(r^OEQ7yqs1g6>Zyf0lO*5?TG~FpS~xtH^o8)&l(&@cOO>Su8aM}uHNJ(K#i((y47ZlNnr<=ugyg238XxM?ccTXHW({S zAC>&b*vKhLTKZaT`-T`}i5-TkEZZ@M?83x~;YmTF>xWdkzW#|gTD$Y-B0D1;p9~1j z<50`hqQ2lZNs(vve_l%RMw(l91ZHRgrtqcjM1s!?hZ)D{1)>9baDO7%iE?Nv0F{;F zn2y9sk25>yV6zw6v3pbjCmlPMfRsRC%oX5eRa9cc39zG@CU-|yR!~L(H?8^v5TVWs zx?Ltm|GVsz8%)YDqg%~{B)a9bi&`6Vj~L7yK{6YRfncyyLtp+X+nn>IvQleC)pc;i zeq*75iG@7y6>YgH;RU;0+G?D~Qg(k7kIKwbXDtxGv*RK$0IFhp=z!kizJ zUs!wb*S2W%0QcrWGXlV@WzAf^DGxL}oU(n+V{ERrTs!tEA5Rkf=5nz8YBG8WOsc0t zcG0KV6W_Zlj9+_=IiUoSE*+?{b5Nx~`%BVjLm(gf&cBG@!a_H7$w@p{qFRCK${Jo-|)hIqW@= zaU>V2qGc;Bo`r(z#4J+Y>7gleKUzCO0`Vw&4$wK~aFQQCFnjKTl^lsXbRCPYXMxk_ zV2sJPp8(E?>DWYrRF4OqVhs~<*Y})uPYX2_?qvQzj%mrqu zVy3G=O^U=%mw>R1h67aks9%P>yI)JIYd)TWFurqYAMztosLPx?&Nlu( zSmP=&OUQ8hy-{L9WtlZM$H7r)=xv7@J*Qiptp(602l&@B@! zkPcl0-Axh#e+`vLDG~SE8A;G@jl%1sW>@6dPZ0BBkE~Kx7#&018JfRMa)!Zsvbci~ zvMD^hkhnkRG&KqOWD1bPHkrgV!5>x`myv3m#Jm6bLNKnFC|tFFvQlfwsyQ0VZPVS2 z%Fd18O6mX$JXX1$2gOj-|e` zivJiY-nFEe3(b$tY6yn0Ew``C=eSZ$qz|qd$Fg*pyxK`W$OcHMvS2xn+GDqmJq;#h zVb}jl6e3}@6Gr5$Z7je&>blZr8&A*K?q91xeZ1VrbrxNCWoHFob`sdvhw(2#TPr+9 zcQ8NZLKlj(6&r+I9Wc>DXi5TGSc{+=oQ@^?W@dY&7mw0Pti^qB7P$5NKX(9&{Zg`* zlyWed%2@;o=YQw;u5Uix@z)`1bCzQ-FJWZH;P2i01H>)0?mi%NP!9<{?D3xFp`Z%R zx9!QerOw=I9k=<8$5{C&JE4DsRl3c&QfJw-P#Q3w>vE5vk&ee^a)-+RkxObqp1wuDq8m(K)@lH7gUnVHLUQ9(+9-|-QFg^^-ie-{hVx!03ziBanIdN?qN&Q<=L zJgW0oqx`78u4I*=Q(QUh4`~**Az@rDbVFvw)w;hPqn`>#r`JAq7B@CXC|NWHxP4*> z9Z~QLF3M2nIC|9d!3juyNp8Z5)#43#rrZ|3j*+iyNZz~SVHsu^Pp>wu5&H{GHev(0U@$s?u>4> z{nF2U@nG$oxYeiitOGAnYPMsLDh_eD$EFD=QMwCnz(>%81(S0)olSU3;tWfR8b<4q z4SHH`%TyWkWj?`MKwyHsj$x`rmbqU1i^CzWb#L=3DZwm_(OL!yxk8_)g8xPC$D+bQp zTrYkP+pssfZ}VlnMz)6p2fceYp97D}7A{Ia;Qw?czWT2m6J{e)4rPueJN&kPJR7%3 z`snVu2FVz9_#m$CpNe;*T{S@P`*(^{;X0j-V!;^l;oTp>CP`#p^`DLS^2+sM=V0evf&nPSEx0=t`lwb|c*2_-Y8>@seQ%g6z%^{Iu1#<6!C{0M( z=mf1Pp6XoFV(g%)A6p;M(#~JF5d=u$&zzIdqqhY!R+Mb_v>*BS4hkk;EKf@G@{_8f zVyQPv?+|0hArt1U%RAqTRdWV?2QwLhW-%#COkl{vD8u6d3pEFyQU1y=!`_O9}s50x$S_=gFh0Ip6PUh{)Q3y%dhFj zx}JU6yXxO@fFMSOafXW#Y`A{4IhAVdry@iY2w`W#^O-T50mOVsz~Dd_Z1(8PVrV2w zr63+n2s#L+Vv~7|=F)p9EcC{DfpmArLW5tEdK7U6_2?WFD?G;0cyqXqC#SsxT9wDa zO11e1d+dMDrH;M?em-o%Fkbr{VEO(6Iy!fm;pDysh^$)oKC!hV20f=@7{B?w9VM;| zi(No(2gII>PVa)=+E#l7-vSV7PoH|u5m(sWE`xp>KW{i6e-XP66RYM;=)If@^nvC3 ze<-k9>v>ipJinT5-t)bic>fGqDc{omG=EIgaUePz5wb6-4ek{HP16EP4Q5N_Odg8H z0t`^jWAkQ8!)GU+FA6C&OV3?PesV8tabKi=IyJS5b74z;SwO3_bUNWDqG{^byTUF6 z$LA3n-P7`Ch%SWK*NjZi9=5`-l@qv8B_?+>Tk$K%w*E31`diGYNbI3b}EPjj?BxwZt*T z{}tdt(U|qpo3;Xy4zp=;#+?TMZD8E^3mC03kmB@4GLOr6Q5#zqlm4CxBlHyPs-@sl znX=a;p3~4rW<0I5w8cvM{{BpBf*mwU2yKuOlub}h@3?q}2Ulk7c5Ne!8(J_&K}(>X z@|S`8AMjB3e#ET!2(zAZf!^u%p?!P0SgGJkN)Dg>3Txn_FEede-q@^yI*Py$hq1Lm z_ay1Av>FaBIR*N3GfxPTNWpU|aA#Y*S?O9IK0TKzm6U}kjROg!#eR@xG$7P2KZd-A=Dxu2VvY0CC@@(W~=R5hoOi5q1Y11@1GRPFrw z>bD0#5`h{9yVnJQ4Msma|Dhff7hiZf^>Ssh9{hjii5H@l$lwyt@3uv1 zXDXs#4s3_|fb;BK(aLMZE6Ha=*d%UlxdK8Wfb9FKWqA?SPve_B`!Odsyx4%HT`50% z{hw}hO|3mJ#*{744I?`XVd9vWcj!XIB%ua^X0MOVeeP#q6w^~W(I{V%Fb7HfYeVe6 zc$y!(g7}PzZ%z6*hFSR+zlV1W}B<0bQCh z0@6Upq!(Huw_l>T{0{+h@y>oSdV(%`D(j-F2Ol(iCSQ<+bcToDjbKxG>b{?02r-QL zWe?-O9JgXNHU>70)Jz!%TD=~_V(AAo+jsT zqa0f?V3xHHHct7xraY&%Xfl5B8KUfx*Wd|*eyJJdPPYLD2DKT);OONJ?dZ;mFZU{3 z3^l9Hf{+WY>xfa=dnzUy^(7rX2LUIp(~sK)4J5)-spnErhZ@#Y%UEE~LMKB`Xs)GLuMNwDubX&Gd=U*7 zgnd|$kd{#2bBaO7Zl6&fu;cSn?vGqgCMt{v*%G*(NNZl*Q@+LGiR#4YiY(@u~{|J2?~az;}JT74>#R z(FQ4ZJA@Bx)yHvKT+ulakShA~gPJOtD!8v9VjRtd2Ae6tY_?J<%+!z))j_O z5|Ek5uHduu-1IeEz86om!U-O%d_vY-u;7C9ygsq80 z`A5X|y+D=|#!jm7HiGTBVWaB&e%z}<>Gb?%{mq2*N~7TMR{U4*O>XbTYgy3E=B)hd zgV=M}ZFFK#?5!*yUT)<-K5h&HcwGGX#OMn72Wkin56 z;%P$00rDBxsfY_x2pcfrd8_|W&Hz@NnPqKSZqXUa%8W+Ptd3dF3aZVX8@=EW+i3?$ z&Wr~rU0HXb$H|SSbYJdXSfM0?<$K629nf&;4jVbfiMgtOR)s5tvZgnnrSb~En(>a+ zi|s}+5Bok1}uP!s+&ap4uj8M8yc312bo{XzIuxqP(f!_ zc@=#?1WhzST!d?F3#W&e2U5j73%!YeN`RO<+0J2IHX5-`I1X)C+1C7Y_8QCI3EUa) z!K>e=835(>1o*;_mMq1jU*T?ks@hQd+y8yszlzC9?ZUU!tfBwrP@@dtcAKh=K^YEx zcp%2#B-opHCZ%T>4NVisRQn*``-@f_9}*oBt=4jH)0AZx>W8Z_I1bY)`fodZYO2A> zC<^gI10d0}aqyzfuwt-V+G%*XXtY8J7hBcbim<3eZfZ!*XIny|DZbZmGnN2BrGCMx z>)u*g90RBdm~P(y3Y&#yvC;GOAyLAj4I&n(Nq&8-m(B?36eBOg_yoes7*Os1w#Y z%8wav(s#=B|F`kz>Yh%^LR7T_v!LIrrW`z^GbegC6(s%kvitd^IUz9^*UZqO8h#K7 z^=hp58nxr}<$<_&hilWv%IlJ}@l@pLD)YkkpE8V#an4^MitQK>W$C{1nNUk!i3ddhU*ONMF@L?Em7;wQy| zmxa7*R#{3oV6sUhG^0q?{w)rAwpAVZgS%fF3}f+Vl9{YlRnj>x3!9gJP%l@wPg%+& za-V;0>1JDgPW40utMMz^Ka($W0j(;GplbLlLk@@85F8aBj%-b4ov})Po#9a9E=&!= z0!-W)a|LOiO|U6N9Qs>F6BB-O(btAg`}R}!lD@eoeV&8hdR_XdTn?@Xqe1V1VNCYO zwa=3!)l$1D9_v&4b4N;J@)BR+=eTBT{m3XGR96Kymqzu_vU2QjaULRga!!)N%i0B>}F&;0x-99^ee6bDCO~j&bO7Y(FAjF89tqUDR{YaO3 z^>SCxa^zq(vLNaf|3jqJS@TKu?H`3wpG08L^S%6&T`oJ%tQ7Tas@ToB(z%ErMWTQ1 z-R7Hm;oaS2;X%pRw>pKMj2senv-(m6y5WG!M0(Y(+$jnD)=CzF#ZT9iLm(#zhi&p z_k42G4#`r?Q$1U)sXPA0O5ZR_)e%?^0$^bW6OJ z1`G$zJd;5(@EhxES6=g%A~+sYQU7jy=jZsvbKjC2`>BuND-c=rgSSGkQ~L7yq_-`{ zm(d(jVcm51we`>A;(|S=+r~%$h)5G@z|umx(g(tJ^rj(|J8g|RUAqtf&&RZO?^6j_ z&&A#+BtsT-p~29)dWG033+@S1kzedOnN0XUYhD!#)L}&L`xN}=cYSOJ8_OLkIT5vk zw;+w6JfR^dLAx50JS+o1iZFietOCcFfO{okaw2_Vwp7fW_^EJv-#d=J}y9UCsliOu~YV??nrvUf)+d8JD#LW1qdHpU%;Y0 z9yqP!aeN{=2|IvI{yQT3&kr+WV?mf2TvO?P-%VIvzBy@19CJqRhExs#J9Ua zQbD2@LIDPW=;UyIQH?0JEL*mGN9A$je@L=U*!uR4`-5FRSn32GFO}WVvh5G_&1{Nr z2~vOdyS$I*61rwNeSZ>p(~FUX{xf0uEwj=wQW1QNFQjgb6%Q*E;f+H%OJznypzCeV z%bpQCnbLN*R$4I=r;`YiuO~&i{!N{^MwDE&eCKp`no{yl1pzQa3C+&X#^*$X=kZ+m zblYNB?OP*482^+1&1k3r$&N-Itj{+X zs8IoaqP%SVr?@gJz#$X%%Q1CR%^`hO5mp(MBDTG;xj?a{dcEN+UU>FT^6VAvyKh0t z6X}AW!HB%3p@{E-f=#A~Q}JJufdHWBfnhcIU;OvNP~*YoSt&EPCm2H5dXCB6?^V%h zY==#!PSzX(c4cSG#B{Q|J*szD(`qbP_JMp$!vZ5h2Z7fBt-qDp;LFNB7>0{Zmg_Ro z1nueF3ITg2rX>+AfnQhMcsxGB41jx=_j3>XsI9|hN|UkHAp!& zFUPlOS6663y6400R~%`T#xsn=fUd8Lmp!_);49_>?}Pld^r5OK4RYeS?Na+t(X@nD z@Gl0@dzmU8TPu1laFj)8J=#vg$E9}Wpi8^e0_mr5FMsRZ!4bP;?ssD9ABqPxcutf1 zpA>o`IeeS5ceK%OoQP$-KxVP4-p4!7P7Gt=C5*rSCugr@ItRe8ylgw$QxSA}#|L*7 z27j704E^4?{_Cka?s@x@Z#2}h zLfGXzgupugUVZdvRumfhy9?Cmzc%V&l8g@Cg73)XOY#7HS#}yBo$MsPBKVJVx5UST zDp|1W)2B4RPD@8|&+tn_1_-q>3n2^kZ0@i=ZU?vDpQ2$ycJ_5JtDEI5xl~y=^wBTQ z(0rR2;$IaoM==lde~+q}W97l@!Cmn%8Zif*zUtTBj^{9|9jKbCZx5lUr^b(%=YIdh zBq6l=)0?~ZP8RWB$<2RY3UX^V2(dOnm~)y9er%nbpN9#9M3J zTgvdGcp=qydylVqSV4S&GE^V>7m7icO9>!$VupSD#TM8=MMt7CSNh6UvkOqq#EB(wzya4` z;NbFHv%yzpksj(il&3>edBcN5PhYsksBs~?bCgt1nZ0kTk2wI6lsCFRCdK9jFK6c( z0GcYUH%+@Kf21868JOO;r{1FB=NXC@`<%}-GQeE>|HH%tc>4heSG?ofPi_Fi8_0B7 z6m>+o7lNgc0luI|`>lrBIsubYwcH8BXXyuI9P`=|5#0n|)-ej(n*Et0F)e$GS7vO` zc9;PhwT&B>V6qa<6P5+S*nATOAfaRs!`JDY0`Qfi@1@#U1W2c}JV_uf`|*LdMw*PQ z7NgJ=CD=M(6K`z4XqY1QAiIwf>)E(qhZ;z~V0Qf2MOa<+7E3UCqHVKA>tVm^#Z7?% z#D$StsecqoE8bdBwz3?LK^XnE*;uLfvq2;!VD%r$72?NRfpMP?C2;_pZHc@_-T7K| z`kJ?$6CBg15wA)(~N}o=jugy?8)xKM9yYvQ%2gsUFs&QZzAfC|@i15?&$Gv+DU-Qf4XEZ^VffriybO|_;?IQI{r{eUL>8Mj3I&d zVv7bLT=hMtk8DaPMnfnyFqS?3JyqgYxS3Bx%#z^ec2~iKgNk3uS9h@;gY3mVyCWFu z>aqA|i-%!8^zLk9&lCZd_HYvq9%1uEb}FJ~2YoKWpOHWk4HGl1hK{mJJzKdWwgP)_ z&wL1>xTzwf1RnvJ-b;Z8VdybQ#j2{o^qBZuKDB|`s`5kF?r3!xk-z7Ztl+o(m4Kt1 zFOB|q$zv@Wl4_r({Q^8sgKg37w3(}FC=>@1u)XAy-NylPU7G?Vp&v7#nbpA^gAQ6p z;b5KoH)u}DpyKdwe@iHB-NjwUL1eL?En?qaLbEbv2PtKfdV68zVBxEDU$}p}bJJxV zWN~q%l9Ox~rN8DrFBpBeGct>>HXM!$z2*T~``ZVz4W~X8*-~*5$YyXQld|dxXBDD+ z07UlZ8C_FU5*c$&Kf)Afa4^=-^km+CRQyWR=9*GOi_iA6!_WcP*d-ip?J z@LuUBpI!#n*BxoM<`U#+q+MghW2`XN8O7E}vs0{7 zeHc3L>$fDNv2~mQXn>phiyeRs-UElOraRs`C4A!vF}fgR(|adcbU7{&$m?$S2MAuX zxLkVGIu@S;Z8YC)yr@4deTPOSJ{v66jXNs0;sBcP7T5kCZb1yvtpc-XG7OzRMQJB0 z>ir_5-F9_8W|*78H=~SD+E`g4n-rU-M6iABw^U*&(wQ8@Jq5lnT{`xu&(|(AY5G^v z0CZG0)TNho820KWjewc2u?%godtS$r@3kk;kY(;kvgH_=4mM0|0`)EXRKpOO{h5DU z0xcp8?Wrn=1!JYhr}T0lApw>{>83@`83t`3{MuZl!F7KY7mahRM|0n!ejgC{Sq0>@ z2j^?z=r)r278E5+@0j0a^04cCQhBVqCdYhw`KBbU^A*P{UK#~88p9(liSIPr@z+?h zyfF&x+!`BAjR5KUf{^Ce!Zw8VFDLjuB#kWn>{h`3@|*GD)?aRXa4xE>OV&P`L(g(+ z6^k?IY30BX82&9p)ycfdMsC}M@AmgME@*CRExXN>cj{NL1q0(O2En~-ef)E@x*vvt zCvM3<@%t>#=B*nu(Ny zF^lb((h4VSpKTsD%Q1E+4=?Xyx#+?y0+R*tqI1qVEc%SRC1;V;a7 z@@s1gzB(LQnP_M&K=#ZX`T== zw40ackEfR^UzRb#>IvM@~X!zj(ZkMDmk34GF`sDj{)CQM#6HQoR5U$4awZ z9`^lOfw%b1haSI9_+WcIMkf)+#0DSZJRmVFZ$D0<>|zFT)uEY>Wb8*p{x_)3Vo5LV z80ojqsHqxPoV(s$P7Mx0Ug!3#aptDQc34nk$miej`+E1DV+-#<*o8$bc`_bz?M(Oe z`=dK8*YVK)zwr^vMIB}G1tuLS2=5pTE%^bLzO_+(R}wDMqF;nwPjb8jcuJu$rKZQP zuee*{L*F`R1~c7QEv&I&6{_huO5>VHKkw?vm9=A}A(%N~3pM^zaX{GmlVkCmB{b+X z*fHo0P(-fY%VREe_y3FG z)d2+@fbMIp58K4S<%Xp%Hbwy{Nns2%sICw-X;{SfZruy)Z@~G4V58U{8N3&_Xq?6v zii?!6&;{uzy2I%u*AEJ6Gw{m%H}Rbmf1zW7YV|2_LA^2kTtwIk0kqS942K)Y3kK^e zOe!tzs#loJ){_rAr~w1xgvn=Fd)R7-=@91ZF8NBcN|1 zaF?9q#=&XshhK*M;&H)?KFcm0O2eQp4GXdwo1`YK>^J3Z+BfW~+*Z zR3}MUhDNZQ$tK04{pro{R2yxA*Ia6N{xLo^A+71>Fw2dDrN>S^VNJ^9Uq5fzw~eAS zrqF*XWS($SAdgT-{Hd$eK*_`~>Fc>^XpfQp66|GU)3$TA z{fhIiDgVSC`NfLGh^WBVsm4}Qm#kJc{|{+apMoZ)ls@8B5%!1oiE@vS4?WG8Aaw`d z>-yl+q^y#P0&<}OF$bj7a->Bx5Eu3JhWsA{`-9=LXsKY@Y`e@EfwH+1JI~&&tjs`|tP5W1v)1=7IiRO^Ey02M~8G3UD-lJ)N zZ^iuC1wg%X{|+7;x~OqpcO!3C&_&>v=}RVD2tuC?u8X?@tBtMsCj2w!@kDyAn`%Hk zs60=+{QPusNekpC!qb9M&TLw$93!>bYu!Ta`gKY7P7JtO#Y2r#&wl%XVmlXK==MWI zQnF;h49TeZ>OTvvJi?VswEvo^1F+(P(sLF_F}s}-S)x~^W(Uphe#HG$CWNn7HcHFz zh>l_mFf&?_sHx9%fzXBI`>5lr|CNLna?qK>h>|}xZ*MN5-368rVX_A%K#xFN~UpeDtYCYRvIIZWiwMqyT?K=+-W7hk+=d@h9k+GxmlKLt=M zd?y-+7k8Kg0|6C$!htnp3)mEBx!)vsNYmmaLPLI_~8&6e>V#I1gN+6#H`PDl%IsKkGZX8)%N0j@2R{7Tv)~ssS$J zZQLsPGMI0^1i`?UWpS!aLa&@<+y1y8HK@l~YR3^EC{tbL!$pqx1s*X`xPH@5Wt6oP z?c!U!S)!qpWdy!P879NQMdC`^Mr>L`i+rsnL30hdGHYoh#~?gXdZ8}qY|a!D&<)bQX?UTJ6Dn$x(D0E z-S96Pu>G3ddQ`uk+|E^A_LM7nbiPn2!Shq}bE?w-sWHr>Io2GRuh@2@MnQ(V<{s9W zp{Eyy=0pPn8s4DulQpm2&Vwa_G+Jo0711QnSS>AoGYwfIY{Z6X+_+<`a zIKg$8k}G;G6{kY(W8aS2$0cUKh0xhB)y=qwokg@NsP@p+(Xc3NM7%lr?Jvh$6KMTN z?INeZh+HBDqgVKulD0G+SAnbmErz+ikxi28n_jq78BDTE) z6Ai6On-Ldl*#k;l5%=s-*Htoa?z^DueJxDAkv_7ozE6_s9I9*xKh)`T{yZEl3bp@K zc8cV$X9$Q13)wqiRXxZG^>%q#7r$0p>fn?;`451+eNpAm2`tiKshXAII)7A(@{Maf zVcuQ?lfmu3&(60IrxPh$R_p7lSe@|bOF$P4`|tmCts&dsmNqv4f=2-5D$)LJzy6ed z#6sPEPXAdGnoh5UWCsY8bmO+wS1XC(8d-SK;iV@p_+y$i5V8tnFPh%Q`Yjl=y8jS8 z@$#RyhdHILu&ZjLb7s(zopo)=~In%60e65&lMO;Ji45nGCKpufGeL1LtWfC6jx|^ z$^_Toft&JmirQys6{&U|^>R9=#zP3Acd}N*+qW>Swf|dA>Gste`@S?j&ic!4^Zp75 z`NIRT%sfc{+z<$3+n+|DH*u#z{ceH^)>Mu8!vZ?-dfjw2nBZXmhc>}!a3W#~m1aq~ zOr#1|&rv>pb6!v7#VI#3XU2aR#WcQ|@D;{|V~q;=9KyEl&~HpwCbH!Emlc#i6A7c8 zq3amN`x_Eq-Mq#10KJHC6Ilh(2n$G_N8m$4Mt`6ZDLf@CFYM#>*H)Z#)$Y-UscRrX z?HxQ{R}74ImM7o)0v8NQ`pyfo4T8Jh51Pk;`%9gf$7hYa`DKX@QK{eAHjyeY;U5Ku z*J$wj3xbgbU1a8|Iobe=aA<404JkMl65E+7F+2#rZRJ{Z9wG*f>Gvg6*=5}b;3kM7 zN?op+&Z&az{=bFW@!Er+Ua~HrO-H^N6SVI!(ly_`)}-X;2d=8ym@R#mH1SQ`1BmKE z$hE3Br#&&<2{=4DS6$c+=fm6aURd1-GY0j-t_DH*89TFUrvoe`pw0`|FzJ#xILI4> zU?JuWW~AgNc=AP>Sz+BG>E_My_UAS4hYf5|DH}XCk40yh5`I7=#63tIp0hX{0~dvs zTFo6Mj*mgw=38V1e|dw9Z(h^g%}65&2|Y!AkkX-~r|Xaq0YbhDSB2_Iu%eN4LnF(h zLhnWVsd3Yc3%CXo6OhdM^KoBcUzMCv$3S{b$o_)v{7xIuC~FX+k5uGX+61%v`PC6E zOrkn7+J6zphkj%}gWF>N@RuW&mguj)1arMn%hn=ox$oqdmik@#0a&8Rv|y|tm0P*( zV&>lLYrSOqf5rHX_It2%-{yvTX=6V#8)373{eMsud&qDL-v`Ks@S%cTj`Gb4E0 z{`sB%`R0-M((URB^{l;Rd5$ik5CD)(&7M9fR$rcxyGG{GgS`!L6=fCs^Q}awU4sx< zpD%hLQoFe>&z|&`j9-(i>KFvBHz&KoJv!84E8un! zhF>VDk)Ib0fK53J>bnZ|Pb8;7u=sguzD6?v=VZ@jw)uau{cd{-LKHtsF!+HRD+Ls-QM`6zSH)#@$R?{8c^~0O9 zK;GcPBwLAVpI8b2Mm2Pd3(LZ5{EBtVp6%r^Uhl(ubAZSf{1b+URXiM-6Curen0_V) z8){{f*0%h~vOc11nFl?p2r=$l(y+#`E7GySjtLTnN zsWy|yffW-rQ#x#(vfn@V+wm-Pbg862?4Ff_Zhs!s$W%>uOqC6~yjOB;jKy7pPKJwh zM;{YJbiuwy-L7c%c1#)Tlh*7jS7O^SMHPeggNVxo0&2_<+_#M^X^rp>57u}=0pHIY znS*5aq4+!tV}>2d&s)y#7cKNGzKh z6a`v!4J-P_vm?(Y>Qa~cJz4>2B+={rRfqce27D7V3t1iqTGtnZI~Zh>O{J~47_)Ur zmO~9bL{4zdr%;Sq(GSA2<>phyRXM&AaNDD4n9Dk&Pmmk3Nwg7DD8LEpu@NGyscom% zhL}iy&iiK*rfP5RF+1EVO=-TC^!DE}zi3f6OQm(t*HUlMV>R)$ew)hNgbj19=2P2L z)ZK77CryX{8Ouks1-+cP`1LtP@K5^jPKAt}W3OEC7B;(fO4ZXy7MrLUnzzirk zrmJCd_Us`SW$6ZE=2-N&hqQp};mS;`x_|G9h7DS4P`IC5<-44 z;obIrBg%`Uu!~K->|EaZQLvqzOus?DYcoq8=f1r=MfOXt=e(dzjn73GYewk=#7wM0 zmvZHT7dyemcj%LEpFTZ>he#90Q^Q=dtcTQX62lwE!JYcKpWYb`28a?`rkb03gtmUf*B_`)>fu*n7k;3tmmHjoLYi$GKTM=~8KTQ8 zFeh=-n=#tnA?m2r-cC|&4tJjx^;`eTAE}5a*3v*i#+^5TXi_l-apuy{cWfp$d59eA zl~AgG&iFdyDm54gdrqrZP(fhk!VX$TZq{&X3V?6wlnx@*rgCekY~(Mr0{u7NdRc2A zNGILV(Z{u}c=veYz)x5#IY$KHRR>fxjvQpX)R~I(P>?t@0xpGtGJg9WLW56bcrh@+ z6sJ|>5S<0l|MZ3axG|0t9eNHBB3{{0%ZT7Y7U5X20+Fm)d+5 zFr<9=5Z&MRFcl@gOQzN&n<9sZpI_B{n$b0rZ>{&IdAuBJ;u%QYYeK1;Hrl~_hZ6lK zfdH;=p?&05W$R3fNuR>^5N<2k*=C}7*WsWKzITuHk~9eI7wlJQ2m7WMv(Dn%Y}M#r zVKuJbhL7e9dz5LJ#q=AG|CG;6i32Z*D#o7;50x49n>0hyV^-FeG2d*T{oc~lgvg^_ zbJo9Rt#FI7?PhKM4&P*44uFUJYtT+S20|Y@YFXvK5f9bpFz4%kn{cUN9!?i-P-S7t z8tC{}wgg*FVyz$KjliWgo_ym>`s5=!z!+HG!2C17Wh$z>jdb_I#wDLmRTspGf(`io zjf*C$?{xSI`gY_gn1(qfi9H{I_sbUi z-?SRoExOMMJY(R#d~KT$7RHXXP~309{lhpk6TNb_+b2o7Dvt&%(+D}xmJfS4uS8nH zqTkDeV5wT2hpsRkSu4M8R-`3zFtzea(9hrGS^D46rk4`OKO#oD&$b48cb~n(^v)f7 zJtNojlpj?&tpORH7xx%YVa17W?@l}6WMpMIz;<#hWURB_0_Bn>&VmaU-Kp`GMw=)b z3@OPjypfUfePqwN#pa7W9@9is2_Tet^3v+l{RfYuT3C;LEMGMEYn1P&JnfZgf@)2c zurx8-EJGD4RNmp=Nvl~(6;YFT*KG^rn2?Sx=sC)UmQ0Rb{8jn8?Cps=UC4Joetq|S zA%g^s8<6+@}5o!^8T$$u^7hf=p= zjbras^s8l&DWpq6%D2Th`y!E909&ekrG?sj^p3$doUh*lYrW{2%d8(>Xk$SQ^37&Q zvsn9N4NL+SgHde6n9D?2&Ug=Yz8N6FpfzJPrUkyLBiA$-9IOkN=+(K+4BN7LPo*>2 z1T*qX+kq+y>ZF6^SvG{}-bR;rK~e*GMCocDsx>5a8dFUXfm8max-HzL22BD27d10- zoq>dq83xk0BI`D z^aIT_J!`K<6Q8IjKy{U7yWEJT(c;iX~Tr4z+v=_3&R{ zkpJuoAT?*-yibCl*`e9m2aEmetpb26o3Sa2>ie?8Lfw3<92 zq17B$xMBQfq^F)PkQBtYNPhgFh|vg0Z#Xm!tT* z5i%iIW5k#}beLnJuyp#l(+;>zrdH$m(&=6#D#8IIAhJKTzkfiSdxTw;F@18S{AI2O zgaXi$a~o*UZfqH*f^H2bzZaYDkFzb=UU~h~`mShP#i+m`SgT;-61{Xm6%odp{pw!T zse)<}nXjW=_u_Hw^C?H=8?GZV>jXBrv89toz4GE@2l}c8f|rA=d4^=sCjUU47|Mft(oV^QOA_p$#IEb*%3W8wg`X)x)Za|}u#WWL$qeW}b4 z06J>jT24CcU-@yh6pvFa|J>O1Q=Tq{cx0h5{8J|*@MCfpf6O6@IH%r1xOW7K(3Lxj zg{Mdjzyu;f_G+4aHIix_-J*Z~O$#tC{=>$H1vaKx32B&7t0-wcco(?egjsGmV?rV} zt!aMnTBjRP@?56YhK3in{b5xuomX6Gjb2Y=hf|4#vkLThDeJW{v`=^J=+~?-QkaLW zfLZNl%!lrfXU?LTHC(RP&MdT-zwXYjH2^5Gc6wX}I;;4&w; zC_A~~Q_FSa`Dz-&*X{UPJ3?GVgGlf)%#<^axs;^|M@ULt!8C(MT-C4@m=vdkqJSG4 zzVIBnHvN-+cugDLPGF@ABUFto1)TzAOFt1XZx-bp>&DF`0#tKeyfeQl%19H2+^G@s zE=B)llD)#L&7wFaK}|q+f8F-vukTi(OdDO?mpgs0K}S3B=F2NXk>zbH6jFrWa^jjJ z+Sps9^K*EN^UJ@b35>;M5oi}AKIV)Bth)jb_kOQm`9;Tv`WF?!tI#&fR%yy+iGNeU zU1HMH(7Sacs|-}0mcoP8re`;Q(VCnG(C$;2yu11}NVQ+s>i76U3PqfRrpiMX46K+H zIubGxMUf0q-ob}nWprro>BDXC*AJ1@RY0`ER0(Hs@N{ldic<{Fu3oL_t9TY3~wn;T97no&=!dFC+{So~$kLQbP zr``MDdXuff#(xuHoNptUN!EA=O!jul9l|;wtFb9V>^^Ql3NqimD9`Bvwy8+qvr=>d z8Rsw&4m-(TwPlGSLtMGy3;H~t3@C4bt#BDKL~I{wzMW<%Ec?zu(o%yAl2T4pNu7QH zLF@|EJ7a!3nT-Z|CP4J@X!y3M5$0^ScE)wYU~neEdY@!8dz*=wNEO__Pfyj`E8q*Y zU&__+tM2VCbs{E?wk%we5Pa6eThF^BHV+6_TzOf*+AsA5_r(0ly?-6by>CS%a(tuX zN3SxfZj||mtf5^592}{Ia|Uz+OujL0Oq@iWyiKPm(D*O4Ha_n9E*cEqpVp%y7$hPr zfC)6P*|XD|iPC=>Op1<%|JqNP@?z#}9E|=4<>3JX+pfWUxBsD7!_`2-E!~-Fm}?jC zdD6%pE&op-s``?wC|3XSC`v$646s!vOXlqR+s$hHoSL^O;rEX#)^5T`cR+NF6UQI% zWC_v=6aWXD#NsRe=L3nwY#-cvsR=|1!Q#KJ2W>%QC2_$_5oud_W<^7pBmk+1^=|a; zu&ma}GKndL8*>X3#9A%%4T)W4*-uUL@JeJ#&UBiX+k6#@VC=7=x~0X}dIUG0%aQ>XHE&On&pbmQPspbxK=_DY%hZyWDJ6FHWRSTK7oz%(ao_l)RXK>exLPU*Pg zVr05{OOL9O#q||yj@p_GfrCAFT6pJ@X!*80y<5L}8S5O0bO33qCxgrdGAEn}PX7yjva4A$MshA+SGrdq zZJ6H(7erZ>qZ}E{658sr*E6P^X|NG=1C^u$+nGe}G7u5&{Zs~O7G;cn@YohatXmY5 z$|Bi+^$dt;t!OrXdzNx9_9}9{T2acGTFVu!@}A@RvpNV}(5(?LYF;5J&gpJu z5tgt1+UA+%RI2&LsGNDbi9p?_xHGF?#q$sXOEoA53~gG-*>Y5udBaz@&}RO?x;Dy; zU;WiUwL)Eo6HHNN7h2Z(lyj^1YP5|Pg7wZZwZ6Fy343E!R4uhl^`zYFfK;F|;l+QB z%Tz(&LO^vC4e3Q!far#!fmE{|${H5AB^!4)R!~S|(C+t=2$%zVlg9&&r#(ec*&-lI zkOHU}ee)bzr!bRkdhadX+0#NSu`Kk!O(4fVQ)r_Y#6P)s!~lP4J?b3dE`k1u1jE|f zwtTPQsYzBduWbIPSi{FVzwwS$q^+^m5yb@V#=MV%iatcfHCZoR*v()_xGAz zhJwWM5)=A}ree%UgO?17)E&#-61`@iSNV*#XH)AGk}uirWi5FMkY*vf!Z4kX7@dX| z>AA7Q3zVVP#;(u2fv-UY)%{bGzY!SddxCd9hV^vWEDGJoJ-R$}VI~!nzBFawK~7vk!FQ(CWTUJ52J^4&=ai>4CACj7-yz#I2v`;acm(#%q(;@uB!OstVR(M zVi=Thm7z(|Yr->E^cTX30mGepu+t13KJe-|?m?aF=nB8oNa#^+zKMHeKRw4;*rjEj z#fAVierM3=NrHtchQ(GZj|5UV*%?4yO7%2r{>yS=V(eixZJ<`F!;XepYR+Zcwd$L% zu)xfApc=m!Pao9afDnF`_Qv)!8QdDVSppvMgMGHgC8`cN2zPuu&{V9~sKi~arz)^A z|I>p|Iq z=m-PD$Vo#|WD|nUtwD$1&g4%eQ!Zw5x6b>-meD6^QSPjZ&0hXbSdf>=jg+_^SVdXc zYsCNC^ZPU~e?rDVq<{{))P?bX!&XXe=$Xg4ZjtKlH46=ppJMFFo{%xUj?5L9&0F-~ zG)j(+bcb%9%20EzTlEXA}1Zn4>VupJm-X$ z^K~zlLy4aWj86uuQ`yl3PU6g-v~%-pQ9EU(__b9%@J8R{@qh%n9C3mrpmwuuz~KHV z9JDL{ur5`^#J`w;LyT2WtCE{G#gbn4(Pp~kWS+tB2ybFIz4?j^5_G+epqS7Y{L8O)b;NA&v}LxP z(RfA8O-$SW{{;%U2Zwv=qlbz>9)A9s_RqX|vWA^w2=CU-i|4q-b9gA(yhI z0y>pIk)#apC%|Y7 z$|!s%UL}U+$i(Zjj9$X<@6Tco1@@|ZF*?`}FF4Z<>_D`JM&3fWPr8SenLzwG#IhU=qH&6L#(*%eLo;( z_+s}!i+0b`)3x8pX;X6em~t~{#`a|nT*gE%Mdq zbWUGMkMwo9+yRx zEbv?#=Fri?kz++8O%-h~sMh6jofjl&XJ7z!d21jiePS8(`0v8+Zbgy>`0bjRzO82B z8sB<3^25R?GCJyNV=kBf-ayw)++E_nz5!hR7;?xiQ*p=)YhQ8Z@l5$}SW3GLVpBqZ zmyM#=`Xqr~=86du(qQ@vaS8yGJ=%qT^hep>J(1Xb!;eh+!S^cH{@%eRpt~}zf=7z?)%$FA9^`snpJp>97BK98z`E(kuKv! zJhqb^w&@9Ea2(AB+qDIYsYfLsY@ZS`(^`cuq)%SJ5)zE_)$uvCV^98z1QRqo%*YJm z7EKqWpA*QFA|w}X9KWc_KMoJ~p5hrI=_$Hlc8_g4J{9!-C@r6C6pte>s@ zM)cr<_R5IR`8Rw3z2dWDYfy5B?LQd5KYIeYGJX$4CHq8cd0qkx@|x#PQnJhSfJP zLg~A3v4pQX3M%nd8xq%fHO89)7Xs14T)AYg?sEs*4p;@mYTherOFce8$SLH{-yyOQ z7ikU1t`V{hL1;@Xr9rjRIY+cJ?}YR~dRQ8aR<}WiV#sH%u(Q$Xld(AQvPXt@)G&o4 zHpx2|?D=OhGrFIEzf95Cr9#2Vfz$Y`%f6LT%)DXE)#P^hm0QLiDPAB^U+>G#R$!$1 z+QgzC@4ar$O=Byn#Sdw>acJkoNQ>~cm;^=Rje=#nOxea};z#RYKMbiio#B3Oa)U}b28p4kl2svSi;jn|I3nGM<%10!Kl?a%?a|MZOH-OG%r_;$p@$NC!ql4dSBp5 zj8(@1o7}eeGOVuf#JQ8pzXi<+oDM|dE8PK{z$ulg0@I^xVpf|O{Bd8Jc=-IO*qIfZ zipZ@X1iiIs|B`Vk9Z%QL^}2%*VQXfXHXnrk+87sv_x8XNS{t$5&+p>b@g$`sZYHqG z@RReo%)iD^hA`V}RwYvpyark5Xa;GIg#h4X`%K?u~>)vlKHnH@UQ zp-rAgZ;R{WPEMp8uzeuwUj|Gj8;PSPM{sln*V%l$_R8YZ1a8pM|ze-e&x4n%{z1*&krtiPP#wm5;H$<-j9*`~r&A zZEzSbXd7uSJL&Fv9!w(}_tw?NMDj)T6d0sU-YQ|qC#E4}ef&4I$_LYtRd9^=0wEup z#K;%jv%Es03a(7F=w(C}Qq3yV8wGxIflM`jtVqOMM(5V81O7FFDh;7R)EnUnMImXj zZ}KO^{uHF58%;*RUMX*(4>ORHE9c}%#fjh3{ClagTK7qE5X*$hPq7XvD2$>yyg(v zpY18jSJ86qEXeB@X8IYe6N&OaB~sVWre^BA5z`!Ug5*t-tyR;q*$|AW;*?F(@q(H&5%LLk(;8g?RkkoUf&);k?X@#kk`t}jdN(i#6NoF1auJNm7 zH#bD=+=Khew!tIChQqehy3CT)d!mqKcz&=B5g&X^<cS&uaKQb^xGd}cAlLTw=x?$J4ut5Xvm_v` zxf~M<(uA3rSjK}RLX#8o!WeB%s{V$XWCze0Zpfgui~@-=`D$wE=AMXc{clPCe5%@% z=I18|c=OyK*yhY8r}mECHFKzE{q?&*J-jq`raL!?4?fYJ>vPYNhS-O_utcw8;KW&B z)ryxS0mDychIUJjCI6t}La3NnxBj`gl24^rVRUbhY9!kO!5E01HN_z2j3WPtm|;{M zFfcqy@U&?2X91pg+;@3>e0&^tp>Eu)p|O=o+mxJI*=4v4C;H(ch)$`~X*$CDj9QpW z{IKexblypL>v#Q%xAqaOpW9ZRxUj0jPq;?-Vlle-3aBrCWgb|ow zikHwF9AbfOn)!E#NOZjKrsIuSjPl)L+Vc4c$Ia4Um`^5VQ)9dC=@9HLQZIb_1-IBxfQ}!qE6D(6Gx*iT@#W9Z#Bz`aUq#ziWB)|(-D8Zsw&RXx> zAfeEG=$UsM!8`Fjn7<{K8=a&dmq~!mzSkei{2Kqh3X!v=?S|V9!!&s195vWt0UuYm za@B}sD3M~Hu8GUHdmhP>MN!S&_=eWbA=z6#((AvyoSMy)K4PGSd!C5Fm<5+}yP=PI zQ|H82mMtxLNg62CV6W7qxG2S0L{3_DD@1Jp4c)_E3|~!i1qlyLJT6imh}I(gmEV;e zQ*3F%Rb!AL#x=DL%APbi8tIYFIz4OJiaDC0E|Cfjp!>!TlqPNNzu8c4*hw0-DC_o8 zmp99T80;@DYf3{5;w0TA07t$A0H@8ia>BvGP)J|`KuQfjyHFGmA2K;P<=uPSfal5% zV$l()GT25-jA{h-si-r60d~KNw0}&Nc>+nb*%9Kx4?~pd#xwu=pHjr_!&>^>Djn*Z!Nf);w%tsA2;?9& zdnAT^6_PJMzpTvsy`~1{&sZ;%< za%Rbrma>ryPfF7mY+qmFdP4BQUX1n!X_FZYz)=3aDtE-#&)%(q<}1feP)gPB(6emj zzxHgLWtAES?OM$?lr$~|Ay^o=g-ZSwPXkcWH4@SqlD2#F)K>8lEA>j%*fWE}t=n$6 z$k>yXO;6J-oIpCV|3m5$XR$Ii8G~yf=tVjWKZqXIEHk!Xa^pi0$e~61$D7N}Lb&-_ zQ8O#xpi9$`!(!;od4q;J+^^?Mxncp5>aw~&}In%M5&S>-OZ`#x3ffdCA>gkffJ z*@|3c9>U6u7#i&_zfP-BvelqK&t(z{Cc+p4FCy+20W=7!xitF-mY(H?;6f|rP+m?t z$}|c;c7m4KCk0Vgi+-v%wei_~X>{~J-=oSznIru-Y74q@<#ycB`aM_J@lSChE2?1p zWnEqo9=p<~_q4X#nU;#o@g8VI5XRv%!r*V15rdt0io0OshDEBQMwQt}ZfBeLI~4uV z_sOv&KGb|;hz!g+tPHLwKv= zG>x2Y3mHxQZ4@e6OPZ*82rPkxgti6xqD+7`Kn#v{> z`#*A?1`vA`InOJ&p8ci~*X zd~-PngeYVvwC1}1SB^cMmo}`AS`Z|m+S$l{FZZ(NWlU`M?Sps~m)J<&*3wKkpr%a^ zQ=NRa4BH3=p2VmN(;7iZW1?-^*3Yia4Pjf)){2AW2SODN(l48y*QOD58J8@FOiZW%K8pNL1UGz(YdJ(M#H| zDNuyqrW{(BaAeG`v?qGA4x>p9kzlL?GYKxUB)h}VU@plH)twm6!&Wk|vmbfrII}+c zy0KQ3z=r+2#Nf+*Mk2arkRAoMq9S&`!a33P1Pcw-^C*Zc;Ppy53(L=@d?RoS7E{i~ zWa4dI$f<$y>tK=g>_paAIJR=*BV?PPD>3PH(xa*%TEs&?;1Ez`7FMm;2^}KsDXvKe z-U!@v0K8Zn;zUYqNxY|4l2U+HOK>^I2vQiK&OJJkm~S|oVbr+Wi$-H4wo8Ibk;5^A zw9v)p)MhR7Tlr5r2(}wk(v*0I%Y`5knIgxm~=={Z`s*L!7z3k>g%TI ze3C75a9!}%PtOk5o#vpzYGOEbXlveuXi@X`x*%YX^4;A*Bu-< z)Vr`~Gz7+es}UP|4GGO^-SylxTL{eF7=AE=2~#&020GS$K*+w9y#r6vnxhkPT?;8n7L zfbxrbd>aWc_v26S^-cfuUd!S!|gK!Tk}OldQ-P9c9AYJ#)63Vn*Su=DyiW)F}&I=+bLniwY&5j{vK-k zi)I%37TM=FjN>BR&-;%Io7kmWN1XZmBxfIXA2l(7%nCi~M!N$9#UMYKElUbYi;9ma z(^II%DAnT+i3`Fu`kcku31p>dqONI3fy+e>Cdk3gm`6^u>y<7-{G+^(J-OMtI0@pn zgQHOO9a8@AYz<5Z#Odq8NSqg~0x#z?2NR-wU1TxQSFrM5P1-pzvSjR+DKK64I_LAF z-A{f^0HN zf?laJ#7&MU^j)=od~2|?`i?{{<;2utTsNYFNefa%2n?57(coaGF7>Z#Cpu^RCupyH z$rg<`^7ujk5_jEc!ZZsfNmKGkl2RH(3=4H9E~K_L?P9iB^oIc3UTZ2T6EC(zF2V-j z2g-$7ha)8AXpX7SDeY$UC02xj5x9};xH5F`Maevw6eCW}UdLbflMf5RxI-s$_dC{J zlKqXcITFe;cYJspTJUBXN{$hD=jw^JGVEB9Fg+N#SHHuinO(+AaUwg7fDyyVc*N+n zNqJLXSIo{7V5zkWSlL!WS^$zzl3uh8LBmayB0{0}><~yH#6jzIh3)ehT_RpW>r8AO zMpixRY>mCEVO*H25D?HhftW!`7x+Ws%F|_F7evt0I2RD!XyDLv-SXY1e;+LpkdLN4 zWUs@YEo^e_8m~(W;~MB}%A|K(cILS!-fl>Ma#ru6Pb^N``+J+d++(+U?uCIO3&>toAv9UM7^^3_?|UL$zMDsWVqWYAZ~>Rh z2fr?SWu9cyraoR->1+MYSob(YnXeys{Pqkt#*P!Or3_zf$KqdyyO~92rF{2aa3-Y*Oz59UPPIPP6g!}br=L#JK3Ab;CjAVW29AIR)EyD` z+x0^?W{S-}Y{2yl2h6NP1&t{V2N}1mx)HNjjD-TRL+Q}s;L0L=qA%SZ#?ad@I@nMI z1JG0yL1u_xJuO7NL}G~cLLL+8TeD6eVC;AOkRw;)Y&3eRti~fsPwDcpCdZQr+^7%d z(X|2PaNw_SA4%-8U2%Qo9 z_pFW(bDgnS7F$$aXTDcc)K0h6m{*msbb(1(a<* z@%O|3X#b8X{6sp%vynmp`Q9sefLd)c6*Sm7d9sADxYiRG2LyR1CPPDvZe5XV z9ZDXyB#}{Y>lelS=zgIa?by1*Iw+=B5xPU9!FTi;>-HQO32UO+OJx7>B?pR27H9v@ zJ}1*yl(BrQrEzI@hRxX8w0P+#H`j0*Zw^3us>`=xE1?3*R`Ol zHdkn3{By5AvzdcAeslrXOdC6am8_W`OZbCXK%|r~OAG@_&3*XopO}at6LJwfU zic}1&LX)5Xd5%VRh?>YtO}*%%keL!dTVr+BzTWR24zN(&*p=#aU`#$O$&&O;-#SV1 z5GNa4^mejB&~%np+RN;`+?%?Zt#dy4SJ$@nI(7T~e+k|kgqjEmm51J>>=R9-B{&_< z{&URMxT&WHEPl)>zC9Wv>={A(_K(C!J00DQddFK|_ZgImR&*bA!1D%G0Zzqwi&ZP8@c!vLsc)7<>rV2-ftyvX%!=^$IN zK{nF3$uU~jLx=h(XP09fTCSK8nF%5`KG~&$MqGE9N|A|sNr=n+E6D|K%B^szXrpTeHJX{PQo)0AQNDMV3_aP^s6 z#fxle?o$R@TEJ`kNA9(2@%FFhmye;Xj^{s2vNPkICxpS*0{%l6i~$b<-ETD1z*?s6 zz1Z#!-|c@QZFCwREuAT0BvvZ_gNn!D1P;A7zWW3e5U&%37JQX8uPH5RF{P$}tx(6p zqNewXwxzSNY^QL>vZ3fMvrGOyV&_zS{^+Llguuuk!%}E zZU>X?&;m{PgVD!&YdkiAh7_0cC1h_cJPII5bF*Cp*CZ`yBwQOBKWh@`>%dLW&bw4* zy+i7?KQoPK2Tx9v_xqXlT1zZ+c~ie390tu6rwFxNPgn-@SwkVgrd?Mg&w=nJyuMmW z8j`4M3Gu23z3wk94A7!=PT!rk=!MH1VKOx+tSuahJzI4kM|R}|^R@9wPAOQG(XCy^ z%A8|FV7Bh9WjyLNCosRb9$)qdCk=(753lfPm!2jK^_I^e@=9S#JSLy)a;=i*BF!hRc(N><)#N}PLY~{Sb{$B% z;D1%D7=%UNjdNPlO@sF+kTubo^Ik*IVkF&LU5}K1Uz*n=B=!oyH~*NzL(U3R3eiP& z0el%WNkc&qlVD-1PG-Lv>0`ZhA+f@X?O(g^-+A&m$wZ*Qr~iFV1Q`$=4kyLQP;l@F zo+DGOp7iWq-1wPUJ@V-;JJGVw@kDomxFm8nKL@w;$75^oOI(w4m29^`SNGAsRG&+> zfa-_uoT@4T+i#!dWVKpRT@Mo6MSEz<+k&22K4rv0OI` z>>_JG>0t)YnWRSW^vNq(%B+<_%(4PZ}|+V&SmeYLm4LF zJ{^V9}#xZW@ya4Mh5Pf>Bsn~3pDi$V^LE0lO+YJQ!WX=oHpj0 zFFTaNLmJI^>RGV|s<5(h@Uz&m<|!q;unGGMZ@VJ7fptM{X%Pr|lVdEafl{ePMj7g; zGO<2I1{At3D6g(yIMFIqqj$Il`a2|wpn;_A8^o=gH}~IyBFL}*w&R?aHsrN$20_F$ zpPMk>Crc_JLJepF`;xvLG{O`^QhVxME{I3!>o6@=)^%=s8z!|<$v3Vy+&@A_PR@0$ z9tnR8DZ#VIUCxNi9SctjXwK08`0UI4sjyA(T5|#KsD7|x>dm!dV&=QFhVQ&SkHZ#gQz(0 zpQ-D-pPLXoCVE)Sy`YL+sJthCiGQ66pj^Bpde9|!dixa7_xYwy?f#x9a!uEi3tFm= z4PpP<&E`P?Yk0#IP|?QuYgULf*5^x>3%Mvw(sb0%?_AbT+l zps#tlHvGt%cT;(0LW^DM-gy$Te&#urq1nSa`=x(#VE9h-;PMujM8~k(edDKPb?<~W zb;cV}8_=h9c66f9w5jKFO(`NZF7EKYZh+gZ>X-M4mm6sCc`6_N3uxV%i)z_(TMa4C z8LoJyx018Vo`$yyD=0?!ZsidGO(KdlZN)S|(jHBhFm612rygpR)2l|YqDiYP*@ZFp z(=!DK0czy?GX-DTvBG${rWg_RL`@%f%rZlPVNtP~dg^lVW}e=>FD1Nn3Q%H4@D?vn#MIlsDgWi4nU9gbpOh0##Tq> zgv(YQ=um}5i#**4P~SDso&YJ@dx4jr&P2nbP;Ok&X&9yiZxoM)Xzmoq>7PiUVMBk0 zz{rB>*(v7v)D`lx!jvG`OTU+yq?7C;1yF-Q%zLc!y)K^qU4co)2M2{T*=YQlemn!nE1LYi+efkn>@Mm*>9Z4k*!yDNd z3N<0n5Rk(q>UBbtcu2Bc>*ygKXSUDQcuay0DDA$x1tXaRPtO{;Qjzl55lLTPk23k#I$Rm96A7^yaW>wzNQ3!nlL!OxU6_%QrT z0G$wj4D@^$zK{J*NpJTZ`~80QNMgHP*>%k`v=ve7^u_ST@}sCrA9^0?FK#eI!u!dC z=ySPNXTfXG)`t%c80qgv?)?%%6#8u7^>t|uqv1pPN3ad*=AR{ECk#q*`_AWuZjBIR z_`raN4u3&T%-Nb-m18XXh{xzigjKD8J2Lu!)A;xN2F)TvahA~2VIk?X_oB=pgun>7 zh=l0cr^Wzz70wj=(~lAS;xpDwEN+5$bncil+mG3$^r??d!;Pnk^>%lGXIknDllGn1#LLws|L`ObPxq7F=#Pt!wD*sUj|0{+yW(!v)Tr%GfkAyc2pK3{SM1AMgvEhK z8xVxbNfZ~y_~J@~{V9HO9O=@oc@fp5!Crl#y0R|t8onnmunpfA8`LP{Gc5~jO1QE z-3@HZK#TMsdBdN1=bi`8uV;N0957b#A?qd)J@71m@suY+2dri03WNr%j~53_p5#MI ztgn6jNpLLC3tTZ^%V}ZqS-cKB^4ZK$W#>$cdqme^r^#-oB>R5ca!Ek{Syz98HE>ab z$h9OtbYdJe6GjpxIoJ64NIUha37gMJt2#yR{{fpoWWPn>I*Ztq_!4U$?XwfS+@E=G z($}2>7;rQ)+{>68>-d6{1PGJNnIJ^sLdWBDV7t+kC<|pv>}qtTw|^Fz8D?O3IEEE}88`c-EE0iCG%i<_ms}fDY_7iZJHI_l5ZDw!uNhw6yf6W-<+Bfx>6CzSahNv^ zKn;^KiFWp7dtfdmOaS5XnSk=OBIHKf@J;{jcmH^_DPUXxxM(iWu6!rJTu6^-c}9O4 z^h*c{?h&%|b$|KKmsh;vmEE=9`5oV`?aMzQXcEaxOwB|S@}@U^v;LEDiFw&0t|__Y zKT+Q9(cYv8v5>Z3^{Q8UUo2$$yY}s4tVYmUj8WQ@{>jM*WcZf7tb~||+1Q%D)#vW- z5!0|Y{mpNtv3#4Fw+TrSBJ+wp!IXJ@>sw6j(yox07h;-sDyQ;`yJYxdJR^JZQR0NP zxFdaaQ=+VauaiG4e+lYE$@S;Uv z2a3h0(HSplZW7t-=&gNc)Vzt>be?;E?77uT+Uak+mCMDXtSyi2b&;NKG&AstfQ zK15y9@Y2I)9I*^0XO-#^ZIBQn>4QAT`1`nT@MV!YL3*Bczm(U%{wwuwA!V<7-G5TP z=X?G^TrY%AG)8Q~Cq>$n>(|OF+=Oo|A}8?+k|Mr1U;gFq-)ncivV7Nf{{tmOLel>6 zH++3Ll~XyD!?O0=^DnwTQzL@E@r29BT|pWOU?;(XRx+9w)mhzyOwF`vMk}-Wi~yyH z77h;c6u%B8Y;2Mf%*C(ioSjSh?jXc7i?J@qIGK?vTe! zp`;g=_moy3hI7)v9p+#yWR5KLM%ZBTg*iX>17jW6oAN!+!IND+JyrJ9K-=R(I z?|!cdp%4*@yqHu<8}Hg{O8&R6`-=xP9SaR@{x-J{K9^t!&p&S=AZ7gW(h@@U#y9>h z{p?L|`exNUoyw`4%EOd24Z-O)n~`-_x>-#EYM6DWHYV>aaSgzASv)lIG$r=V8-qvy zph;PlJ}hcmV1im8Y6Po!9mseeeht*8NXD(2BpdHmz?fi+ibS22BC#d7)0`Qt^ry%Ukj=kf8zjjz zKxb+O1~Ymkb3z)(giNkQQcjx#%QK_V#LjONM43}OQ*FFL2=DE2nY`O1QkuOJ(yjI>evYgPDdt`ZD==)ty&!z z48r7H_`nbXPa-&&WB(>VzAaXZq`?{tPCAKG2#_DJI4mZPg^h=*op?+kEI7fTud#{A zR4yJ8-e+6vB__%y-_7a#!GaKd%$V`eLOc2(+S&ug)Q-KW&`VK77GLru|5dP7k>@}B zhu{5kLR*8vuVrlJvD~811Z0cWL(G}Pq>7!}VGf4!uo{`M4bduybG&FY#NS2Qxc!JF z>=ZEn?svWG;C>-cqM7)jFaFZB;&rpZ>(}-jJ@A@D9yK=0EmgtMW_}50?rHFZ&n4G;?{Dt0q_dqUkkNDMy`Pp~7 zzmD7^8kg_-uD_>$%RF2+-cvc1Q^_)#NWipAN+mNayVgGoq9LE+NIl61fIJ8ha=&!i zlQ3~k4M*6ddA}4yOdjI5aDExP57C;YDG7oCc+wu&l{JWsB*tt`pwQ>)z9D-5oTe$}+A_l3=^oKRVEz8b*>N{GP@X%U7OfG&WP`g&NX*rlXT3HltG zA2D5XvV-K20LwCFJJ?N)j%uH*hZa3`duC+OqoJ9GXd9+r;umw_J}TO;*`s}lVrMqT zbG3-Myoj}9_(njkEg%3x1Z9vSf5UnO+HTt8Z60uh-6F(V0UvSM0Zm$Xbwzklw*T`5D)^{D=$){fStLWEh0#Kw2CCjWcAxe zt3XYCao>|s zvW@B&|Cayqi+*kSYk&Q3bbXa@*P@vbk|jh$%)TU$z+2z)&()MoqOFPf*}L7hMhK1& zmB0A4e?>Jn>JPKOM}h)~r%(N9VGA1+XvXT|J0;JatD1C6>mLxF(=<|8g)$9M@(*dGVmZ{(hn3|ivO?5Kl z5zMM}D)>-I(=h#tBZ)0WO4Q<^%waNC-IoI))fRWQhSo(%&tTeSQBtkZ4TW<>q$8M~ zi!9WJpR73$P(Za4{&^(Gbcbg16Pbc+m}Y4SEK}SR3P}}fv7kt466ScQrinU$rU3s7 z4^u3s?^UqG?73a`-;1fVXj33Z9OA-+=+d3_=biZvi3ynm2v9SxDe+CnYyadaup#dc_VWP2g%de6Cos9jf76k)m`$1W#7hyM;=3n86CGERIlP%!$V4Z3jwq)c7nLxHJ#A3+b7hOz< z(avgWjvfI9j16IG!}IdYhd)$a$|CZ5?|a{)AQJyx>d?<9syTW4+X56HmRf%5eg9sa z=AU`y!z$As{^5UB{@stgQ&0ZixBpJc5C8BF?*D#U`LQ2+hiYQvbGcpsvph7#-0R=J z@4e;QzU^<7AO4{qjM^Q~L2O-~5gH ze!TN&UDDR~fB!$#lNr0`U+Fy>*9fs0$M*CGKTzJY@3XWer03&5{u9c#?`0ySM#!1S@Jqk+%d}o0OVa*7 z`bXcRZ9TF7OzM5}o4>XEqyPJRqE3^^+jLIex0kV8gL~vzAw=u@{_*!Jxx;wA;w#>u z4;vwy-~Z44skSYBlE`M#->c+zDyQ;`w$#JCG2~i;PY+H*^1V6!T@Mb-aDtxo)ByPa zPaHDRFiuWP9QiG%f!moT4RmT;rf- zM-fMtnSrt63O@-B6Sz`5(Pjw{htHwGnf%c0>^#A5aohs`lNR?Z-HE@Bx7PFnDw)Os zfdODf2E1g6In7KCej_lgsuSjH!O+6|&omR}Pb~f0xb+MArs1TK(6bq#MBoCGzX4>J zMJblqATLW%^Rva1YXX1Ja8~Clh3i8p`w<-;Dlc)edQ}(QQrUl4@74oW9O94{1{|B7__t7u=RsVE0Q+( z0|ikbuxU8#Gdl`#)CkyHnjp3+P}yY9-npZHZ#;1n%+z2{2}dma1F?ayF{x;q$&E43 z2fAn@z=1y;*#=TRJNINlk3RZjdDl<;SUHtb`A8QH7O;Pzh@VaIA{v)J{bx*5bm$lJ zkt=`guYdDiYxK`M6F8+%Z$?(pNNQHe@$h52k7Xm?H27`B{M8X1?LETIc0(eW5G9^tGa(HrJB_*PZ zI`NtUG@9eTnXsja8peen0QgJ_B8uUJTi(TpHVQK*^lgJET25drNu@*V zf|vDU<0tkH+#kn$c{QXnS;q(|+9B{k$$5ff{Lab1jhi>ZtO@3Xb|2ztB zJ6EA#uwckg>q4+l&tg!<>g2jhB@42!O!Fh3O`)2@{ZcrJmH?tv;BQk6 zA09I;u^SgMR~O*FD|WKa(a=oeQO(?D$YT z`eRxUG38p^X*^B({cu>c9@~u`CS&YdcLJC11z0QTY8GSx7>l(4cIuxIy^3p^Zr?iB z#F-!^W){TR;mrp~0~I)?O6`h8zlG+|2#iHegEPMovL(oanzXsU2u!3vAelIDXl7_O zu+|Z&3lY)~3;-k)cvgx8rZN+@T%X8~0=d8{sJIqk1mrjjw{@7w*&$nicvuO+-2>Ml zz|`yn5JW-h6if~+D13UbUOC_a#>IX}*aIMls5`YY`CO5EL=K`L5dWO?@ySSQav%KW z2-VDbyf4FwtEpAcb@3+_7)v&Y_d-N=>sDygOx8ku>%@aPLSw8LZeds}oM4Vml3 z1b-G;M>WEkC!u6VxefeV#O!RLlaMK6gk$j_=s;?NYImLd4))6nj%@+i(JLNozUaWr zu^`x9kImX9x65NYO|$_4vtT)r1N>r;KZc#7Zr^_F7pz96KRrB^pG|qOvJ?#r^2$gt zle7O0^L~Fc+dh?-ww(6%OH=AGGLsjC-{J9V>v&7ljfh{B$V7bSzXM2S z^{#WNF!4%@i8MDOV$(>Y)3QI&W@!-wpzBw0!bEjj;=&9tfa?LYwtgtMc&O-!)@7QX znHB>oB=lk9i8ECTMDOzgbDE7M2t^2H3mTAuQ-2Hx!74A;Y5QTd+09|rXTb{0e?`Y6CS{Jp)DmR>Q?yQ{q*B$xM?8(&?hI8AX(}Y;|INqn;LCBRCbBAS&HR<*^;KEI=&Y>{^!fi|NO8V_EzDVdO&JTzTJheSFw^9#)oX zf4`7^J#0Tr6L_KI0sr8K#Mh1YjGrC*d+lEShXkB!ZLih&f@N?`e;)R8e0Oa9yx6(P z`|3eEFT9R&Z5 zyn*UtWAv{NKQF`c+#Eu}|HQ5x%+x{yu_>i>oet++yRSwUO`~9c;Ls2e(Q1K{_%MDV zNbnT_F@aBs{l9hcn%ul+B3a-h+6aY5S8E2Ck+VjzieJ09+0#@r^EvPYRT|o%jRV@u zEn{QaSZGu4OZot#uNyaAmxgai6exKfHUs^@A?(XirxHFp&@azog>igf&zQ;??)38tFo0R+F!3sU!+p z9p*@iU?3?tZ5J$P7A^NfBLS=jKWl($_R9dqgK3u?EN=revpkrok;aHYVV}V0-U`ZV6i!woOg=t@* zI{DrRbX99c86!*!jnRm;Ap`t`$=G-uD-%%IXB^iu`9Z& z_wNn%z@0IZs;xSAv0!1-#{Mi=jJ7z>1Nft3uy-7th2ZQY&N@;M#?8#Tpgvwg&~QFP zeH@yZ#{gl4*_n?A{l{d1VZ!bXYB!GZWrCX`G&IM<-ciDy4Y6@K)!=@?UQ_bzypR_% zeR1^KdgQzD-&jABzO{S!dOm^WYj|^veLB{Ut4|cmK_ABc^8I|>S|1q+#C=!vZLKXH z&)6o9>DYB^vgd2YI{kyAZ5{hJ)_G<9D|N43$Fg0!mOo!Rr9ZZ&9;T01j&)`2cKsac z84ozdvbKiDeq1-UagBS;tM{(eebxF{`~9kZ9jp6c+B&vY9`^66`gyG1ho2qp<+bO= zb?YkT;swrMet%p8a%{}Jj*iXIT7UcRx<^;^CB)KN|NLI52BuuAeUHwD(zH0EiT2PA zH*E66ebCh8{sHNzs2uY1toI#>sW~=tRIkxr!y)}17c;2I4?B_DL{83Oa-?J4Oi^!W z5}Mt+n=`rff)i)g_&__tr@jcAtUfOu$w|hmrb{^CFU9?YS^zClndgmH-k zpfIx%++|uF>yO-v!(ogUVTR>zj1hh#f(6e#e6rMU(YZ2`mK1hAM?K-cq$mG33baH5 z;>WxySU+q!W{3ARqIF4;KB-9`e7$RieU|G%zHVaO`MTZu!9Nb%;im&KV&f@6(o+j` z7Gwi;rAb%ux$JW`0Y`JdgdkLe$wAaO#}F$dq<}C=KM)!kGLgD1C_z(#FQ034WRL2` z?W4ea5NiV^S``%)G!tfDcu6*iHc6SlsL#mBQ6S_xR_9sh;yF$&aFQ_Qh{2>m6Jndx zgg-i2ftX;Tun57{VQLl+93QyUgG5IxdK=A!|Pg(iws+Z$c*S(l~#?NcL9xSbWzjp6cZ6CXKbzH-D`0P4xan)S# zwPmgT`f%Xo%CVO6g63!KnzeQwW__&Pe@yldBagK@kNthsy~plb?Ps}K*2m`gsySR+ z>sR&fSo`&g{derUtJ=G2p2pvg{e7LBj*aQX^mDxam~5_F&sXiSgLbZH^SV0L#(zxa zSJnS8-{;Rj`T8TcMt2+P$)uGi#x+`JZY3p8XG`20eKEU|j@ZO$KiV3`0HBQPy;q@0 zkfH#7JP4_Fod9rXMDUI^^3eP1G}j~m__Qt`PL2;5=xgcqK54yCtzDSSxSx++@0df) zy*5*jMX6`@$X#+BgF%gEHqnW4bjm=dkQEKEP(92uX~hsJOtcl2E}{-$uUn@f(&$hg z4ein$x22xuCS%Z6g)fZw8Q_F{d*)8$22KUn$>-s_9R1#Q-l}}7XlBrj5&ip5kfM-J%#p0`&NvcnBpe2 zW|cs^f*FsRB!z*P9!EnY$lF-&NSDxkaX^~q*{G(MH)moT^*<2ezxK!WYTYi#nr|Dwu zCjFQC)bGV*FC^wt4~#c~6XhBZ4iq?;0~;z)bNmHj0CE8mq(GV?TuH(2@}1y6c1^%I zbj_6#7;ZEf15iglK@dO^5X6eHA@0X_PdxFs%3uBlv4r+0$7_D2&{lw)vVVALpXNB! z2l0vk2c?FBLFV_&$7rFhZOy?7N$%NE;D9kWf%UDH#~**ZlNn=j^pP<+j|uApbIo%K zD<&y$&0sAOV{%R`3hVro_G;nigH4mlkr3o$8_Tk+|Xb8|)pL4lrsCrH6+r zv?yb^H!LFE*#13;6>CK-hs%v%gJ5{5L&j%LTbI#3zSl{Pjeil7P-qb|(_`A4FigPK>?*h|^|!(4NfTwd&2d?DZc zZ1?us_t)+1m!iB>`|sL%uNm984#Pimk6iKblZ zqJA%xhy~g#Nmg(G$&CVN$Mx>Jk~Z)ql3ij9`QG<^Eda%{(&OL|mKyM5(Gb5unlc(0 z#-kPx)wM95ly7qXTgb=8=9JArd{}V^fUhOAFr^g&#pa;iT86=vvW3lmkgnp|ludvv zXmJ)F^M*{g13!hNG3Zy!)za}DIbYbp-PYO?rey-~ zg@g$KEG?h6$Tic5T#n-w>mMn1Juzn}${4f`2saGesu6TO z$P=^?i1HSG)!{;61W)Aq;SWC(mP2#oVCnZ6lN!heG6m_7a_iRZ0`o8A{1KulZLxWz z{1Z*uR@YqSLS$LOABBSn;5%SqnJ>ojz|$FIphWaGtS?wd89A{vhGd{1fLL=_uRLa0 zh$XRHIv&A~&mc0!+N*0JY$6}IeY zZM|OSTAM>(+r!*TC)8Jhn}-0ptMVD{<32HM2 zdF`6DajwbeD!Kh^%5}1N*lW0q^5UOs<2~2|_RDHr$1({YsBW1+I#(arG)W!1Fs58BXG;R*^K=zDSnT*U5 zrC1_K)o2veMo82#n*;N6Ngs+`nCDd|2bK>c{bcmie0Gza%XF5XD6uB+&*G+d0-T!* z2?3grBy`$j#8xFiG2x9O$j+{9GOH4Rda3{M#~;(rpZ5^F9QjJxOu#>d2^)i8;IvW< ze@fIU2`$}9x*~`i8Dyg%6^2EleGqGkqh@7amabi_R~*_iu>pvNnHIwRhFipx5w%1f z(l)RpZ7TiznP;B$Fw3Snf^Q7Q%;BIlfP(&QxOF1zDMc}PNs~jxol^8xre`13*CDz~o4X3FQddfTjv_$aB$r-GQ{F zHfl5Y`lKQxh>T9=l37+|au#3M&@O-(L4_uNKeiVLD#b*ATvReoONN?S7G69Y5e#ha z&Ye3Qae?Loaj%sjy6+2!PA01?M7VOIuyN96xW(curFI$^IQ!#oJH^P1u5HO^4>qRD zaN;_51}ufy?(F7e-3zX++hC6`>w{NbyZU5stmB}*D_*qqiaN*N`Fn1wtNR#WZ-@6D z8PK%=_^N)deU|qe0>riP#TaU#Q-KpE&Y1cf<_$PmU?Ydv7f0V8NvbtB+p3`H$4%UzE`Rm8r zJsbLOXi0F0z0u9(rfrY{^*yYLQIO1q;KrvHh7;Y(Heg}Lc{g_;)q74Fpk@3kmRQ|e_@>wMQ zBbZY*+gdyV7##I+3U7Td86inx-rpyxS#&#BIBr#Vt>g^v-bJa+DrC7Li` za*;!osap*gpyLV9$yv#xzEcgZU;B+G{-szih0{*`l8aNn?_e zf?2Li0z${>B652^U6dYnj*}4q#IsWq|Bgk=8+GUQlgy@Z;=uNu5I8$#L7fG%a^{Ji zGIU}30ZCgTWH=(hfnU^fh-J>9{Mbha+88z;6PZc9k~GN{;u6gG=FM9nCo$D~_L&dI zMjKzCW$gu5*U3N+rh8yk%k_k#``g<+0F~uxAU(eDkNqAm+IARyYy{c|pN}%AhX9ek zAIEeR*cv}?quj@_mNk-d2u#*wHnv-6Z0KhhB{J&d&M*jnVV0%Z8?406ezTn|p+$G##wv9()*kW^aBcxSO4`@!Cs zs%vDe?M_ZC8+X91p*=#to~a8wkXjeg$V?RG)n%adloAohOjc&{h7)|8hEJXtPjLlE zjz?C7W~AEi0<4|k+8B_91fF5;(hRI4v0)*AJClV4obVMJ6!S+wo;;X;$^Y>FM`L=* z?>MD;`xqlgn8_d`Md1X$ny5=!5=`*{AKKdRnmXC5X^)%fZQV=^>qjsS$XfBWfqW^P zsJtzy{aW15#|Y$NreLK-eYOTl=J ze-9*(Oq_TYhwNc$)>`M@plgusfkpv`;^-g1J6qvk{xX_Yi@ghWX&qN)tbb<>A#tIpzYzIu9=Auhr;4qup zWI7UPW>^y>6Aw!*XjbrCVRC{x@eE;1j=*9v=VBTsm^|y53IYvCexl0Zm&JkT#*Lc= z&Uw(xz&Sp$f-dHO2mcf8j8EEbPCH91J`5PDL1W=JI`#`^DVwy**gU8wPc8b)uGn-~ zM6zfRaRLkFffFj(nC57d5zoS|)tRHnz{pTWJq!Cunp~KbiQ0_GS;oCKAtTrTo;YXW z2swg*{9QNZ00i=7F_qSin<7>ES%)t|U0v6Klnb+a0go?my`-!FtFfAL*tdr9l;Z$m z1Xv?r?7-bxpGps0;-x*bwKhgBb?sk0JjIQlT^H9uA_zzw=d_dq;8n^Y=;Znvoq93R zY)WLL^6ksO~F+?TN&ev);Rm3=)vJJ#gKBuMSr z6*Sw>4*SsiTjCz8t8X9gr92@|!pS7Yw}jP=v6M8af~Ld9nZb0Jj3~kId>9=Oa*(sM z7JePkpPFQ9no`36*@H}&<9WWTrS-}EZ>0zj6b+D(n8oB-OZbmyM6juk7JBZd$iOWo z&l2tFXR5KHy;CjUieeZCkvn&O2e`W7A%3M;J*N2*OrgHBv^Hi2jbSO`hq~U+%{Cp) zAydIfyIoqcH1~Z$K9{XVLYq9GfN4*5gr%@%v^}kJvgC+Uh6^Y=R{Q+uqmKna0%nvk3D`GMVbVsD^v#rO3no#J9nS@VJn468tz^L=I)ABVW^z)` zbI;vXES(lfmq9quFZh!HSDU8gyu;*j&oj?Fqy2=|!^{V#9+OW~;h+UP{~$5<+!RoX z$T`gj7t)ZF&Tj>4M6QFs3zP~RBme{u>nZ%gE-%w{<&j4^jhK`)i*row2|uw`@Jxc1 z3MDi$ve(%r4a^jR#?9=ja@&1q!0I4`S~+P`I`E*AAVTuDIYMRh1_%nyQ`#RlCzHQ9 zlpP*W5R?oY1BDPFd?r5-Dkeu357;S$Z41~mGAtJmG3lDr&zlMw8VQ(S%>6PR(70D3 zKgd3TMn?OOpI5wit6i{qf?ifI$p}D>ea64DJdf2keiQww1E5>E4%Z&kTaUNNpk=D7 z11;A*4ofGCh#nH1*)wWpFSK)HfZ5LoX|Bt@UfHYwQz)*m6zZ>+rK2 zyKnfe`+cRqeA=~k??GFotbg~AdwaDl+9P8d{Op)k*6=vC16i!d=2+3WUL)J%buaY0 zV=_6mcgj_BkmDQ=MDROE%oJoA6r>b-XjmNqmOVE{GmQy5=O4C38W9kODWgZhJW1Y* zQedJa-7Y%HGma^3~5GUBt-#GTsLI3Qj^b5w1?M8B(#38q!Gcg zIaZ6V222V^d8rrXc1*s29}&pm!X57sdDoJBZdDe*;U=#ow3wJPDZsQ+A0CVFFXuW< zOKch{4y#;ThH~$S$uXbiw{$-^1hirxT98kRx?1!@`T)%g#t&06CbLM08AJyA4UP0_ z#v3|dsI1UYwujvM>4CBBDJBdX26aJ$VyyODHwKs?4~A{#AbeyKh0xST=ds5MM?W)L zy;&zz)VYQFYAgBfmkOAn`D}V$ZOsk&{zaIl4`0m)tbG&YRk(VR)9qsSI-^cqDbshP> zmh1bw287oBzN)N_d##>&{b@J)y{5&eLtn>s$7}FVSsNSA=dter{@41lwjR2B>-A)( zU9~pskE29ztb-qtb!~5yrPE9a>G?DzI{zduYJqekSq z{dCEbwtlO9m;+lBet0ztWKjy?(n*Vp6RCmK0L0lJs){ z<^s0Q&-mouz`JM}8dR_@1DH1{4j`XhOAMK$0EdW{NYk}c4Q4Le&b%h}8m+muWTYnn z)lv|)7!k-W+&5S51z_DeWsShkk}i(APU5NT+t7iFVT!RA%ZTvwL<2387doi z&$JT;K8-}!b!N#j>-9SglHkDuE_X3E0KFh%n45{5>@lB=-OwAEEBV|4O_d-7SPvjA z0MqC%>H~pc^CxH?5aAcOYB(?eNF}19!PP>X>){fCx-L}1giz8g%&8=roM20ikjraJ z#wIvd+J!TI%zta7fw6jlp<(7#Yb8vc4*&AGMHrjIj7!!XYj>gjf-LP&KZ7tx8``)1 zI=*l@N-zkiPkw4*R38tN2ugaLJ8*|$FA#M2BjQ;Fm5OAt@X;2Qm*S* ze@59I^lxl)<@bYojX@LYjSN~MpCyXqpR*8?>jd3wf=mh_jdUR@9plhhuPbH-C7%b&z0-& z$mdth@mhH?Yq(s|mxtNg2lwm$j~rN4b4r&_aFWk!n%nJ@LZVwnL@Ef#GYF=ZQn#Z|`dnPAPQvU*SB!IYCU9~_K)xq@E!0$50_*AnZ0Cu+Q^UV)FHL6zl zc_gto+nTmx3-hXJqJz8C7}<&V5-02%(wac?f;xd)q+PL^z;)2x>d88r0v9)Nr+RQg ze2L&cq=|xGjgo}(1hksz9g)SHH~@K@qxuckFgcjJ-1+tCbk6-jzy=w&07S?~4`7$M zAYvKJ>k^;MdYCHaP1d#@&MHq?M6J#@7bs647dBH}kussJc?jy2dmN>|2e$d94`9Ta--d3K|+jn^W_> z$icIrv8T2Zqy}?`U<9z4( zH|B#vHoNI z%!|tEdLHlp|8;M#^^NKWcm#>Tp6cqISQgp8(HEpn@bjoaII07*=vy~Oa$P>_vyUzM z$$JZ9X$9t~b~U1q8K8q%&~V^VYBx^%S=BsB4>bk&%Zc&~r}vVM|Dm}e+)zsZ&B+s0 zE)JwB$)+tCAPB%*9o1{?oa!OgDduzv-<$|u4)y6cXrpH05ot7IR>`8V8YO+2SH#0NeC)Ffqq^wN52y?syla}}r zJ`)HDtn;^EZPd_&38~VYH8b23wsF9%W8R*HMlJTtWRcwFB~8>!v$5^8BCvA7p)=~R z(9~1-$cU^3|G~+9itkFNfn$>>)C=Da_*=t4-!wnl&P)rqF||6IF4S;qnWx75&~J26 zxL`iUL9w8L;(m%23tAZg%s~Es}U{Hk~#KLB`MqG>JaeBr+El_lb1OoxLjC z#$mDsT-Q(WkQ2z$MYf&7&qZWL0nSag&-&pu;|%dcZV z6)&wLFUz%;Z4e)NnRPGdatJW^elGl3yd0??BZ%tm@fTwJ-mX3k<`?QQ5OHvCy&9aZ z)jxukgZ4{V9T!gYYCQx|$NG2xUh<;u1hMM}y?jc&8f;=LYwZH`tQ`)Z4+U%GNdHIB z%GdB3?Br&Rb)O$xTh}!pQMcDIwuOtjQ`K@c0A`{zt_sw#Hs4*}YEOvQ+8g(6XZ|)# zhkJXa-=kck-xy0N2m5{m-=q9i$6jj}NMu?W#~MMx^<_m)<2Z;>cKh_&y-m-VYxnlJ z=IcZ5?NT~wzgFv&& zb}>zy1qWDyR7l9^$u&IMN7r`k$dn(XT1?NdmSBQZi4yG7VG-(N;-ZaOAM zk@>h0m_GAMrKZeG!w@-*pQ)nx5ppX;?!klmv2Od&)SJ$21kX~8L&Jjm-|*G9_6O54 zWO?PN56v|gs2IXeTfLe5L8k6Oj{8Db1n^<5W%pQ{mUL*L1#}tjWIU80AWRrouL=4* z%-^iuOwI#mBWxCEibOcj6hZxKg1-@CkUBLtPO*%@Yx0nX+O(NmMSH0abbSEM=BOt{ z7AjO@B77k-+Si&V5^I2`12gnM<`+>VkP$dy<$k_?1V;WvVL&z(evx-Tk%0wWw-!C9 zI{{^IK`-~Qul)N61o<<4fevjl;9vY9J@%U)W(TL5gA7Lk(e;Z-B*~#3xu*>Cum*C` zH?D6i<7Z<#@y}0EJ2S0il_hSC7UzLk(Eg!#7^p@J!r4bAY9q?C{d zWPDg72eM*T2Caz^o+XIS|50BD);9pS6lie}`WRr`@aoiIpm}W$ z3BXIi0X|4Ee}_JDf0;c+Z0*WeE+6InYPm;&SFU|KS>MwGUS zt1(B&X$0bKlaWauL{Q^pUsHH1E6 zfngKz!;0mCF=2dC-y@Gas*DrFOqQ9pLk|z>^O-KnjS?9=)XNpXt$PWUvI^GA@Pfzh zd`-M?Ya#{)*<}C*rS^a{+M$iyfjkBf{#~OnjKFAYXCmNI*T(4e1o10}z=praTIl<4 z|LFim?N6yIwN(ara698QTt^$Oi{D%80nQ+caqc=mLvm#B)B)Lgc-qRKs*Iqw^mE&W zziWSC_itQZWo3Q=1f$)RHFj{9uASP~H?~^`VmDq}%E3Gy>t{FK;dflwk#A~m?88A{ zT5oPtSMFz7;RRoYImLL^NH%`PbAkG@y0^!_b$&`uLe^x)^$zmpeOrb;)p|&*#%IP_ zJ>%Z)fIeN1XCkkUI`oZYHI8p2o^>26>KXf8hQlJ-+ojgkJ`9uB@5R{DhyBfY8v0re z=OX5?)UHlmzmq=)_5abHf9LsNQX|0TRWKj&D;jB5rha}1nV6JGBaNtrQ}yLE8goaTE&zkk1d0IXICcw6wO-S-Mmwu1gYeHrAvPPE2-6}# zJm;H1J(vr$FV})diOggjz(h-lE__>R;#u_xqjd-Tiv0|&3dj<0F+U$TXa;<{*&Gjt zH|dr!$MKpMABnq(}%(CCXLKrQ*Vn;l++rYfVPwbu6^f3y1t z*26&_8QUb=cwwfE;+e8q*?8jg#0v$sgNU`g&;tNAbl7~Qq`J={EzF$?3ce%Ir2`Zy?ESTOJ>QOe2S+S# zDC{2Pp?B%08hS0g1o;KbC%l-C096$yQ2DT|nC+4a1#ORjAg(ECcRX<)aE(8J_19AJ zrC$1%cL$_f+6C*wmHRjLt(2}E%zY)0(6v?a6*t0yI<`Ny6N1h5D#aLp7^-X8bGM0p+49=& z)*rS?)m!)Fdn)4-QJ%M9j>s(HAxeG5-~x0q@(=mV@;R z2Y=RX7%}y_TkFO;Rfa4rv_PZTx3%ZMt4Nz88O&hn= z&_mXp1q&#i&t;+m8IL9_U6j5=00y5s%X#vka~0TnBJz}+p<=iOCAef?LI5M zK8@rU*q_PQp~dsKH_Jk>Bm?)En@0|~tsTRJ;Ucgsg+o2F`4y8Ue2*YdARn+M0>;GO za<7mu0P%_Z(NI77U@0~(I!mG55NrSk=LiCTw&i+^37WEH$?(OOe!ve*&TCu9BO-Vq z>@;MMd4JM+NZ0Q?M{-dq90?A19Z`BQUeUP4IEgHc2YZ+w+bis2lluy5Eik!~`Xngw zIcw~sfE>b2h2_hxD7v=$$$nrPq9v$7E);aS5-_hdJAy^Xj%^)KYiVx_;sTYK{6pws zW_-L5z$T%Uk?S)l=F&NBNfC#At7j7-2yG0x@Uh?!nvR{R&=35SNEUET;vfNdaAQ*J zp_TV>5+Y0Vxf}o_20eJd@*+C`ucaQ`$G24{Rp3qwIN{W8DYqr5>7P zjbk{LK#}{8bszVS*B@CQ$s8acS?)wtwK9^jvQ!9ioa8)ey!T~d2(G#qtor-AZ2Jn=|E7@H(k?7yE*@NT z=KpHG){MHE^S`yH;|u~|ZUu-^JClhZK()%AoW2cbnR7ojoTUso(@?;WD+mjcUjp;N zUmCbja?ePe7P&Tw08)&w6Fta`{JtHmgz&tFrUcgm&ti@wg$T^M_@@-XU{6L$+<>6H>(%S0J}(ig@npst%Yu zT~f%!u$;+1e-|u zj*!gkc*QCr3}}8#EpC zJA=FUtQ;qnYwaDAH^0!2%?F|h9czmTz*@ab^hfXp09E|-me(1NVO;xNA84J9Yi(@n zfFulZ?dqsK@r(O?yhraV<=~(p#xSlK-;dYr?PL2YU*#07RJJXrnFrY0nokTVvly@~U={K`Y6;}S>AD!;7s3M415BoJP||e6 zqKpwKJa^I~b=k@LnG-2<(qCHoGvMF`njsB{G%x8d)QnhfHt-!On)e4Lc>&~o92V8A zsF@y4^%WCQq*v2A%&w&}A|pfvrfkLM%*aiyUDkd8Cn8~@*RnQ9=Igd%(~BTQz|>gm z+I}e=Cg*1wh$_|<%-TRq*pCR{m7nbE1#>=V%pfBKVu0U@CS~1h3zykL zid%Bd>ia#->~Ii(XBjIRGJN?aln(N_^!@BiwVvrC)0(M&(BYe&$#xy9iI}&w z`fxpy6mA1$1Q5*PM^H6>wgxB}SR}|T@j~X411@U-ZUi={dkrMzv_XxA?v=jE!sy%rdxtnBTzIpeNRpSuAMp^5{IkyHvfIB&!}U(=Gfm??(JG%(B2-`$aQO-t6JNq0O7^OU!7o} z#m$rfR7{?3*$^5FWV+95BBx0yy_wr$QJ+j}Qk=L@|BLyf;`)$9vuI-Qp~Nkb55un& zB7^6bu32|3o@iag+y()&`zO~@$@da5OEnfW7aKRt3VAozw7Z~S!X?3Y0OEQ5-n?}) zWIj9L$-q1{#v|27HhKqRyqDxkAya1>(z!WlFg%1PXnegThP({ziuw?H|898h7Lo0a z%%}>;h2tk72|GVT75s6}&6<*E)iCKZ=W|&|Q{XLVIA%@eIBVax=+kQ3ejOD8_%qNG>n$**MuR#LXtspS~+Smm_1NeuP4(?$;k&P2&)D4p}{0-k{ zDNF_=vKGkaSSBZUaxLas+7pcw>PDY!edeA8L6X1E&ojBCkiJTo732e0(dMBRU~n}aD0OE5;hzbklFst&OC2MGEOW4EJ_Fg0)v3iFVri7Kn!|JINIwS ziPAYLoWb0TO+)4F$qSDKcAMf1m-dEJEY#d!dm{7PvmH=709W(^<`+}E73doIp3P&{ zz(~~X_m04zds*W86^%jh2WP4EAez(Kiy8gv>L~e;uk;z49*(E{0Y?2E%m?JhZH%B1 z>oMB)dPWDf5vZc?b&xIO9d_OI5X9G^Pf~(_dY>!H#z6-nfyFwYdezymUZI(A+3VXvk`2f&NXwaxUU>)NpK&xH}=g=jMvv?8~V7`|EqqE>!}Q5#LIn6s~LT7 zhtbK_z zL%i?hU!MAwLs|Rhc{%#guf@Y>1FkCyQ0y0%4?S=4xoa9)08y*k$8fMbk<-N2a-AX) znXgC#%PtQcp91FM`9fyHeM|E-H%0y#G{vDT5Dbqav zifJz@ErB3F+jV9%vq$BMxvWY25Ntq*fXD*AFlH|1$q=D2 z*_g(}!WO3{L~)6ml_3z5bW=~cFW_@C2VmB^hyY@51Xgk%l6meyrZ4f*TpMIK%gl+S zk8%JE&DR+PEdXw_I_}OE@}NSZiowo_OMkIGh%s%hAi2 z=wRQTJMgv$YiDj+*5d?h8)!QqFZn4rPYN_XAaNI(Z1YBhAU3Vxw)5?fpJFLfy#6c#2y%0hg#5kT2Bwx&_ z;8_lGfbl?%Y~_S`UMrg-NK-uQr>S!klh2=f?oLcR|D5VzRzojOdiLha ztdw=K;rDj;@HM3ed4<~Qz(VQ4nSMvWpbn>{e0>LcDv=!jJIDn3S`$bWdNJ4W-g2BA z;b*MHO2mO=1F+5GAO9Zf<@OdLb6oET^g?!!*$DjTI;^3n$LkIdGyu=FfBYTf-u0vO zKxyOsTKpjuee!EzP7q_HIXYNVwFkWVIW$JxFZw%xbxk14YoEzcB^ggcTbpS`yIAvt zI1UF`o~0*W-G5icv$`H=eKFA<<+wISJWj3)d%LXE1z>orfb>k%|M-qIIa5C;ytli9 zjA5)Sw;10z=X^i<9aYd80O+TE9`eLqto<_#<0$RWX5VM7gMk_6d(bKi?YU}sUm~h#_9CKi0ifHp z(5_4of;K}vH_tL}eb)+u~zl&Fv&lFDK+LV~<9^W3@v3^ub$ zYZCJ#5ke*3g2%kK51*|rOYUieU@1tZ3CxEO zy-7NZFaaFHdI$5s`A}fG1x(9Y8(>Y~LiA1UAF(RrB7=b=zpNy7OHiWib&6&Lhw4&r z7>eQkIB=KWafmK$^8s*L9c{yO4|A#Gkst=-`Tk?$fFnK2Y6s^`h&!K}l!W1<8iEOW`nIV~+nO12qExUjJc~d>P z*2IKtodGac2IiX{niE+x(lK-Zf1M7=4PvZOOy*H zQ+bNlpD4;TSiJ1KgheziUQ^voA%k0#Q56eV9suy&DZY3`g)0vcL_NXj!J3njO#aw$!@%^5uHsM6{H{)6qH*BYyD?;DLbwevZI(s_USt1FYP>_iq|s z_)b#drB9%}P=E48KmZ1p5uj)UlA?ZGI{=2#*3EhIE(c$jG-F~#!mezJO{&A#&s4T&ilS$g6Du~G<_+x zUMaUy%7OL^ZE_z+;2MB9MbgWO)<(C651L8Rhc>Pv!{aO8xX`JdmAMlfw8|@Bv7^kh9$noSnM9#+%4)w`_;j%jRXEF zSl>7hFd0McK5vU@P2k&t@3ONg%dO)G)iAW?S_V&eDS)L;gVxvIt)3qRdueu)H+#?4 zIFM*1wJ3ORg5==6d;`&;vWLA1WicO-v-9(V`3w8}lJlWCH9Q|i1}U<7#OZ%G?-GN! zyb+;FLC6|E}Gnu%NKLmCtZYFoGrb>+0KpyZr+D(mt6CRg0G#z+m z!hL`p{{=YTym>23t&plC$bg$b0rSBX!9pz?SRdcvZ0Q5}8%RG_yaxh>zM5vQC(Z!s zW5hD_U9=|9;2=RflmR=(syJ*n+0UUl(L)9&ByjkL=FH65OqP&iSQ+_!u%cqqFAm*| zTrje<5hfdEZfHZ~g7DcKX4~e=o;_yn+55V~By#cjglt*s0&{IWAPmJ^r`RZBOK7%Wc&28??# za0^DT35JMq*<_q`>Qqq&YN+I;d3eFxFl+}1LMLL_sZD90qzQe4J>u3K7VqADt}}t- zjZ*;f;Oy1tp?UkwAPMl8T`Y%w+$znR1dD@cGv1_?YIv_*Ej0l2q?JksJ{ad zg)r61%b(jF%lMr+O|}l?@_olZD38g^f|i4J_`1e`i~BOAY}dvKS;cURhvQt9RXGDl z_8_Po$QJ7+PEQS~MO`tbaZR*!GStlkEV;PLHC^S|c`&h;d^eh=ZZ9LdV-0#+t z&6uNd+?48=Oh@9%?PBk}n7uuYwXUADw{D&3Ju7?rU|m%L_TyL!osd&~@(lxrtM)dJ zzdLjpzFYgfI}B;V0YoW3tG!)c$lj)F#=UL#UA>-dZzrJ|$GNulrDViS2gie)SuCR|J=4Y1^)U*spjxTlE@fgqPs!gP(V_wdVdS=j&6&Q&w=dFj>;?&b9^ zZAHKI_e}s`oxTDmeUI`*d&}0b)yF}0%;MwRLrCX|bD=o~P}}Ig%o~GeE3`LwzXQkv zY;SPV?cb{((bn>8Xg!h$@aB!c9=e>J3>rpBa4!X*QgPGeE=V9gx9cqL27(~~>i`^D zBPM&1m9(X1V%trCQZw{2&|ppeEE8Xt@i``SD-n_0G0^(BJlWJ<{??4} zVNy4Rd6K2Wu-tuuF%b<7=7MbA1ZQ$PB)6adf~TH*@<|2DJeO>mCO$a8U>3#gJg{cW z`@TIKY-3N^f%($;S0|3m>r(DU3d9Nt>t>-fWMj481xHK&VeJHs6)-P8$Gma?1M6c^ zQli-V)-BRnrN%=DriGVI9~od^S(oCAmB~bjptbZ#4-)G00GY9zSi6O_iMDE`!v&WW z=6>VtLq;Hc!0yu~F**7Iq6q&g`CQBhFE3G#nY_ur{bEca1BV_Elu$X-iz(GV&0|b2 z(P@oezMF%Y+Dm>D0$i3p3c)S6mBi$h(kJJ^V#R|VeSt7J!B1{HV}AGy35`HLSY61b zC{WpP&Kg-98vbutIyIp6XNq@{jcJLo@&j;e7Yx>XWbVY{e*`BJ$$jlalwZtvVL*PE zbT$D*!3(+rKBXLh6Mg|RAX){eCBeYv2-uF7*$M!}3EQzTc7TTZJE}5A8BC-#7(o}y zcn#RFeB(u5d+<1tnn9o)IEyx>shiV~BTjm!saq4#uhu#f1pfX&ZlxUf*&MrP4Wy6b z8Lx@Y>T#kLvR?tR<6MmOkECR+#QLVs)=s{;9)2iyAivauv5oyaw%+->ac%RMOkTwS zgxw3!HkN*GAMOLxzYKdj!SEG(djQwn-d?+&+8tkNkS)uT|9+UVHpfhC+Dd=%^VoWd z_5Toio5z9nxZUwytaFa?HEME40(Dg%@HapXJP5!zw+IL^P1xH`m`a*@ZHN@f zzLmZJPvHF@?`juBnxc5}Ob3UMlhn6!%rQpP#5-I;V=;}CfI{2LnX^N_+szi1Rw`C= z`eo^!!SYWu5~*7&L0*w~Qp&B{x75D{1V;Yp3H|P}1A3~-*_cEAM5a{Dqm!v)JwX1_ zVs3Vq84`N-KFYNcDjC5RfL}Cm=Kk#Nq|WB(IeI#nJu5i){cA{16yH;xY1q!u?}VI)2yegRFC!)=z%x z5pddi^N$fo^S{u@w|4LykC8#eT3uSlTHk8zPB4$5#($h7o?WCVWtT@EV7 zHr5@oZtb8CBk^y6W)8>9b#`^}oOxeILZ{b;smaofcN)M6OpOlY&meS4|Akr(K_vhU z%y~xn+PbM_O_wvuX&m>#depwvgLQszea*2PtBc7zo)M!Q^t*9yPrXC<+RwFq;U&Gc zw;4>W^#Sv-y0_gqdhL0!wnx|c$K!%Y>DqnA=BGRGSb3Hmo9EcuB-28BaBT0Yy*;e} z@8YtRf14GOe3d-9@%m4gRKhF?`_N2qYe7bPtvl|^lXM)2fJ8I`kOo?JvEG=x`sG&F zG&!Mw#laLO?syK)14v=AWEudA+6gdZ&m#ZcNz_7q5mJ;K6ab#3Am=6WjzDt^xy_^r z0-%~beFA`>ZPk>AlAR?30zlgY^P_2H-We-k>e!(_(lZp`jTWQ?&egy|#fg;4)8*9T z9+=hH7G8IKoVh-eR64*BVLKg+{{Gz!djL9Twub zf7aoknoZ$hAp`s;?Z7ob>R4R6ct+u>SrY@&DYv%-FJ-&{5`OT)ECG#Kp-io zo8OCqdnK_aWC6m0kjWqxqh%5-en1THTp2OBXk$`4vJmF%54NFYf_Ws?KK3EBWb9Lf zF<4N8O~?#wprD_?YiMNqD2VJBy zzjbEUIW4KSW?4d2CfBI|T|i)C&~PBMF`|-jXQ48L2E!&Ufj=1XM0MjjJ0U6g;PZ)> z`tEtMBMcONIoRmvD|~g(zMNEuLzet5DlGI9TBfio#A$_(6${1|tVM5l;EAA8gM(P` zLkL7CS$KKi1>K$U(Sow=Rk}rn7hWxCqmQ}+2uztoZS90_4GbIuX4qh8Kja_P)`OGZ zu`n&egvqS{a=h>Ob6uVaD~ZIgLTtt*A4DE2t5 z!ESF4YlR8IH12J`r_j8Xa(r($n(uC$rFj03+U+M?w_LTi=_L*#(Y&p0Z`0nvULEBa zCL8oDC@XtG3N%$bZcQEt8I)l^RDfFA+ohk&ah-Uh_Kc%zLN4^IMA=XP8}2veD1caL zp~YCJ{!&`JLmFDH%wf^$FX4F zw`c>OBm6OsHTQ1|l3}OVyM8X*iI^q7cqA_Xki_elur(kE<{5hoIaibf zE$Q3Ak;Q-)rO!f|*yIb=F}S{aCblGgI|uIaJ?F?|JP2C(vPyhWrzU z_6wf`3!W?%Xr`bux%{>#x zVgS2krV6t!`R<0REVtWq91HL~O`%a~ej36rH?UOc6DAF+I!qjhjmd7S&i)eItUB%k6qfPj&h^s*=7eJ)S4$gD0BfGcuK*&p zdk(;XzLXw#Fo=-fa4J-3%nW{7*H_XA`1cckN8r=nxdHS?d3V5m7*7{gnfq1B!CW7J zszTs!the?j>8KwM0+=6-M752;uBIbij>}cxEwE&p;F2L0h5pU z-Vx|CaEg1p?sy55fvA-vi9B{5PvLuxwAYd4N)gIBS@Z;?jC;Ga15HMf+;Tvq=)(L* z_trtSyf5o8KQCx+^E#mY(ygU(Xqq++YoXik{*z65xvr6DkL$J+_T9;G^IT#6TR9}* z-TvggP2VrW^JT3+yk-hLGlm;%?9QTVyVZRd@pq}^$^z88;X6;=Rv52<;O$rWo3 zH6ffbOmxEMr3`Ct7&B9D_K%S()a0Wzx60_(ZbaHDZf;af3xT>Lmx?>3qf(0u?Q2Z@ zBGm3Z*W8A*7dS}K_h|Jg&gJSGw1EUDPTov1Zh%Rj|9O>2i={_c!SaS~FnoIRJ zz&pCdp|j?SIfIX}xdh+tWKCp(yrhDJebvdulG@KPg z+lr`uEzR2UV4#u-+J(AmKtm(fA%VQgb&q!;N65@bNYPXumxEu8CR8O%Zk9;tH&#jp z!Q%BP_#P&8>{`MyVNAXybFf=(hG#h%v!A#h7#UI9pgDym2mREXOOEx$A75kuP1uOZ zjT{c9Ww47yhjB5h(lS2wS=bEn28NKp0NJ5UA7rGqGL@03PhscBsy;Z!Lwp|9ezfM!v zR`k29?`_r&0+2JYj-P`}H^Tu>%<&3&D8v5X{WI?EcE$4ydwbe!I-5M;N6F|iq~y^IV}R=gyyBDR@LU(IxD$pcJ6Bd z4T2Qd&GW&>&K=7adf#BL;XSPPdKl!zBd%pOt1E-o^(F&5Zp4u-{s zMFU~x>4j@cT1NB$bHrkohp}w-b4qx$kf{U4^Rkcm7|({9&Q#1W@#2&)ev(m`LpodL z+Dm7hEo8{R1}ZkqBh%UeV2Ov{_`)d)`Tl4LL**Eyi+7;}7`FSoe9R@~N| za+Xqha7hns?%x6M9qT8##7lab4hRX>TAVyp0DLzuqU-Qtnx@_n7a)&`Q2_v;ejJd2 z(u0sTj?deOzSDPwzGonShxqti+&2KiGRk@YSKaA#&3VutB^{tk>oo?EPlU$Tjc1sn zLVaOSdK7G8EmD1r)+b+wwb+pc?n~*%6@BsbGHML?lv2S0*#jRC9Fp(a9EP8r6Uw-b z`%zPSwYIkzyt2%vW8=j>H~$H9hT$@g0!la`oQEJ>47){X^fe ze$)4a=92o#NqkKO(LzHL?+#N{5 zEVVzdutRIel9dyT$ua-f8^FhBlt1a>BG(FnhTxzchwvb#jKy&+yJ+D3iCm9J5Q=Nq zh2!Nff4M3o7?Y<`#q!8RuxR;EI*Nys2$eI5@}$UTuq_mSlKXB>RR}OZxF9q#uX#GK z^+*i8Ntiw7ZKAON(Vi{FGzY_AF(5o7v0zXy)P}O)WIPuhfB=gMV?vUpr$6|?h>TH6 zAGrifwAG^Z)Lp7*ZJ{i>L6-(tlHu*JF-q&rW(qxM@n9=CDX}Q^=bYiL`Q+_mKlbCw z>t6RO4?zdj-TWm09}|5s?ECveKlCrlPyXb4vJZj83W10|l1<31<_Q5dgWUSrpZz)I zHJ|cnK{9O7nt8;V-}KG8`2LG8{NnPX?|gfC``h2PXX7`^Z~BVYm+$}ne_GzL{~P3I zrtyw)(%(zk@dF5lkB48!4-mYVu#r(;$hMRokdrAvzfOBV6#$y9#dmDxhWn$RG#0GY zFZ{w^Q{M5;A1UvA$J+-mntSP&|BC;({D=SHf26WJm}3AO`iy_-yiIwU)f_NDp4@+a z=rd?LMz+Voq+;v?lNp|2CJ?;V^|Prr?+D=Jb>OtKBWxwX2c9S6IzH(0${xZ)l;v3l zV8ZLRtc+cD0ELFFc<5krnUy-ymD{X%(uepsL}Jk4M6*&+@5sRx z&-~e(@L9g-hcvu%xiG*gt7mKd zAK^n#YG`V(=iuWcghx)E;UAp)%=gpi*7z$K%vD*0$jcW5hkPt1wn`v8y#&4c=< z2sXNS;MOI(2nI0I`v~p@(*5&2z`lF;c@g0Ld#oq(+1hMs$o|fA>y$L1fi2^rqH zd8<70%!h+8$o$CPd?;mMoG;UCOXTGFaX_AdQ?bTGgCtYF@soWVoZ}hR+7e`oH5aA< z+J&EttuN8OUG`ck2jwu^V}ghf-5^IuS-SGIm7b~*I_<@dGVY{ zGFA#>ay}eROrD4KW)@ofdzqVU5Fgeq0h41b%6h}IO6o@t2kb}m4?Z~+``ig4{$U>9 z|Ni&WIv&l2ZEm-;r4LRUKomekpq`UXfIY%245nGEUc)`ffTvJhGq_KCzKnjrS`{ge zKKe+3KMV$q#ex$72$f$XAUCjqM6?cm;Y1ik{|t=J>}5BFohfDGU`%n^LKF31Fq4}} zMXd{{_5lh;u!cJMUvXK%W|x7E-1Y3U&z2wiv3K_Ol+wunZCF1tzWs+j^fP^52n5GZ z0tg%OVc-+5LICs?ul(5Zs#m?byyxBTvKL4-^`<@Jn>ud&iai*A=EEN=W{n9n0~>yUnoLW1;)y5s{disZ z;UD_Jy$qj;jmPtY!t=!Bas)nM7hR2H@qDJJ>H#p8A`j5d_{?9fbMlV2|HuJ=f^4MU zB46$s_jd$h{R6oMAmqaG!T1&eXWai|pl_^mTqEP(xHrrVsXf%$t+AE%qkm=a1F7}k z;f?XN*88gP+;aPC?H;|(`!LFeuNl_@`x5dzv1W<;YWwrBZ@lis>}1(3oqTZb_*}q! zuie|;78AS_RRV*N{PFW^+)tB_S)p{LKB*kWuS`uBfk3QS@ z(v&8(97&cpmB(%@2l8;ej03yb`%?8D_2H;F#}=K;q73a73aWM>3OLmW?*5j`|9iCdV{JW*#>?@K=kK7)RUx{hVWn)H12rm;7}98Tpxc{ZjrYb~rz) zshE%g9Ml6J!o*Gpg2a7NWO{p79i4=JI7AxqRPSK<%=NWm8WA?4Z+Ex zx**}14@|1NiZ3j@DDZH)LFQf-((bb4V;C{UOAsh5uzUgALkojrhc7Tw(HzNUkj*(S zODqhvMXl>EBom@NByd{6wui<4!1b&6(#KO0}vBcNd-vR~R67;8y#D}>;4KleW?Kk?)L zu6%e;s=Dzos3LF*8E`*Gkf_&}Lt?@6T37Cuhq-83gqZSm2cX#37{&we!X%kx$z#Gx zox!qqJWlDuUxxZSt;htw^Fw?5?BMjd9+E9R-Sl<74C`uK$J}rD$izzk_j{c@?qhS> zXv~$?5YIQuZf&pd1DE^Dp!ewBrUR6|4r%*o2$jy;66=A@|5-d0)H(#;F+?RI3&;(6L+U8RQhh3svXA78`w zuE`a1IMW_$Z7{o9**m(IeM3j0$yUfz$1El6#J~9SW2R@beF&4O()xoFn~NHn6!;iu zc;-#7k&E_ge-N_xoFL@+#zXt+oNg`2ZV;|wfmc9Atc?tBTT3~32HA7WBU|~JIR~cj z_X^L|c1rVH5I(C@`s?4xm}eEF%5rwoFFkB@Sn-BkW*v;#0oi+y4f_X2jIESQ+se3U|evi$P4>Dw7Q<0ed}1w z4!F}~3iw#Cu^h&t-*AyY;EC~B6u|;$Jh8SZ8%&NkUpUc`_J@Q@OT6U}T}vLlQu; z)ijsE33;rpI+!LA@WaU?fLN(8BTMkshL@^5#20^?S)b>womai;lZs)bWq-Q!xM?5u zm%ryH-yIKtPx+KjEssC`q=NqUz3;u{XMW~`F1Kl~-TB0FXaBjJlHGI_HPqBHCRx9) z{Me5xuXyT}+V;nO+{bBO9_-i1```c5dflyCx63EL<~95FpD54lwKebk$)DVlou7#@ z@cd!!gcyCwr+k{$|HJ?Khg8e+OMb~Gs%riN`+7y|^x+SGSd*bbA}@dHDLsjjcI~A$ z1)#&*>Oc6zSC^07Yq=zf#}EChw>tQ19mx@Ax!3Gv^5l~*Q&RSm?|HYjk0Sf{Q$O{! z=Q6hPWv)&UTC&0*}VCxy!Z%z~I=4285JwRRvT%*9-myv{M7 zoFH}~!dx8u&i)w=DERa``kf0f_9RM>cD}BZ1CZ5SL8=j?1 za05J#_jvy`5656OfnX7FaN=uajJ_80?`x#evy9ghgY`mdrxZG9D1(5!uGvpnF@}ZO zlWWwBWXd23od(CBl{SwKmYjTLLeHN3@=0YQ$;Edi0lHZQEZ$vvS6CFQoolh7LEHnh zx{X{9sL#5_(lFp+HuQOjDJ4vx&`%KV$uq^51laceGYvykzf~vlp1IzhCwZvI_WEhc z+~V2M9MGxnhXZ=n(nC!8cO`ieVdWGOSkq`r)}NY@mtKo?;eHn|(Uv?t3jyc2uh#H) zu-r0>f@;Ab=k6Z>ZHQ<-WPUK8I7BV8M10$W-sQqcYz<#08>g;T)iM-+Zshx2uvo5O zKG=ot1(J7~1Ge>d7l3?g{xrUZu@}ucW*25?;eOy`H_hHQ1r{JkmI=)CF(30W`}guQ zf#FcMVX^H2fCawObwLRu`EW;~XMsq`XY$@N?3V|asAn|EYV?c{vckD*^)0Ojxf8K|r3fZ67m5sO1r3I! zPnm*D==*nLxrTORx+d2eMrBzoVR~rooOzTxA(Z#X3@#7tR8|_Qy9ROL_agc%{l$9| zyuo~ggnwk90U0~+x8ZA$RoT1NFLL&OK-!lQodQD?b=;0@+3;{dk{lEEq8;MX01ojM zCn>JgFh*HIi0Qy%j#syDKN7@2*_>>6CnBZP(8Pe9qFt!imSyz*0=Yh;QYo-B?k}or#p{5{&@NAzx}`0 zP4nKLe2-r9S)cXU<(=<*dwKr{-d}#_@BBUGGk^K7P;&azD_&VX<1>D_l9{*sz(3!U zmnX_^{cXR!eDWuMs>=OSKkc>U(|_4#miO#|yGE$n_wjeU@%QNUpZmGLy8N>JcTYe4 zf%3r*ejte5Cw#&$DPQrM-%x((Fa2bl7x^h|h$E=<;gzraIBny#ulFNA1Fx4g37EX9Ucq)OxQU{YV0%!P?!61ONzMKZ&c`W>G zA!X2t$q@a&u#BpfMlK{(vTExqmJOXL3GFlLZ>1bvX8?SN;KcVZsUG`Z%E}rmM6UgByr-h?M5;B{2i8*Q zHH;n6<+Vj?s?i*jVcj>9RbN0h2GZ^C!;yp|^fAW0kah~BDBr>QnHDrN zme0j}G{^ARc%Dgp=YC>+cxaJxu((+_>Vc)oq`6uwkvL=tjSLe|3zuAt)KyqnY}ILB z@rau=G5DWqhOEW2vYX+W`B-c|NMnn>7t5(rOCF9wO9XRz&c^|gim};z%>L8Jjo>MH zKf#m?vM(iZoDu+fewZAJJLkJY|JgPi#hYU?94hO9^KMqqEM`Y(`o9D=H2{1-gTJ}t z0TO6R>b8FL(r`~G2#4Y0TM)7A~fU{QfB9}6dqY%LFefP*nEd?$H=Ox|f(VtaP!FgZvH z+QR{_YSn5DUm$4p__>CI3-k*?63n;hM(h`?*)ADs?Vn8`ijXhlX`z}eYFVd|Np^SU ztmr%@PELJYAZ5fkE=5F!PngfdN8T9QRr_inMdb9r$oBo<|mx zV3X=GXMtEyoJ0r=Gu50KN)d}4n*bXGQOo9a6FE43OmPqlC|0&vp&6v>}kAs;^3oBW}L(-P4jyk-xoajo3mk&UG(6MpY|-xDuS zyqp&TTvJ4xAQLn^AXmVTJqU4{Y<&~pj!l7e@U>t2H9j}wNKd(dq*H z{l9nbNzXTY!(Uah^J{+1uPfj29e=yL|EGUiH76pAFZ=S}pfdW_Z~Z2n%O{_BLfiPV zFaM4EcK>REA?%s`zt8);UtQkuj<=Qn>+k*@ZR1z{s?RTu-H)`RSkjsW_Fx zJu$!jGF}7lAM@msT95b3_t*%P?``pf>Cd|>QOONfz%-{S!|Bv$Yo+wKHzI^|k5FQD*0D_(fYoh~rXJYhL>hGlQK(6P8tros(a-?! z-gaQLslBF^p9PS8JdZ%cXy4ns8NCaQhW7;rG;zS;V7vKxf!X3nsDc={Jn+ofR6Z24 zZ;=pkroCOgzr|(6n(0d8;lm*&Ob2^=m_GnqUPp!cV<46G46Ugskk6E6ce#erEH&5l zRG_`K=Z5bmXrWpOlOP*IT11#1p@-dX36`NP3gA%ky@LBxPIyLV;30i;vy|y z&dFZ~{ZEqDx`<^UJW^nB1Pp3cLH7wm_Th}}`ip`P!2;Mh(wmXAv#7`BXjYsE5|f0a zkCFzwjeaBvIxEPr0z3-PFZWoq+(|Vjvez$N69Y^xMXr&4U%H8+lyv7vtr_~rW@2bh zJ_jbhB)l%gWU>iTXni*goUOa`1HwG2z?oi66*WcJIH^k$>F9#J=gj$Bg~Cp9W>;B* z!P=>U`O%m2N~F6xzv8DIa#T0cUe?b z$`5c>0miANw}%&Myujro&!26}jypeWt-a5^@6`kpW`F>Rfg=Ed4T5BoO{*n$ zD;y46;czGv;c(c$_&<^Kr#QkLwgzjk9qI_T-BMd}x0+27O#mD~P@FIig`uWb@7;6u z*2$Im$^5Q;Zxvh8243BJ&#?CzGIM=%j&)B9(Y`;Z#Bk7VZBBCj{tv#_{?R}BhyI-1 zgES^>uvV4%qXuf(`-8b-FafA|moUt!%@Mz}-vlGqSxRlA*V z0~6%0Mi`heg6-k!uX)ah(aP}5{NBH4AN;_FKpXA*-~a9?9`Gn)k8RKX@GD=sD%-D3 z%*bW;wuYn@dNqW~xsnSF+`s#(xcq1T*?&C3)9gU8J^gR~n}5>&SO4q(O%^fO_c^S_ zK4+f?Og#<8``%TFvELQ&kMSfJ*mB)czy*DL`qRHW4$J@FKl#TVQ+@sXpZ(ca+aLYW zm)kF2Juc%O*R?Z`)E9sMU$hTgy;tnfE3drLKK8MXUzMTv#GY-#J7u1qSFiK=Pyf^Z zs7+RD0AGYV0Y$JfQr@IMm{$ysc}<{=(~}bngYu#d>$y4tXz^xgw;?la~2}<1@Q> z*tWSaKtB7hZ>*hqMs)qzlk|SILpT@rgO0@FsAY|hynPHkVVrtj9Y-k#ZOSD)Ui)P( zpNaxF?r|waby6U=iq$tTI|^7W%e}Gm0J}zY+wOqq6n)XOf)EO`J@33wF{+p zJ%Ky>jKw}!7?g!mjrD7LhO*h};;AA;j5+#we$M9+3Wnll*RU?1F>)?h1c3q)Ueek3 z+ShbXkEw@7l?)x@A7}YGlnl$2*-;z}1GLsiyuSop!oz*r?#Zgl`O+%Shh*}niGBLk zCy>TGZT!z&pZE0H)08JvPo4Ixmtl~6CJO_$kRozvYz`wlaG$*hcUNV@?rCdhGSv*t z7@bDDp*8xrboZ?FJt|?Hypi{4Dthv8DCokh-S*tm%_;imZA}Yakc;6Sj;jLo`Wv>O z?b%Lfs-Gh#Q?i%Sq@)mDW#7j_KSHdo^tpZq?^@&t z#RkCSntz_9vICOpdb2J)vEcN)&m{3-uC0E4Jx(;ZM(}Pw2|=i=uvuRP-0vd-;C#*yVRJ%z#p4w9*LVE99w)6 zu-ww|w9zb6t4Kg(s!^s86b+Z!=UnN^?|mWwwc_nrNX&ho4uA!vc_g?wI52o>$mCNR39yhg?j(!8z zzrXm!-*5lMzw!4*XrFmtK7Spbd2{HFJglP298SX?a^U-G1$y3fRj3R+jPS3p0NPwl z0mI8?VP?h$f9vzV)_(ohf78p6ZXTXt^Ro9X#O#Y-{JrbC{aX9gU;VZ597`Ph&;RrP zd;9KpzTJ-2;{GmJrK zdk8!`aHZ->llQeUn|hyo&NG0_@y0qapQBOYAs%~2-rn~J<0+#+=;$+eRjNG+GFbt<``eDnwQm$~VDbRMZp2XC(trrP_Q7hv}>8oo$K_n_^* zR{7k>sk9442L&@}Z`muPIQNT^x5C?d8x0z>twJxl*@Kon3L!i`NeiBzGV)rr^nP<0 zw}(P|9lg+b&v6(CC;V!hImsW1Kq1p;=EUwtvzITR4&_45T6C`O^fuU@>)+3a>n_Bi&BetpaAijfA)6V z$M6>h2OG#~txB(U-O^06S564$qMeytUk{pJ`4UbLrC2;t`BIoCE{+n>=sBb0DF9!uav zz%xpVoo_ZS!)xQcOI23%oaM*kZ~6opPBmrCaHA?du2{JOGiWcA9q=Gy@v_4{Hp(Qc zvSuC;Tf50R%7*VqTc}gFF~BIdE>`huXHgqu4PGU2?_@u z7<2V8NfeQv{N&Z~Hwi%WXwlMkz4xh3Gz&(hF$ z0#@qG`x{ep!wGB(*lGuGFf1WP*jO~>AjgtOGILrnLwJs`sJprBv;rr_P|p|7&Uj-6 zPkWr!>W$($f+p6_{sqK2<`4`4_-?&+%ePf08LoX7YX8-L`TuGE z-eTU+e#_tb4PDuuKl)6p*s_BUY01! zdYX!SWMeL&1$7a}B_tK!Eq4-(fY43{6!5wFRF#c% zYw;!K#dq6*&eICN5XbI00(+~D&w2Xx9lO_PERo3+v{1X=-9<)GWSDx`@)~jLBh@K!EwWzH|6zycb{DHuv-pL2NN@74>mAScJ%sZ_OlzJ`0q&%;o+4KKo5xoVvl_+|I8+~|Gx5I&ppF^37SjYjRP5lQe=68-I;DM{ooQ#gXN z3*haQ()JuPwBKXDx!)>=bUp7dQtRJ%c|7OF!@7n?=i)h4ra0Ma_AE1a+I#PQ_q(nN z%}=5@*3;ntK#oACrtpj?rqi0rfP1O7EP@3l2SXy63QJ0e{eecXwfP* z27BKM480!32eiNzju2$9@BgDo*;GvK*g4MX;02qPVSl_$$oKMe?UNxrk-~GqFdPo{ z(*}Ka_S)qP0wy=QvOy5Lh7#g{dr#&xixJ8D_F&tzvZhs~G~8=y)nbDOfEz}K-?=3i7*U?BMgg!ySH}F0<8dp1Yz4tOEkB}lmF(w`M(^$n=rxBz!>s? z224R9y+UryA+ZREP7hpcTw6BkfLy1*Z2J&_&`=evf=}#F#XT} z-rpY;z})Nc?)JBT^S7_`_~X&j<{}`|E~|j{Gavu>@NoPG|F{23`%nIp|6nxt)Y|LN z?$7?*&kseyzW@2Fcf`9%mv@GkZ+q_O4RjsfzxH?k-cUg7i68se&$M6s#ZTvbZ7;w3 z-S4)~e)gBgIGy$$jRFDx&cE}&ANT$HfB%2c{ty4h|I=8rS4Rc5uY1+Oo7-6X$^%K@ zDtnOD^|nu+S%U@u%;WG3;H-*=g2Ns(aF(zdjoViqK$FpFN_tozB^`~LR4-DYLK2k^Dfk`3OD z5VJ*iNqL*^;SuQv-p+ByJ|u7V%8g0hUhnfZ_ew={uc}kJrm7t3JXzzkB8oDV`?~MB zj^xPXzU#euB?6Q8k^85LdGqi{50#q7aSG6-WmHv;=z6vT-KVU9R@z*!0_ASs)HCQV zOwlK6Ws zL&=y=$g!tkc^x?uVyQ)WH^7|=%-PQ!s&HA3hmG6vZ2A(p486RgF|!hTfA8&=>5p&vl}!_)ALu$r}L@FFq| zZ-MQtH`;WJW!?@epKLPQyienKC;zxm zl7i~1)z!T>s#2-(i7Ub7P@LvIC%yA~&DTC_b0K`mm8RU?ZD_4L zKKPcZWlx{ImB3Q1n|!$rd^FHYDkxmX_(twUr40N1g%_Srt(BxijYq^%V6Rhkfdh;Q zGa1(+_bMyb`(Q%vKr2azp)BoNSrpI=-8KJKR>9~8V8nuBZNSR3$J*!`XdfBoj{DB; z&03np#5O+<^$_a!4nN=0DmU6@pvGr2$y8#)xh!wvhd+8{lplUIN*y*iSQj~9OZZov z_x`~9WBqnN_}B}5>d*e{&$su#|NZTEe&?U%YYA+x{~kSlu6^!TKHt9et#7n%e)AjS zHLDC}WtTtm>Cd(=ed%A0``h22{M662-~7$La|Q38X3sefBSF$*7ZKWJ-+u_zxh9F zzjU383FTLQ_)5CKf9ZNZ`}Zq<>sLpTQsyuE}xpyT)=K-YPD{E`Xf(;CGAyXP3%y>Vf%qKxhY z>{ABB&wb|Yu~z$BD%e4HOCUmJGoDYG>EV$IfTYSRUe7LcnCl5|>t67;jC*IyvA(VM z$#Ne%>d!yO*i_DAfB8P3Wr?}$txbxE%AH-tp6YU+3o8tdL4+Rp+J(Vw-zP61ikr>_ zT5iyiDAXmx!~3(Wp+GsnTqD+;vhG9a*=COsmB`ZC9f{7qs(3#xsa!FX9-wUG(S$NW z-w5a!&jh$5$Gh!f44|LKKCJgQx6u{8_omHNF}}IS%5!Rlva|GTE8t$5HTMCan9BTK z${E$e$T=dPLqG4z(WOF%;i;vXe&&9gvJmTrg z=E8V+TgsHL?H-L7%L@vYF>vXL^m{~IY+1?5m!DP+$ekWMx~F31>l|{myRu_zYf&fk zl%czJy@iNZ(6x)GA>=k5u%VcS@pB1dAAnxx#rl<^ zaS5K<5|46LVC-iOwr&=NZ+TZ37kpnX_b|CCWHf>&3{1l!$#b>O6D~&1+`!8b&PW~( z>o(S)my)_|9=Sxg?9GS<^TK1SC3I#O-@bq2#@K(-KmUcl{qJ3A;NN}o&DWyL@}rDp z!^LC^R2^me3vZIc3I!2c|s3j~iYE}KU_3yWs=VdD(2TDV(zR=mdxF^%ft zt7NHa0;JYg6eU~uRl)}BvW>OGHPy5kpN6lgl4h4{&rVb*F%Tg|28KoLblbl7z3=4V zzRN+W3d6ov2juJ@(GQl(SobwbBmy2)bESe(CTxa~#j-@gaBE^Q-1X2Zd&&~!Rv8PP zEwzNb_r32M?o(4z(&8v{HDZ0=``$m2=q-`oUVq`mmquKqF|vhpK`S5o*vH1h%`#(g zox|dD{rt~eJsTGOb$5OJPyXbOGS|v3>)rDD>#q(aPAkJvmQaC&^{ILB`fL;SrtBGg z+3QAY=KZiS*=v7(^^QD^{x_-E$GUv>Gr!#a-qq`270Z5fRWeNY8(n;2#T^2=jBW-%Gh{r@t^s4=#r(tUrBw~wA^=uzj|WE}v8tZ5fMf)4AREpkdO6OT>j)UqU) zhDV^AY{uMO=|qMzKOf2#o+k-y?8}_H(`K2^ML61a*;DSjf*?gNLh<3ewQG$C3k(q+ zI{GZbq*`@v-HaXE!|1Vy{bsI%UNvk31|fJ?PfujuvG0K;nWcii^+cn;xB$Z$Lhrq7xiGsP@lU_{^cTvbDuod5F0zRe?5`89fYAvnL&~eg^gg~{{rsQ7k^eb2I zlJ%_l5C6k|&|Z1v2f+ikqX*1KKl-uu5B|abxsphGRn0nDu^GD_k{Wv1WNug-vna#i zzR(48Z2KJUqb~AX4%t`0WW6Iv=61c44L=&yebkq(><3X2$c4a)s zo1}|2Thuvpj-WSbRrXcsSsT9gxVKkCiV9u5PxsPLL%y$bVIPjXy~$_U_qXG1*8VKK z%^K)hp8)`yR*h-GOYK44R={>o;g>P6=lg-TlQ!G`2;Od`^Hj8iU(?ba<%V-jV-DUv!Si=$hzXw~PX`XkwceAr zPz>M`8;2@ao1D8#g8paec?77bH{j`8&qhe!P^y}Q*zUeYM1W+Np32?cv-G8Scq{b)fa!JLGP(qb!oReU3OM4iF5Q3j^rl_NY^;N~}`R9ib`rpsc zvfj(8Ho$tsyQ9^Oq$OMA;Re+D+~G3n?rLVE)Ro8Pz+yMh*B%!f){Iesp9(!b zn_%t$HoLsua_lXwWqJ7SRRL)Ti)ERu#jU~^>~CuHE7)kq@yNl23%}{T;`8>tg>HS~ zlb^bJV1B**#&7&)`}OO;U%Pr^EWgKk;7}P1JX7~>vLLq-t{gmEs&qHu)dWO` zwN$V@DKN}4{??Mc`k5S8bAXmDul&Ui7 z|DZQdh_7(Mecq#epNtTM)zE={A^#-yM!l)6GtHP&0AH1h?Bj7?RqpwBqQFpNpMzxD zKFJ3P9;gv0_v&<-j1#AkV?r*6C+3sSMQGzW%1Wao0yMz~7>M92mHU}@*+mX_ZzJG5 z*(WfMrTfuiSH?8&YY$9Co)ShiGs@aF(U{wx&soq9ktgnH_QD_DGl){rMgOjRK&ze) zbknj~>EhVTl&KLSxULxz4K0IZk`7v%_SLGIz&9=P?Gr^sN|t!FsJ#`QP z1N=cbaxKS9!GX!}u~$f$ueY!HP}U5WwmMJUV^(2YU}rp9;KTuu3=CFF>+<%gajK%V+vhmQuKMgHYtsy+n z33DHevG22zVv7i&sWpKL7bN*>Ea0e$Ak8QtBA(CpH?c6OptaAVkt-l!16aILE^czp z+=s9!2vmhJf*L}_Q{*vt=cj_E{TOke~;S{tio1;pQN)^;QXj? z!23!E$34&IpoGB->zbBpl?OVeBOpx0Wxt;fHiPMdq8#_?@+^4lA=*5GWcX=0Jmc-2 zotEt0?(z1L28i0rqoO+Tk60?zaFe`!^Ul2e(3OhXQejl%yS?A%?EtbQe(Ts4+2;cK ze=~0bLR3-f5Ak-JL%Vn{t337W?VM}l z<5)&`k>v_x7`P;`bFY&1TZVX@&mLBKInN#ktmFw;n-`Su+?YME5qT*~h6u9nx)1($ zS?=NIn`qEj=fa+e^UCiio6im*Ux0sG8N$b0YsAlJaTx5QY4PD-ZR*c|k(lcK6v z$9b}3o94jqoGMpb{AizNkJ*pAP%PEpMUM6DZFxd#%$_7aLaKshZ=+FX$&J0uaG)ZA zUU=cfjQH`rDm)F|J>m?1_B!@ZbJG@4nlGG$0ynu<{}-6f7< za=WxuimtnQh}Ly{rWBcNE3Lb#Rn)}SWUw_|e#Zj_?OP8!HWGns6_vD-Ll1y(7sUY3 z^7Jz>#Zmdt1HpD#tsLqKJpyay^XQS6l~%2h?-9>v?nfn{SJ;k+4;0W)>n-baI^-=JFAgv) z%Q=R_8XY}nstnQ?FQ2i`Kv+R_Z*2m|x)-UrZ*$m&K5w!r3#iVq34N&WR#0^h^a@FgI*2*CKf}a^BMhNMQV}}t&{?IXEH`~@ruc_#%F_`j%%vF z=jSotmL5At@bPo6z(Kk)V*!26(di`-(r9^&nG;BA#94;fpged`j(FJr#P z+l|5#;wfqG%-ig1?swBL*5YldkL8?V^?WQ|4a=3IeL7!JhVnVn+0#=Y;ww?;M0t@lF8T4WtQcbnV20O$HPy5DCKUW^Y`cgI1p_R_ z{};gw_CDcSoD&qJK(PwemTlWBZ!|)fG~a+QbpWD9sW^b{kqbxiy7%fatf0{j>Kz%m zNvCxv4(V0wJvQ_?G%9*XAYM_DMy|)~)j=4b3`vD&zPZX~a zokOlO&$hkeo`7=XiOubNzC0*D{JygiutrZH^?vA_PzEU>K7~xidF}mFoHkXiF()FV zZf;JZC_lv$o`0V>Jz_YYjik6DZU~7< zVvW!cF0?h((lp=XBq0X6Si@Vg(9G$S8)OMxcXw4E+`HV)8$!)|wQ$>IiF12vLB!|W zY`aWZqHeZ5%l;-DDM3$&f^GlVr^T$uaqhH2Rtx;4idfZ7{jodopTQ3Fk9B?xe40aYyocqf)YG0 zB=|}kdOftl0s9=!&q3+&@!LJisR9*Mc3bd{t{EO2EybJN>H9HfL_jxmvn-Q0mv9pW zUdkKXSHYkHZu^-Qzqn_5MSA5~^cbslFCX&@(5Xrfdom6Xyq)`=7OpI%+uHQZT@1pqSmYq(%Vrl14NCu7!ZzL}z-ijjhXA|I=Kx%K;vtX{S`a0d4F#{BIAzXaVo+t@094 z&J6Tg|GYP?5>zOgtfP<8_j-$vGXKuSD@@sXM59a;j{(9BoTrkpS09?qDVfS-3ix^6 zE#dtm9I1~~17uKzU7_f<1lRD`Z29-su+ZN`u@4U=dp5pjcuM!2vG6*4PUx2^+F(VE zrWt&>%;SBi0DyfK<)XFL)F5P+M-q7nWV}4?opB|Opo2N4$_3)rL(tk)jMq@sr znCO^L_-xI1P4`cM#Ur$z%^XLTBkXCJVEriUngKAu(3 z1!KXRb&SIBx!xM7lpiAV!>xD^rG$kc#*PK_ML6Yx znX6Eh1uGS61qJMxrW9yhZtjm&#V#r`xXcKR7AsEc(?UW(cwTU=;i1WdzrC#fHeMxE zzaM2~*A(Ec^mv)*n`9U}K>A3?(@nuLlN-C=x2R8oT!0OScid=V77k2Jk|$A3D;Q~I zA*@Xd59=z{8$STs1VG}K1S$FXrQh?4C7lIm1Vkzb)&yC`&}AOS3y?!Hwz}bKKBZ_l zK;KhA+W}CjtO+A(IoKw9lBHL7alglNE(%IwE*XB(C48?55NJ{rO!oYw-m89y*KQRC zxk|Iuz0FDgE$E?lv9`-tDDj&y^|B|EveCZ&cdtLO5(%}jInHw-EwR_U8t_kaAFK5zfpOwLB4YqCK?E)jBbOs&i8PfLs06yEy z+p?|$=)4_oFLRy<=TWYOC|*2=YFO{c+p<2r_j?Knyj^Qu`+N~2&fD^KpS`>eghjz% zEW$ITh{U5>$#(VRq`Yatf`eA-S*scx8Zx}{H?&fi0+y8T!ow-&`EKNCoB~k#YtGA~ zF`Df_&A&y1Gty<&~3l?0`V72xIGBZuO5KDQi{S1pucH2T)lx5j<# znbuG<=YOGj`8kz*)?s)?TNxW?1ArTF9bc?jG8>uWpRZEW8YSbHs`idZ8s_1c$UoCW zK9J{20OFq#pjsnSSil&o8eE^tdxb8hVV?7Z*7XoQF#ck@tSXIpEDt%Mh>F0;4`M!BZ$6X9Y9H z&->b%1o;g1)=N`A?0v)8iMg)dH)n*lNqPC@m$SN+sHFZpk;VmlgA=40E_L#f|U z{7q=4je`nnsn}%-%E&F6Ju>x>(w;ooshUI5HCEki5EDS(y$+`edDv$HgLu&%>7I*V zN1=e3ZNXF<GXDwe<)ODUpvwSyO0G)Bb1r1W89(rRxuz)J~(*g@c53@p5 zp=JfBSff4es~{CC>JoF-?(+G}b)9pwgkDq$;eL|`skN!>D`AtV^vGW2XCkixS|@xb zm9$-~{j6sIL%?DlEZdyaownPUKNj|*qLWI8?DKK}?gdtB92(A3yxnsD0Z4Yi+iGNC z9xe8?37}3o?#qZ=H+8sLV-l_yBJ=k;y7&;W2o-?WOGZ z)+Rnr#ct{MidO*M>51|nZ}%$vakMo1J`gQYp4;APOehUq<@dg4Lr|9q;W;_2ZC%Ba z)mqbDOH>KBr8fY4sd$XAhC}H4UM#A_2~VUF zv{e4Xr1-|(X`*S;W*3Wf?*jTFG;`wZR_lG>Z45WuHCw}0l6_h1f-?8`mgPX1p?NtAoSTW9ic7Q$4Dw|kSdh`oX?lcxm8F1e-v)Se2y zT{qE85^KCy-`d}nw};Ytd1u~Mr7UvqCum4q(d&XD1QQMARnjxw#wQnGw6Lk1w;&+To5T4`|t8iFoSsAoiS zSQwJ54b|b6z#*g3*~n+}3WFmg{z3%COsgnGc!nNdE$8L2LcybSK1gdG*!T1`pZ(b5Bnx@fI(X3va5(JbL7nGwj3e4ttgp0Q8eoq#8H% zvvHvv%h#y_gOEYPbGK*-PlVGcyfDQaA{dt?n=`2kP2E;3EE|S43=yOGmMhC&GX>v=k_Q-!F~v>CdT?-= zKwX#h-r){0bI|VxWudqG-HVS!0>-_}Di`B{$#`Ftn%>$y%hn+5ULJvsaFJzNuiKRk);rEd*8m-P!~~`+;Fur?$^lR9&B( zr*vW-_iuB-0M;b$9c!2eH%gMMI|4-4Lg(|)l@A16 zX3qfx!^+xvdhrIR+bg_Et-#v>h_}|J9y_hI3H&P^*mYF$na3gq4E8+vI21?@9~5dE z*X_;CG$sz)G4Fl|%Ykm<{&*k%Re2i)B9(`C;BDna_K@|^{3tBiiyX#B-qtatQYF0o zpn>B7-i8)cCUd{`0B`d=9zwOzvp-Ef65ZIaWWOaZQ&%95qOZC{>Ybc@o*2KqHrXxpmPa8E6)l&fJ>h$0G8 zo+7}yL8Da(iPFJpOc=@pDzJ!0gVB6pNkT_er|ZniJQO%DAwo8T$XtWi?#OBo0Q$4f7&m! zoig8^yzffj-e_WqCrmvLey_k-mrE+wSl>M)dQWA_)_~r9C^WXLm(5#E^tj)^L(#WG z^Bfd3lOPYM)M~EG%f9pEs>BRKz_x|r;mU_riFM_vfHXL;UZd#JqX{_MrT4MCo~IIG z1Z{vRk;y6p6c4aR7^sU2<}j>%Z z1HD(xZB{DL!^>S!`_{-6}dn$YotbJz?L5vU0 z7Q!Q;5p8u?lAgSo;1$4^U|$YIE+rZbN0>j<9{kQjR&n*1Azg$+%Pj<==5X z*}nlgx60RP2f)mp@*UP7_prC=AcXFGuftOypfzc{wW*iND$0t|K9#r>XsRbl_XCAO z!$lF~8grcUTdPC;CJMwVucN#imGk7^!@P7{^VZe8`FUVvkixz1AQSbT$=j{Xye)>9 z87%fmxndpgjCA4cp$wT-?O=UAuI-UN-;TH2;cuV6TdN=D?KXSt+QYo9if8fmY4T>E z1lb(_Cf-f})Lpq9Jv+u3v1MN5k+(5KtU1nQqD%D{j9ce^o>H#D*GaPxHnnE1*%m!v zT2!IyjRu2#sbU;imCV*+FNLy&q0K{v1C%Dv-4n#EVHqvs+?qt>R2X8eY-N|?NH3~%m!WEpqLLMIU_{Nt_bhE7jnh#o7zvB= z!!yk5U;r5mcO!-@V0xeqQxTvU=^2YN%9%ZNc15H7&TIOutCKg9R z!;W!>swt;+a;c7;%Tft-rr6lRC^4}C2m`{{6p*`D=ORQ>b+nb>e39LS`9!SK#M=rYcfyQj1-HrfxQ6FG_Fk3R zWi4e9Pv`*m>pJuHvLr9}uv}-T>0Zh#?{E7d{1aMeC~Zp4^MKo^#Hpgv}*9nY>oCXunGW=Kybeea^A1p0Qbi4(|PaXE)SI}Q&CaLyas!D zQ7-|c2|3$Bxj@#D|3jV&7I0PE>wN2t@D=sYo&r3bZcY)Z`drzGny11G8hO${_7uSS$ly8!ZlVT-Q01nAcD z86eJD5(f2FU|X=DdVNSjANLO#uf{{itL0(i++wYHE;5GS`H8GytuP3n;M@it#S6kY z##-2=x#ACDa-0++RN>%$W*){@s>`!qf=>UR+JV-D^@MZiMTW=wX{}})tZ(Sn1E8w zV<8^w^%P$YXW8q}> zSt@QoOeAm_b72Kw^Xzx?-e_2zTPf7TbX&>(0E+m1X!_eWfr}htST4BlP&yW|b4r>)(--hD<>9PrS{GZN!!=T2y!OWijPBJL}TI zW6*Q8{4=tz2&}QEO%vh67+V8PhUS^uE>*^sWm+SC0vrI=xo5Ekco4D3qC^4;;a|Y* zzVFk1*uf*@9)+28RfX&kHt))VcbB+CG z4O=_#b^zMeDjW|BJ_8!1%qL|fycBW2qxV;72L9RL?R{=oNwPaMi-ObSp2Ur_mv|A$ z)5&5ZJex0esVKQs*?79pFS;*Xiox``znY#GgSW%5h8K#n2>?$Xk)N~Gf2x3ZOXWEC zCdS9v$vO(Dz1}Wi^ylSZ{z~mCSJtNv+>FMRTh+))j^(bV+6j~i;NQOWIz=985-YkhjY9FW|wl(_Nc<}?z zmvK-3K6!WnqxRYhS8O#x)CW+lvb@7U5T7^2gOK@kB=?^O&{LY$khRt-%E0bP;<=ys zL!+W^chJsB8{hEgDSaDeG6wn9-R@mvi; zc+*nu_0kZvj}fxb*5NivJfnoznvsWe8Ed&FmQ;g?D^V@Sj(3V=f9=gO853K(r?>&$ z*>5lwYsqJ!VPC`Yjw&Xnp9+|qlEof19CYLxJnnt=em}&v^$`%6Q4}im?Vq zVAu*!H5nHrTE}+2)?sN$5rtHpZpJA{02~ z`1dL?s@AiM0H7}OT$W`j4XX1jfVQN^p+Hu7zjSPXXq1nZ)X{P;??mntI4iz6@~;ET zhr>Bh?l8VUr|elaR}K|gH)f% zAzOe*Xi4^p`!wNgy$3(F?67{HeLeDa-fyoEH=a+f&5^g6^Puykyk_d5LuR}kZ(}7) zdD2QjnRr{SBX6s5BKK5yTgyJD(ks9@EA$Bh#7jxHqY@<8Ezx=)x8DtlphB+UoqC~tL@?FX=ydU;C@N_x` z!s9f&BZq3hs-Usg779j*X8R5yb$rKuC-nj);&iG;tc=(GX<-0eM^n0uC!U4FV0g&( z3V&B`rbZ;FF`fIBVzY|^RX7qODiKoETW1k`)Uu*5eHfvGdy0$!bQT~7b-fYb+XlqM za0SB1p5yW?K_7%?9a`=4nowomRpC4m)>=#E=bl*OG+YaYgkT?!IN0j0y30Xm1oI@4 zlY9)`RThodteIM3&iSBfW&=XBJMUznl!IEee%9`McF&7{W}k@Ee!l+3>v4!I8A@S; zz!L%i}t8qx}Eh|^4E0Q|qT>t_}+Nwh*MtUy`nOaFT!8Qeo>=g$)7cuf!$Cq9u z9y!n-g&{x{6DmTr15ar4!{ecrYaB|6Dlu&*VX`I7>3;G3+)I?^Sa)~?8gt8S0X6o= zWysC2a5?>lC!*Co`m#JoH))~oeaeUE0v^Y_)>>!f?Npuw_#b(jt9lbX%-fVxe<$8n zPg85NqIL?;pwcl4Kli|U4uI4HwUmW2qO1q{S`NI;{QH5ok4jI{Y^y4UP4=&g9N=E; zMGKnMyd~v@zmd0lpA1K=NfUXcAw;`;=Rw{kv{Wwm3k&fcz&*#Z&mIBp^AK-mh^Q#I zTqBPoe)n_3D{Kv~RV?WUOBo5{ExjFHweu!(UO4NjI84zsU>rpWAm=h7-1MJg6>BFglI83lj>(VC(3ic!SJUG&a9!D~E+du1+& z$RRubE95%J%4E+5C1DBzli76`n-T$?Oxo^J~yy@ zC_h6PI(XeY+N8qV?6Y{PobFEPG17DsoE>=XR~2) z6e^TY*EJ61m$kee$_N6y5}7=Co$x9qj}n4{Q+;3dV91-)aM8SoGjwHUuB4-y9i9$V zh}d+C6GSi}Kwtn4U!F%Y8rmu0C2W>`)}Dj)5smdG5(taIt0bOoKEj9uEMiL`z{jK3 zdW(42({=1m3e*VbVf+9|LKXl$x<>xoJ#z)PpH_lPf{1^M0Cz4F2a?E{s|w(>CiOmn znHX?cDqE}HLy#Ry!ZK%GXa2kFAD4O&Qt1F(1o#JB1CFUCrPjYiz%gs1$`+qf1@&0Y zwhQnY-`lEmD?kR2gkr*6X;`Mfs0sZ{&j75nQZibv93%jz9(pYRP_CQoozAoOJ}Jth zAAvk$96Vcv9YO<{G%WcfYRONF_gw(3N2A6{zRT)*OL=Lae|S5uefCf&jiH=1;lV8P zEXprGb&guHd>26dcD${Y+Eik~Q_`xa{*ZKN^D|89CGDUK-0$@1tVhIcuOk`N<;4F4)tJ_RH81CW7MdyH!J*%!=q8w zp>Pn!o*sfUxGY0MDB5bN9IDZa%Ps1cd@k~=FQvfPJ%`sO_@XMF?Skj_cy`M@<$0N8 zzAjR5rIcn<1WYkgqY;reeuT_txns;y?6BOQ!f4I9t8qcA;xe`}{&=elyc-Jixi5u8 zO6l<86pXbCFA$AXlgFAWn+ZELT*1O|^1lUn*xNsq^vL70@kT?^Y%`Kd}0m(;w~>R2&$eL4tI z)4t55_;i8MF41I7DM4vrL)jeW%=&l(|y1RbB^~~0Sc7dv}7e?RE+Rs8|-~@KPr$YAlm0pf%u++ zMTBXBkK>%;wW_QlmZ8=%xmYdz(2ZJebxjsMWaY3@kCD2KieHF*}19G79?y$$cckXr^4 zm$@P#ppfDoo;N0EtndXnxd1MJ8wS-2;4|f_ubWxfQ5<>hn$1^xJC>%kUoR0M(M4(L zOBGvC!>IGv{k)8k?-Yt&YgLuYlm^ccd6sKs&wS~nca7dTr^wA^oqSG}YmsMIR8#YL zgz~i!lH8~7WBkD*ff9#ua}lqZf?4v2?Qe|Oj~?BohXom>fca=xMs}kdqAak6HkMVq z&+2i}JyWHFxe?xkyd@f?cxSGNsrXKnsFDX2K1Z2nJ)3XB6R|}(ZI#j72h7@9n=m7B>vLF#BBRW}I_a1d*y#KG&Ve``+`ZrXhXvby*Gdq4Z?aPLJ{_7a zOy_C7h0%je$Ci5&)>A+e_hD@5ZQSMta;%41 zfsTNWabu+)ajZ(4`&?pK>7})HPZ6;H-ij6MNSk%Q-lXtC83O1+d%GxdP3S@Q!s&d= zydTy%=hiCT8rqt|A@>6LlaejZ+Ah^sAwvwq7?L1T_V^xe2WXmj`*N9iJBUu{R%!Lf z=kLVZ>p^Zm$lHAe%lTSs$=kae@)LmX{q1=>#xs=E@X-BF(9`{#Nbf0TslddV9eG>%j>~`d>RSfzp?^U11PGT3D^A{S;n`jn zp)FTH7EzG=8Ef#s&2)Cy|Hl1Kr|d}+Uy120;Zcr46}u3c6DCn>W4FGJNzSqb4H?pO|S4Ff~Vb|P@X zgcw|Fuh>c$+zHlWHMLm}?kg+>CQzuVW}AK|LcyO=65G4P4?~W0AzZYR*CE9U?nLu)}F(!%YlpcU=zSRpvc~)(4^{` z-I9h8sLmTr}GRM4NfP%&RUa5b+$_l7ZZk8>DaNRZZ?HZ^Q$af~du5kHgWdzDLO9Ll4; zRf0I4ii?1~qXRDI;Z0aFlyBTX-SdGU|!veGdKWQY}yDd(i7f*m2MJc(<;S zLsFJg@0H>qTqtdgpMxf%*v1|er0@Xk75c+D?#7OmV48DleExEop6Tap8FkDcxvV|P zHdo;e8%I{KYi>Zuytu8r3nbGc`}M5fWo=08XHPv;Pl|u2eA~(!reT79ubw$s))>^j zN4PvnIF(H+N8*$U68ts1WRaWW@^+h^Z&v|gukJ?!Q4~TdVG#-k79zyU_oQ;;2u~!` z&02EQ`6Xq8`y7hS>lZQD094nNXqWSpvjLw%tB>#+M3Jbul<&<@!p{PT)%c5CyOpGP z_)mLBwOG?*ZVH|aJ^umHJ|{N}WMP+!=UDGMRlshB!sqy!LILOT9lRRsD_E6hBgYJn zl0!n+UU@pCU`(&PHuh98Ju=xY8)L0yODt~B0xR3SX++67sX;WA82Q_tfwDo59~5iN zQ9>VJjTMudGL`8p7s@YRMDZm5rr%d&o<4mtS;WYPL6E@EC=|GMAR1x@d0jPI2JPR! zq?TBUPi>$sx_)Ll@Z|uZ+0LlF@hTIWhE>*R)WMq8J;Y$=v7gf8Q40>)5GdY@zG{f@1` zYpZx~#swfM3qt{{Cg6q7w*ye*AmiXd=_C0aZGTzk2Bt>5j|9Z)LD5p|)ZtG4Niy?R zIUcLT$0iNz`=kW1X50%fnMy=}qZMmjYnhO*mljBwaNO+_ff_k9?Ao;28ID?K5Hltv%D zJ#KD_cDA`<-b1_%sJzG9{EN?CL{>uI0QXF!J>BGf;Hg@A<&2FATpLEL0Jox`9LLdm zc{O}2k;BkR77kgzRuwqs!6nL2`@UTwhjsuq;Rg+QcHVJM>;TzW$WG^KM zkV_NH3^UzaA*E>~1yjxuN|jh3lsq4=d%P|J*lHc-&{1F0@We%RMnd_(Hmq?PX4_ow z#;eUO69BidqS$cW&~wjA4tq`l*np7E^8oKJj4-}Of!UyElnxy`sRGMFpPtGo;dA!9 z;YkQyzC?3ID77Ciz_IWP8+A_b4c$X(4Q??=wJ-Cd9^X8 zNg{U$fg4RmL+KfPQ(8}N(K&hpp;$SN?ui*WPtzE_?>RPAPV6GxB9)s<<%X+=N23o| z3;PUt?c9sC;X9`TZn4j^Pw<5Du3~bqwLVuBRR7zY`bdQ+VkdqnWHhA=* zJ~A-+d=Q~|A$;A9_1x4!)VtB1W5f0tMD()!Ream*nq!cvk@B~_XO$Sd>OsrN?4m%h z;GRUcOvK9~uqayT%;#7k5vn}-=TGT1(r_MJna?7|)W5fRC)u~&%8DjvolDf#H%piG zk>LR5N}$~3No2)`QjE*Sy@nV{QR{ z@>z$yU>}cw0dR?>ORZYEzfEX{`!RMcsoG^syU^@@1ohjNArU&y7W=AAJr}WjZvfEN z?p2fGnO)XFJy}YVsXPRK@tutSU8`X&<5Xn}LqaNqLCX*EHbx4~D`9LCfbV_s3MFXo z?Os)`x8?1vP>}R&(C1Xw>_;=- zz8!DxbAF5R<~#Cs+>@WfP;vOa9-#1co=eLz&r|5FKg8Q{zlV7HLE70X-xNM2;sLtB zD@B-H@^%viwuhG{dHdE46}yA|7NB_SZyErcI+cG|hgH0sxo^Eq*7U)v(MO9=biR=? zBn%a-!D&6^m{ZntDa_K< z9zh+7T+U^2FOh?82{BC?yi8}vwpS9jVJY)2p^z+5lJ`CDeNTJijW1J1w&e5vtYkQwK@B&gV@Wx^O-r|fhz^T&lNA+5K8o=Dz_eu&#bY{ z(|Uls{PMfwUYGp-A~Ih~9GBO`L-$!T6f8U>oDZ((;8AjK-w0jXw#;!N{~D}k8^hnN z72ah$TEKwUp>^kpCBqBtbp`S~Z`8NZ6M(6sZ=#1Nr%BfOxE=2X(sVJYRj@tgv6!wyID|TD($|y zd1`ggrc4uXJ^&pTP*qV)iOB`TC5iT^T(Jgd(yZT5u1<56BN9MIj?5ER$kH3JNn-tp zQp^5XULXA^MElKk+V|>J5r+_<48WWf;$kh^K8HY!`Pdxx3I!Q^$3ZUT0ee3r=kJxw z2r$qCAe(jq6k7qUyw9>^T%~qQZmmM@P<+SpFBMZCn=|!YAwLQ5=$5c0L#7l!HGsw% z7J{wT04v+{`ItAnk)Fi^Aj6uKz|JN1v?kD6TEh48)Qs<9U0lmzUjoi8`c#)uz&8%d zeeUGDMjU_+H9m|W?V!rT$!x))vO0DuUcCf)QZ8>yv) z`K)?!THLn@O-`PstvoY$Q&VOM{c@4~xeHJR1Sth_AZ-yENTs8-N$zmo@f^nEUJ9Wr7Pa?@x4DnXVw8nV z=o%#>c{>asqqF<6RvGHnX5Jq3dUH=Hg1=g?kU%@f2+7-|baL|0;+09cY)rQSBzh|) zW`yK~RoU};L@p+7n3JYi|MWars7&Od4qA*{jy=w@TJZWsShQha)DUky6Y+G8Wot!? z9zJ-EzA_bpMmgoQxNmb+!=w)}T;R=NjNZ(;I>4*)Np37>C+h*`I9sop9obme#FQ9~ z9PzcR2oFNhya!8o+M0U??0t+b{(LPu;rYV*KIh#c|B;68irI6)hr+T3i+sw6Q6 z1LsvPxgwKTlQa;Bald4uE0^VEd6cOKU`2{&Je9Gl5eG%C#Xg#H3}#N**2^0V{GWa`jQs5xge0aN5k$LX9N5k8JvOs)3)?S!`-w_@F78n2ldi1EE@!3Wh!H&s9t8obp^{r_54^WMjuma|?nt z@eF0qwpT6-RcK&>G5@8ixv4dT-`OVxI#}1odMP+)mA`_OUB92eBY-R*0+0e2xd}!a z)~tR%M`awZiDBG2))sqc;PNmD_1o3Nt^*th=yyd84r9eH~>l++de(jGv%55?OxUTBTa=a^)i z+qO-Hm)j$62W_ZqW}O#NR&*Uy=Fmw#75Z`LuV}-SHy89U@M(dBD9dM+FvH89*2gAwaA}vd`{K#-;!L7V1aAi+dkwGX9(}3uqCWpFTM0qR!SI_qN_Cr zg@=SCyBC$l3S4aYxffn|ek?Af+=#)u2vK=yJ!)IKOA(EEU8~0iR!|N%z!vu!8nTsV zKCRQ-AQFq)ZE_go5fhS>LqLTamPZ$?`_#w?tKxn*Slv^wG%c+O5iLu_sB76f#tBoH zkl%$Fcu&K9bR7GE02O!~e=cGn$Kp3EgRy1`G=`@t?hp8-_fL~&A2obJa{%u>tk;Wp z4kl~fGFL51055AW_DGWa0T%3)&TAE6(t1yYiFF=L({}QG<|=h9=A_E_1P%t!x}R9- zb9Qj5!d49pP3AM!Ar2$uV+F#~m|DvuYIR4$Tde6(*fD?C1k%zJ@6W~<~ID4rAw}qmp3LSi*G-ivsWY_!tw!DqO0uVmdCz7U9 zN!j)+xyf4djD0KM25;*=DsQ8pULN3WyRhblieDhb*6qOCT7@!cL3v}}GgpA;{HyZz zB1)(7w#n^OOjzrE&-?B2UB(J;<1Nt6@&J*C6c66dgFY03F+RMZv5tKynREkq@4ehh zvd*_*8Ru{4E&qmI<2AyMs>FC$En9gF0P6!dge961%&k`m*wGYm+cKg0_NE$2Z<&mI z+oqxpqWqnrN>K|1=uUaN^)N18T9fZ5zs0$2;acmd$`;!kZUaaTUJiqt<+4=RT!cEu z+5!O2m&&7c15i~bwR3if=7Y#s2W}C97D_2H<|K+SpT!F}V(*p4Le6RvWw%sUVUwws z)m}w^kiEn5Zg}JRoflqsF_kx^MU|7Iq4wz}!|zZOQnrVz7|)1EiVA;fqk5HLr6$T1 zdt}9tz#*LDdY&szX$eA0hIrZTDkY6)0WXL0_ArV^QoTRhG1t4_{q8J~aTbI0I75a^ zsvMNsua@mM4162#M&3DYt$8|M*IAxko7SdEwP4J*u6T^Kg)VFj3zYl3cTqwNPhO-% zJ{XGcqtNm?b3bAX&R_GGfJ0Ft3b3EZWCL~V);t}AD> zEfp72M3%J7v?*LkL79(pwkq3#`glE@>=@g~0y9U(h5*$P(OzZaE&Y6yoLRQEwJGF-c{MaKLEjQ06T3I<`67_3$789V^zz)4B1AAk60o3hbicV%uj$>n0SK@!Y)< zs8J4lANE{}G2K>5g&%sCOyEUOr1Bke+CzED&fJ48ykd=pXie4XV%}*LkG&;{ov;U# zQviOCxp-IYt?t`%O)PD-ls#3v8Ym|9t1s{wZav9!*_4Q>YtUt zf^W~4s=iW*_HK0^7RY68bVnSz@^b65@<<11#+S+|w7k#dvWo|6|DjXpopr-{?D7wO3& z7CE(0`xvTN0CIB|8awiKh6}{KI3SV#W_8}9VO|=GVvb#Sd%Px=$?E&HO51t zT?z~Lg|{!kC){%r-gb?0&#~7Mcu@~{n~+!(cjawpoV6pzG52pN4?O^D@YlLbR@jvF zONFLE*R9vM9E`Z9iGmC8w0U$mXY7a50Ws;72u}DH+M4f|gFKos0&s8RY_jGeDml%Sq zb%fysyWFU_<=<*7NY8jy>sm7xXUux3$dRdeZ1?}%Gs^Tng<};)*&`|6^9LS3@+5a; zIs2G0d|9Rnp-Xf)eRL}&oELa#^D1%68cNwY{m8p0OM3QW1Oq360d0&UtZTc3oIKz2 zXt=R_Nv{WIgah}t8X-?w&DK6|?|T(B?`eX(#gI}!`z`@GV^YHnp<0Cxdm2`%YT7pK z4Tf}+OK(N;zg>n^*(1(3j0hOrp);!JsWFsN-l~l1#T>!zM@+7`6U@l`{bz-=LHFv# zC!(Wr7axyt+wbmJaK)Z|MUFFG_yL+wz9&pFpi6$XaD91s1}0A>n)w_;%jn1nf%8)* z#HLZX0HwqIY-HOkkfVPX&@))CtP z)AB}Q)#5#EG%rXM02UB$Qfv1U{}_{fh7Hh4YQrif7JqxT)n0!RN*RC$;KFOb6s?K` z5mRO7E)v$8fMyQdw9JbYDTzmbPy+r4-&?~Xz~|BYm1&k`uKVvds_|kyyc59&;M0qq z2moiScp2Z{d**a#l`E`_4km(5!&@_e_)-nZ9GrMObQ|E zp|FZ)fT}17=vi0zChn23(IGI{H$SiX1a1j|Q^f%bZjKdT-l{3!WvhrbTj0YFug zrNpE#$7>VMS;aflg>JXlE6OIfHX8w0Q-r$mOI8$YZ360e_?jq6!|<^lD#Gm*=2R~B zQk2)zX)+|~UO&X!j0>Rtugcqtg6Vyq$~-fl2@s=zgzSMP_XAyVzY!`0Z}YiOqQ)M? z902M2JMs1b$Yqtd#goKQGH-5XD|X8Cr3!3dz(DzfW-%h2MR6ElW)X#`9e7)eCr92+ zCAs%WNme?9?j|1VE%&!&La{d;AR$q#PZJ3ZT|Cd3Q7JdsVhU1Ge8u=;Aqm zlp^pRb-B$Q`?Rc40U~x$G%jJy%&|4Gn2RNw3vD?qI{SVPWG2&Z)i_F%zggE@e^D@$ zxLIRp0I+*pd-W2fA`oL|@3ibR7S>JX4!!7_+#Ea=D0e!KCd3Z|JQS|S{W)~pJ1EJx z+$(9$(q2wA(^o3y%)xwHZwtI#)e+Io2{_5&}C?{8JUQiUy` zRB55<`U$*FWIX$|csmRMg#k0iFI#nz4*A8KM zd*xLipOl7oQ8W|?L2r+wPmc03W2?%5Qdy<7dkVh_|N@v{vf~DDA@AlwCjab}D@j@OH+cZDG44gilr6Ur}omJq6%m9F+ZJPV%a%X*K`%XigS zh(a}Z=D^$IGx9upWAOG$IIWlNR(aX_Tq^s>@2yuNKD4lJ)uYAvAblT`QG}nP4D>!1 z{oq-4K8-N+XLlYh5=AKJH{zdd>ER-ujy$aC%v!1uuFE5M(5o?VHV*5%%J`rua;~6L z=(DP;dOk_!>FgA(X;XDjyi3rV-VeG{dbOV;bZ2*k(`Z`riNR2};r&>}yEq=weO&uq z1`m7hCF@bL?ZaDHyxqbG5QUg--RrQ%+EV5jOoB|Mz(xzY)0_`vrcJ=^!TGpG`S0f} zpCiEe?Ja$2wp2>EDurMfN{ktwb$?YxL2FJMekOviPy~iI;as6{oFT*D(3&(cT_ylO zK(?hv7{0qyuM|CBm@{L;BV%*MBfw|8%G_FoRxX#x$jus#P^q}Lt+$4?@ys53ZI`VP zM%Q}3%b76ex?IF)$6Qq5Kqj*%>fuFZ!_#kv$uo>KoB|dWXpRrU%JeK^ET&5&{%!Nw zp^CL%uB;!=1@&BkgIVX?^S;iCjFn$jA-fAe&_vgjMC#tN94PrQS}350TU3Q#x@NnC z7_}K}FhSz?ESyYZ?p$VvFQEuH4PJG9oauZJLZG6rG-?%>v(-xWRLw2#;e*|Re?*dh48l0 zzaNl)GjHemgu=9o5^{5@ehzQT+wGtr%2?V?QIIy3ptje~vK}a7S_DPGQS#YVp;SkO z?r-Al*0p#*y?2s5)^$qdWs{-`U8%DrU*N5KJKo;jhPP3`9^`ES87Rceb9)EgW)3K) z6K@l0B%e!Ay;kMVxa+<9GPX7HINClJ>tMeC+N0Ra;yE$C_iX}~%w6y81!{WA3}oN% ztX}W=bcC3AV*S7jtA|nfIThf$NgiVWSB<)0ta){4c9|5weOSa#X*pM*3>G-@k-cY1 zjsa`-6YA3Dr2{uu)JJqEAK#O_s4UoGbGgiw(}tCO*J3MpMV1WXQc!MJ(o$H>4O@89 zv{yaDa-Ms#hXS5`Rooy$p@<e}*Ggc}J@+J^r|@j$A8E*=d)l^PcrFlK zAzU6V*(;>G6~@EUaC37C`nyS-G|s=9YTD^aMpf>!*DPF1 zd+zyMUvf<_{IGxQ=R@8kl@lmLhV$(`!@A2dH*qa`nhi|c6T^Y>Hig7mbB`+fJw+)< zddU%!`x$ZY$apEfeF9#`1S1IIMjB8;2ESs>8X z+63Yu#^F+Y@>Y&zj_*Fj^Q)G(f)^87cw34gw$y$Z6BQ}!8u5;&(*!O!h*d+hBrQG6 zYYr_B9Vgl?lA$fe^w|Uk5XzHfONa{Z$g#TANt7Y%XqB+t$6A<$7AD#cAcNO9C>n>Z z9M&1ivCYZzfRhZ95zv$syJ8^#6Ta66PeP2pwX*tcA|QI)BP}PrKt5~H1AvV&0(`bD zEtlhf9_zDLS=Z(k;B8Y&p(t~J)}RZ3^H}pfgZU-r(fM}HEfudAM_TV%g^g^Yh-!IV zT_@HA5V|Q~->VT|j%xyrE!U{+bIty?&&nzSh-X(4zUSU#{=;6L*~d}((G{tlMJaM9 zEg2%$AQg^Yor={elr$c4=ya-t@Yc(_NFt!#kNq5v-R6c}R6n9}Stj$!XE{N@FjTm!`Z8-!Tsb*<;GvK3C0)^K(Ba;Y-l) zBwwI=Q&6_cBtyuh%kghp=EvaWCsfLB)zhe`z>p{f6yF4)`Fy)~S@j(Z)j99sLi70y zzo}uX1t>k;kYBJinjo_G9$vcUd{9!62kA{}rM&Vi%TuM01A7K-fO{^%-+(#fR02^Q zZ>#7I;}Lu4?Tun3oj;OlmOc@yMIO>?4{s)F@Zh3R+>}7Gg(Lb z2Tf}DnqpLFgizDHQIc8=I6@P7R_yz9k218i2`gftR^^HB;nnpBo~Q!XE8i_cw^M1l zoxJe6FTNI4;S0Lfvl3;=l&&&9Tq6I*^HA(FC_4=06R81II%~%q8NiACQ!h*1;3hYUyc1_m$`zk7 z*-gJ^pGC_&iv@ye2Pis9R3oG#25)0|66K1yC)HH6F_bgnTnAqhHz6WhR2F$uS_r04 z&ksb6Kx0k_dk!?fvMOF|Mp-WXa4*gI>eY#yq!d7>b=F1&jAde95I>co5-hZe{iRO; zOg@MpK)~#ISo45)w{}mHlxqLmUU8#TNmHi7lB`<&u$tdg_wH2kMAJ|3EIt$fEwS_Z zd6+iA=vqBG(%aK!t7lqu#A2}pFdX>;qL4yY=dgTnKohe%1jklZjJ8(;%ib&bvMgCA zws7*2KrdL2Nh0k6N;tF1sE#b0WR|3Y^^+o(2xju z6SC*9R6@6FSPrw3{IX18QQC0vHe$SUe?@5k9Kw?nFhJ>81++64#?MbeO}dW%ux6!@ zI3EI{8gwRL5IQOaxs_7TD>SP$Ij9#eubT2rcw5U2vk&QIj05^X&D z0Ukg}aN4=#T4J=b8+sV$R)&ODN=$17M487qLSxiQ>y0E&ne#R1I$8+aq~Y%h93MMI z0O(?%NF!9M#>8s$P|JH&b8{ZK2_<3lp*dAyAPvoh9yd9^?QtV?zP0H&Eoi1d*3vwD zYReoi*4*iF23D*SIib*-t+V&r@sKpfENhj{jZn4%qVBbMCjCNeOqow}q2&6FpI-pU z5#k3Bld`AnCus7@-7?N;0&F}F@rJKpf!+D_cT=_)3Z??V_3R#6Jss%=q{3iE^ z)P0<%@oLzZsQ|2)oKP|F0hm0aq@=>DeV;Hv=3?(tmfl{ylXBL0j%i1tXN~52QFwt0 zjmq1|c^oSq;(w@G=9@RW?69WTWeNQ(1cxmyxe}Ze6RF@*%hL5;3#=|jA7qz7Iy2aJ z--^U8)toaCsLk=lH1$Nw)Py03p64;gr&1}RwCTGfb`@Y)7gUohrLGR+>Rehy0u%_1 z#H@X`P7mS3nlwKoD6hH4XER5kS0Z`a_j`w4mTFw9Psa&m0|3|B)R#gT$*qGvHUx%h z>f^Hur7z2C&ZTXhMT~6W%_Z5@24= z)n$3yFa9x~^mw$Hw^Pv!#YTC17v6R{oqONF9~6ujyuI&}#k~nFuHxm(f)W6teV_JM zEp{l5H*vU)_20|;rM%63sZM6$G!!;SMRlLU+w3`ZaD`U~)18=8?Vp*hYavyt#TdY-K@TmpOEF&~2YRrpTZr*5#N} zhSwFt3W`xS?>z8@_l{ZeEFJ3@bgb6i=fXm*{H5nKhB%eqdZmYC-ywl7sS&O_Uw7Ltd$l(?iTB+XM>*=xALaA&h14B9?p)&n;61>3|7Wm%>K zvsrQK(_yLqu)Z-z2m*zM`T6Sr$tr%pJqeFv!Rv4BbCj7=4;ao@F?c%pe%vTU37E-mu`t~n$#fjB;cFiPeR;E{(EfPblyl;;p^yUZg) z4T2snLF27gh(`jFt-^uwfKH3Umf#+b*NUZKT_@!S1p~mMrCANw-9g{%gYYQyKxo(S zx`fAZ%;{2b*Ddw~C7AUGlBflIKLEIk0G$@}!@BSt^~`0t;jJp3F=icuEzG0as%d{x z1-AE@&H`ADXSTAy`txT+nf+vclaE?i(-R!B4{>kjg-XKA=Lm2e;VKgHQwiAhtWzka z@HXqT=$Pa?crecg-ZsEW7z?xtZzl*i@^(CPK{@Ufg0=4l-rlOP#Z*CYuRuj|CyH{w;D zc)L~J4YUHF1n3QgcC9?Qlu1D+SmnooKk@eCwCv`*mI}LLt_lz!Q!2~ zz4Vl08fJsnfqZ1<<3>?eHc>i>Ou(w|oqKr%G>2SBdUk;=*l+M0`7q$XZM!7a!i!+v1?$>np@F8(nx})PQJVE(?XAF;y^pe@ z^v}Lv`0{es5ychWz4N8=slbEhqtWhw$(cXr`&m5qYJ8Y!@ihKTip-UqhF1Rk^Dm5K z9<*qLuUf=aQBWlSA;J5Pq^>lY7lf{w9I=nXN)j=9` z{<;Bb1<=ybwZSdpXc6G5Av0erLs;zSsiVSMwO5ErHBB^r7zl96chcf=k)%@rOA0Un z=VkSoLpHF|xKP3pw@;uz2?U`)tS#@UCm{i7NITWA`Mbp&G`Hj^?CHg!-ZtiRT$kR9 zk+ovjkvWd}B`1lIMHoV>6M*C)@gDctro%7Fj0Vsup}+92U>;^LCCXLIrvp@ zodcxO2PiE*`(9s}!CbeaS+YoLcRvTl`Uw>DRP0tgjv?{CZ7$j59LtGq4u0}vm1n}lsuF#0kl zz(2&>`uaWI?r+cADfi?#Cg6R%%l^JiyiJ%C z%9ewl*&aF!BQS*)m>hdzr8iC96w;3E3Ir?IN2Mpep^G);eE$ zr>r~S`qh(9&kI74QogP0B=d;uz<8iC?4-QYt9mTy01BvQoHJMd(@-#Yo3W5bLZ}?! zZHgCb&VoIf%O$(YuwQvccu5uKKp}WzN;WPBWur~!w)TO!iM;NcC`w`XV7!cta5YtG z6qCdI(1SS<6q9QeHTIOSIqpYpjnS+rq8g6KTHABpeDWmU0~@eb8g-+d_M`GRyjZul z!K>v}h0YXb_7|^A)*9DC zpN$;xb|DDS3R!T?v3VAoj%7!M34{Ujkc0#QO~Ps4Ckq0be-a{C4#1520O%kJ{k$Ib zs-Yq@V73HTVada4aP(|oQB8}jfLR(yd3@n14!DS?UEJ-8a=P?&a3|IV%9Ao@J@iRN zPw)`sQ2}>rSdwZ30gS36N*fb$_1P5VKDrEe- zA&kQ-r5AuzlMV-+#`_w62#C_dFb@!!w}J=OSS@Eq%ftlu_`Dq?hbkjJuL7d1dB%-z zbLg8sV{dJW`_0^wHkXmaBkLfkHLcO_yjcna^Hz)U;EUKd#_wK-%J<6R1p&C7R;zKS z(jm0$4O`t(tb7k0?Gun6Hp}o9%$A_Mx?7|v1fuefbp`y)v^3{=C_lhg%rCF6C|Z@|}2F=?U6&56C{rt0Qka?Oi6r2-hWy zHvntpZRDF8PO_j!n?sB}RO7a3PL8fs>pjDF7E$6@hiAgu%YnC*#@m6no6yBO@pgq1 z&xyzMc3~b_fTHbFevk7+4{yUZ$=T%XP#o3Mjgja^j73{SCg9Z>XZG%jeWHz=Cp+&oz29e~eyCqq7qVvDf`BMl%brjb?DmUXE$ z>-e@>$^iPH41?z8&(O+u?ZDg27y6>d7)n8U>4RSYxhjwN{!rM4{P4GW2)5 zpUj_?yd?Z`D9C#mXMD`8nJFOW93!%vvEsQn=754@_@46c;O#IXXH)T$7r;;pd#!w?WS>A_~C2@C%sS z$|&Du3GLg-qoZ^S)})*~-Y^s{RW$8>Bfoy%b6qtoo?Ls?9awADV(`Reo4$iQBqE8m zy{E|ZUQKZ{ewlx`yO=1OI6ABE`!pHNOHsF)$1UCttysMtX!az-@qN4&ChXKYinav}Fr+wf9A8aqb`{nko>p%P4d*Ay$PcV#TRovIc10xLUT^xd!IN)F)LNAJ$T!{YM z&;3ICrC<6?`}oH{*?#J$KH5I^v7c@~{nJ0wKJkf9wXc8uuf`sH{#So(-22s6e{%J# zJ=cEi*MFludGpEW8FW0131!NC@I^|CHjG&f$XXtBM+=sQkJzC+tW*~|t#_}v-}?m8 z_HDLa4n7fOb+V{lFPr}_{K79?1;u;X_rCX?@tT52TZ_+p=9jPQ@-ywD*M0l=$3M|N z{NWE@_vq#J<{NKbL6lop-v9m&w9kM33+=~0{&8Ad0B>qlgTK^ryXXPD&ZTA(%*B4| zIwc)m-~ZgN{OZ+p{9=3M2j8DOEUW|bC3NE$mN@{)sVwq@+!#In{B@1&_19m2eHvE^ z^%w`0yZ}gek#^tI0F+e-f*iyN|!i#0};AnbP;GhtdsYa{s;8ImdEQ{LW`w_|)*bv1ci zfk@5~g#x860Q(g7DITW$euQ|nR>}L!Rjt1mUX-^L++xkA8lclxKWuZ+e-m0phHF15 z=u>G#K?=OB-Wucw^yPD05+tT4Sd_R_a)SOR-d^V>#n9ORd}BP@Fkmq^{w1K2eOAvU z`6u=^$|Z_`eQ+2f14wHm#;6#yo+3oI)@t-jxjWBtF?jMK=eE<;KA3A5LUz3Vat19W zJ22K%-s;}yDU%7o`<_b4SweB$GBF_X$Zfcs3%K@H;ZsAAlq74`k{Eu%J-wo0ORpYl z3f7^hg@)OJH(9ph%0;IgXrE*!o+`TPC;f!-Ts=RI6HYrrk z1s?M=w~R&bgBnY~g~|tZfpds78ph;pyLWEscaXb&W;*8*9fSeS4I70K!NPjZHkAjh z8asj)?PH2nb=|=>$PL|BJ-eB+c}nqmWpRmZn`9NAcct*r)B_O%R$*o@)PP47Ls1!+ z`c&M&%Z~fJEp=pgVQ+4x!X1gpSBhMn%0P6vq*t6M61&LbQpJ_>%O{=Gu+Co}=x)!_ zFxgN92BBGKam4tc0jqY)AnJY+ezI2iwo4v3{yD3tfY8E&Ll~DTIiu>>mB=mB42DIZ zU@11{wPFRv7+SCZ&5|1Je9!*j%0m`d%wTKtlb`&=fx%R6vn8`tNI{csyb-&2o%=bOXO(-o zdajIc55g9Llg=cn%D#>{+F{oBNF;pRzV)qdG}l3T3NmQyT~|fxM?d^wDnO>~XUFd# zVgvg>xPs`{UVGJrTO3yOC>a2x0Sntmuw;ybCRyx0hXz5{FTD6t`{XA-)&BHPzdEYO z?E%IcpN)gz?ru*@&LtGj-JTsZuZi;}E=+N=@xIp-%B#}&`gQy$*nl!)z#snbm9h3V zXiF6Rzz04wl$YQC{ofq`-#hd^8Z`FC>#sTO1n}ap2V9SXwD%GKM*B~nP68AVPGY}W z8p)U1;=Z;Q7XNCVTGm4q$?^O7JcGB`OB)tKiTp9`gJiV*@>P-k?)Sc%0vg$oAS8Hn zR6=~_2hImS_`$1Z_g(F4U;ESa#*FXXR5iunNm@NGkD?66gk6tqt{f0OJnZ`j;^B3R z`(R15`;m7rB`w={b6?s3bTaO$A9y=Leoznw)Q_=@GPD5Kx8v=_dx9*nX6lt43RJFh3z^w77fdw><_K872}Lax zj$Wa#%yXi zA@6nX^yi@USc{ZB!CQM@(+HzrHnS+kY%S#k&9wNXSNl~a@F zru<;NuFm0?%bs8s9%StZD`MTqeRTt6Xbn<7_5! zWAC0ja}yv+75bQLBWeQ!C+9Y6aW}fz69!d=RTMMJS-=Z(wzUc`7>WwGf`1xXiqZ3A z@?c$~40%gs1TXf5{I|# z=EK{vt`(ve_y-*0n5wEw4aKFksDO6L@1=6Ecvzt;P~s(R)i=h@uu>q}z)^&k*=Nl% z|JJ~EXIH$s1NPCyeej$AUHLBiIQNpSg^oGbI8X4%aF&mXT3dxX**NUJrX<-t^$xdx?h7wGpTweCq~^o$9l{-KjIM0mP6`!k!DqaW%w2**jg#l_yM)zWU8fKc%Eh>M zgv-3~#_NL!Y<+AD2*)89uHSk63WP_z?e%s0-40_rRPLs7kF_spL1(`LY_)y1_H#gC z4Yv2*`@Z*Gg~Chi_kZtq+V{Wrz4oIY{qU-6{kXky1@1%JzRvAi-}=^2WU#`R=jQd- zUmcCq?6UiO`l`s7ur|Q2jL#m8pUd0?jCJB~s+_QYFpb^or7PY2^iO~MI=)xNy{Ka1 za}U??=AdqLW)?4=u7O%gKlH&5wGUkX{pnZ#czD5VZC-ih2UD2hd*1WDLGxe!(ihuz zzVq#?$Kwa>yWjmz`_8w&HM}$?&|kZHs-A!T#R1;G@r|$hp%p+Ft03Tetk+WEM+3+c zbK0wETZ?&Ur6&gw{v>yf-ZKU=kylzo)*@w zig2$gU3_o5-0!6Yuhg;CQt5RIQ&^wlv+A`;5OH^&6D4;SkVB{C>LXoVox90 zL2ieox%W*5MHrcv%awA|90Zr@BZVA825Coe=sFMi;FnDl_OMP&hbc6WKzy&R_cn4f zBuz?<02Sr!9ffz7P{Idz8!rVp0a=}K+Y(HTb1Xtu?xcU&8p@7ZN6Y(Z1yrR$jkLj|gR zr;vnIK#g+0(tD>uJTKW_PiboxrP#*c3c!=Aq3y+SztKfL@R5h;RXEb#TAty)b{^jM z^w6IVx@B)FoVUvV!m~qOMD;JrsURu?gGni~p0j2+5IL;pE8+7uk_!niEhBNCqF`)I z=~V_uM@|lf<+_&I$n@Rse%DaYC@M0Pq)@Q!vfpVX!n&)0MvV!qpROD8I+nrapWYW* zw)M1eVsHU3qTDIYgq}=}8-2a`=9A3BW?U6ww%#j~4{gH(mT>=Ov?^izS_q2CLlqsi+XrUxv5&xF!lK|H`Qc= z)G}jZ7#rEEf&?4536Ox{wfKO>(YF>|!$WB6CUyZ8$0k8AnD@~sf>+>8o{z8ZlI0l* zp8+6nptbH*$j;H1#}mwh5$U8G7TIAvrc_@q&%;Hkf}~P%xun$^(0~=5XRCD{MJt8v zTDdP?($Hh#0TTB5M?Uw)rI`^&%li_Af}1hG;E(ZY-Do^OQ){xd)G@hh1BZu`-X ze{=<`KQ#pChd%V-t77wXSdHv}G6sdgKXiS@2S4DT~`Y} zwd7lXdK;VF+xEjeCI+mjQIDnB-n;U~^>ZH@pD_gsFOP{pa;^ql1QXi)f9~ghVF-(_ zeeJ75QF`B1sr&X-SwTs%F_<^X1jV<$_01eJ6~5m8{tu2dxA)$C{l0|&e($Q}jPS|; zH-LS3!MqzExhjJ8)51NBmr)L^c*pbCHL@|9r|5$p{P4K{tFOK~d9*CN&(_V>)f6y$ z-$LMQj;4s(oId>FpBm$M@p^E5;*&o+=3q+b>uiS)~hlNVodK$00EP8Gn_BKyD1Z+Ql>Z2dK zuEBf8{8Mhl{A{jS_+j6xT2e81f@-Zyw#B^Q1C+lEHR|PMq+r1=hrTv8Jc8A;^gf^h z(hf*TE-448sYy!~l0ya-;6#z-&!&1riL+->umW^(EpXNlIwF35WaEyaG6wVko z0Gdj9Jexi$HzA9kMFT>>L&l!VI`YgR7h5Ull>S8);khbnd*$D(;&mKr6<(>KAjdq? z5EJ{RO*-%KcC1m3wG|L+vCmZB>#Yhw0K`!;GmbuZ6NS*u4J^GVwPTE;?6tje$S&dW zLB@}q3VrQTC60&D>xNF}aSmEINi=&#sYuzsEK`o58ZZHRv=20aQ?3|z6~`W$l_Z=~>pDmJ^U8SBQqQI^s;wNwu?#%nZw zOQ`8(OS&#>QQo>G63+=4v&%7#M||96DA$r8-xPcW&PHd17E{^EJU@h%-9*FElNg-< z&l)kK;2asla~_9cy2dl580(6O6Y`cX*CO3xnYzP8|FB68qY%hg6^(1!_753Q>Kx^kIYVm|w< z@sH7xty%TZ>0^&k5);D)rnc|XHUgyyngti01@voL17p(MX#1|w4-rvzJq^Xpa4eV{ zekKp8ydD+8290QX1#7IBTyw%vT+~y`-rD($Y%phn>IjOr>AjQ@Bd6I513#fhXrD+| z)DAf^cXv-GO96+1K9~vE?^Km=FGE!d1E|=~V3%feZvghSEAW0A z7T7O*;n%N9%=@nQ{KyE^dh^Mf;~xUT6ojAsxnCUb**@F7?LKy(8fgFU70mz2uY7(0 zbz6(~z3&6>HPVh|HTnfXXCMZ+kGuGj*tbnBE5VC>_2@~ z^!_~Ku5DbV;FxF1!s%=rwuYw2m^aH^?mhPiAp6OyLh-Xd`*Uu=d*Owlj93oT_rL$W zF}9C?;*+7kd?OeyUz3dgGWsn_~3Ov?6QzH^N88!KL7b& z8{Rg{>#^|~E!p1KoPK;&K#?1^b~X>AF8AzwXx!VpP6h&AeDPf)Z19y=zCZZJ#{BbF z1<>fmXx2XS(d(X?a`UZkeq;P@`BjuKH6_T_<%icbGQRj*pa0dX^7Y;Yw}}T zvn!u-kS17Js~3Wns5XoBkRNT1BTkD}m(Y@kL)VIY@X>839ciJK80*2?0jBgovP1qR z3>C&3nV|6ivt9ak5v2GLP4&Daf!Q0z5l?moOEaWGNc|PWA zVNfCDPILd%;*MNXL)WIVXsPhW9(1qD4C~P29{}&}>|S!lzbs{C#mIJwwSyTb;{bHfZFo%Bb_%VW`^5>)rM}EUUA! zJQ^#9JmD#R4*KsJGp|NIo1vYt_Cdlx2=~Ja+hp7T{qj&%BD#CIwrt#p1yvObLPOQ7 zs$tC-8rzP76JaN7^g59;!SM7Nyo%9K!{Rlmo;@J+y|99pICk0%kCa3!+#VG53Jsbo zrs73ly>BD$!$Zs31eVpBKgPPc!iG^ajV^sIRHI789x|yy6v+oAdW5EvwP(K8*hl<* z^Yj?CTO(7F|NWU=@-M2W3;3`}5eCBBz-*(?!>DfO=XK6AEc3`k6lAr)Gxl23b$DOQ zGOx`YFQTmBNv^e;!^bQKcU|x2)S!Hl9zgC0UIe0HK6E{k%qT|~As!8l+))5t<(NIc z=q*t?_(_NSH>3ZEq}nFApDKAI;A{7^#y$LOOkHhV`=bjJZCoJbS*23e2Uwq-&@O;=sJT8_j_QNeqzGhi9 zYN=Rl07W|-&Nn08+(X-b;TJwV)_|B=`~E-w=l?W?M*$o1i+r#D#qa#HarpoCZ~xul znfR-}`t$Lg&HuBX`P@(pzVekX<(NMG>CX-Y;`e_4U!;&Wf%SX8_d8>Fx>k1m*VleBXyg=1mC?zUzw|GMa%2jM0e$mA*t(fT2y5aNfY0v# z{`bFsJln=>ubBd13;xlM{!DxQdcS9pXJqp=TKUCa{InmgW`$TiuGDDkJKy=vWK6gt zA#{L~N;b3{9P?iN@gM(TDiU@NQ#cI#fA_oJPHWa*|Mg$AZ+`Qe<8R9gvM?=g*7dCY z+*J`Wn)&jV|6qh2+Go5#!^frMC$95H?TcUh-C+#yd;RS2rrBJdT$MZvjWfmYPyh6f z+qb{{?J*`(YV32S4F1(${pEE$Qo(QVr}OalzyJNA+}Z0kM)LrfH|fv*>}w-0#tKN7 z^7OmE`_EH0SwRUqAZ)Lny!qw;w4eFRXNOYw!_2{&tBMW23hP#!Fbbla&D-x2`ixOH~f;Gs5Up-+z)bCD+^_Ro9^lb zYekL*AoQsK9l(;E50`jWobq`n6C!yRVIjyU&YM%O1aij0Aq(H4FdMH^;i(BoRqwy| zis^&@w3<;WcYG|;lw++XbobmOY3sP`T-wWS6 zFc19C{Rxd9|J*wf*++z$$ogGkQybp(w_rc@URK$aX9DsiH(gCOQrD z$g_DX==&TU?w1VHB3!Mt!gb_AkcU%+n&yu3rpWc-eTnK+(%t@%gy5-Xgj^iQf_Rvn zeu&KApWTBT>08OK(wu5QGL_N52`IhVToW8+o*XNXKsyrq?Dv20gE4+CHI}oc$QPc+ zJ=LqhYnmhH9+8_+{w|YJKv5=mmJsqw%tP-9za@XSHs;dWT>e=xxi+{|-0kO0d1{|T zh`YaM{8f20l*gYj`Lk^7c@LAvn9Jj4>v|)~apmSR7rb!CD-{{EzWqSt3c|JGh+Sp@ z);K^O$bxf-u{baTb&thLzZKlkxwq)jrFT%v5B6*fMrEHVpu8 zF?>(r{#Zlpz{`XAe9nW4u@^9LVQw2>z}K{BWk$P?tr3C_rXOo`SG{a_U%f9EvEoe@ z%!8}(?p!sxM_l-I4Zi*DZ^r%la7$ys*8@^5gsp3J9}fdCLFpxM)pAl6s5+QjFcLb2 z(rASEm9Km`HGW^uE}DIth#H^+=pihF##1Ad#K8WQ`Ch#$G6vu|Bu!~CD?M7iU8d~# zSnY7_X(i9KYc1zeO*Z$TjF>0nkN)T@nP*~jWdPh1rWc-naWJ!89QIh|&C_9E-n=k9 zfR=euEQ~I5x8jiX!{9ua@@bR;{^mEoKD;mHT~WI5654aqS9|@v?|pwG@y$FV9)sND zfPQJ@-yqz+`r`5T z%4=xjw$GcF$h=rKpFjDNKTcjhhv!VowPM}(gYRbIcb6A){|DP6l1ZWc5l(9IskOAW z;^{{!2T*`Xcff^OBy+kg)BNZdpi5Z(th459eb zi15hUjCUMNmnhf0mKPvpN~=TjX(S?(%&FlEo9sW{6|J~N*cP&KoD~aUTE*LE0mjG` z!dLWQ<)Xh*V{HzK-Im~@JYh#GE=CCUdl>q}>TmZri(=sCN%i{JT2;Zj3%Vat!^RPL zE-psG;}+fy#&LJPo5nSsvv1SymuFQ$$;;U<2_AiZ(rj+4lFj|5P9@6ttV$=wlU@;h|`V zLJg?Z`27rJ+{+VZN{mNcT=}3?y#I4iuGX$w8RJ`)Fdw`|?of|20Huue*BmHQ3@+z7 zwS zaAsh)?!cEhxPpH-85dY%!!sxY2KezLIR3h1_*UP^yFI0Xa#fj9>Ck>Aet+B7o?sZ< zut(?_MjoDp0>C*BRyi7tzyOM8_IG5KGGRs*K)!&+OW5BP-R6koT zS@c1lmoj6Ui%s!<8oOJSbqAB<8FO#NU}F&gNLYc;m=)0L!GxQW#k1$w_vfk)b8;j?%Bz+=8sO6IyRLhJ zViK#Eu!az{u8pXip!u9C9Js|M;NQx+V?dwott2eF_Ifkci4Lg{u^(t_YTqN4G^~6U5xelkr(B$u1}u4kp#%K3SfdTIZRQ2bT63O8kQLwhlPY$lAjlFSO$ZP5Vd8E z5}ySi%ldrrgCrPol=BU3MlF<-w|;BH;kIe69zVTgWi7%#Y<#Bt*uFk~d^5tv{Jt&s z-8>wB^_PEzLovweB}^*3DD2S1v{($?u_ zKczBghuWaWI20-0NEnJ;3Id!r4HT{^3zi5$ZTp^J_{Tr~;ZUYbNit;$%hgxE`p16A zhLQ;nKZ*oW=1&+W6iR3e6}JepX>wR(C=9~5MPHpbAeYrEGFhJ1)W|k?+dW}-nLIz{ zG60-cQ{qq{@pc?sVVHrpM_%B$s;9jjZRpnaOZtY&Yq21LvX+{vV6eS;q{d>; zzFO5^e90?z^<|bNtbOvf@R)lFF4?2Rh7Tt6&x8zU?$P%!%4czQnH6**QB=#TTk@&3mSc1;SWhE?eb&ZhYe3^%^$@EQMGY({VXi=}G-YqzXKFn7z*7i2}p`>(GfB<;(1HUc{22ZayZ5W_&j)Y(2|^wuJTG z=(C{tJnmY2mLQ44Q?*sJJ}ib1oyP4d5a4oQ_$-L!S%ON7$wz@9F;JByxBOM}IuoQ@ zyf&Jh*?Jf;3=710su0zpgyyiqV1WpQ5~jxDYJc16-939YS>N^m!gsq{F49UCn)o=x zT9g^Rm3r=%YWxYP!osx1 zd2syYU;M?e-e(BSQlU!Dpk)CbAVREWu@GbIFGTpmIl!?!*m892J*1bj)*4rJ1D!-V7T)~h{ooL(^z?& zkakLm5& zJv=HP-FaMm6N{Q#k&PbyJQW2Ck^9`Qe13$u{l%aESsE6YS0?Irs-kTPq$x=}4v$s< zdeF6b5(3nV2JE1Ak&g1s0qT>8`F)7Dxj$pTiv}&-MnW$ZT!1q`-1gEGPZXl`SR8m8 zdP>>2RSfg6h_x!)oOy-tcJMlfacfn%XY9-QQe|r|UeT|GtlWbJ6Ep;^+^I#piH9S3 zY@NoTfQj|K8*BAn2G_aZW9XxSGPK+Rz+~+Fxk~PmleC4!I_Yeyz9L&FVM#g@RGF$|0S zNlG(=$s(Nba(Uvsw|EHMX+7Pu+><8(|1gHPBy`r4WKXDH>MTiGxC9>XFv=wWHb%Py z#e0j8?b}=*KVJ(-gWWKm+deRc>O*sr-Xy!XR@Z7FbF_uWCdL}O%tQEA7*X+>q4a}) z3=2Pr@HX(F=D-fa$5weVjsYWd^{(Vv86T_saYffGiOIp!Bdjr=i^4;`_bQP(cwqGT zctFZYaNE2oH2F#3lF|dt=jyqGr_v1v)%yqo3488zYWufIk&#`nvWHHyX3GDXv&PyN zEo)JTyLNOeq_3S=V}uPchogphFo!K9u1bxkLzCm7BOJ@Bc%?GXCZS}5wSN|(g0`&B zt@6mOnVFXExh8886@>v@U~Q9TnAK0tRrvt{>xWuds_Zg1vJnN=4(34FL)>L-mJ#5H zN4``=whXrj@Im~lF`R*Uo|(1n#We_Mx9biDjyTe+mJ_Z??}+SzSiLgz^ubGDpZS@e z`NXI~_0g+0;1i$xRECRWJovM+7^5WJ#{JReAzm0^6U$-d$wV25eyIG(e3q-~#GVSo11&)PVX+FTUs{L$71{;VZ9oKd6HP`(0-}tQpJh9g& zRZcH+^QbYli_^zPKJt-K>eBA{#?`a<){{5eM}F$3Mu}wmzP@p0dq_RUb_@DkY?*`b;_6Q@G| zyD%3EgR=q_76xjs{lYK)Qv1TM{f5V3kHhZikQX=6>3Z;AgrJV9LVM+VP^vc9#^@w0 z^SKYLyagPH!>iWIo7h_QeX%RUMuWFg5s02NlV?D9o2qZ4Z_c?2uV5%)9|>_A*7O#! z`j_hK0&mkWkoTfgWgg&bTBGmo^Y*%CI3!juj2_1jV|bh9iF}5Grxevaz_#z*qp%#d zHaCbHYZEfe_Kb>td&FAN6XxxBJ7slPiysQFIfl2oXQjMA#HA1GCWg0Im)3jsCelh# z0EoLd^qcT9xhnka#+kYCuk9;^a+(6_=ALlMYTulsw@TBTPLD<~UcH1OF^mlcM%L? zY7C|9GzKyc;n_pkaX>#3>#fP(sEo%sT;b9v-K^mfiSH)g)Z2#v7|ZwQ`x4)K7IaBo zA08xM^P;`sfp7ablc9YKhkmaLFZD`Yi|1esJXeYn{Z0(*_XsP;i%x$oFI!zDmIu!_ z6zB-Gi)Yfn(`AiRySjTe`o4Iz*qh*O=YdC&!oWUx^vi9^02_yW-@GFL{~>=zuIieY z1dxrFAAG7biDFcEa1Lby$P?J{-& z@a%hr$ypmbI4Fs>&PJQBz4p3Ce{5xl_q>=WtP+^q*3WsSc%}E27+5_jtgRb1W=x*= zr_Gq$=!boC!VJSGE#oZR&fp!(sDUP%yW)u5h+u%!%b6M%uhW#8MfRIiYI&oYae1WYJ} zdaO5KpN;a3Pez`DS@Zw!D_?pB*&!r7wMPB!k=E zpZV;sjQg5`W8eSESN3Y~t^Tb$anN{z4?bWX(kRkVo@P?Z# zKA{Z0&wqChdvL4CUHglxH{w&D`ngeQ&5aI^N0R^dzW3eCVW5Ij@6`{$Z{@shc`L@( zw*D5jXI>3kdm6BnE4__%uzVcLQNk1Y7k}~J`Js7T&(SmIIuFaQu@F0CiREqCd+RU^ zJQj-{Muy5=8sQK(QBWhmxXs)0ZcIV?%x69~KJ(SD{?SmvKJ}>=+Hd~m-x;}6Sb=OG zhZiuyW853pGmP&d;c_Vd^u?jq4j^a~z%thFQq3umag<*MSX_j+M=l4v9Y828y^Hjm zk-eXIJ3iNgw{K!hml((M*8_bVu)Sv=oYpG5g7q77ig9l;exqgEJLPT0qqIz3fR=8K zMM~aofLjBcW{eQ4e|mI7Ij3|yvS-MTcm`n7o2NyuE(|KIO<_YlxukeoJ(RZ*azs;2 zWTicmuvl04su3Pu1I%M0Uebz!B%Ta*?u+ZkC>E(7Bp|b!3+)nJir-if%0c- zVqodbObCuL%_jcW-m*82r?jMO7;}rU41lv&Zm9j#lCf!_waTFD%@n=S8cIu4Q58>~ z8$MhSU&EtEvOYXKFowu&yk~O-w93z`a3?dmxq;Sh42WZ`4DdgD`fTRyvz?oF3E-3N zE>+dg?(wd7y)-;DZitBdlGD;O7Z=c7#zq@M%e5O}{TC05b_2_mukQBrkn(Imaz-+Q zB0}#z<~(u+!?=wX(3I9HliMVEhAN5sFgCd&dNWnF0vCbFFrw~Z1S*;=4~Q!@ZiIeI zLdV9>FtpGR)a8KBh0s4UHdv)BF7_V}EPvBW5k=K5rMaO*1~zIbBhHhzhWmqeP#U zi@AJS8hw-|uWH;M3~m=i0tzn|Z+p}2C^B)boOWB5XBqP65o7FwDxb;spZ~(&{`aml z@$XvVl?@ViaJqp-aG?wsAtS^{Ftxu;Lnai=HUNgu+S3TxWb$y?!AMvIRcLAAGx5V! z31pilcATJEGqJj`Sy(NwFtTy#nqwnLV&ijF0i$K;9ovL5n=5W5Nz7MPmd+yb|ZY5lz z<+z+kmy!6+Uc($HhC@Ku+KK09SU;Ov)rkc+nnJh$gls;R%zk_GXf#^091S}pDV2?Y zXYF)eyBv}zfYuiU7c?|vpL_3n-*cVoqX7V@=A}RnnjGE<32o&594z)4-aQY`JY{mA z#)%R$OVyLhwr7sYOK&%f||tof7C92FtLVP>8tEx)S=37@kZ6C*F9 z9h)z1X}q$Z|NIw*7xmBo{LjYv+reNJnml2&=*MZ~W(X;xR=bx1c)Tv z-yz;wWg8x8_=|N`-X63P;8%HD4Fnp>YlpzI=!-D%_Ohg+L?M&&c}{Mgcw1!rk+<(e zP6AT*HkVw@HC*OS)B3v30c*GGl9l(NNuDb2xL6ZF(xjX<1)OaH)?-ZDmTN>qNqC#S zCvG9_Z_C?d(5n!mDTg4GOEt*x{8ePTqNEC=v=;g9tMVv1RQbJ903Yz!5%0d(3528L`Hbt07=g4X=$PEv0)=9U zjX|-Ey`8Vc_i9k+-$<@;hO2)StXc`JrO`j^}HN((Xk` z2Jgt+l+$$%f0`&b?~e4IOqh11pi7%gn6jdba~5(Nm$H3Lj5m%AV>l!V_l_ZTlKAC1 zwxjIqWhiI_s6`~NMwM(4mkJW$N(VSQ9CN-s)3O@HjLHF4Zrv7fS0@6 zg*i9|M+@hu6vTM=m>#UAWdqKzzW1K-+C>b-MXf6b+rd1e6h5Nthv%w{&iKi*F^(gd z_B~lAT55Vm0pKe(tu({}B#eQ|pc;SXo}b&$b?xmQrtC04yD-#-2g|aUqw~N2|Np2m-yGLinm|Kjq8u31NP7MtVIw#4~?1CVnug!7f{1gkf3{J1&%7)`ge$8>P zHef+Js;S{uC;cMWRz0N7is~;7dU48lCXO?uqs+-OY|r|yNvLkmyj;;fjuubPVHavL1_PP!_3v8<`aT#(aNb%exXjIH;wZe9( z(nc}}bZuKjpOTrOW1TahwoqrB)#AYs&oRf5gFIPR-=}h>Bh){)xdYle*R7PwZ39VZ z^X82CNEDU>yJS$+=ed`uEnfQd`jS8A@1vI#RRE5&P3cNiMR=Zcb|4|^$eQ&v5gB8@ zXD?ri^`;D)eE?gOj8!mHt&#hm*2EX7eOn$hj*cZI`HF)+M>zjSk+;UO)0SHULjqg1 z3)o-elX1*Rs0&(mvvKaJVcgwM-PPd0hgUL zk3DU--pfo8W7Ju{tz5)+Yk%r0iLrC z)&Qp;{OqN*bs*;Z`}dqY1ckx)1oi*V7eqjq02_v}wEX^icS7nkPL04U71l&pmM{j| z16+Y-*$z^Ku6*i5R=Zx}l;U=3+L42fZW-002-JvsYU^!a7!cHJwDg0OR)cy-#ExL; z=0oZh%V900L#-^&F(tD~P=vFZY4+7ikJgDzfX(DS$|SKyYT$8Ta88*2oNvs>vSfxp z75r ztE14_BQY)nI%-(6w!TSO#$E^1_7btRm{T>v-Qde+_z~N;d`gL!9uyUl;C67Ig9myyIF*z4oz_}?=- zmVOO-^YnmdCSM5-kO}UMyeKZz0Y}D|JNvsI@b^(Am;?@fzmoHw%m~@UpJIIp%>691 z>(K41m(`s`67ZQ>UxB&qkXmVP?nx-%{C&UX^;QAGwoMtBYJ&CmzyCeEji$~Dl4OsJsp=mte1+U^bXM7?=?jST z?|)R6viB@czo&ia1jsTT|G}Z48eG{Q4GPN#@a9DBcfSlloZ`oQ^75x|*K0o4?q}f4P-DZl*I4{!*&lRibd!TJ&s6eRTO)fN*q$Tg|m-Sh~g>5TO035 zRh9#D%RoT|TUn7(S}i9g^inP|e`{wi?!$O8UDvZS!qmJ}AIkNG?^{dWli zWOd3gcD)nK{hni|bOYwQ%fsPm-`v0*@08$+04HlX#UUZc!l~zwyvzih$^<(*K+QW2 z>MG6&>p@upU5Z#&@36JxA+SxHXxioG`o`R|hH7BW_}y9dL+ z#JuXIvU{G@GPsX}HQK5?BykaP)}OI1T?r^Ns6hnAF%K{M@#p{kzyH7Ozy9mLe7vn% zexq!%`_XX>8JgMY-y-i=a}hYpN7i8 z8S|us!4ewVmq^G;n=$qT-bJEtx8mI=-D8DpRkSY(>;n{fMA=s zxrMw{>r$5?9A)e)fh;-`{DSSaREN5@l-(kL^uTpZ0;G2*JobEMZ>=j1B5R~Ngy5Y+ z^}OuQALiKvHdxo8q&SQ)yVx8`$hwbk8CyToy4dcCQ|CdX-)FYl=!{;$(aVv7EI6tw zV{Za+jV2^styCmL9N2leY(oI7*yg|0!Gu5<%7P^0)ODQbQ~SBi5dmJ>$=!oC=Ddgx zmt|$M8HbLkvUIh-!2{h2mbyLKw!9alF}ly+?aa=MM{KUAZMw;z`*zE)S>M}5k7u^n zWuIlfSSuV#_2oF{?iS5dfRNqKTkzJg8R{VSxxLoGxf`K6-?UeBtjmz` z>sh&vI$w~BHQ}&z+ITM#@SBXHYp^vu6C6UUf^BTBwtD9Gbns&i)y7otCVovD%TDn{ zkx_`;Ihz887{?;}Lx+2}78xR6OSRi%ds43o34`B_U8b24^WKAV$rNcu-tI>^VgK*5 z0x$Kq^#D-bh4+Nuj0}4PGHg)NlSo;_9Be4#Di1rvFf6k9y8wj%TEypPe!R!tl4Wq1 z%28PdM-An}OJKZ*8qY8?s;o4co0Stn3X`wd7FdvF8HE7>)6H6JCS#H9;6vLpKzqPV zqVLzv5*5Q?3i>8OgENa$4D*VTz`l;N&-BSiOlCfarY* zyj$R6Tm5V)&NK*yB{9z)`WYI?z`7>W zy+oD?Y`0IaJqMDk3GeVOT_L;fgD5$U0o%J^U6E z!GL2>3G%?pM+5*lPpxGM4Y~ve?vQs%Y%fc)dl?WQKe5&{dEmYpEaND7rv9tTN!Yxu z4`*z*GXp2)=ZK)~3|&tKyN9^q0Ow)SXJx_cXWcPhmc*czhxK!^j$^F(hatUHGlAaK z>>L?XY_SIG_t0|}!8RMh4G$KOSg^qR*nN8o=<^ux14dTSgJg61VT-B1iV62IwZUQM ze&`rwyTd4_Q~wbqS{vhTdiL_-Id~TI{g4tb&GWE#|+sE@j#%jzxUGtU>2d&ab!LylNFD48D z(3(d5EYTSYIq$<^@-+&z#sc>DaDrz9AGBPqz{k%Z(R3M;}2{+1ziLjW3vUz2Xl4?P}SJ3!Xz%@ z09}P;W{t>7-J+2|-$32m(X56CTkdDs`F+%r61b_8%JU^yCaL`VXaf~U9PdA>sw>hO8CYfjy@F9B$wrwB->@#fQW~?wFdKz)O zKpG?aH_VI9c_Mr99`AgX=O?x=-o0p-wX(VH*~HdHW=MkWj%`t(tX(Gqz(#9>0c{d2 zAwS@b`NK(wfsQrf1a2WqHv*L7$kxfs8%|VbpTpC=T`MRc``}|MY@ZXh)j(ia9fQUA z6X5jh(q1_1+0Y5wt6-Z35oC`R!FFfWk7GQYJh09DEb-Zn?U1J%-HMoljZ!1umw~aN zJgOg}xK>Fh&M4)lGq&4PY=@^B`twt4uhoK|EapY_$Q%(wDZ!!o2Hg&k^Df;l&(H-) zIK?~b#@ck`mnC)CU7RAtHZ8hMPOed1P=`P}8OXE0AiJ#^rtmJE$cXZ1WEs{nu^n~) z1YZ4L1mQ8)dQv@P8-$hPJOSE0*IXd_0a7Qo$k>sb@FX`mr%vH8@Lf?D^XF5^(d~`npt80mpW=jqc43 z`XS;z_ZHCo(M$NXMJ{D{a3F@~CK4i6=&QbkV(uw)C`xEUHy(~1%YMC%j(`q#hp?^E}fj{aID z1iqPU?TW@;SR*{rsEon0D}OXL#8Yp`d$PbNA+NKpg|=)AOt^M&NJsLh&Fqz#X_Yb9 zE<@Ur1?QsWUI)B^v9&0zTEpl)?lI|E18ZF=sazZi1ckBHhOldPIl(dJ(sUqes}6TY z?#I+UDBj~H`yFry-0-j2*@ezad|$HyK2QFetGRH+?B{#=~32}Qj=AkI#C`PsH4DCo+>jZ2gIIL z0%tOcK^h$XaE|SrF41@bnc)nkQWTdk8ZX_M=V##gJS(f=#^_~ef1a5=WFWAuT~Sy^ z=Gv4OSV=~8+lD}ewPx?aCcWliUAyD8A49!8&+2QhnMQF6sEam3Y-?_N|6sjzPn>6O z>O7FXMj;29;rJQ0VWcrMrW^aS!T|z{lpj39Ho*+@fh;obiS3YEJ%E!rr^Rg_&r)Rs z57^%KVGR`9%QBww?wL5p_957=_b$Eq6x(aD{K%}zi;_x;ZQk=1C8IV+uYqmWJ_C}( z_Fe&==o<}+6Wb=|f$a~;HZ!)gcgylAw%PMS@H}F>N~j3-S$AyREr`S1{~@-5^)y^q zUA$+Cjvi>!F~|dvOP2-TrxwjwHkW;8&)X3Ab29s~)Z9@Muh^zL8@jHqO~|gD31*+~ zhX%)aCTzOydkicPUe46RbScz*7iyE~ZV92IU765>%pJ~Mi$Jrp^MC(a&OZmdW&;-? zw!rrFb{(*+4)%cUWf`1LoK^xQwa55A$S^^LIne|&?9;;0^RZP~<23`JHFW{lHfOq% ztnuF1JRD81?%lS$yWElTT>DLVU$s9tu$>eQ{o#(VW@>y-l?APwO?JKN-ociE75eJZ zgMHWk_>%Tn=7XviYffWxh0QvS;{gW*7J81GV%wfa2inZWE^D3{1FmOs#dTuoFxD0u z0SQllN-KTd+b-Q&K>+LH2Gm!SEV{}fMu_ZwL&?c`r9Y;?x)fK^4AyTiDJ(eMK**#lEq ztu0G}Zc?Xuk<1#;pd*bsjLsB=1JcIGo?1%{G8w;uaIVpZNvP*;8LR*les%|^(ql&>e_!0@SpR|BTOrIzQcYn>NBP{-ye(JwEQk zx@$0-*{I_fSUXktFxDKHm#orRXPhuLlz9fh;Yb)+@DUjgJ=;gwsb#H${`h{EjWE7? zLilIcb{VM+_+Y1#H5NdHZv7dyPsMf^eGLv0+o5m4wgsIyYMRB)KqS_VanE`kR=&=q zq0EvE+qVqzaC&Hw&i(bj{}XIe0{9f$N0DRqDL}ASoUwiB*uIb0jx~RVZM(*n;8ixt z@4-uATkywwYSy33%bc}PY!^Xy`X0We%FB`rIF6wexY^{_uv6@5R5p~%yLGriH_X_6 z2`2`9fgHJCaO?7jUtoAaf3K@#N6oRl`vHx)2Q0d15h#0Bc~1wL_OnWO671seSjIs0 z++0^r*&1ujckj`$sh9h-Ds$}5g1nL@LUbD=pq=e@Iq;VxgY?LW!n!(rXWyGZCp~AN zzeU#K5Pzfgp%k_w8@%|LcGv4|AP0<8Mt1OJw32~&U`}yl_i(mbYZ+{m^Ii@(V?pNa zyI<)_+x-gPgXv>vK@fXeZVxsqAS1x!-{r`n>x-pl-thq$lV*u$jNza&UL`?OPu#0y zox>i%G=HOm(PiA9d(x<3-^aZs9>o5Z{?ljJMt3WbtE4eL`S%DIX>LHUq;tcZP^yJ) z#NVJS?KJ{D=8}x&5&DS05#3E-$XuY)ATaE?7O?xda8;^?{l}-Ebv6MYb8MeC*@ckM z%umYkS=r2ojLh5HA3w4RfA1Z=q=h&u2*>*aEJaCjHQ@x_7$>+}v-+Op*wqQrW@c%CvJ&bFMb94NcYAgKeW@0!k7{7mN=&}Ugl8~eZWu01l}s>A_B z(d9M*3jG-la0VjlI&{)Pju>AV#c~*up*@8?-}k3wi^v2{xZZbJ#!gKdJdn{~E>fw< zec2_Qd>{*M?Y@(}aJRG_7 z*zS%(U|R!mW!@FXOIwCHRctGsbRWPoY`b2+JYqX!e9p-5&gy(IwrcFK3>egA0hCKw zIflJ#H^jo2KEpQpM0JHaEOuS4*8$s%NePG+rBZrGqpnH5Q(%uw%eQa8d4?l08WgFz zEMfn)F6T*ao?x5t+5O%H+mJ-aa*MH=4e^!z+w%d;F(Qdob<>UbkS9WnIw@V#H+5^#W?AaGonTu_ZIo7ii zt3UqxyJjagIWsCUUF@L!6rX-Ctpr&|#|wKivVKjXcTBjgSpOVCAEH?^DSk69;@U4$gX z22<*3)d0+s`mjsbT{}b1_t6x#{q*}w+7$M&hSQ&o8%!3-p3HWefQW9v5QfN!+6#z_ z*(dMBMz0Fl^FHd6&$adyihqJa;X#h^jMzu~|u@Mp9_yu-6Hm zyfom^7t#7Y?Er49g{2(MseK0&#UQ!JUj2W@_W<0zD z|BZoyNxn~|1dLM|LB31nofx%ScPA3uA z7#tl0o2UMPMA6?VVAh-5#s`0Y40f-m`Ho+?!MsV0=d#zTt6$H1;s%!#8 z#;gQ^DoL1kWt9lx^x5F0%ZIS%OKc@z>^QmhJ8)>s5UgdfoR$4S2GwwBfX@APaaOk2 z#Hwq$%Dm8~R*fou%wcXzl~&o>uc8<9z3p>ntL()s42~LaRmNrn&`(Jgv`W#FncR=D z6sv`E+i=#->GbVTyjQ_?5*UC1Oj?1|JM+1<3!gl}NvOL8$b|bOf1L;dT z9W%CBe_b!d_AD=_V4G(=U|XDa_Hu#keD+jw(?ZuNwpYnM@Nd3P=4Zh6;!O&&vB6oJ zX4(H>4mtY%w_f`Dp7qM7V4G$Ntd|CHNw`he_B{cfIi0bc7`jx4xiy@08aU9@r|Y2u z63@>yAuBipbCXl*_H5L{tnJ@^_$Y63e#pGOb5~Q%IA+6%cy}6LVDC6BU7hcerDEi9 zI*}#*Kv~Rzvj1!hadP%~mw zt#o@3YwDSo3c9t_T%G&M#+<$K<4qceK=$B>C*!|+Ni+L~=IjG=Y-RjIaK2WSnsxIM z*zuSP9PhqPk{Lwzp>rdRk6+ucMslH88@T^is4YoWG`hNF{)Mz=N>ueU7 z0w!g4>a^5hX0Mdh(EFD|xMXKA>-xZF`|nR-PFtnsdKpV+9GtyHks(|tILe(Yk|mJA z2x@eXppbE(PMS$pb`1lKbMr^+J>WE5#*34|&wGR!-(fR9>0OK%ftx8^2dNvs%A80* zwXVr*!w|zrn>Ms(US?+Lkc>wt`z&)Vem)t;ayxS}(1-8J(dFUEX8^@?O~loQr!fCRgbWL^iDh zO~7W3{U#YI#(9qtHhr&tp36RVvH=ID1jm=ilC@X^XQpbCvm1oPOQHx~4=*F6jWzPr z4c6U*(SF9jzGqi3GeRHq_76Gg3hiE-iE;M3QjU3G{5`lhirH>WHihFr1-3gTf6URh zsKL(7z2RJBN1o6@)H2^=&S>SU%?Q9ycV@(ap##(w_@R`<=BJkynVyLE0V8aPM($na z@0sOOqe&Za^hQ_Empa=D9G)2JD+e-ZKeunMtG+@MA%Y8dt z7C-95b{uuSe-%<`#x`Xh+KQUaYU#Kvbqvj7T^QG9n{{q{6d?ACX^XxrsKLK6+ zIA4YmFLVOy>-%IDDHE%+Hwc`La4sPh}m@!4DEZJuS6Sf`#k4E z{q~pNx}bXKehv;y3v5xjLFsv7JAMwX))gXW8-f$C;SOlcHM09IcAxQUu$?4M%!gJo zc+lyMkCH&Jz)^zcWvOya#cF?+5RCm?wjc-ACw9C4?7k0OOB3789anpw-o{uQbjHEG zAgVMwcZ6<-lyq5Mhk(OMsyOHp`EaMW4OI=4GjU&a@|PfDd^}6XWoDL_B6F#j@pDwx z+!Mt9J-@eO+XyKQzVRVxL_xMf9bT}F)2`bK2%0L3Qe=evoJIf;r|1N||1&aHNjmP2 zzsP)A+0}darRt<}LO4n%EqjOR6IqucgiWB^GbYuCxW2P~Q%Vo{E zG@l&SgfS8f^F4g>-jVS~oIn7MPmX`?GUqbh%jdqoJ;8SAC<4x9*~UPI&I`Oe2YqQY zrqQ#q#?+{4M5pO}lofTECMZmff>9&yBb*d61y+AsA^m#ps=36jX7;xZ_jzYZIZiQ{oGZ|4 zWY^UjCxnx|g+oR6kA~B9c>TH=8Z(AC9XO*~D0^MQIherly9LA9gRr$qY$$bcht!3e zRC9JIi?c80QUDI7wCf^Dl(xOCNf~0SGn>&^gTAg&56Y!%NZ(glAp`cpZGTi6k5B>TLdcF{(8hvi(t*y6$PD+awrXc zjzaqg)?S?{TTOpPoh3nF$N4k4uSpCf@65OeJ_sT^Zp>(juHZUCcJm#B&0WLkCP?rT zsJ)aGMv^sG!(%dgi}z(tS6R2N$6~#C<|Uj7(^q-`r8*b(Q!Tk60AyWheGD<6L;~}* z$j>aWrWP3ewkfvHv1E}FmX|0G=qIH|U3m}a1KTjaoJV8NeT{Ra!1fl;`cP~ylHEG0 zQ3S@*eua(&+edtEi2!U32cfk#U>p3ZymV|YuCq1?_{w?q{U+@RwrR86b*<^B$R-h} zwQb*luTK^9j)Wpv4N>JKo~mpJDr$unpe!C)hUj+*ov)Veo!5RcWmp zJTPd)+Ok$Q@F})KK3BnZt~(j9WhBLBd&RoebvEs4)!${SgEpCef&lbd+U<3f0OIQ9 zML~Fa7Qf2WubE99yB>9&eyJ1Nb2Iryz`kUlgWbj%>cLF}Aua6d9@sYdJRm#5Ptg4j zgA*)x#F2-DY|40hCi?qn0CLtZM@vUKoUFaNE;(Dp6a9w&Pb3-bED z-~FEQVE4@ZA4ioigFia8;#0uzYq_iHE*p!N8@)-;U97m4`G7y32?+$YJxjDCNxUwr zu==$>#^lZ3m*BzXhq-4CkpnFy^YM?3qWGRx)|8)iPv1>1bcSYBmt|}+gx}d(W##OT z1$5qZtVkaSI!gX@P3+z_w>ab2NIC+ONn~89ixxk}3v59$`Z~u^1u(MFeN@|RgR>aw|QX}YzD??NK4V=A`63~pR3b$qyCnFp;d+kg~vU~0ui12SQIoZ zJCG^Raa8y_79z@UYV&n6hRf2ZWz8B=aYmAPkNfRmj8H~4E^`d8(VYuM&NhnL^SUra z_oNnGZM1c*rcY^^NliM=6XT@)ZgoXFa~}{!QiBl6Z*W#Sh~qPTFGvJ_l-k@dD4~>Y zFE4{p>CEQ+o>@JdIGm}Qw3{VRaihLvDMp@n8;+#23Trn!I0)VhqV@n#_SJ&{HaD(u zBJNSOr>ymb)Omal)|WL~V;;IPiU6dgJTHMc&o=Eb&NUduUN76Kl;#$j+HI`HqH)ef zX2@1K&mn$}VPS6zYoc|!IO`m&nCA$^y}&D&C2PQ8k=d!LRi<_gIoOY}ooSxo(OS*{ zx(3{0AdstM$kAINgSXhn!p}zIxa1xX%G1EwDxd4lXcNXe=Mx`r#J20Ns1N`6NS)Ie z?S)O|RZGqHv%I!d-~qPRT%)V&fEcThIc{*hUF(Q#Iczh=hTP!*tsKCHkz%d zDh%IKqXBP|`CFDcT-RQNiUrpA40eA%s@#YReX3c7t`kGPH4~*IMFw75IbrGpCE*bN z&F}mEfORZ~waeQ;2exA^@D-elGyPUga(EWaQ`j%$dy@PZ27;@4x0ZjOqW@^0?3D@L z1rp){f6VU9J~sk0GEwNoL-vQvfkB9GK9{{JHXrtHT3n;UD7#L(4Yrw&(`_v01<~Av zh68Q~TF7v9#nOAwG(t;@e+%+SGXls3z8pV)kMoSsgGH3r#qYJm7x^Fy%vyR&|JoBs z@Vvzl6*R!`u5KUwzwycatePqtS8O}(mb5Q6F9aO=Sqn(N#Jt=0d>=~r+{l6j;aaA~ z=S?0IPj*per`SRdFpu^9u`v>B_iVGGN6d) zU!8nveP1GF#30C)z!vDmVEx(qP(FeXph%Q4_JbwK59;S((}+qVsfsS{pXo27MQkyUk;RYCW_=5i6^ z>JBCIn_bF;je((Z<@S>A%N)aK@-sDjSq8e+`3^@gp{FYQ}^tpz4xE9Bx&ls-qT>O+9}}$&6*uvWoFsgv7QO+(XC> z@V9Q>0fsU5_q<-yDSM9Xu@sjeP!B;vI*xG2C?(XO3}z2(A0m^;9ktPw0Y4Ml<=~TB zEq$xlMpiO25^HvkGQ{4!thvL1^EqQ13{onR*p|I5=vo5$_mJImG|t)(zwgy7LS^h3 zw$+{;5)|7@Q;|SMmU6bj_Wc3dNfJ#C>N9NXd!^nBxytfeux*Va`h2y-NyqkD=W}iA z*uoW=#c3n^guRLdtAMJ}di~P8Ls!f9`yypI7G&KfZ1Ws-;-72b4r_I$jmy}X8~0uRt+iir-?O7&-cR+h$b8ynAzKI} z^>@fC&quGUp|>p%C0JNRc6;NGJ|7&Gy7c`-7NFx$(*eq#?Tj~$He)jV(KF56r|~^7 zDgXETG&fZ;i*BrLqDQu}hdl7PaE#D?n=&KT)Jut@3t&{dw7`V!*>N3*j0v{GmTH$e zyFU?F{D>7@B65|>OmX544_1cTF zH9t$R4cMeauY&bBto7qvg3dZ$%Z4)qzv9VjM-FvI!Z^zwsyWpW7VB(5{$C zMVP$~_A-FI`e=`vfI!$Pr5G78UbQX?^zH5^lb$B>TxtBvCyvtxbm{2+C z^cd@cQMmRQyPwv9QkSoFm7S%_RN^&j`T%BcTYOeWFuHm;t59t)?=lt_@HNxR2#Akq zPu86|OV(DBT zM%{eL7*PgYVApjhd#LrPI@@CYYA*@%(u1C0X4ynYnZn>0FPi$V@*2A1BztmH$0p5Q zXh40J0Eu@2_+;elVquY?T z<(O^b#@lt(O?oXISc2{ItaU=sp*RWNFa#*$%o45>V;O%_#-n5aG6X&ewzcH0@I8K4 zbq1w+7{}TRaVE>Bj2zAl^M~B1)53q-#mUsl)`4x_RUOMTC^9Cnt&DUxf@_`Uqu5Tl zY-1NK5=lo#Gtv8_acI+Cm#ha9u{ z{m)>V`PO#@+uDF5gV%T$vbmh{t+wz%Uri2sI`u;Mq!C~10La9)$ZFaVE5it!Xm>iz zz;Kdx?n4r6_ce}y&-dPyUbJa7C%H4b%b3l;;n@!k;yZ5F)V+Uvj(|Cv?)XdhU~QM6UmZCmj$Je~U6Cb

    zA~%o%?75&h1Rc6mr=zEpxF8tFcW9MCht!1tXTIIHa^*%zojun}pyDvddo_CLL``g0 zu*+oX-~ax-Y3UjyGk^QDKbn$x$neM1WC?uDJ~^0Vk5_-c<47M88`#=-u2_B&hohw){Rl@URvbgKAJfskH zgDw-4r_dj+7y*Ds&Ym(xcytUZV2qmsA9eEii~`5g#rG^zaG;#+fe|{Y?>A){MCi(D zX6LGXZ*w;i`-RiHR$Kh{3|K23S$dP=4Ge>1?_Xtj6F%w%EsE0GZ2K(ICVJWi21Haoq z!kq3oyYsPE#rvGE?}M-B8PjCitH=Q*5$uBD1gFo0v-wU_Qq*glS@*tT)%fx58OV4HiW zgOAL((^G-)9<|o!WE>^Mw(bSs_lE7?qpfGxm!iMzx=Bm+8QWys(HR;LYtXFNzR^e` zux(?Y^AoJ%E;XOz}~Z5)`zTiaWJ(5oqyDo4Hr16z*gnS0MNfY>&vWM~;U zg6%Ufb@n})_Cu16V?NYv zJfu@kx&?&g%#B^oIMl8T%XNsxHT6C#Q__-vWfKLh0UG19@4v;yV;F7id2YYw1X@^u z-o@nbcE&u*?uSBRj;ce&Iyf3QR-A6!ma&CiIxFU^#W=Fm;94beIwx~G$^Ool`YehW zXR%nD@eGVZ966mo${5m+1yjj-G%-e9*-0lMf&^p+@Yr`?GCOegJ@@!<4hZu_IflOD zizvCC!rdw;z{xwi4EowpPj6{%IhiX}`ixzjIB*Ml)z>w%X4iDA)(EDM z4_LP6*#0^=4ZJhhR(%2{=CgA8eUD=Oxu0X(+bw?xdkz-$&^a!!-JQ|I_IPNpo}u%I z?XgS@`EL`p`x+lr;x=PjSvkcv!J0C6lnkNYs4G`TlYhT5zpZ74La_}VZS6RbULDb{ zH`a3a(Obt8Z0p>xPKLMZWjvWYu^l8@J1aAJRcuF~sqCj>+sn{C!l5-CzYnL<=eiPv zx0b1Iu+4mHMn%WJi6f`Dz%jjKuyj;&j-@&ff^FDvI-Y?~N^TgNl}EqCK23skV_)wd z72I~az2Bc=CC4rdFJtd^d#y}!Vmq8qaPch~=pdJzB9Ai%j`BR3DC6q;kM?Te{u+D5 z9J@#8UJr`Fmjz?}_pukQNCq!eW=|Y#&F#BnDU~RleGLx`%Bf@z4WD;EADVCQWA?2ThClx2j7NLwJJs28lBb1D)F}sfp@o`mF`>~$RtQB zd{o*t+vjNQ3pP}5DUqi7PBR5|;YVQy?7QaQ;V;hnW3gG9bz$DQ7nt8OV-n48&LheO zs}x+jv8k_N7d{-%Y;Bn;T3oI!VwaVGNA4|iM5Pgdllr}2Tgyn*C+C?tcgr$-7P48h z=>(KY(3WprdI{NlI1uw5C;NKFU*7_CQQe8z>+olx%q@AdNEBhy2DAZ)Cjv7if}Yz4K4FrIpjNHKw~ z=wGGQ5y#O1eodxWD&0b0*M;8f>lw=KqYTIn7Zgj(4E!)u){e!qu|(jQZ|9 zTJw3?6V5@ON69SVK)18@H&D~tqxNoW#*{L3;LI!Y3EOv%AdvObLnTRvde$HmMk}Vn z#_j|3=1Sz~b;-$Kw(6n< zQ+CE&!k~8J7AgE52!x#Ul8tzG)|>CXNV5dG&=7?3Y@3t6|NZaDG%riF2FF20CfU=0 zgQ8`H?18z1`ST3N%-J#yYW$G$kxh(N4Obwer1_S>P1brz_o9 z|E_87uqaPV|&uTT3Tt+0K0TR``K!y{^Gje?w1&6f98%6WUq%z3Ws5Bd1|Bf$4Ev6jE**n?2B zLx5Y^s_lVzQ}$a)QJgmQS+Lt+yOSuLVDye!riVYG#0MV+2NBkt=jNGJNt6_c;y%bN zY)tIQxZiUx!i?=h0y);pZOoVzO|o&TGBBTyHrnlFi59rE|H{TkYh!#G_P~)@I0Y+Y z&~&W!Jv+3UeGiOHD`dt_qP5A}iQKdF>aq-^xI4{f1_WechC_i{d)R+#G6@DWX!5F; z3S@on6#;)`?A7nu#fBg|>IdT|Qu$F8N}=DbbvUy+{i_@pssWAR?EBQN+Own{z-lQp zpFsu)w74f*BJ9E^_s>`7FMF#y1Q#CD9^3Eg!JWPUs{Q%RJS;KVbb=~%?eA-GJ+Yqa)FCEv!hYdWJ# z9jFB0H5#lGW^IHu0DHaaM>3oMlQGiP4TB0xfk4}3WBmR1KL&yI+T~jcBy7T53(vS% zs1CGc=|HA7a;(uGyQEcM6zyQCon5PB>+~;cu$|-EjzL_9OGp=17TV6 zusT??cD8|i?g3;($y;O`(qTHCB{KzYXN=H!=|!?1)cqc!UR$!SYbrR(U3hO~7vr7n zP)SAq05$CsOL?!=iZx{96r%zo*=uVh^MIq#yVA(dnM(|FDd_68-=DkIA(ZaupZzmr zkl34mp~{l2mPGB)qybFs!31_07sr_Zk#jbBsYjCl2YD8`KxVxpWz9nczkI38ZVw=W zmF4^yYh(NN{VmU3dI>{i8-~whd%Q(20YCRrrO25vG{9&}wa@l4x@uVAq=hqv*=BjE z^0qXREu1WI5;mNi3EN~fTgWAc(k|hAnZv;OQ>;xoqd2r{b!oHzw%}vHcGPZzkxj9E zku#{aEzdK#ilf~(6vz0pb-XyigYFD3lh)b-CLpt1H6gjrTa^c!3g_45zE-Pym)EefbG?@gfwEYYruA3Rk7XK`=~@H zY?mH7LO$sL=b7Mp*u$3h#nystoCt^-pT8;xy-U!pB*EOJ52ryJWhAyE8>Dud>=RkW z7BYQAAlGqo*`(ZT>vQ^=*mhAMctVCOTVrK8kTrS$;SoV5CFrb`2G7VYj`b^@>_XOf z)?l|=lhVPlF^GSM!z_;>8>0?9+2B*0+e_G-?nl9Yp&EntAQ(@atYagWOZW+Oi1ZoqxaL~mxN;B13Q@z) z!CbW{ZbR@4iPM^wgjQ!-pZCA~<+ttwsx!}bi-0Sil=Y&bg?Bd@F~{4^uIbp8^1C7z zjBXgldJQ0Z zps)@lXDB64nYW=%nlw6xy1{}EMlq}x29`jLn*KI_geV{M$;n^nGib ztxDO}HP1jHh$M*JW3FAE-t&9NQt#vufr~1x99v);Biq-6-)+&ta;+Awl^JZ=?T7VC zwzw5j$NQ8)xJLOxD8tLxgoBNUWNru|=)%^2eyujY1nkwkqRtT@c*J2NV6yjnm$D16 z-P7l$NzZHPQ#v|edmB%S#`!+avFw)e5M&2O4!rt01%dE!|MS?6 zajg@!+fuFDnNMA>$`X}s23z1<9i185UEFGHaI)9 zRaG_~2O1|8+W@vRWAzJcqf-ZL-=ARntd{buV>(j{=ZN@;=BmqRV~%sy&jnFzM?2`g zj@@aw730||+ft6QwAvPIr<}Ext>MwPtvR9SjzKuNa$-93fOC5WmeMw@wNJ}4SbclF zY|IZL-~roS0)_+ac5m%=5Sz}1ZIvs?MC5PIhPd6X4C$NfN3jdX-^eNtI5_*Gg77VZ zOmL&vz6+kvvyea#SV+8*IbJ>)XdUo`K?B(98L5}mW6}LLDo^d~maC5*$IVRof&MsdB9a_f5ee7bt z4hNCj95B|zb~@O52JUum(|7;-fB)}6f4Ofrb|Gai9)XM~{*y|X3d;^j~2R*t)5_xrP!HEqwQ*cKV& zyUe#{uuPXh5YIlj%h!@wyTo<`Vq~9ns|j)qw(UNQg9@h6C-;~`4>472la+o5WGrA~ zleLyuC@W8NX#oU|fu`R04h9nD0LN6B265C1C_Ybm*E zNZ_SvFfJIEJj+5@_=-U5B;c>#zU4+c``eu!SK7Zt9i*rJtHmn!v40!j?6R~i2MrYy z=Faum#%@EJHS%|F=>#e}!XMp47DydA>lA+qGyA!8L15oA`Mg)avbERXy z-?h0!G3b3<0%HE~u60OT%RmZej{g6E5=GV(#{HgS!I|~;*+-spfZ~Z4PscS+zTU_B z?=nP}H0+95%JTTEE0{I2DO<=)PucHN`Npc5MrWkKEcxYwLWq8IQX&J-2Y?lA}^=le?`r-G}h$ZFC zSy$RTM42m>p=AsV#9`;%uR%O0w!x{E`~>_QLdVmoE6d@RYH$FNwhIZSM_kzW9X@h4&X4c7&rv}ua;(_y zT}@-2wM!+_-?e7odx@JfqzI9H~+vs;}k&a7!(~IauN}-fsf;3^z2s*3JU+jrO zKTsY|#$5dz2t@3&7L<`O!^cA=)hFlOv18n0UB^T2^{gV5 zXPOFSS)UMV=pgj-U;p}-E|+R2ktxm}vH%sEqxy8zaX!ayU1QVYOYAc;0MtM$zhDu# z?2^@B9W`~^-)C8xcDL&_>XgzQVsw^j$Ba@%L2TiOt>VN3eAdyPZAPa%)!jKG_^$rs z02hNnwg!MRr^q(@s5HyLbrC0uOBsEN>!JI}KRY>VXSu(4c!@V9<>)$b%gA$IKW-)B-mpwl=8U#`jQ}Q9T5f%O+RQtU)+FIr3%C zP@mi`NQ(j6I|qnfV_a*LcrTI6s0`9W*D_OD>U1g_!QXa6Gv*B7?|=WB^!Y!B6q7P4 zOez!0Kp8Cca~g=iR^TL4CZnBq?2jA0B^4f>!2mXFCeOsdwu|(={odLKs^du@(Ccj_ zFvCe=4j8xn+ywH!|NCD<^vi^+QqfI@AF;__gFqC!8dp`K?y%8E`!YnY$~FU5_VDmN z2o=iud!z&Ny^mvXlwrjxDqkOzcc1@Ylj+`sP{UYdKqrO_BQ>{TRcBEdET8As%uHDQ zwbfU0F%R6IwP2i@+Ao7q4h8SWv)m}3wU1(}p6M2}_WJpl_pa>M>NbGG!4LDr!{~ld#I<|tDM=Nufdpi42AK6keIP;zx&%?|C$|qESuO3Q><69+Ro0> z7(ki$XV}hE@p%sQ`mAj^EX$A`u*|MgBaKBpwojAP6DRQ41jYCJ6e7%dqiZO;c zW4)@|*x0$z>v;btVnG5Z@k2mGhxNy5bF)1$#Jg$OYI&c6F^j zBxokvHD^sNA(J^-Vo7wjkV>cql zFuldv^v`w2x@Bf~ldO(qKKzWC=!&^l=DjUNOr(P{VOxnlyU2oFaz4vhqsmo0CA!QT z`b-(_uffFclC2}_W4gV!IS+eqp7j|RbY%D*L@pRsQib1X&}P3U(`6S#uLspWTVPuW z6u;M!`(ls-=8gAc4#2h(240rM@0fe@TP=Xr{luGOfb~7?cWj#Hk74864}Y=dK@Jn$ zsztj78LG$2hb?R~FOa+FaQ71-Wn7-{3y^o)tnVFE+i<`n@`x`#`{V?i8dyWbWFX(F z^xU!iCU$$tbyIS}dCE|bT``>_!#)x<5DZKO zgqMN2q(llQN!e7oJyDLpi(RJDr;)`yhe^?hk})Z>%ve~o4=H(5Huxp>aG+$Uv*WuM zX9RPbSgutVPG>xPpU^ELXcn4(6PzhahGT*dE-y(~EqdT7#Oj~Uf5Ka-qT^ zMi^zMa_Y{~*fSqPWbgIzT23X(L$6z;Z$qOEYtlqkI1mnluP4+Rqw>~!$$JZD4~jkp z!_C+%ptPD~4ak+5B{nzT@tCeSH6r>2=DkB(@`~h#aj;9bWsF&^I`&G$OF?7@N1mJeV9I z4|EPp;~nF)F>n^bc^2EK!I*XudWLOSZP-ud=0mcGs$+Ix8(V8bvl8YUkwpR9 z*@$APMh3o_`(?<2X>i&^&ayOSvV~y#2ptDe!FweM)cnB9KGtK8)j2Ob zhYT8aAPKl1@A$XB{Z+CDM{Ei|20u{=p*(Xb$RG?rcU#mov?2ujPJc4X3p+rU=u&vb}C+F0SB;Fh_X%MPDRr=FMm2F;5Zp5dRDBNO_(O@Yk&`}bUME_HAfEVVeY5%ef0B1|NgUeR#IMG zK_JpXvElUhdgMrDQ&vG&u4NgUCbR{ov`Pz+Z@TR;PRb^DCdy@55)P5VUI%9b09f@= zjL(CHC2O(K6T7g_7|E`in(ukQ{nhu{B2&33wqt&J1}*|koFcHe%ACKvzGg3A{+PD(Og;(RXT zk_Hj$jO}&~dzo-JdyC$Yf1rWm^y}9p_{Q&|ChJ z70}08p({V4GtRr6DFc}`Vf!BIbDY(6u9r`R{3=<8vxoC^4`)ejDdY70bxX$(Yrtl5 zJ_jb*V}e7G*_G+i%m_{ra}*1hpR0^&wO6MklM~Dn+p%9yv)by|&@D^HfPB$bne4_9 zC2n&T5^OVe_MUkeZ;J*ubS-VQN0OlFsPf@HPt3`W&)dPM=oJXH#P+?a3A6-Qol8Bx z0|JD(!8U+tHpJT)nFlaDXSrA#&n8rvAC82?kDe z%;!0ksUJmTv4)Vikoi1^Ies`t#y0S4(je%f--0EsdrCkd5z@KlCz%2x_#{ zf&Yf(VnLe-8;lT(r9G?Dfs2bs5Cx#AzM1V=u$@&+lS1DK$~%jbI1C*D^E| zHH;MFaYMR22y-mNP}0DAX$`pj{ua*NHPV9pv&WH)dv_uiDTg_Wfm%1;Gm!1KqZ3Gf zw{tu@h~VQ4W7`9sXcDjp8)Hfl=k%4%JRcufxE zA@{MwDe5qM?u@l;Z(Bz2%r?Y)p6*r5ampjkKe9o<6Gq8d-F?WYsL{j-QNq}NmTZM* zg?jl+I8_)wPRZ6fU)^-b#(JCxQ|dTyJ#Y#Pf*pU;mQ6DH+$>AZ3v)^^Udr+u_A*ei zvV=lATb&g}CnE6Q*Ffe{74Q=8pXG|My~d8cc!xh_bT7fCF<$V1oD{pXzi0 z-c#f*75$IT+XmR*pJ1Ekk|o(-_<|I<1O|Jl&r%u6%l0|8H8X7&2e`rzC$?>EKEZb1 z>lgB-*k)ro*!DU1y$wsqKXRxzJA<6KMR`WR5=%=mq+>gp%s~9KRw_sx z4C>lpbF;)Y?^UFUeVNv}U5+(d4--m&Ao7`GUf03?sU1!mj5EI!Q;$q*(4)4TpxBtv zYXrRL3g&kc2AuCJ38L9GwcFT_barDtl^}!cL3VF+!wg-H<7GB##`gQicyKKGQrT|P zSyon*47WIq%Ic%fDZ|#ROgYnj){Hvldj6RPksj3F2i=O(&R8K-TdVy6972wKGv}AU z7^Q3eKE4;u#lA9DPLfs@$mY8fjqe{ZkM6ib27@yz?OmfG5-3q^@GO zH<4BL|1Fcu*qqtt8QiChA zKvCXgS=bE1?)M>BuyJujhWnY)!dwEZzLwXqaljUY_Ka<8oCa(B%^oHV0v55`_#r(| zv27F!d%upsCx-}DY_HRrnLbmWT#0;bMuKmmg!Al^b6?&Kl1GESJn+3$RYY})yS1Tf znbp|oeh|$tDDXT&yX8i3b+9$+qLg=L`@!wjjjWCg_qeRP}<#Ve66zqdD@3eeujnj>JzwS7Nqg!XcteIjj z1}2=RSbxBSqVPFcn{G7S#Tf+HxnJg>);}1UrS{ywihc=)ZRlI~ChD?Bj8z zbM=GW&NCS^WO;TZR-DcA7#NEVzEnulp`qtkI;nejREgaJlUk$NWg?tA+Hm*xYvs^W zlE8c8{Lk2iAQ(GmfmL^UafoLu`#d~iTNTzW3|g_AZO|3VQe{MZ4u!~iszJya-IynW zxI-MrH0YO0ViYAzz@A3-taixSfMk`Rk1jl%sbrIJ5u(F>2DY_j`Hbz^P?a9peu`}} zm%UYNt1~f}TjqQhN7UE26pHN_ALTQQ-=0G!I>!8Gu#Frs zuF9+xwi!=fqaZ{20n5jc*h@z#ovC8=BhE|tCEK<~a5!UIWxSZyBb`{qw!hD~mw*5W zrwaK}ouSxP`?kpZ*&OtB7TWvdm2CP*?H_9IMnO_@3w90uzp}L%dbR-f`_@8P-|l# zssD{m)X%d=X~g!}IS*MN7*!p`z4&i32z(!Xr)4_2Mr1v(kLFzVz%VlEl#kWt4-&_W zjRv?{9kuWK!`2QBrRFQj$G z_8mWk^>||R$5b1CQ-|1Jv^9ws-v$M)i$NNedPDmhLab>m6%5^ktWH{PoNI093grUq zX9}d#EP)Qsp!J@RENiT^R=W7x^A( zO$A)7Mb**M;_^*W&oCNvgW@a|)>#41m;fljX$9D48hB+g*0l~VWA2@4e@TbC%dg$% z95*U=x!tyO;2ii%2H40ihbp2dFGI?|$vDbjDWgN@sLD##p>P;n){jz0yB`N;={=bb z-owsVP=l<8lb%m7&U&g7(Kr0Qzh}mP^#R+|NZ+NN9#%&;7;0A8-ixyUW>RC{$JW7_ zdAii;$YfR&A2YV|xpH5{-zs`Ru}vnm@ax!CN40d=%TsLIh2hK6zSBzp4-RGg3AXLN zu#?ZQjp67<)wdseJa@pTK;}Cj`z{2I{KGHvfln-0eosa(Nc{5E4pt5M-`B zljmrY6ULr)`@_!zx?SrmB@SMMc(6I6OQHs25P00D>*sKQ(NE><*4a+T0htuFBO{*t z`*eCESe&uV>mwiB%VeDY#!q^V?L8Y{@mbqrX~CnGU!k9rthsDkVEfDp7|Id}-q4fS zS=wT!4LZlnoBGfExBBF2Bed*S@zJsU?c0M-u9;Z-tR7COa-_bgZrSj4u7(cGsoG!k z&v}lm)zzNSk5Eq4^4AwWUm1Xi^MbR&j6xe!{|PwjtIuJYB6C5 z_JL95=e(cKdoh5_b2nhu>rnG(kDDFwH0)-zNPi-FMyoxq6$-f%)TVO?!zIsc;={%S|7M)o)#J9I3OK4!C`I%I56CfItD zgRT08{>yckm5RY!6QhEdb>IH!-;t}Z7oXBD9F{;U(@(VvLQ*7(nD9MvJywuq#eH~6@{}`NM?aqf2Yo#ArX36i^aDTtw z2W+b|#~jSqR)f(*$1!f!@ENu>AW*$@4%j{(^tfXC*vEYU&#=v28V(B{u>Iq+v}=Wh zwcla*KErm|k(P$jiIlgT*WTzO_E>go%OQ1!ZFPupFOum0dHt24M;Bsqzy@|zjrA-; zDYwVijj34KbHw)K_SwR{0kbViiE6`czc<+a`ek5C?GJ5e z`@PpHuj1tKA!vAlZIzdLFDC~fWE9(uy|FDW}SRvsLG>wU5=w-H#|g%r#$CK8^=$>)g7`9fNLU9?-q& z+sxhkd@lUlD}R;q0sCr~>^)T;krCvJwYAS$K*oHsPKpfz6<>q0+e-GmN@a)YoI?l- z{SLvL>dDKLX)QTC9|IZ7$h^l!MCu(?z)80fKp?o@C8^4;bkIx=lQBooOa?E+LNS>b zJPZKOWKpzcl;3GX0Pch1N4r)HTG*^bN{e(BLXL5=%Z1>Q;L_*%?;{TG@Ds{np{;mlc0z?E*nJIMy>@_h!J=5^^Hq^H&a6Tk0sq3woG1~-o7e&oy znY+=c*FO5yK?{RmN)FZrryf~hyeLKOo6fk)IM%^csmQ|dhB2_8_i;zSOa~DHEgVxl z--z+MJdA91?|^rH0VOd`zX`)fbG^Y z@c9he{7xA-)>{Kh`z$OMGWBP$tp<`VNMswj6S3C@X?56=SJJCg&~j_-C<=;kD;zFfgwd4iaPMyS$q^m>dc_V|&&8ej#5&;Bsnd>roEWx>mWM ztgn}yedKBN>@}^^>-Qd<@I7^u7uhq{vwZtVzRXzXv!3~JR^H{c0xg^$#WwT$%rU-5 zwiNkQyN$l~^(@D#m#5jkpI}>q17uDeajr$=LG2n%3DRyy8KY&8y|SU0WGn6ILB~2C zUPv|#AEPoEQQ2~y+09S=D8-z0&bwTzVG>u@>((Lk=E1k)_15MpWz>KPw-rJ zo6OVHwXC<5j7*0{X&Nc|zKBw|7Ezn9Ao#ivEY1>)_smq-fE8>6APC}3YWSIal#NE4 zERb#1rp(EHZfWE5tPPiGAdc#-J{zBzg|R=RZdp97)8_Z}4wn>gb;|wUCFpE8XRhpL z|M>gg{d-{mvuq{)?!s}7du;Ag`GCD^Wu4Z>0bpOgmXo4jxJ9{?ZZNz=Dx12ia$G?)!RfTh<$Qc?d(=K`8z1Kk`tzan6r?@9x5nb9YR&$`Q=rR5PE~$e_T+ z*rrY#@m@+48z;TZ8IrF&}Gn>v{DaF2DMH0mYFAa_yD zIGQuIk^M`QUf>uJm~zlzciOJizn^iVlz1*9cg+Kdc`IN-CQN1~fZ{JlNGc3x$)_0}eK>PY!_2 zJ#(hN=hE^JWFWKffob+W_Oqj6-f%j>HU_?hA??}jWqpF}#eWXA?eCYH7}rbACG!Z@ zz!$n9&wGmTA7DGO8!k>4;%u~( z^;OFuosmu5*OtMV(ZFmbD>4&lgj&e@+4Ru5YH&bSSRF+4cv~vN*UL(y5eyfV8R#O$ z)H6Nd5UJzUKldrNKN|bg2==&Nw{iEo*zM7&MLsp4CNT589X{X2TH7;RZ;IUxxM=Wh zz7jr?{tg0HGbBe~Tj!tmGb|9CaPN+7sZ7whAnT;qW_?+2#kL2Kx88&XA59OO%=J7^ z+4JFcTd}RWPO;6qD6w)4yKOS^J+h+&mbbt*1W`3(s(q!r(<-D1CCb_^T6HLalLq%- z8+q`*>j(@QB7kix^W;5dY$IPv8ew0^wBe+qXEmttwXG6XCHYx9st=eeo{P;^l10~A zZK94_&!%HL009dfZFlj*)h7qH`18F5e&{c|*dy)T@`_B>Y*P{d*D9xNiK$0y_imfI zN9KNi&&gnbUcX)ob)2;iCXL_iC9@d34C!@*w>u+p7@)GH$xMi#>ZLEj%W%JM{SYTf zW4*riG$NBh*2WGu>q2IYRw=3L*KFiKwBzRd`b|PEggUSv0!=)C$6sV&M^)T?CTxuHwRs2cOD5APLTna&1zlQ5`;Lx_vu|JlVMXlj?zouDV@%>&Rgp1 z63*AUZ9~e{6``|%bBjXy=uuayQd|NXGEAK(A2lPMqGF${$s*hW5c zBm8*|%C@y~5Y*}FV~U@jZ9E@fiD1`$<^f%0o{?{@XZCDVF>Bqp9e$wUGi=*udVmnv zO_^$iZ7o?+Bhu$8)|V2TtPB6~obQ5dZIXe^sFT?Zc<7evwOZ@;_r6f#TCFpwjemtj zJLJrsv(5pzNKk~cz%!6p#Wrj?%>+0br|)+PTf)02wvpF7C+R!~N71p_(m*3Svrfl> zC1}U-ssjU;#P;hmY)kN(0peQa*|ttwWRLj153CIh0?HBlNX)-WMxH?a5!*1JbH!A*i8jvcTo$rP*8k8x;e$xATy zifw{|(z#~?n{(i-^5=~H$M9K5R{k5g=sGTEgCF}$&nA6* z42R?{B3Jfzf2YW3II~}++iJI2J4i;u2Ky^Kpgp^P=6gqxv&#B8?rOgxM5g+3$g4fa zgNSMX!abPlV)U!?AtVs;#5>qw(ySSo)ZYGAd?Rne{E~Zj$T~7M{7Bx1dC_W?E-TA2 z1YDYpnthb(bv&`&{n2W6gumn3&vx9!t9fGZ2$I6_Jh@!@c&J3 z{}C8#$%Q=zmm+wT~Q{WtI1gmoAW+!98_vt8A06eaWh`+GRtD4FXJgd`KN z@A+=k@uKQc8E0o?)^%dw#ux4tgk#}_%mv!9RrKN+)cF|T^1G;ssvkW+p zOIcG*`S zV*B~M>jh4H_X+}Y2+p$&YsQ+84PmqY7TIuZ$X)+pGujsSGzZljat>iJg5IbgyH6%x>#??{W4TzjtU?_G`x9Q*7_M;Ihu!A``~k zfE(t3tcqg0ooC7#XXoL+L0-_Y6!|1*RvXgap>YJjSf*(N#ee_ze}|9gO%05s zDk4Ej7~{D<=E{abRDpHogwkB*KuZqsHEC>QKYNC48xJyAnXs1FhMaMN`|RZ6tjjXE zT4;PwZMz8!@R9Xd$ONR{Z6bIS+xH-2e}!$w!b{%IY@ricwa*;cIz={-5ypoMT_%Fd zE;2P8+lQ0C=xp@KfbEYF+t2K_p2?%wUV>O|p*P!njttQ}XE-o;2CkiT>>`z^Y!-*T z@iT-=4W&9QY7Aj&`itDF+nKizd>foJ1llfBNM8HzL53MY1)nZ_rM@a#q>2W`t4=H} zhSf>S0~*gd7-~y)y4X@>lhmkcrYTv|t!m(LM)*$FSVsC01@iv!?uV!~VK}26)qdVT z+Zj7=GSJ_7t<<`mbX;jYFKa-#>b%>tU=6C(YB4q_VcIOJp}|qoc>p}RrYK=pjk!*r z$R7Y<5E&Oj|0;5nZ1A#V;Gs3j1d|vHWJQBYyEp*tn!)Tn+e&jUWqQcsQOl1k_{Pvm z!D9@Rty0;>=xSj6<;&MpLMUP8?2JH*HL>S&5F@p=FlL+yu(UR0DLS^l`7<)hA&x8K zhXLmtj)&~Pgzf8v&HmM8<~1^9a{z`zVY24+!Pf{ZzCGZkuS_THUS4aAit z2HP*;P^-L{zQeg8>!D7e&7rq+9nYKS?-TQ+I*57y5SIQKwh1J3EVF~foIGON@6%cO z2$qngaqJ_u8LN^Zj-gBUVHDepVYb_*zc#5nA#*j$XQ!Dlwtu{j>tb4aZ=YhD``ZP!nSb!6 zWDv5>SnaZ4r)T}|b@m_fraIgY5`le(No;`a(l?>&6x%=kfNhg?BO(9! z&wu1Iz|ELRT_1cI?muGNNp-MooBgNu%SQr+4q1R5fm`K42rMs~(QC|v9@fPIBSgxg zAbjcwYajs&(uMJM8xGi0h8CpkS++eu~D9*i1>P+5Az zwq-sP+hAFV8?deA7%-YM+xwqj8~LC?hu+`!2-Id}%6E+cweRW%()W< zy3M=Rp{8Be?S8Y~IYLUAJxUHJK0HqQQa81cMd4 zU50Lv1eBJ&QEanS;2E}GB#`9%MLy?0yJcoZ-?z7s{-~y0&+Im&7H$5EqPuCm{?2La<7v%zs`EChMScT};rCW6;t)Wq(;`l!)JV?ZU1~ zP1zWne{}-6hqux6bTeS1)08{vFUbUDEp=-d*dpLCCbC*h!TQPXA?&ud+c- zGh2M80wW*imr$JAtxgRZ&I|V_Yt-qhjH&O2K;ZuVU^@7)4l z7+VytUBRA3f$MzoV;v=@n)Qp7FI@G2=!?qf6y$446 z{k@Feudq#!piV8=wy~&V?auElu|YduY>JJ6HFWz`?NinEFxOdbw=B5{m$DI>W^ggb z%pvpeGi(=m^&H!`D7TxjZTDb5n93(>_GhsDI$-;wkqMr$%~)q_W4FP!&X*EhE%0G_ z>Rqt?8rb&lI0?YMrtD&L_r0Oi!ZR-Rkg)DndI>p*?L{9ii<1Y&`l18yU2^Us5hU|#2+;L=N#u7iB{-`~Ad6`cfutHGhN_)1*xd)@*6h4jP{zqU$j~LB6=gu|pI{yJ^m^up{S>Oh z%b~4(k6;@;LU4`#XPsC>g7Q=Jwvtsdwi%y)@0y2XlR?o;w2j$(KfC82ln+bEE$fMm z0ROBHx~~G3I+t!HG_j>L9?)^9Pj0`%?!14DN12%2w$BozC~>O6FnSs?18iIKD9DR@ z?At}(+UIRPcz3pYB(@{y0*6#}ab^;0qM2~AySyuF?>L^?FTcHg&&AXlW{sqX*i2cf zlVg9IBAL^t_HSeIx!8xoW<2|@y~y{-mUM6l$Z?XC#XwN)Z`dnMYcgT#3~@kIrKC$) z*ypwWHV^qZ&)l%eGd0*zrH0VkrHlacGqW8Cbw#bd;gI@H45R`KP{K06EKmxfpmYF? z=Ygcc{c(}vWR6ghC?dwy1Jp2q_z1U1o|UQick^tdVv^QTmt)q&i2i z8`&u;=88QF2=x-3@#;DURsw@i2jltPCz>xL`xgpkE?dBm=iSe9aP*jWH!9=V89JBB zBA}_tQ1gHl)Y>EJ5B+M5;T1FFMp}*nmQ=lgE>JS4BL#!u%nxllju5XzZUDWODRs0Gv|1Q z6i(TI?PVFT{V`zMyWXkYp0Vxh`QFQWY|a1u?|-YkW1#A?6%@_-7VL!(wXI+_7@Tq&A&a-6PKBL&iCeUaL5`!Zk z@QE3-t{=~Gx&NA&)&v9D&>@g{fB&9JuA;?CM{_Cb!z8B?jx-vK7K(wEj3%f=*1EYz zqc9ed?{Z%?Jm$!$!>ehq-(q9AGGaPO2!IDJ?%bHs?j>1k?dQ151ka2kV^d*3;4Nj! z^J({}4r#UkT^|pgn;9Dfq{X|qbF`-bGhY}zb>dFRsyX01A}6iP{c9d6U#N9G!r?=( zlpRr4&eqmzMZMK-Id5|M{G~R{!^ZK>{yhRBAI<;ufBmyj%AxCdi1D}SFBS`i^2~!O z$pn(YGUtMEvu-KJ8I*5BwlLRia+Xo}0M_qY2PncGnX~vJEw0JFQGctB!nRgdB?1p+ zFnAV@o&9-@&7~ZOg@RD$2;-qlpE5x+z7;pB$dnNzD?zyxifzVrI@@s%-tm}ZLg#_? zX`5oN(u?~d4Rx#_%}MQYh+tc>s3-U_fimqk3oHq5cM z!bNwh6G3L*uzj7FSJt%8L2Hp&@UCKgqpdh6Y@CH4?C-ct*gorw2pr{`WHw#?eSZ)0 zH8a}Ju#Ij(Ryga1v8Y@n8Mao(Pvo0>X>B_)h69@N-vi<*>jT^NIdcvnH1(Mr^vImx zR9c3V&wq;Tb1a=!J?d*4t+CHDx{%$6IUBHj9I?5$-ktgLxjsL|b{*lc=3Fz6YK!z5 zu|4i{QXQ$j0{RDR({|kVpHvHDbjKxd!SmI5K3&v(}F(-v>uaeMCW1Is>K+irZ zx}a(Kq+JA$>NC(t!O4v;F|KQpP7rfSLZC;>2OhKWI`>-AMsTYBWS6f7il341EGLY$3RnweWP3$Zdge_pXCz5Uf}J9(Ne-Yb)?=2j*GoL#x}t`GGEF@ zeTn(+>lseY79hv4s60?M=z9#dEQLTp_*FIRIC5(=Ibi<~f9yP)T@)O0#uzndB@LgS zksww-XP1r{_KEN9qF7Pnd4N}I!`ULV;$_X%@nB5KsBe+(?)Qy2n75-XFAvBKwq=#nwOUy5;)rZzQ4T*^Xg+qjtK;Qh3#{a4X}Mm;G;%# zpKOk1QNVT@`^dyGN4oxyYmAdMp*ms4_WOkG-X+wWqVBAg%|`F>9{OHNp3#MiOuLte zkJttyVDBb2PUS%L55X7m+-+=TGcFHyI}b9BwL#C)@l*BEaaIEcbJiiT2oiSD{f~D0 zw|)*0j$uDY^fqFfy(qM{*GduoUK58^Dy_|5m@5Je+@Bt+N9P%e=j@>bJkV_Z(yHin@m&P!~Ek1noeD}E!!`1^`<=6 z>J~;t4%qHT1H6yeUc#Z^thyQ7?2ld6HQxi-dU<(*?XpB>8t*hrPE$9bkxr-I6OltG=H1$B^!{_XlA z8`p5+nM({cQSKqi-+s>Cqcq;aE+GpFN`o)&-ZxvvGngmKc9?PCeToI6%g7}i%48j4 z-jf-=a*B8{THFU9A(w0i_rX~~(NKSRlde6C1!t_!w>6E3 zHk--%9o0sWW(3HA{hW?^s+80j#lcf{na`q>l&#}?%G&b|)Tpb$p((+zmSB4s%c2em zu$cpQ@N4hL64^lJhIzxVa3RC|yv`W9G`hCT*ao-Eul={px!sla)}+W?W{zxrpf%rx z?NZR_D41-;3?)^cVH?HCdlkl`<_7kvC;e6=wuf_P)1p`cd|<{H?VI zY_q;TPQ$~uLFT}k*2a$kU+I11O&fO@VFR|&K{&9?2TsUbUPCKW=AN=*Fpz}N;aL_) z3&l2a>SscDS00k%8DKna}&HJ@auw8nyY#yIuj=?j}KZMZA zxmcELW&*Ye#6F}H#YiRVoTYm?bq>a=igAwwp9kAsN==DVb@O6f)In7YD7)RxQ?OmZ z_cLsRQCnZi5WzMHhJh9v0fQ-Ao4}=?b1YK$+ z&d;&!1koe5|I$mRH84c(XKbsVj2?J~ZOsrSk387gt`d3$veSp zx$!CIu8i4bm|FxLQ1CMVs16ikQ01WeXfQ&$;3y1rlr@?~h*7#QC@4-Gdj*0jbDoWS zu&#a0Q-Lqyc+xk%SRrMR%0Vs#q2114c5yOc!eMv&JKk`^P{ z)tgGFWAPcbZ5)65+h2cR`}b~4sD+=gjX_YB32ZNl?af=ADto02CfL@rc*pkro@<;~ z1lxk4pJChnR%~OGnJci3qJD;Lo)5dN26w=UIIHfMm&4tS&a(Ux+c+pLztyRa@oIN5 zGCls;DlJjN;7;IkY}fB=Uw|5W#WwqkaB#HN*~eLi5&X>9X1$cH?(elMLncwNeFTAJ z4vEjp-k~n@~bJlFiu-mi4=yrQcGOw_G8?oJO*k$Ne zij4-_UQ)XcvSs&DY(p^I#fbxpU>gi7wr%~;=jh%M+eOaK*d_?{d4CKtH3(ILNA+}O zYJP%khyum7k|%r?Y_kvPKgG6otWt7E*A?B$?;%^Yd`E-xw$$ECd>Tj_&T3IvAQJ#) z>{o^DYwEBfPcCVPQ1)5#Yw=T+ zSWq$%-wAB19r8BYMJ|@^`8l@DPO|@0pW(khANCCMZ2s8ijC@jTBSXlk>#zF*w%t#? zRancwa^iodPchB%zDZR7t8+gGnD(m>{2QeBk-L)q)k zDTlg*Q)0#ir?p;AnPo3YBelnA_CB%Ie|}xY4QEVZG2@kzrH)R8(Ifi`Ak;Cn&$FQs z1)|Kus2p3irNa?U=5XIL70bQUD0_|HmsC_J4|iUZ(b)ZzS`}3-%eo-YJYegBGJHKAzulGZdqoA2{ zALpI{4HR8>JkQT6H138C}?7hc{ z;?Bn^$vkJ?*?ynjKlj%?9`|_M=lyxVUeDL-Ij%5GhNQo1m}GH|(`ix8XSnAr`YQT_ zv5@eqoVY)B_xsOJXFytR0m6jk!_{Bq#p-gua>O~lr*sq@+!y(fHLdW$!nXt2Eql@3 zO29f7_vPSA+!fRV$e@$~bY)X>@0iXQD7R$s#rk!^chu3L=q*Qsl`l+@0eps{<)ydc4%wqy%m+NK|GJCM&iE}!Vo~YmxK#wf zm9HW7gO2v1k4OCngM^`F!Nx@=rd&JRG;h624~$djST|mfh$PXb(@;`?2p!#gREFp9 zPp4idl=9CqfiTmbf_HVB*R67jIE4oXhbq9v#Nc%emLO0kpYD(1R3uuD85S4!C z)9&y^(&%n(xizQ#NhMnx{qL^)r=7EXA7tbSjpL$Z>Jwz-|KG#gb|dte#9B| zWJ>SS1OWrxG{)Hei=Giv#`d>~RZ2C4`^v;pf9=is_Fm&BH#m0+Cmxhjc3jl1lhBTh z%hNt0Q~VH#xPe`3QCK+~tx(kHwnvRM>-|u%jysQ7+CNZ3RkKgv6RgHtIMgbLiKTWZ z@4SF03i(CZb8v6!lScykiGc$06Wto-ucX~2g3g1F))}ccbi7Ny-Tr!6YWhz`U^DU; zE3wsFw+0^j#ltu{tTGG1HC@a5(FbSI`aXWnSA>v8XA`TS=3A1j!{3! zGh`{lf8p`s_yPmvOZQk`il`J;6)pwUCBET?<*vYPCVi>M=d1xNR-$UEynTN?AF@sK zkZ@tRo!!dLektbRUDCWwZ?y8vNV9}_FXTQl+%=_dx8Ajs)04Ge^)yiSikSs1M6n|G z_hqT4mO@4iv|5P!YbCXObG^dZoQLnYXg6F*drm<%oGG%6W6=1V00)}uzL}^%a7Suy zb}FGfUZbLyW3*)^6uqw^BwC|#I@>nW$9VqPo9L;4i!|jATRC?7=TL5++6BR~meD_d z1ya*(n&`B1;87PS4gR(oy%jx=h;DwZ2wYE9JPA{wFnVwW%FAEUA(tO|hc# z^_qcIMw6~T2FX^g*SH1L;(No;7;yca;>lp*if@-!vOahhew&FE z&!OwhDP?)QY;&AC*Hodg@Jy_MYeUCWtYI65s&GG5XRrDY<;I}I>)n0b^CRcQINLQGf3Y6i6TcUL3fi45%p0!Tv-~-l#C0s%k@ruk-;=I= zK_F#o%M&T7;f!)iv~LQ3>4ge@UTLZ~+5(@g3J&ME;`~+$EYi6()(*U5^v;`iWQ$P+)-9rh{X_M?u*~{?>=MVdgtwf z?Bb--=l+I~P2qZrwasjNZ#!SxgAs1-m`ggzl4HB=YWcb&DRe&0u`&6WN_u`)l-lB~ z3tB2p#sQ<@q}(54;diRmgZqucj`E55cCV*0KIzIaBg%zw3E?rX%%+UOE#Z-0H>vuC zgMZRnUZ=4`;xt$CS6rTvp8J#;QzBV0`eG^8#%FhjMybB|S*Pe#CwGL+(v~BI3BLdq+3sQBH0I;{x1%GzI#qqhbx#=tm@Q{`)VO1dfxV*tBWa^{OO4^XQ zgTL+ZO06^fmfu9y%e)SyTnW6X#N)vcCtIiDJ00dK_&ARcbTu`|Rv=!&U=w295$iu4 zmSa3$aOOq|Fv8}}$?=e|Rl9w)oQw#nZElOPWc(nExO?lFRK+6{;%FM@D`0@?3eaw& zbs6C`RquHWkW6Xs7@}?Y1RbaPJZPzPZz*FgWk$9qS2I=1V8D;^3niO%e6KN6{Riye zg4Eiuk5PAoJ#JXQ=k$ubgghw<|G8<*ieEi4)dA1x$qGFG&#unQi+b~K@(Li-j(a>@SD zy0iX#pbREUXk4OiPD7Tdmh*SZ0!ZHhr$G z9&`;c&bT`pZc}&=#yjgFj|w|wzY^)g6=q#@`Ch`qZB-$$ULkHy3hIMTe*x|1hovX+ z)b7V_%&QLH*d9q>oMh@F+^7)1b@RcfzWn)mIbB9%b@84hdxT}Sr_F->slB6gwsVga z@k2CCc-h%k+|05DLdj9nxSA$T{it>O?+SkcqDCe&5R(Nkws`t-R z6W#9-rYSX-#8HYmV)T7+Bbo{$BViJuV%_=LZ55sCKfpJLEHTI){H7l>6IC@6#Qf)( z`(CNXUbQ`_Rdz+TB%8HEi@0Q~-9_u(fSg>gx#i*L$@){Km6h#at4*#gXuhaC1U+6^ zIiAa6p=j(Adx&a@lGukjgjbJI%dakSDSu`Kt(L@>L!Sq;fM1E{Kzx#|B{8`9%YQ77 z@ul(2ShV-()oiI2TK_X?;Myz%v_hpf*VsXMnIMvd-F^dJt`KTSvt|WB;cx5+(wJMF z;I2=8C4z(|gWtLP*(D|8NJGAe5%zDU6f6O1HK2vu+Pstqrhj8r7duWJjEFGjvXyqoJRk(_#~o&u zm$pMa!0PaeMHgCZKKa)gLFJSEYlXPy{ngf_ zFvhMTH)G^Q=`}Z4{aEV9%U1W6EB&76YP@fHcw0(bSl#C+*?(w3SdyH7=*goY@p5r8 zYO3%u>-@(sRVSS#jnpP`p65qpgCh&z?_cwhY(@S41kL?E86V;^6E`pS)4W6CIE$;> z{eqbHnle}$j_*NYPUF+pggFR^&DVaj{7U(_4dW=~wwrm^f4KfMY${4M&3O1Uo6qS! z_7qAYfmq(aPNEH9aQu=(ED3a*Lw6v8hMhYmVY*jZ`%;Lx zdJIRUE$-clAZVM}^y|$B8D7pf*nsUm%>)I5?z)S%s=*KD_UB2@a_xm`if=Yu7-~Lp zsNN5a$Rl3U32?5a4BP6L4_ILQd#{pS98N`2&boh9fozt9-%yg1oHC}|7IEDz@TWZ= zt|~=B+i`p4H=RaM8nfE5wV@|vOjfc<{p{DNW25p0F^4p{t*gFff%14JfTK${HJ2j1 z@*(N&xK-$lAI*tA&<&zWS~&TObv)kxj2JIDy9=CG9HqC_j`Z@qHCNehO1rqTG5u?u zrE(^>yfi5EP&nK2mO;vohXXhHD|;_d)T&{Czn*^Sd5{!z#j6<@SMp9A=M8(XeRv~^ zLC6*ixFMutk112qaD*6J`4QD81dZ1HIclr!E+d1og0$X#YH@up9`2y9l9bMh{qrdQ z!wulR)C%z+@G2nI5ea;CJx^bFqRq>3|F)cOVOMY z*@G*at9p(8dYC=p(+hAvv^39&yDJ#b*G^y*FzEW5~MZL^cu~%yZ>{;>pJX-F(bXO9a}VJ$ zS%;fq$NjaB(InfOifToTB6B6!+@hqEU%z3!m7gyJJ-PQ{C*wdZC6 zTKn1^@Ijn9t#4Q<<{>btRkmHl1hlRHwVzb0q!4YvPUx~-;7j|ZhXP?JS*bm9`5Xtt z(wxN0s6$-&;U(*lWKY3Fr#}C`Wwv(guM972f`&y%kR_L z0aiwvtGmx@R^<`P&CDhi5hL3~h~`mV8m}^Umn6VmxddNHb$*;4ZetG$m*tNdm)p`$ zg3K~_{AxrUN+_p}*N<*^izY1K0{`Ha`c#n#_NDL^4CuMX4=k6c{G$s3pksB5ZQ6cw zB`cnO%Q>q(faoFZwkHT+`hJQ3XLXgch4#H^aBSNm{a_tI8D;?lxx8LXW_sU$Ly66m z{FaX(IZ+U-SGjdNjT{)<4EMd& zqk|G%o*etG60{>9|3}>x45!UOo2P0!od4~h9ZlcRV25J?+~l&D@4XkcEP7cX44<-R z(ohVHQj8(v=)Y%I{%TB8b!@@G@o+^49MjEf9wtq_bNI~25H!&+n8K*i_!CJotsA(o ziPs*$GShUVghEf%le z5LwQKW_@nF5V!&9H(`cdf9Fh4+QKo%vBf39$+DaT~l z8@P@LdpyOFzkmKQuj%t%K%@gZ@Ce}b{h54`%C^I;^e_2j*DL%fF7Xe^!{lkY@;8AB z46}gmM<7Qe+*86Uto*jIGplIFZ*3b^yRK_y9jEU3b3Kvm&`*ZBxH)!;h(oLo>awMf z|KgCRcUQl#mTN5|&hN*j{B!)dUSqqEecj2R)4O_8@7=uLeY?cv5PT4PFe~P9`djWr zuQOM5GA<<-t#a8KW~ex}PIVbrecWv&6XK_Z3msP;aT@IU-W7GYF^g0}(vjaVnqJ+l zxgBt?&=qOG4tC1QTw=ISY+cm%Uq?U=*Jj?0-TrWdyqGm#3(Y@jgm?3n;CpQ^V##I0 z4j8I!6nyf46JTv+beK++zT3cJepC0voZB=bSQ~H94S}0LXN`F?(x}oEJlp}N1~tB& zA?z~154{Ch_O23xm*dU8Vnnzo%RW0;wc2+xhP016d!&h{P?t#Z4R|fv{b|MM?)XwM z>)}l0yAQhtf}F9{i>CVTf07?ZadmQAzZtCX7%8fA@1{ibq#2cS;J)r{Kr^OS79V4? zmuzSkppEkM@fE<~+w@=3iE3iX-6lQmIg#m)Xo_R?DV}RL+HPf)PlosPU7>R;8EVb@ z?$e_gx`L>($1xNbVJ%DUk9te_;ncQw5}UrlhK8_SZ5~hMRezpfx@M5R_qdD3Aw4j>Awv(JF+H9*efuq;^9UdSf8j~M;s@P);dS=J29 z4DiB7^&5oSOzfF*O^XG-Q!Q;lr$SoFt?{GY7j%Diln`92;AaZ8p`%XRW-qAw#O$K_ z0xzmqtmne7LtTjcE(0{o{*FP9q6d2kPs02>hFf3@G>t1&=d~{jN=dSSj%Tc=4RMDJ zT678XL7qhWRH6X;hbtCOBpZ^)pBjC6t}o!~_gc&-zaxG8Nka$y-07^#5c|l5+N)Sd zu-zdU-K?=fDm$2@7fo9W*eVBjX>`U-7b}^XPRO6T_Hgy==^rW+sbQhkD_3ORjaJ6S z*)lUN-I2j3`!Fh~`u3(bcR#cUxm31sYMO1{&0lO7M^h6>EG~FZ<(y4b63xaqT6v@@ zilC@E*H)mMdAx$K^OHtZJ}^ghHVg*{4;=>V3rvN3)e$M0B-%PE72h^4o`r>-riYIVSM-8+3% zT+Ghg3=VDv5SuwqG>G;{AC3iAW{<*9Ri!d>j!_KNaE@*_&6V*}5aebrP1!uf@*E@iO!Yi`_T4z^btP)MFa4+>V79y$h)^hFgv+WHo z5~rj`CHQN*JEtw6Tz8@va^2_9ozTtd+38pkZIXmJ#W9$|ZPtmU!%y@|6eRTz(9~#*q+)B!PVtF7t z$$8b_Y5>=e1VHRQr_}|FYM7kSa+#HTL?r`<4nzCCFEsw-}iA7vualCCWinN_aIn|qLRs19wNS=lfJWTsp* zuKUYPMjr1*ClpF=v66J7T4+$+Ir#Y^fmk-Iw)&u%!!Wgw;|guh{iwekl_q)3WbYg( zv>e19nrROjlns6&!G#r%p;^?e3krDA1y#+Gr(6arT9_XCO2M8(FxGZ+H{9 zO3c7pZ&vu!8U0tXm~y-sd}Op_?-PMU?bmDCBj$&c()3d9NJyS<7kz_15zc>+adGcg zmxu!^ILRWLLOz0#I{Bb_rbYKcRky<$G4K9r8iPMhsx`=oSMW-Vj`m+h)V*I7<7?jivnwcN5?GLoT?kvRHrkLopD{}Ms`F6StFP7=8!4~FnZhE) zz;d$ncG4p!D=C$%Qv$x&2+nqf3V^QmA$fz zr#qo2qE7jkU*}I3wj*njeIytv){S2*pf$8DL~4B>T)jU=VEqQc?cbbxv$?_b|9lB z{TtGU4IHxH)mVMl$^K0=AX0t4q{qXPR)HNPs zVJfP}X9v5lk^sd+2wKJ`IEjA!OYSnF-SHV8`>ZdOVZ-Bay{w43YE=GUZMe&c zDsGr;56;a&XjFaC_Gx*kVX)ur%Q6M3!`R{64#1kkwW0+X2R9smh|6T8W}DBct^%bS zs#_3SXFOLM)bIE|2WXY8H>fZ(zx)nKz5`g^rwdShUZQ+Zd;9HurWoO$KRUUF{BO(G zl!P_cqCEUMXzD$Uex{Zzvafa0RC;nAzjU1q(}4OleSyVB(GFT*)2Dbisv>RZ5C>0G zeoNVwB)w2{cddS)w@WH}gWh~tK0mHJqum1VH0U6QUqNAN{~sIFCR1lNeNlQd>vvbJ zNmCHX?uZWMvO$9a-83<8sK&upAPna5^tE-@XXr|xeU^@Px`wJt_Q-73 z$vME9Dx&9`QhDP+Zhf%35K{)7PCe!Fl(ozbBbMb{S9!EaD*oFc(PaPZXNK(>n=<{e zp585kxT7F!p&T0|XDdoJzDKipEpV0mR{k-4Nw&b}1DlLPGlLSmf&a(Fer?-F^W1!# zESV>N|9yF${am8@&4RgrZ_8OCS+<>S4xdUw2fU=L*qK%YW^F6f7-L5#UDd6^dF!NS z)S?@hRGlV0%nu4cr!Oyrd+#kg5zmWn?6f_Ntt#V5(x>FE2SO1bFmKBCe4spW$$MlO zk4CGww=6!Nt7cA7x>O?eHrLPWUpk7^9k3+#lk zD*8(UTd!8eyN7oJW0V+8EX<1gCtxVA1SAR4EY|vVL%YqKiidB}q%YsPY2}j=bC`}3 z@o|Vs2MAwv`cuu*ei4rr>4*m2ID6d80?}TG{NvrpCSnX)es$SWJu9w^V2uwn0!+&v znDdfyIB?F3kPhWFMS7cDS{0hX1ge6)iPLw2>zRQJUTgkuNsL210e@4mCT}8wwbMhJCfP#oY*Vd4$>*?Nfiutx@%KRyHm! zZX}Z8V7t>WHC-N;*LBKn5Pc}3qum93yRM$-*6B+ghah=jyy)?R(!*#~+eiwmr%rtY zZA38qFHDpzUF3inWY(Vu=9mW*)a-E_BiJMc9>Lqb!)0o{N5wX+^)NA8aJ2CKmr%5g zP#3T#NDB-&r?26rd0HD98A(a8K0XS`;-r3;G*pb(_YsLebi8-w6L)%XH0ajS6;?a!u?DV&u{2#sJs< zOC`{Ko15aC^mh0L4)e}l?%5{k4W&iWCU@uWl8F?M%dF(Sd#RU2NzJvn&a38E53q!n z={C20zywphdUp03C)0aFbsNFESzYqXb_&IE3z@vSlV8Jz&nm26P26_6S=ztp11sV^j|M43`-)F`g;5A zX3koOjD64jb3Zj@{Na<+_%{@kj`Im5kNG1!QBuGy#Lj11)j2i(NMcaW4$Dm14D=Tx z<-q0$om+SRM(+P!2@U-gVSoL7-$<#)AQR*1T)KGe-UniD>diaEo`*<==zC)&@;!?)Y5AGfP57c^g8Bs8hh*ChFo5z1RjlzleHi}ijY>6tt^=;hK`sgD)VV8! zvgBnNy>m*S^CW<@kAKI$Rx3-iU zEo4Tp+*pnDtz-54Qy-4b(RQ%>PpGpmD?1FmFXGm#5sua>b8=rILc!32^Fq7j2E{=F zX)Ir#%su2Vc|Dux(=$4-SD*9HqJF&%hN`onUzvYePNDrd3%-psU;X(a9|0wfp$Crk zCekLgh?ls}ftoQcau&A}CdZ(zhbb}-<|9SFe5!?b^ocZzB3(6C=|2BY5OV`WU)gDf zbJPo;sa8z1BfMmeePez>GJc;baUwW)GyYP`l0=A9?OpP_U&L3pPPN>;wpQ847e4y= zN9PQB>VJUoid$ind zl?n7bP3S#2eQVT8PooQtkKRDc276(!KvQ6~0K2DO~^v3Q4bP{-i5!-P&g zP628~s3UHFsK2g3V@*G&T`d9IwGRRgFTP(-Q(tK}nH< zYg$F}x~k_i32PRwXWO_3gK{I`o2At3!43bY!{By!t%VaWs*M}MxX+ZB9=x9N_(U5U9G~^`TI*PU3oPytJg1YxNDL7FcQ_N><$f zCevSLdbyvZ+jTMcwXWD^Sp?c1W6lG13+9?l7HNHC@!ARAiLc}~MJ?Cnok>c8l%7S2 zWrAS87$FL^ViC*mjHQ0diE)@Mia*^zO20LgbRLz%2$}>?1@!K^iVMg1m~Y|uA@v#%CFsY{>A^Vr9R|L!>7H8bqjk5 z3VDI{vNvMM@pDMsOzNLj5?+-dR#9PnX(jWf#ry>Z{g(xtJgo(-FPfICK3&|oLz>7n ztx!#6lQ@yER>6iHpjsl+FH4-I6PR=}m}>2J{0zwC!2hZ)1q9tgrl8mEcM|v4-8)Xs?YXJn*WGiyuj0|NZ7-G;%@iyl_K$~?dARp zGU0chTM0(W3IC?IXIJ2#Y}m~^soLVC;;y*fPHSfpXRXG^PBrw^aXhSTL9TwpzFd;U zb^ka07X2i(JCtR)P{5#P5L%zR9ZDz4Mfww8KYR2S2K)*&L%Chc%0)b`4X;4t*x_m* zgUQTLv{MoaYl|_5Fri_+9WLGo+Mo8z)Ru%Lo&^)NyEA_aqF~cgVUu-;Ftk%hg*VhU zwux`5;VGV8Mib8$rE@!^bj}@|2KSBxjD7a%yv8iF9ZsX%njzQuF6;dqeJ?qg(DxRW~KUB(nh7Qm7nF%e(07IuEYPBU?~Bdde;nh3bw_qL$Gl6cZKaf zR_PjkKoh9y?Z%%>)*gVWpi?J&+E05`7*BCSyoi*VMhl{@DcO;}&Ae&{8t1WSrJl)u z!Z~My-nWO@TL%8zxY(DoR3Cy~ZQIM_92z*b1?4;7wRf3pwtJv@f(b*vw_9H8e1&|M zNdMD|?I$d>ID*YUjwF&7EA-{*%d70oA2rw>RazzzK6JJJ5np55)QszIIMblC_)V%z z$69t){PS=!?5sosMTX%E0p^qLqNh@k&8G0Se~Of)124~aaf$8yn3{NQ*^z%vNsMp` z(od+~Sz_BupSUT-r02)wQ$X32PVBEpah>#YH=u-V-H5arD?Ia2knEN%^pT>a*c=l5 zpf6y0YT#U{?-fRcpsSNs}Z8HE)4Al#a`oM z+n#UQY>1BHDgL&z)zatxWr@el+za=+`9;JfASg@jPGgJEY(wnXE11zS_tw}Tz2nXp zTjM0Z2VVQcROQEhb~A~Z9q?(B)B?P1tnosNB=9 z*im)7UH?hQ=gJucsj1O$5i3MK(zvkAY5nf&|zaEKs{zbuX4Ql^K zrA^BHN*hvUPmREU2VIvOU=phKb+tC<6_r>pm93_z*{5FvjR`X_6d2e-bLskuf=Jvx z(>eCIW9P$Uj*b`M{PO?YfjT1o0biz%m$^-JgZYAW)~n+HJ1~eV)ftsLPkO>Frei=A zzi`4;&%lm(QJd~r)}t4M&Hxn1OVH|qfMy#YTI)g_*_hy0W8(N^ zbLtKrJ^%gln|N^gb$3<#MJyNb*f?_oeWXe)$;ayb(0N>D$XIj{JcJSS6|j%7p~e8f?#qc>{ z>FbO;0s<$WU@MrO^>#@p=_g2C8G3J)@@3{3mdQ5+8R7e%Gc@|~MT*V4%RNbv2vYx~#HEU_wZ*m6 z>wgdb%VYbL<#EmGMD)aov=$MMUct0=4)^JAX1Y7!UyKn$OyB+QINR`k>FsCpg9&`l zvoU6f;+~7Sb$NrzYAcdpo&M;#reD{I$eSQ(F7$p0zgu3i+)dT{0)}BlH2LN6lur^t z5gdBFjFlg&TGzf^*g^#IP`L{q9I5q=q1zd5MxCFZ(IUepgYyA&hD#+ycIU$YjsFf2Hom4Ci zxPJViQ@GVS*wPQoiJqJzwC;E%P*!GVML=c;XIzMq7O~ZWDj!KmxEsM-=t$amPbkWu zsD>{MJ6+}XRJRS+>+~IcaM{F4sdJiwFS2svP((kg;?jMQwLUI#;=~eiAk|asXtQ5J z{U1nbl+U?ak3yViE#{~TKjX|VC{Yo2aA-z~QWJoKkZg0wQ~Ix)^Zo%NX!trEJ(@u> zR1IYS&wsb!r}8+lo(3A+a88$foU>cjML}i(PzQVk8P(6zQDxboR$~w6hL|&8;LBq< zl*Ada^0>+N-?NDB(du$*Tsq0zmqBQZsC_)a=VJ5vrqVb%=lQ2Ix`}7^I#6c10giPi z_`aL(?eN?)=E3IB?)L~!fETw)w8un2oUJz|ch2K{x`w@wW+D|M!c+fGIYD$M9gS)e z1x1XF)5P-BSsRSw#W|e+O-x>}wpWu~JUC8SQsEgSyz3cuU-n=?f z! z1q*v0{bV^unZC$cJ>LBB+LXcQ+$=Ma!DRbqJ-^kEGqUbCo4+lp|Kx#M_&pnI_f6WL zE1O#eg5gPM>c?>5H4JoYR?5*%QNxiGV-#n7!}ssl!Ss&T36vs)GJG9Ix{A}g`d$`} zl2ECcnqRCVJ9`}U1KXU0(Y}-y84m}KUxepKK=!-e>Zz~d--wh^?dtl@p#z!$pA`(s z%LXBvynhk4br*4Y(^HTzg5AcTKyzg<)j^mM8$|2*f>0PW%Xui>knCGfAt!XBVxR){ zs^?^L0_5JX^z?+YUOyjt^R`zfza*E?8R)4F+;Ilb)i@1TjptCd3vnwMwl(bJ?F@2C zabhmBePv%%dMq%+w_HrM!-;gfG76i2#dqb|Gs#D&v`O8d3a(DMH-cxtQDh3Tb~z*Q)E?Th;i$KA*nXZ%zkF{1<*HH+(9Yz0F1%!A)b-e`N>*=?)4tk|U#R zVIr?qXD7cfqy^JsG@T_LTlNH=is6j*c)-d@83(=wEHd3MikO#Z_ZAMHBNv_<_US9i z1zPG|Ump%f;A&k6v+VZjEIzM`&nNSfE?M2QlW_hto!Fido&4P`w|Ki-gai84Hkv&61rc|0GNbW|4gpwJNed z+2uwl7Br}8wb1&Ce)dbC>bNvke^~#ZVi9iUG}5|bHLvog42&ESI_Bad_IG=;e-zZSx&zbkomq;7gb4CQs zT3<+7PX07D=zF2u0SW$>k%9JJ=!ZvnCZNaLRGs8@Uw6Ujxa_eEijU>b-n#d8gH&z$ z^Z0_+WraL#nx0!rI4?sG!p_j+k^wG*M!SS{imEa z#bEnV;%$O%Qenc1!8hWoB^d06j|EJFvWa-hGeqV~kGH#Nel9*g=KT*saAw@K-|A+` zLF*^F3X$Vp4iW0?rAm#tsnfy7`Ddyk&#)%MHsZ2nA_T4s@2|hA_ll5xeAC)t9dJ4m zZ#i19x9X3JDiWFKGdy0oCuEF#ZNcK>B}%l^t-6*5usDf0hHd2S)Kw^8S&fsd^SJ!G zyrox zk>}rJIqfUZ(MD1*geRLDWfD8Mm7F~?(C56i><}@s>>W-M4_@X(b>38rhoaw3m1RB; zMQ5pzXeG-lLpby?_U0LY{4rzt(|ry4Oke^9KBWoejA~Yv%SreVebID72(QR18CTfr zi5|qm!0vCbSWfkNU6u^5u)?JZu55J9ZV8jpuEuOz?sThfKv6}5+D&}6Lj}#k6+7Dx zCssTQHAjRk+~u^WfVu0%A63o%l`HcaVY4?(yBI`zv~C< zb%m~HkabNn7?r?-ECyo5?VcBe?09hgh+S)w2497zOD4Dv?&OUMK}E;X?$bsfpi)=a z;NXD4%{hk0F4fuNpu;I5|s`NHtjr3LcF-NGE1gi z9U}ZSgu6GUrv4Uoet35+L-{oiIA#r$ReSu#EcRdkFOd#SP*fu9ZJ+Oq*8 z^U_)c_s@&Byl;KN-A+g_lU$^|C{e+Y5KS>AKWL*62K-PmiJ>nrsZIiI8coi*Xy@S} za8%5z`32xlJvjQb>TX|sis4%6Tw|_ELr={kd|>tAhI`ZDxJWv#YKt;jEzl_SNK3|T z>3QppAL8e_no;h*yWFYisjh;_^YeDbg7uGco=ZtN5netu7Z12oB_+r*&^bK)CYI?t zySBpJwXN}@Q{>jIqUOAagpvmbjt@J!&xU*=JLH7~#^z^+ZY`t$SW@Yoy=T3Llu0 zT^UD#Z(anF%sLl<6kq^_8(21-Jp=j{$y$<&k|;Y|06pwb`PqDtGMyv}rMt`Se<=@~ z8gE`PR5c7nsYiGq_2itje`oh!qPnqm_fDgbY9K-FTrNK#{VltFmE4&}azGsYMTzCI zhJ>?#*lh^_#7s*6_|d0(`#8HVPYG1qSAw;wZe(Sk<+o~))mcBXWLPtq4r+M*a~ASV z?D71gG{ObG?A5(0FL}yeJal-<%U~(6pZ44q+_>NL0VyZsEOhmyYCk}UBx~8o`@P}n z6P}(`a5fWah8G4J5oh5Os^|zoO7=W)hfE2ElM&GUvQP*mdV;{j?k- zJD`UDN)dhxUPLDS6G=L(<|6&0Y9OX0;8p|;lJ*+kVt*7FDicR%sG;GFUB11ZgaO_E zeguihx<=zN-u&}=Q|fMqJGsdGwIu0^IAuDUENjU>`7QxMxeO-T+Sb?0b zM-AVP_Qsn23R>`jq^AN2%TG`v^d3^xrZZ%~F;@emK4Xb$fOE6B^lkcnGhbD1YqU+MXW*p3+f`&)gO#6v!3R z@bP_?`hS#dBNQ1-eN}~|xI%P7(h0hP##85l{V0`8Z~BTp?*#EixD80p6yUuqXx6_p zHb1cr2PP=`(X#2ThTWBUA?GjhJG7;K6N#@XdQYBGWPZQUc#WGjpdCLS^zy5Q*&T}e zy!wZ@`F`>|&(HD2=teAxN*L{-%U){l2Ii$^c?b1Ympm!@KXJmOi}{-HWJgN^%Qm_@ z@h-+()l&Dk&}bh+|LpjC=={@e?zb$n8HKmUN+CC*f}RigeC@N|d2I1rv&}ixw^!ya z8jJ=Yzbtt2ue9AHqTFh=0j2FXYim7T{$oGBU=}%zyM2IC0u}~(Wh_CcC@llsx7!cz zod}I^+m}0b1|=Ui1cCSTeLlb_^NGZ6r(dSdan-aA{hjhSa(~n*nWpVr*Xd;5Wqo7vy0egZ zlXunFbenGv zOfMRpJ8?+8f7?XL%~|z1>#dU+-pC8-QJizL-Qx8lFz)DjWG7!1Z^S?AnRVMJzb6FJPu|D4s!B ze7sXe?L;7OynxF8i3A?r{9!7578zK&&=0^;yDvdzVcqhFe?2^+z`2VU6mLKqP4rCi zs3^wsZw`gsTLyCyRJBQfI7t1S4uD=)idHmwZ(9@CrH+_dHg>^TqRXfImR8HNJp%;a zS)tzkwykvxcEmMnixgM?M)ce&KTIn#xAR@=h5xG&=*IK^3c3y&GW4U&(CRHemGIdF zf2;cMxr%ez?qhHB9cq+|YlMEFhhitXD$?kvCb^U=^1$=rK3I}h77J;RNUcC;@7p-x z{Oo0S<<-Z54iv&6@;z8Q&=ElwBR1vhCB#>#bL@~?#-%xK-%0zumpsVNF9yz z@2GNir1C{XkWSQhzk#;_2oQUAxePzI6Ny1ta=lm0&JH5QL))RI*m?B~EEfYv5~~=P zU)1gcML`8S!%6q4$I|jB90g9`Ondx%g-lsSprSQix`X~a+463F8)t#wiFfDfWe9?~ zd4DOEq^o(F6%TSZ8y7w}VgwIXEH=u!XdbpgO%4FKFmkYauKQrUiyHpY0K>ZG(Ochn8clE~oM*V#BCgPXaNW9TH{4apk*`8*o~gew z;bZ%wHttkZ98qme$M{t|NcB9ImGzkW(~J7qj}LYyEX~@n*83BsAARIq8>W>9ru82I zO1zyHA}6PUWh@chi!Ys{6&J}NaYtS}QKhZw z{Z(LU>TBH>`NK9gQtG)kP5$_q$3eq}1~B#6)C$UpJv$#rN8cQt(6wt^Db?cwjh zSuxOLm(dZR#S|^;<@Bhm^q6up6D{NlloV;dO4z+=fsiETzLrE6b;8XVVOw4*t zkxi&?y&4~1>oKy-;D)_~f#lq-Jg!%gd)*n0p%fpo@R#vYd8dV8CfmNYet2Na{go?H ziM;d*a_6<*#J{tpNR&5HO-P|>+XOUg3Q1=L2p_bKp=Xhu>l`GjrP-tbHKBi+0DT1@|8DGm z{kJ9O$urz63+SFrA&+LDd)a<>5tIlGvRYH2%=7)e;LhEkS&Z-gtIzG9-pf9)Io@)x z(QyM{c!567Sc>dOm!w|j3Ng>%e-vGZKh*ypS5`w-WyBdNllgQT!$7P}nJCj9oM_wy&9DBv_k)hW5p~f%H zNowkj$)D+0{HpJ|(9DKF?)XjXMZ=qQJi=GbxLRolVt1PTl#i{QIl+Sk_No>5S!~5= z-8g=cikBKOMVbq7J(E+~eZgB(^dj{#J0A?2_z|t(FPkE~$a^g(4^T7DI7z&B*r*Kc z!sC-Xawes&hgC`jMBup9;6lTbp&V7~b_-Cl==U0;b_#gpx%tcH$@?lcQcHWF=%bGG zHi`)Oh7m%ziHdwmoUU+vq_4HFkboft)O-W?GvsdL~LdU?L4_Fx7P^nSsdJhwLdO+e3oE20;V%@-11(mU8yujs=~ zCj0LOr(ts+PERStO((P23{Kh=A9_Hb(sn?~p z+I2Ge@K}wOnO~~1;6ghq=z6_FjlvOK7TYPY*2$e^S1{BOVEh%ERbFh#O~Iy}59Lr1 ze`pcTQ28jzi+fYL(H6OGCX8%ZT~34e(I3#?qR_AqkG=nsib1PpVy13FvZo}z?$q7{ z*|JSLZ)afYFAvnh-ro}Xhp7mpVeiAAQ@R7Us#ZJc-}gthMFG zX!$%5@-4Fvuk6tgHInodW$%iM8bM3=<1WwGl38zeZDU3Cf2TCP)3cRmd*Bz2R=eOT z^Ri7kDGX!Kfe?bO*nAyes^a1)w=e+8Ws-)*T;NN zHZR<)T=ezP8*v4Cw{8G8xR{kh_0R##!2=eupzU7dWoIRSG7VRFp`L{xz1&l*Qv-P& zx}arj`#m{SM7W_1iHpW*Atjbi9ZyMOE=;l;_5m;$sw`dFYw?{Je5M`0A5_!y!&Yleq%Rp>NpaZIgUiL3JL_8HG4D#Z&htCMrGMtg1Mh^M@mVG5`;wH{3>14>9VO15Ur|qO$-6R^?{v0n-8mue)jw~elc|Ex>vsu{}0~@ z`N6-lr6P3BXu$dgJEeH~#LE*8EY;%-ClblX%e{e8uiz0!Qc|w$>ip4F86GK8a4QSfrGn>{oP(2e1BK&vzeJa+{*!=2L=v-p*^Om#_HGAogq@h-}zIk zZm(ezwCw-DvTa>~EHqG9h%oL>?7%B0vmxzX&CMfGUtZ+7HgZ}{zgo|K)$_YWOI~cG zkM{nHt1W!z=>o?2svCFz>7*+kwo(K3oSnhHsg>1^0Uezt8XK{ay$Vq3J}(lpX1AS9 zOT|cX0Xv7#vpyqY)23poxC-pjfO80XD2|Bbr09iTg04*c8?fMIV_B8o1#n3!Vww0( z>j$^8CBvEUtqYn4a3eo;od`ZkKy`Nuf~yrbPR6mfYbM{U)NGXi&voqfSLkq8B}-yA z%)S+}gN5AAVv-3;NX7$K=(!hfV85f^4$` zih$O05=))8fvb^1L%MLgy2I9}?z^(p1r+nM1Z^_$>6q(1)8*(5dJzqpLqKPw@y@uj zSm<^<^HbD0#7b*G%MBo;;>R+y?|p_;er+P(gj`nNek9W=-Cjl+h>?W9*Udcyxm2+OIn=uKnK$-<=uvDp2-`X@bdXn=Wnsj{!J zBa!{QVfnp>nqEgf2MokD9LI@i%4D=Pqk+1RhC>*TJD-uNKl4c>mD>s7II1qAsp?$n z8JzB!qhg6aobSPXfrk`*Jj`hJt;2sO87UW{`q7wC@6XjI6YoFq;l%+jOx={p&vRj1%*o z8e`H|KZryT32m=dOib~aso>K zQ;5#RzzthM7j3_mudDH%n3|L7Bst+zXujJkRNSt%GWyqI{Mo^fSk}px@P6rXHKUBc zmy*yfwUbY1(|Evw&Z+2mk>GX&Vcb|lQeBr5wpPY3p6?xr(*CzG%RWBEk6 z!sRSVUMs>w?gEjyN10D@3f@8iqUhY9kamPCwPGwP24tpUJ5B|4NEq0!`>2M@e&Pv(za)hV#_WuwU4-&ur^X?se>HE@e>ga;vLPhO!rb_9}HfaryhM$p7 z-JkHB7w4Ye`{(^t4s-Cy`MOe%5->vbxCpRo*v?1X4gBc>U9d!LG7RP|zKAO&5QTf&^lN4(x&T*CmgQoE(dol~BNct( zU9)<$!C|007&B%0cZ=Z@ zP&niGE_X>r>d_+q?6Q+hhWR1_SG2C5%Iz8xjCsSiK`*#miD!5w)Rs;d@~$NH;cO>9 zBSPCZY4rj+ZRkw0|4PEy*6a-(-blp_7UbhmCo@}EIsiCQrczGC_9WaGf{ymXf?_54 zf3?7VJsI3YTT1!WCCi2G7;L?c8-H~qLGo_@gNrAH41#9PmdB7T#PmfvZSy+18J*>_ zo(P!P>$*|oF(imaRFICOViMN7kHtju`;%fjTG^vr&Ud(8yFMfNvtGR}b#Mr`9%l=|s=_4h=sG9z7YtXTK|Tg6{)IVLI?J z(->w;R6v)aZ|k?{xP@BXPvL00oeN(P@B8H~gP9nCr zj)Us1t-cdi9NIzZjx3qOkrqi3lqO$8rA8G0$ndlf#ev%08{Q;$HV8j76rhuN{ykY2~DIJ+;Ev3DtfAfe6S8bC~8(6w{OuS zrw9-kMnlY!7KC$uAx^!noSgEdXH^=+H7Q;$m23z8v28?RO&n6Wy&9Qt*@l(BBXkzV zdAGa7Yy3b16XUdpCvB35g+3!D(@i|qy5I>qZoc;)Kts?bg9?0R$yBbVNdZgMorvXd zkn}GHulb^YeI@)E)1i&rpJRu1>3;mzqQ(Q84b!Gl9H(b3LQhOnf!*Wb<;%h2tK zs@X|N++EfIm}WH5#qZr;fUV2mXeQcvA6o-|+{i4U3zK+|Q4!n~3xL?mP zFz^;MT+e6se(WDyVBqj4vDfH7<#BkEq4l-(NZ3m7V#;)Or$3~VKmsmoBnvba%8##xFg3AzFM!*VjFF^^U^cuW~F^q<}db#D#NSV0(2w5H(8R*WE<_K1Ovm^Mo=;U zLyJ`3$YY>}T+*1BX!^JbCmQgxo2(-!q8zo7n9x%NL(i!1A`nq zN#+Mjm3z~srR+^!NV4-K!f38Zhz#gm)ybOcbq;vWy#BVM?a^|`UvxG3@bI!@aE9_K z{;EWAsq`4i()>RT^@XPt1+v5a#FAB)r1pn#jvBj-TgWZJd%XJGUms*~9y?E58I_*& z11n{+)rdC7-=wuo>Km8(RD#^Rda0>z+=q$#Ot0qkwX69VEk~w5^xSJ|F%vX8{Q@R` zNJ`4#F8+L_L(s9oWAN?ImYK0+aWf%Hdy1oDAuh{PYw&~1yqA;+UwF?`>ZX~z^LX6G z)mPOHejnD(c-HK&m!H+xa)e9ui@eN|A71N<5<=(C_}o!8>4@dW8w=Fy(i!JFek3{jgp66` zYZpD4M@Gq_pUyC(fa+^uq%?~FgBK^+lRwlXYh!%1xdLk_Z$C?bbpiXjp#8F|^)qPq z)vidfrDFWHD>E-u5bMveOUEALj^RP@wCo3CI+e;o#o)&q_ajpS8S0JcVEvn%YAsQtFqelj+*IS#wPiJGH-ZAD+`#}uCk|6{OOLn7`n z$xNxLMW-_J)dvLTv3hqdb=SoLY{*9)AiDDUsq=-W*KfsggG+uOv(^}9;6p=f_x!ML zMd;Qs5uxKbsezT@OKpw3u)D|Gm9a0UZWgJ2@M~}7<4%QL&)1CqbmIG++h>x(PJYe( z5{K!tKEicII*k?-0E=lM8-|p*hnCyP&tZ_fA)TUjF;(hJZr3hL{7P7raOWTc&G+~u zF2BiD)ctN<*QC@{&6Xc&xYr?`Mi)4u+S|T%Y8=*2ZM(u2k(r@>Yg#}fT*FtUw%RW) zTN-;vB+XJ$J~>$H!CJp02bbA=$KE)wjC`Xj=1w~E>g|;kf^TqH+pF|aT>a*+uf$7D zx$1jEWcH&|A~APgifivyN2XX_pCB{k7-y8XIfEQRW1^k5+1|Lk)QsSt9@h11WSL3Q z-h}&_mDyQHl0%m;Q=7|`FytT2ug9XpZ2r7;rp;uphFWVFwvd)u*w||`=rt?Eg$SnV z>u{EOVyT%|9CpLiR$Gqv%>TunlUa_dw(}Rv)VamVMhV+6Bq_xJRe~Q1D0KenosI%D zX-;Wam*b6&hMHt%H0r48XslCkP!}Qzb3=D?lv{|`FPx5Z>j`oalQE;HzHLzO-|8H6 z^KPPRiHq{pkxz1gYB*FduK#sPE6!7(k;clWtAhB*GP3?88cM7e)wB6OC&CL<84!iz^=mK+w@;iSfnUwGMJ8wdL?KE!4=(Rl)ZP&$o)g9 z6OU^;+xA&>*&A@ZH>CAm)##QlKoc*k4_HoEns5dWS(ISAlsx=OAK6wkmQB^C{w4~} zebnw2O?1_0OAbKGI-&?E$9}5onsOeiM~+JtN;luf35f=`1Dz4g1ZL0-GRzZ@NncU) ztsr7Qgl*(Kw?Z^mnn!)tIt65q@!0)nET*5Nc7@GQ@2R28XdE6}a}s$stfiF9{0ZBN z&3GUK(^Uxj6dnBBZ1bU}gj-FnmkY>bk;ya_!^84XV!xeeo`Yq7-)jX^&%2!n zN+pIfApBx_!ZUkqp7*!4N?8vqqlF-8m_?ql$zye~ww9AW4go}sQ);nib$jm$tMpt0 zKF2v9ii2Hb)u3x$2L+s9-P{PB*Iw$T8sbn#f#K1t*MUo^dc-A%vY41s@4|-+@r|pD zmHr0Hh2qD4&7H2`qh_JQYl^7%M@sU8@`%?@A&c^$OKFcKwrRjlzhaLBJ116%CmzZ-qW^t*6v=@iNHv6q z_u6l_Sg)tTZiy>e6e`co)Gg$MXESetK(ociKtceI#^1aB6aGlKUj^80k-d$0Y*=Ba zwfNVR?jjhXr(q-)dnnlu}-HQ%2}1%kiDKXd*>l59xL~C z?y}I4*J@Q#aay~+1L5qyp-lS5S~n6`5~pXCZ~pts*K27`2LY!R`Lz-Qxs#Pwfs0@D;t$=@Ei-hSS?>lF87(U=5dW-Xa>>Tt6~h0}dButrQ| z*4irngU&77mo6F;Uso^xgCW%_yGQLH6XX3y?bWym4u3TqE7N`Zs}70d1II0 z(8sUdJj~~KU0*A*TYP~)P)T%D;(nHl96*mI&5}H0FxQz+SH2UkE#2f_t!Fw~7%6%D zJxNt8jprm>{Tvj3YC-DOxJFllN~+lcsDQpKF6{o35ftYT!@4UglcIjb{TbBbDNjJ( zUVKkG@17N3k=n_-OmgLXu59_%5MEt~e5IV?NX^dQV)ZuxAlp;3`^-WJ<+;>q3P6 zA*H}iFN=j{r3S$I|0oJ2`nlQU?|+9slE2v@jK9HYCwG>d`da{e1W;8Y4`G|pJ8@+t z&_tl8?SVp$?8Gw>7Cr4NlFO4n*#VG_VVvu5M-c+5wKYV3Q!30QjU+oYrpX0jU^uW* zhXC-{C>QgDq)u)j4))gQHCa z)RLg1U@=S<iuoaKZf4q>Y16)Xn!ggTNm@`Q_4g{qM;(v|yohSaA+*SnY zz9#4fbnyJlm5OF2XXf4vW#tB^gkC1W{tAmJKO@`Cdi-E@aNKG#*6gpAJ~3_H%>o^2 zxPcnqQaqMd(3J<`{;lVTlHr@HsaVw3q9lY1U2>5g5tzOmj9DvFc8gIHj1FoZm2yLg z6^5i?d+_)R?Kz;_WoPAA{cL~KIX3Q^{7QpR!ZdPRzDqnhhOf30(Jj3lqw9TZE1qcr zTm}@<6F80ji|Bs`;JMo)@^>O6Y|N#(TB4%YOi>xJM*mqL*x##}Z7qT?^>6V$v1)M8 zRw-BC)M(R2metPkfrwtA|H9&)&ku&yd|WVc6liyBng5Qt5Bp<@m8i*f&HH}duS$jU zeG!9sgwm0IfwD-}T0D9!E3^$mwUksqduTtS3U%%lxNU~-uN5{*PU=T}beewg+F?c@NF=O@C`aP62{n()s-ITj@D+TVJ zFLwK#C>%Ve6oqvWGmfBzj&DajbSmHTSd{Rin3V5W*R0lg+E!lZ*4tlALjv8KQ`!}= z89Qy09`M*g;i1dwxbE<5k3Q)CUSWFC#;k8RbWR z5Qj~s+zgCk&b(ZL>?@P|D5T4u;qr~i0F)T9suO`w6XY7Gfkc-c=wNH1?ENx622OV9 zsS9eyD}2X>Pvi4UjPhUJr@XiF{3w;7^l`cI02Hzl3W89QtR#k7^Hwuvo^EYx4t2F~ z0Vm^j1;9CFK^GL^WZMRv^-$tT&ZmhmS_^?GKIK{gR`ekqYTlH~59ig?8S!fGAjsyDIr&1M4{bB70xNVR zzYifCP9u|=Mk~!#Aw`%kE6DVFA5P5bHCE577&Jys+Czk5igNqW8rbj9Nwi~)ArQ9r zuLcQZDA8J=>HSuv9g?W2DL4$(S8nJ|wJxK93_H5#HYT|6Yl1+94pe7-wxhm#D|^k> zUVYAvRHZfTY_0JaDlTtk71QY3R=@&J?J;r3oevC>4X1kDkt&k0b+{GCFUUEptf{Fm z=@8vYEosMg#dc&Llqo(VemwO)=4D|vDLL-@tFPsMuI4{2s@ncFLqM*^2p25L| ztF8B%yqN;kZyvi-@t!=t93s7Tc^y+}Mje7j0#T!IbrHNyEl+F&?(Cw5ja89u`aDy+ zpv9ak5q}Jg=#s74pxjFk_&21M!#DsLy!9%gF954Q3&?A#J;53G*h18IPSce_agTAn z*mXOnSee0&?VM?)qxXAGGZOFC-ixN4)lQb{&u2e!>dI)avY&h6lU|W8NGF#N;BeyV zHJf{x37g;HdZvXPGj+SOC55LoeBok!b9xGAw)x)liM-Yqx0M;TkBIwrRd(v^&e(4= zNYrt-AG(bX&dEAZa@Apej&8?qdDb*FaRE$`uc(n(s=0^hIco%PdxY9lxsu*AiCm*b zp@kL1E=llj2W2uLa=*$QJ<-+Dic_M(7^q~mVTQBG!HMD z^8SP77+(=*loF z?j2qUAn#2976ED4!ykfyUY~<_YzSY7pq#0@UzWHjomF3(Mqj#7TWx}V;}w`@2OMlp z^?MSSM+Be0>kTI|J#xw=aP)p3MQi0TJ94ST%vtBG3)g~eoSrUlFPd?p(HTxThYfxbknRuw<71_?rrCS%+)B%h|OGGDYuhSiBaf-fa^k?RK4V>T06Je&T2VDjS{a1Q{O<<|n1d^h6rK z8Fb$Zt);A8>uxy;7W<*Z*=~En0r5kjzRmhKu3T~^jZz^(=ZdZT%$oXpe+|x|1 zWRAp!?uDYCHwnIzQjFbEEe?@I)hUKVmeO8BCl1&ML7&QZMdhSZ?^N!+lRGoRCII+o zFFbJ^P8oJv39`RZiS5ssMpVFJC3qo~RFHWTqo57}x_rYPX?n&)myW4IK3HDfP)@Mx zH2nHXRKch-Mg09k$_y2(spzBmSa>T(G1q3qx6C9)G%HF=Z*9;!1^{KZzY=gEldu=e zS{$PZ1^ckz--0Lv0PS}7=6#s+=;Q84TK;G)b+Czix0PEYCrMF>2|W6O<(OP%{N`(d2G4_{A4fG^ z(C$CMX2JG?D0)hzKSbp3+O+x+#9r@}i%2$JtEb&VfUFb`T-08jPvq5Ip*Y?1lIi@5 zmG5b)hcyQAK82@#-jxq!c^uF3R)5{67Te&ru9sWfogo(!QaASGD>~=TKVNd+1?T(^ zcEH)G77K2B-eZ5af-d^z$Yk42dTR`J)y^tDyy(0X?bGo>>P^>+)2>7E;eX(mC3HbI zord}HOeS$n0Ahc*Ep0z9xc z@Hb!dA3+#dr$E#4_~5}JV`D)XEV=2!O5bR`_1b3tG~fr`DHkna&j^Ym+cQQQ_kNu5rYFX{k{lIWR*}QS_Mp0bqe~V}u6slQGUrobwE?Zx| zM8=})IIC^!bTFOeFhx9e5vMR)Z!7FY;RXF3Ntu?6{oR}(H}dcnNBhu?a+#GUyjocb zt^vO7Qw10~TIhr`1r{ZG{O_Yj%XE~F7P$Z196i&%An{WKXf*tgY1+7cV1-ow%<{6C zzh|qLfPJudG~Xusbz8_*bf?6qi|YLwckc_ff4Q(an%fj*K9cj-o=_}hGa%Uj_hkd! z0-j?#!qTw1NI8{BwBq9cRTD874;A|1j+7^Tb=);!In7DCQb^YtJ|c63D|jm%+d~hL zkbF7~J*)xt6m;QeNtMfb2X3R=tCu*2YOwAQKo*aeZD5S0;F#uJR?eV<{q7C9dogo+ z`{YwcMF#c1H_?wAyKe)MMC8H`4i^V&nd%lfP!R?B>sK}lA^=(r>0 zuuA@K9e@~#C-QV;pEGE%l!v1w(ZJvZE!Lvj@hep#1;kHHkIf@s&2@@=#cu;IOvMZY zAOrzXu?{#n=L-UP>dWjDtKX&RAI6=?{wyE)OJ8g@B8QcEEqS>OQ8?A8bll}jAeVo4 zRZ>Kc!NLEHaIjRZ{#`0S)OLvpi*a z*SR`0&6?k3^pLQ}`7Zl6_n{ept#qUS1GmRr9RRbhYGOjlGsi46PXIn&AsC-iJ9^pC zc(#330>o|4A%${_$I42ZA(XsBb7J;e;cTz?o0HIsB29)xU`=o=y61GBIbXwQWy*Lk za(LzxWL^Ni&4)ehVoe_c-@SS9@6q-eBrCtLzXxGVa7ZzA-O4Q!{ibwKM+-&Rh+*EZ zj8COI6Pjmt(lC^R{%@zJU*x8#1$6m zCm;UxgZ-DY(eMwQ-D=7?thMbu$J_AhrSq03C2K`n!5w{)PJwYA{jSJc)U4>OAu6w| zV3K=wnvx+}YFRDdF3ye|6S;;?bQ6y12)Jd@Am$7crgUl89Km4p*&295@|lzHasJmu zdn(b-+ttp;8_fTuY^Ifld)0irA?FuE<}2yDj_LoW?#e$WIi5Bve$W1=lxF0O_l-Mu zQvbR2Uc4(69a))awvznZJ-nd9a-{JZ+_Ens?ezmssMY@VdGD#S2BefakCV>#@W|w2 zQ{%$Ml8M;uH?B9FxXb*OR;5Ndg_y&K-aq#pld*Q{%=qn={+-{EPR9w&a0t~G3n|Xo?<}H8@S2GP0 z{IT%=XZINvt%|)hMd^ol*uzo2O^Hn9UekH<2r1k}4F5{|6}hjv4LHEE!#3V%{|csC zY`uR5mH)aa1QNMMDj|w=e~5#mEO)h=Rp60 zhZtVTo7LBREBC%LiX%P_0xVEUgG?9w z8x=GtvEeFy3W7?ymt)6pq$5BbZC+z({4$88%l>>j#=#2*P4#A%3$VX~(wJ=-ubWedwBbe9f*jpF)T{tQ_Jm4_&-?@Q{_=ltcKh(wj6q)HGm-kI&nm)drd4c?s zzo2;Hl!*)3R?tO0uppard2-{Lyr>=;cC%X&|o@QN7T&&xQ->C=Y8q5zD9X}t(6jcK{ZDSIn z-g3k&(~K5EBx*8^-K3Yr8xbi4Cf`l)eBmQP&#&xTR!S&y#5-V7*YAf`(P^n_SO$ngfV zO<#S69qCWi5)tf=iopH`Nmn9FP|#k-y@etGE1?ezil7p$0w%*?66w8|r0dI%<-VM< z=sR2cqpmYIpd!dCtHepu+w97#Nr8Y;R6jg$qBcgf0g6yAK;+=hZ z>Mu1;SUZtZ#zve$_#qVdLvTyNqi`C}V2SFh?WFEPxJ~Ljf8!&dMr%te$z9oE@fQmaVlyhyW;)%7!g$wa^ z{$C9b!dz%3sbva4xW$E|Qv+Mnf zf#NzIg9Q}VQ(bSbPOOSM{9Lxut{P^VoV|$#pYf?XamiON6bL(y;Fs}v zu62YDj!D-}RTK}DZqEL@uH)zb(K7Am6Y>B4TC}FZwaEkH&S2`Y4A30{#dR=Ti}85o z9rs-6>(@kQgh-dx*mvAUdB-$yJHE5|3oUk>ZG_0Wv2EPj3Syu2d5Wmh;6)}43drmqjE06BO+ZIv{&It5^5F>N8XB6{O89kG26 zCzmVwVg(@!;|WZ;N8j8}e%6LCSml_;TxgjaBpT*9`@v9w+R@A~Bm0r&8gxg(h;?yz zE}RaZa--<<8c-_^Dk_=(1~k$w zM&4SKi9V$-q1UvBQ_H(q{uN-B;>oNwPqgQP^8)0H9=V4LE@W;(pH`HQ9vp8CxpQfY z!$Cppm_Z>rjugWR#u!od)Iita1&vcrj_g4JBunUn&o`_KdbRS+M9Pm70vTcbm|0Q% zM_hH)c82KJk`BQ%PsvMzGu?;eLQGf+_zJNu@6=>+)US9pL($OJRJV*-(rBZ0^IGqh zWrjfHGW|Ui^*HxHu`^;aoku4<)%HycWmTf)ubC*BzVxE%HvmrlMZ|CNGu@h!>eRJqYXt$k+4W z;-a;wXsf^;g8tz^wd)#*#;)4)%m1Az{(`=c{;vA@gC~#DycSQV{hEdkq(0!#gg>_# z4!h?I9`-ma#Ql`)^w_4zq)hClyI~(4#^u`A=$p5R?doW!;ji2@49YsJ2+V`EqX8S3 z`$%!yK1{IHqz>?j?=M5SrppeKDE$A;B<#`AXd69M>Ul+Zw?F=N6pz{Q*b|KqwF5<) z{El3XgA#3E%`%oaZE=%@vTA!ZO$yFXkIekCxlpfMeL9FV#xp&{jUt>7>pC`=%kgrq z`0-`uBWu+j7NW~p&EVxqW*$!5IE)q~Eb`kJqvz2l(=W^{!UkiI8A9Q4*x!Y$jyitT z&m9US_abiKSibr`Sq;^=r4j`PrH8{uEw6NA;ufI{vb}mJa@IgA^$Qi@nn8z>DG=HF z5!h}1J!hb^v?R@!W0}#v+H}HZd#N%dx}6i*n#BI)dH3wn=x1E^w_6g6Agjs z$G{O5zMokJxL~vTcY01lH^BPMWwQAWYY{O4Rm+KGRrkmHM6AU#3mOaQvBePHH&J)* z%Ao^S6s55jrQjP|J2XbR%~`nC*oRm=4KDDf^I@7BcxYE-n?ka$EsBdn?XR0947HAV zc>t`nI8=jPtpGX5$>C+WqBXOCCma-itP5gycfRvgN1lT0>4hhg;GjUdlpnwZJ|sJC zbJnrOG2k#OaMkmIo^`@CPHq+u)$NvI_Wh;wb&YNjWr^q2KfKIeM#i=J>^-#X0(G<( z9MFzdR=aM_Yg1OeFumE5w$8Y2|MpeTQvWf7SO)H8+~P@|&s|iYhP3Mg zUMgGfSx8qRTXwHG^c!?gab}^9%BB`?jMwmHemOcRu`a#Qxdl<8=?9Qy-QHvN1^83d zF@!h}H)af_1XP$GZKtxtpCB`th1EN5`M$(9t%|<>G>hx)ds9-z^dhS!a^t8LxVlpa zw4vTK;vD*b>130LtZKtYFQC*W=cB*0=)Ac)FNH-_j zBUyykq8Dk;1k+KnEv~Lio$_IO-YA~u^H^s+26iF5<9YiVhLM-%ir>#x3wH|<%_9X2 z6rvsCJumABh)vpdo?y2P`{Qy*s~7$GrHcD#ncX-%9xBwVU~Z5g9oIOS0l5Mok+^3i znE$Lp2v}xdUsOmqL2TqwNG+Bm4G?$-j0{%C<^m9Ja&BEf(1%yIcVwS>&Jmb#e4L7=hze4fR*)k#1)S(^G8Hl*S~vRNNB5I zzrXZfb;_HVHoVetpMM_23%41gPXl-a`=yVKh~9L0W1!;tgU3a_fqB=}U2f+IWL+RJ zQ#;1e|Q5akA4fF9(KFRnEWKk7Owh4;S7>#8h^1{<##! zAnL1hoCqKIsHfJVXid5NQXm;Ie6O!?Ea(So+dug|D&Uod%uLgjxC zuJHV>FSlkmf|2kz>o(S3UT~{nkYADRSq|3uSiDtbkG6kFTnj?XdD8oLh8OQ-8kS!8 zr2`iT1=l;f5F}IUK-05W40y9uuBJZ%3ufp5I;|^^_3|Q=B>~}(k029g*}qo=DVAktbunyH*Fy&He@;E7e=gSM@}4V8BnVtxVg|&uQ|lE)(Kq2z(do8+ft(A+_EHhqH1#taJHs~)P-eSqw)k64r!-SUJt~{)AC;TKD?#7 zK$Uln%T&9_GBwvzn7e||c=AbsDU!)_!75bMzHl|zdU^NGt73A*$yv-{>~Ybvf!Kc? zz9noC0kbrYV%~ZZ&w#PA;Uu!)&k4ESxJ&^NYy12QE@1nn#>P5>TVB$IkZfnG=pHg2 zMOlotxu0dl>Q%q^&d^A>=XLh0a4Q&8FE2jTOm;Cl?WxNX-1BSdLf-Id0a+8#y_9^xkuZOHQUdj;g%%emzk;LO?UAvWNO!z?}aJQ zpb!Vk6%=wyQ*ljGX&r9V<0{L$51DKQ0GPM78zLBmteLR@uy-F?cah965ZvB?664lw zZXTUKjT*b27t#eJYwaB}t>Oc=VCurG*h`A29h?~PQO~7^QO205>ryIR-kQ{#cFo{V z0yZ3l+Nsjibe7F!_vO=hNz!$<*&TmTN=cjy|;@s*wI99vOBHcyv~5a9NaEj6fqIQ#+cwCXr(QvI^S^!cmu<=pdX!G zx2))UAk%y9{Zmz03RaJ=j_yoZs#$*?KJ-6|&OM&#?~mhdQDI8u5+kXQyOrBqbIY}h zQbGt@vbko+og(Fam&=rpZ|-C6_xp8~V)JpIYc_J5>-c?s|9d<Xz71`d_H1h(HG2Yvlq$Qwa zU>sDpP-tzdjjv3e&D5I8Jzd{WBQBz##OGr>A^@##mLK0FBj)%DN(>5Yr4`jA%^OrS zNo9T4dBJFvpeR)%VVj!3egs0Ni{szx<9*l<(o}r;WM9^i8`6n z*@~iiZ--{=f6tkk0c%ptSS0+u@76^N-T!`)9^efAwW(A7z3t#;f{&5U|H(UdKcY0S zE1v($YlSgLGR~3XCVC-@37Jo+8_Rp7u`%aHM1kcvo>D*XgZfX zXvK9kRrT%5VYQK#jX(D?&pqzc%&E*IKXR=%;a0rUbgX==MCHHpfEo_%*Vs2C1l*P( z*Rv3U22mqrT{LWXxI+(H{ux<|?PW>F1l`E7`R!jKS<_E@kIr28Cn)M?``6QteQw(E zP;Co+)G3wO9}~*LrM7Y~Az5`*lwnlbNYjQmo*dSYbw(OrS4b-5P98+Hd@aCyN8qM=v9Gk33>tH_it z%qUI0+ff{iG8GO8EEBF;l>CIk^LMC4UPEfz5WppcGgiLeLZ|s-<>diuQ?_mHw(&Wo zth7C$(95ViTd(Y4zm4K+eR6ByUi>9vfNC3=|JV+IZ3VF6{aA7Pkg1AOEcf@922#aK z-Xan7={L5Zfb#IYXmsohvTmk@=iW%!hON}qnwWwZH3xz#j7PaYV486YoRD^o8^`Pg z2toFp?KpvzMBQyhbl3$)zQfbsx9wLFssJ?SRMDtUcW^mXi^=aw9fKF`adVd|JOjj0 z$t_w66Bqf*v;PQ7CGZh0L?;>`4DJ;0ZB-wd3I4W1Au}!Z-`#ddXm0;Szk@TK0fEhO z`%Nft2G%fC>lHB~1Wb%&{U}Q~7efPcF#JNK=aE;a=K-SKYn`FgnuRl$ddq*Pe|eId z`&I*6eaWX?(DsuN!d4bqx@$%G)TFpuLd0q*w%-iJJEknhGA=pJaQsMq6ql3 zraz1pv#okDnpEvG`jPWtl#3TH>Zs+>11#4N3ToMk@R&iq2SOd~5(Q@;SO^7R{?64o zzG;Ym?iDe&HA>*qP3BrXtpHCh?CB2PJ`;9JGK!#j^lCEsS?cRQpZHk1c26q@A8iya zU|Wvsp@XTUi^7XhbGmhJ8AdR}-BPjhL$}J14g))3NEF_9^6?Xgj3INmdr>pB~AyO zG{L>6D$cTDDL(ycV4zj8F01D00@P?jHt_KEfkJ6os$S8-tO3eF**##*SVtf4F$h-6 zm(+j@sFNutn1)V_)Q3y&>Ik%wv{X`C6rn@$a2a+yq%1`)b;r0<)SmWbQpb;JiptO& zXS<&g^md}pk}+z;!0c};W^J2R`Ns_#iP~)Gqqc?rdZH?kB%v zJiv#RA41=WfixK{uO$?3sWAZmXCfwPcUXHWN1|{^+pSRMzfG(!oBv>uQFw%z_+G8CL7*u!I&^tkD<-nZ<{A5`CDKPjq!C zn(5ztuZtYK!U9OIHc18QUkY4*s08X4Hog$naHhe-C~~V0;DWE=XC!L8M-zgs245q` z0(1~?U_wA$xMm~!xL}#2NW7utNU{FHzs?1)X!M>s!#{P&KwXkYAEZH}-3DBv!Ko^F z+Fba!yaWbP>>F%geJ;D2%K`(L-yd)K`@LV-h&Ox$xl<@?FVHX)XrI}v!;@HTe!@|_ z7#k5sq7|2s^rv9USe`>KyYt~av!17qE6?0uT~5NJyeAm+WgtC6+AJ@^W3>2Wxz9WO zK7CS0J%0VDJIyBMeyd|wNL!e(zgl*LLhcQ9H5GL*G|%uKfd* zw6B;?FaAr6=4#U>WVvbs-)HO@{M_COTyL-PMHgCqJf3_0ndNxzmEAY$8mkp4h|T&m zqQ9*U$^RuL_;4YuIYc>+Jn~YqY=7%yx`hsGVr^rh z)_FYz83zSf#))w8+^k$Dx!}Etlsic=d`m7Vc|QySG#P4+Zn5oHF9|7s*Va5#cYkRQ zWT21%%fd{-Y~5{`!8>{}|FEj@?Bw(P=kW5Cpw{3lO~PLX%tXoa#SsgFds9=2W$2b$ zyED}Y?L>6J3aFmsl1chp!$k^G%|0mgIRXRP2k*6HH9*j3H^(3oR^|HDSs?t?eViA&2FSWOD}+fFp4^R z2JlpxJh!gcF?Fcyv-x^OC=i9rv1CH|R0h8K*cMLBy1w{>P=%yCjVP7_Rv%s!v?ttb zD@T%)LsAJ1ZvJ=laM$*DGwPZl__q4kYqR@vu!&N2k+7B!QFj03|0K_RC_{Bf5MG`6 zGE^ZMyrjxf1p_vwG6jPlkVWlo0^F0x9`{l6$4%xfN#H9yVKS6n<( zIu!#gXfLbY$#F;N1n|QW4^Dm~mFLt?4o}uvTrdFrGWLYNt66Wed3b)iRfHOP34(HIPnBKUp%NDCvX@PRX96np^{A!yw&Gvd&YDaHifF9P}`=ea^$GT9<#|$YA_GFbz+C;cV zj#FI}gHo0e8#@bM(Zuu{2Ht5s?L@;D(5C`_?${svSIe>tIpVJ-X zYq2(XxU(muIiM89JaChwvegEcHzQ=4{WB@%lriI@5-PwFM%qSS5dMpg-N@_idRHfn zuJ1J&*Ofi(Of`p4Nq=@_~5sjT7*G}AdTYq^IAfX+L;pb~8u>s-P+yHx68 z5d3Uy2ou1A7v(EBorGF7K#j=Ox!)RaumjG39XvTtFnIgihlx4*Gq}6Iy5ga1VW_99 z+Gxe+cW|yQ5)J8>#p5QFA<>dY7vz2v6bxX^!co);>e~>se}#<;C!eSzI~zX+RpTcE8+6sYKC@gP zxC`VqSnE&kYYHB6XgcX302qUu8DI~*NuE|o-$K=rx}9xql^#72u$|`!A(h%Ksa@-M zIvp~Jz%bC~JuRok4j3)|?e8U-#)nY{x@n#bJ2d&EorKBbMiRkd^i30u#B8)d1s0SS z-rV8-upIxQ0n@FMGy7pTN;7j(!_Ogp)3n{yO7^O-mlG2&Oxn4|ixn|{tX$c2oy$w7 z#Dy!dXwjM6wD0;am7a|2Qo=Ruh}PGyG{m5%hUypnNg62d)+c6|j4YnLJ`;xCvL}Uy zzf=P4o{t5ESR1IcC6S+~vgx2DFURBisXb!Tr5|J@^A_J6v%I20E-(o)>sCeHao1gz z61Xy)ajD;A&&S`Q$}pCJ;9Wkyf=br++QxH8gc|^&l{ytp5o=qlekuqHDe?0xB&N~i z@qINGuK*2#mqhJ@v!_)*pjffrvpPGS z9x2nBS^xU^_?GgHcvIt(QJ`l~pc<$9x5pg)y|I{VI1>GRfR~>g?!eNbH$Id*_d+vpVX+~wikR+@+5gm&;L;6s_i=OX8P@t zI?>B?t#dPjoa^l-r*>OE*Y{h7fI~jxij+NyE;L3?~s+*vVq_@ zWc~3@-I(@tIy&ng&%A841QVSZ7~GQ=_+*qe<1zu^Z${vCUYdd0prPIr=5HWM;sRWa zT})hN{;w6WAm>mNzf|E7--}gjl$$}Onx~nuz)X_0z)F47Fb$pl;Qe|d*v`-yziJ)@ z@eBjI*Tpab^HP?`LQr{j8zt_e%h3veBSvhggA=Is14%&H(E$V-NuehOQkRYJ2~>~? z7qDolo29V*I(8Byu{@n{5J0L4vTa{;2yPm^6MO)s|F=!R{Tj?41<^r zM)aV{h=P^YumcIS>%)Ncf3am9150r<$if!_OHgl#OUas@}5iabA-=7i!iX|i) zY&L@)++Sqr2D>hgVN!iGKO8XD=PHUFxFHE%9awGu?8KySIDJVDqOHeAd0^IvOw2}8 zLKWG4jUbQ13Sw61!E31K>yg5M0)*$M5t$|5$o~8@tu#No%%u)4s-x8^_$r^JP=o#& zrm8oTD}_7a4G%V;+_-DegNo!khCnN(7i24`oqW+KjKfWAj@WJO1>U%8))YLbsBLxQ z#){VKC^O5rW*^zz2rl3Oj(t}p}7TkCA+ive;mDsirkH4m!AlKSqe_t zC~RWc@6}hYDX`d&gCY?~A|wg-!&JldaV!(pHaKKje(+G^F3eR<_|?L3_ZUdWyul$?&y9NAFjielAReREuUZ;iO80br|k>auI@Wy18& z^&V7rE)s&XUh^EE% z8;`Lg1Z-$vEr|B`#|Lx5o3q<>PG#Ju{A5S(gGX#aH_c-RNlYAb$2z|Fe+JfL(+x`z6MO`c>H!&KF(~j6+>*_ z(?HeOx!?>C0%C4)RBuaGycf02FAe?rrip@pI*!VH7X|Xiysk#sdBmY%vD0%Iyu|L6 zY!U(r0nuX3D67pLlZ8ws)VKnUbC)FvG%TI-r`m;MC>7AYRjCJ)2M=M`eKFkHCAkU< z`Fmf4N%}bn>Ib}2OZ<3Haj_BdJp&DjYjzi=_^#%a>rT&R?te>6I>p`&Z~WdZbP zFUZ_=bjMO3qu?HKab55Xe@Mf%`*ZZo$(t%0EAOt2qJO~pXcs~9=;NU(PAQV?AJYnwXbLgn9;}m*$b7qnI{tzBZD}k2TLA*RQJ2T-)|#&NPne2MU$3bX z?dZ6*vuY*%jBGg}J8sF?_Y0;SIpo{fqSB`{aJv7&(%bo7?tlkSKc~r8WqU8#E&Yvd zj(XR5-QvH{&8D4)b*oXhpE1;XVW}vIl|=x#d!6i@Pj+suk^U09!!>Nti5)iTY{|2o zBPlNg2N~uWsYD$9zu}XAiv6dUBfRLrk`1E<%+@K74M~n4a+7-J8(L)qVnzwE1B=VtBM?(cQIvtvoL9OG-oH>Oj1-(H4 zxRh($c9|8gwax%49rqo$={;X;aM12c_$L)Z(M&i8M^D&GmE8&x{Hj*Hr;%H@MhS;+ z%18t=G!Pol^b)=b7B`S=cv%NSLC9$oENO~#JYefN80(iy< zqpNMerW|O@z!RMdiY9GxCnHjW(`tIgiFwk+t zL0lXDmxyw3;Www?nc-o`?oS`s=hLt3dX~UE?OL(yP2AM8_>+k&y#W{srs3F~0C-D2 zsmXK3?{l$%5-e%u;5Xw=fMji!`SK67#trJJQG22eR>z-TFkD-#N{&;6H8XN<_Q3S?I zhQ$l1Rw-7`1;6NV$`h`MUy%&=ytWl8ns#<4A88wsi%{?G8s>04 z>TNgX`B;x&!8s-3mlSdtI|`|~p78G?y45ZZ%|7P+J1?W4#z%UNln76!`)gK5iL^>A z(kaWn5vMvrzPzNSNnNqqu*rIM@kWEz&I#wAVO8^!SsyO$Wpu2LqbeN&ZE9ZdEY zB?8B5A|6>Xp8YtWnYkXbMTU-20@Aekx%eqpN*$c9v&vk&QW@phb}n}!E2R$Ia4Or; z*Z$A2&@^bpMU4%T>gVfDlV2R@ZMxFqyX%P&$TXw&(!=IqgdKTSVX-6g$eTPHODJKC-+*BTvS;;s>eKb9X)xRr4 z$js;|mnRsi*eGCG_b1|yE2cuIE{m&y-~d4Jm!?q)N%gtxL%s)P4?=%vmXsg&}^Cr6pr1Z&?A z@URnAPdbzb$e$nt4n(kJBzR+Rl4bKLD;LD{;m(ztf+FdsTF2J(JDPB9d-&{?gr$w9 z4D=BP%FwmvMAdNthb=IDH!h{b7&De0M4#9hMYekUS9b)?kx4tLKB1CCe9pcF{^!Xu zUPas|#2KH!UX$ei2^}!!csOuh<|SU`<=zM;hvWLwoTBj6CM;6GGqCo;r;UL0#@F~U zCykG1@j%0K7uNT>EdyyI283Lq#_2%HjxjnZve1f*5z4^8XE+Fov9wq-MkYUKRX(g*ShYcjrTi59!@W==hIyCFWX}H5#lvc} zo(9Hang%vglAf{q0ImWxRz7bVA=k3w9&T>eoC>9|h6xhhJ6lMqbA&@JSfanx7i_KX zVwOnaXvv572yara`t(^fh#E_r#ab!K-C3j|ly3GD1{~PCWbA zD>!$M2uZGRN)0(MLk9P+47S2udqznRaiVK7x47e^`6NsE$}Nj?Q4U6_N-|<+7dQ1e z;z|0Yo1~>2ZHHnTp0?UN6FY(YIFC?yLE-U5DrrbDFbyThitotv1o=pUG?Ip3RYJQu z(4=wv1{(c)5K}_>W+|KAi=7-_&xrcCUb*_%=i>bKFe+)`RYv*HUe#`3sSWmFFv9lV zR6sDOaC_kD;9pPfn${_`B+sIPl$Om6Ll#J|-{5oT^gHx?fr5_!u(UOE{~xk4r9p6X z)|p&1@5)U5TBeX0Tpu&dS%rMWQ`@rnGnKUjp@+z+3Y>3}mTeA%Mt+Oh_oI zYfRX1u=eXVC(MtvB?hEYRt#Yg+unmYU9P5-zi)+hYL)N}IrYfHo20>@{}|LXgkx<5 zaJP|G@m_8ZtQx3~R~+zZ(719sIl7*-Hn{CA*X6$wX0+T!^B6EnO3!2l(djkS!7mO+ zFx|YHJqPCwnP32A_?^%@G`zH%W*X7Qzykyx>_ji`|<9`NWorz~IH(c%9(pCTe9i{W*R)VNzcP`gT0-`Zp00 zGeC)6`jEVrHPA>A<^k>nS|?3c0+5+eZ>e=8%Gs9E$cJ05o94!=83(S)mA_f~~zUCcGaK^@%eEh)`8T0{vDg$z(UabhU8i&?wJ85wid>&MY z&kyEl-ORqp&W(QYz)t*~nDpCzf^8&HzT8nMYvo35Tl#iJn77(iYvlc3ZWi|&VWBB5 zf%~xI4(HF&@1jk4`<0H%!dBRmH zXL#q1^4;Xi3q`+x@wX+2X<&a`Lc5u-MsTdAbTHvMpE9bjuLEN(B@=;GzET&GF!P!M zx>zm%@a`7|f*#%d4QGZ>gtL&kOj6Lez5jDB?M$@VmI@&o%`s$eBV0Kd=7yth-|DU2 zx#$UscC6d*;2{F37y)*pO^|=T1>$XLK=$HpI693uj4I0<(~kfTWBbEGKuOU4!vz(R zMc81?P?5^i20LJOc?fkuEtnnf`j;MPE)|JVaJAkRMR~;wbPMB~&PRBM$9#wKV}nc; z*y=*jC2Ejy3lc|$A%bg-G&m#wFds@)qu$AUu91ZaUj!?4)2JyOBgzIMZR@K2r zgmcB?MjUB4Bf%*RO+dLLxP~v$7o(*;Lq)+shs?nJSL6(Kg%KgygUyB2L&22vQ1k)R z&&}{-4cMygfcOSp#Degs5Wnx<%7_MpYa)78HB9xShcQ33X)UeSRrbvd6nrL|ghAxU zAMoIjY)KzCX4-46KK*)cm#D9?r9$2pyH<8O(H@>PPRbZ| zD6YPZuI$nPOCRtynxB=@a)`T44^%S2p!==Il>|K?0klRQw$UbhyhzR9#Ymy??2sZB zWHLDV#!(RhHKz9kx4{tJHDF7sTI^KnE@~RxBFKD+Q^b>ViNztTy}hqi!s_i+eBK@z z!=z%_f3DvAXhG1(%&(U9rn^~Tu_q{&(Wn&pPf6~61VfmV^5LA;K!0K{pn0;rS=1z(@#B?b zsFhRZp6gM1i8AutpnvjJf0qmn!8}1=?A^OubO5t!XyYsE2miJhp9gju@pH31*ShR- zvz_5ovZLl-_5Y&3UkpY&-3_kn?sri>{koenQO#zGQLxKoIE^=tavJT}Tnp)sy^88F z)29Y}iCSSzWkyhj$RXg;l{p>%%zsT}+>8HDBkWJW59&q>=2V{-AHW zl~Y41(C7V{AnY%Yc*%c!*%PC(tE$mu-XC$FHsqN)K*HA`W@Rt|9p~kOCEnos%&FEu zlo4GZUD3pCD92z`Vz36FdkvM85@CrO@>ezQS-QzUayUebJ5U2#q|_T$yw8;n`Ht6# zxO^1E6wcg_tXix)TbCl<_{qhqmk6^chlbwKJaMpOU79-&kkXu$yf~eyl{~0V)F(r} zJ*R+CfMu#2`oxv{U;aRD(#0;Cp5hH)yS`$mwn|fpzeX)P)g)Ma)*O}UpxGO{&Oe)%KmQ1f{24|D;u<*Q4&Bw3Q;Z8X-=eurAke?ZmVyC3g9}ZUc z)LYbiYI`}D8hrMnj&oZ=MHyabXI`?m&QFgEWY;l!SW5VFgG<~p%pUPGE5p5rB{0J( z)q=Hk(>X*rSR}+-b5oeU;wf4X+GiaNyINR!zh1<0tj+na_R>mKc5M)e;QH-(+L9B4 z1&*yMLHezS``rBG{YuRCLrBjS--J+DLk1cj^Yt2Mo$hnFQUp9_($Ofess|%PQC#a~ z1NuNQf@JUbV-&EQZ#@;E`<67^0s_xk0}z1OkH(Bh(pvtlw8M@Dsgqv$z*phm7$Ria zY+#U9|0hd!wbri#lvbhsafqQ2K+DVG1RVgR>OeIe0afJ-N&=w8Gw+fUSn71 zQZGgM*E{%B_Csy5pgK5HCnl7w7=Cg(j%WrPP5>&EHddE+`BTZhcfphC$WU!;Y;*WW zFiYo=FmJ~JzzX?Qx`736zZ3FIk6(6--`6;#X2^!Ikk{@lwm&ccl6XdOLu3&1H%gYy zAu<070YqKFNRk6>+A)*d)}xw@2C`nEfK5cATx1@?f) zPST^BX;zG^fXob)%prQzs)rj;j(IZWM74bBt$`7n}5|Mp>^6ynt?yB(XR5E(m zwXb^?zoLEAn5Q?zrxdq6$213FE({WMg5B3&t8vknqSG!Ja}}iK?`Ck~d&;B>00pe_ zsXF)aXlWRKqv)xE5s_8}zJWs9PD%H?=7O?G z1!^FWznhVKA_N#X{c>o`D+@>W=j!9jIw&%MWI`9#kyS;O5r0xi{q$CC?*Ae-NDXJO zbz=<);|Z?TV;$bvJvibdT3m)qovSL>xDirb{=Fe5P!qSn73PvE)<8$2riCi0F%EW_X9bK#Kz#sqmo&^N>)w54o8RRrA8{>e zr5cb1Acu-=CHI%3gO7mJ+i4toZ9L6Nw54Z zQGGhGF#G9zI&;u!g3Uys!V{CavEL6Tl5Dc?)OAhcp8u;RsL2sc&zMH^_Yc9Y20?rdi`Zb4la5;cKQCiNx7*jcsY&|2x1qfKM3*Do`9|C0~tK_3v! zn@KIoD?5Q~a*kf@bsf%Zf)}&0xrQU09a3Y2|K9Nuiz3f_MclI4S@6?(b;>i^*j5Rb zQhtT)`NvlOilFP=M_)475gijfy^Id6XQ^fQ5z6% z*J^oH4l@kY;NiW5e-8bXiF_gR%9Ow1*@Qn_STuKM3Y}Ioqx&yxt zT5J0QV%YEX^|oUWj%mYS`FTj?Qm^4?b_=aqK*KbU0su0AI{Y$WS_5o!T02%G=6&+e zb9*Fb8@S|Qz!Q(HtszB}wYV-_uR9TcoKCv&y_;{Tp)wU=9ZgsVTwy(*^u%WEgzVrs zTSa0Tt~wHD=tosh-9<-^{Hx$veU0>4LBbQ1p@Vbt%1(!U;vGSJ4~UC6@U-?MvU;=< zyw*EvS8S87ceT7JIdqsjd3gYyouYR#zM`x6$@FREe<7W03e`RMBzYKMjVR{U69pW1 z*GU>xCdw1(Xt#`53Sm7iCLHUjX4lZ)@U8sc=phTIH1QcpUNTPLX>%xgn++u#Tb(fI zk6QAzP?4a&rL0#_b#ENJilf#B9q%uRu+!gDZLUDzC* zf)jJ*`%rObqVf)MG55ef{5OdzjOP^e1ki{P@W;ddie~Sq5P&9&R+u)VYwtZF>MNF~ zHFosU?C<_kQa@NRzb8mya}SBSuy!^IT%p&n!>BwLyUgr2D{0;~Z>*NN0#ejF~DM=F=+g@OV$*A=D&l z&3LwrJbgm-HYDXZ$hLe(z6?G5#8%pM^`-{fE%}9@hwdGei1i>z z{xgeYdipT6+M!^GiQVXUb<@}#_w!qZ_sYpJ>oA)&Ew)op7dj4A9WI0?TBdkBxp{B*7uR`8gvec$!wKG9zt6Rt z_qI7RU;c}|ou6f;oVXu~&ROC3SyLJK!>2da?>x*1#xW}dq|h}v!2MBa41;CoE|{?W z&Jh|^bgB^y!Ye%AfV-XIYSdqMV>1@c>J{}x3zr7ABcNo{-9&PR}ukXPs8d`4@Rhi$$yuFUiV6! zKZE#b#yZfV5sW3_M-V+>w5O>;6-}?%q@jGsY_Eoi7w`o%f7Xgj5^#_Yq!zdO70tZj zN0k3sk!iXV>;?f7@5>SZ8b^&jemt!N%!Xv=DDTi!l{c!A>_X&0d1%qGoYzzgXB|zk z%Xt@)8PKfe=%0YzqJUmJPc|UqS}k=PooKZTg^zE5+cVBABd+O)&UmPQqE8#9_djHR z!aA7eC&!|9HwN+0?F=+x3N)p96Q)4l1!}x*n8n|9dFws;^%cbsto()Wz^%912k|N$ z&Io8UDE8`Dngb81BpTLV);L@Hy>PrI=C39f{)8-ivaE{L3D`#+3E=&1Y__LgF)-_m z@8rNsxHOpJIV~R6EHI8154G4*f`hV!+?TbPZ&UmdDYb#u8hm`8@f9*N8@HAhSHlhY zyP1lHSSDTt8bPd`a_@hbO1x111$z37QF*dX3dXYTS!k!;k5s5d>`nesalK!fbU|SZhs}hZWpYQl}uqYw|8Zqi+MPCFqG`i@t+cs|<+h*mxsX|A-;-r(yWX z_(F)*2z@OPf-!uhRZJe_3@LMI8-gh`oLfNIezNvd^>y9a{SCYGGfgXUi*lu9U~1>s z{pZh>ZuxQi((%m>&WU_PSXh)eJoojr@b*NjHF&W{{qq`}|8sw)S@CyqQo|_V%=M7( zQje~)f$PcG(XHfek>$}CrnKR?P-RRa!r08QJmm%|@~6rO2vWM)@WTHwYxXZju;b~9 zesYHU?AU5$?@=2*cx-E*^Br*d1e_Ey#H(3 zJ`SyX1g;zBC`;HYVg}b(dM?aJ>p07+q=h6Gbyx2SIISgZE>_52!jgbd!y8B zP~9hrS2=v!N+kU?KwT&Xf1%8_QmG3|(8yyq`sMnWM=saMNL2Y&4+LO2)0pHFmrvm1 zbp-m(j4I01NI`Q*`ucWo86rZgIv>iiUlrp}2}L_`%n2cYpw2->JU5+U`8E0HZ_|Vy zHjZiEUY)7Ks4P(2#$6q}TB_C?V^Gts*=Upp(%<1?Lv-{f^i&rLyiN~x-c?>J&t@B* zx~OFx;hjfmU1q@?)%4JKE2wrPrv|W`nHvO_Yat^l3Ry9s6}e`Y#Mlc%iykH09%XJu zEglI$0<&4=BE#(dottsMDm2lSU#k~){N^J#=I&`^|6)Z9scKwAI3;`8Cvb|`@jqpf zyBGzen{Q&l61DQ&{?SGEGJ*FDv%Ay5tKApf?{j?5I)!|~cLg+>u3O3?`^h;X*II(I z(OT#8v_gK3^bObRj;1~o3|icTBrBYkbC^Vk;5qcXOl&m_4WG;pzWWmR=D$<3Yfna- zYqJW%mOWHA1DZ9@CHkx$26*SE8@2R}RvS?pbJHji`k@(I3coD56>`i_{9kR7KkJ=q zm4af8^KJ95SH&@eZDbqA^+L9W%d9L-k^obQy6zezSlF%s&be>58d|+-ck1sm)d%&r zdnS$_`vP)*pXp8y{CaPZJ-RP|_KVIaZ`$ane%Y2&*y$gWVxx0sR`)xEgTddwDQ?|)mNXa7{x?0}2GEgW{ z(oyuxtwBZVONhD8-PMUJ#6|kDF;io}v6Dws5-G=J#y;~`66nwfDf!j4ybYARen%=; zU(}6c#?9~N@A5Cm$q+uu>Q|!GPrZqGFCz`-ai`*{VQ3e2rulWXx+>*mJ3E0nEO~{aTz3 zlEfSGw4Q^k4q~opW&OJn6`i#el+$OX9{5*dwDR|0zjo-1^k<{}KNO;OW}Q#Vn}T*h z)qPH#oJ*Bbc*W;sbS?V;Ibw4FGXQyE>7pkg7OMh_Ly5R=NqEb}iRj}VV-s+r&x}RfYet$BBD;M#l zp4tZ?<8lzDJBGLPBOjBD|74ByDZYP=kU6KZGuig?Ub5gktz46ahShPIy+iWOO*tAq zuo%9U+bB1oRwx*KQ=VB+kX7{);|x7C+y@KI$-1KnY5ySiOZa(t7v&d&bIUYmiDdr8Z^G! zUloKfFF0lTKN37_9mmZ|peo~QgTmSp{EFSXZ=gu#-skrVp7QU0(pU^!UY&UEpDAr+ z8N8#&a%OBuyjJjS>rEgLxG~Il^X#wgHdF@_RpldfV)8#Crsz!DY?7d>BU4}-U0P>b zHuJi5DS6Hnl5*&xY}bF>uIO+E@DNU0`ln%$C6cL8JjgnvfJND|;-xcTfV-n#I&&^< zm;Cg?M5Qx8Ng@p&qAfd^**}y`-u;!<=UHKzOIoWQ@`btf<}#n|ej{@}gzCEITBj}v zV@|pI4H~w*dy`#R7HlZ0N2igx-Ic`F&?dBV@m?8dc+MyY#)$C(KQ!3)VP8!bo@q-R z!Q$X|Xoc~88HaxgxS?*|1V50YK@)s5hyoo>W1(pHWi}@xesh8riFbxHw(1+^Z)^Oy zlkK1-W$tL9EC%h^6YYbys&saQ2i=Q*Z{0Z!W>UcEy$X)rcuEtrj7L1rrP?i?2dXNh zQ`gwb+yKg;$4KbykAFz10cmQF4KG*nr;#Ew**v$|6wESxhX)pwoZP++D!}B#g0daA zr3MBufk916k5Nkg-$Ig)ryT?$D4D6U9()KE#5CA`c>58lOBcf#;e+u2j$;p&O$`V& zRSM1^Hunu*1dejPN^y)VMaz2H*>d77zk}ZZD0ct>6SSMpwub;3wllUs{=BKb1{$WT zN#7f3#gn|RgIiJOy9{s!&A5gsvW|X%+I6ke8n{Ej~?rs0|chWlX?0LlDx_ z%!=pNu$t2q4ZeXkp7LsEd>Ki_47W2UJ8r;}O!IiAzPrjkgFkk9aQ&=mjO&`>FPQDB zs<^OV^TqbCOA8TK5ZJ|HWANuDvUbsg1KWg#I}<~K#|u7(b~gZakM2*go?&<<{Je+x zGz{jway|$>2~XYo%yG1StLmN=<`CTr0dtdoaHo6nqFtR*RA%$a7f_|kla8Et`L$J}JM%xL z+4cQ2b`cXpc*5}+3-y)<&C! z;zdQ4ubmpMU}hcnTSlend{`65Pir^=I7pq#oTu29io+vRP^aQ12Qbz3)5Jy$@1U)z zHh~0nCN|?8hr=k`N+`etToM;rBNmtv?{O<^AeDop8izHc@#^6kIO-(s2#iM`b>NxL z#fgzaT3+|iW`B@k6*q@Byo|6y6`Z07I8yg7gF_ZI15Ln?o`}eK$So@Pf%sP=AytypJ|cDrg+ht_(cOO*y95l*eRekh;14YA-xA6y>gl0p%B_J7PakYkUGc ziI@`w0aV?DvHMc6xie{Db2M+Xrp7~zHJO)zWLKBfL5fnW75MR+vamk7_WtVLa5tRY zsMUcj410J_P=i_NGHrrgP+PWDhMny;zuDXJFAK(Hm#Qlm%J=9?Wo9nAnSNm?J(~E? zO_iH$%z4hCuSavUI-EB8N;ZTS-bnrUi-TDeMDJF#$>eecN<}ReIXS9U6})Ug^nY>n zXYL#+!FvBoY|AI4Hye1IFaMHtUs*BQK;k}9dXLcH_f&@Ciq_NE*t5D`N8N*rBi+i! z7UjcoX-qqcEh?Qa&yRUZ)S{4(*o{ z)N!2Q9`8hGbLgq_qAvJZ7E+`~@}Ll~3>ht+Z%P$W#*%1Wn{{0W2B@W;Q5*2X;&(XZ z@_Y=2gPIw^gI@p|zfrqVE=gM>t%^9?KH7fEpdtyRt)q+igQueSAB-o3{w!g8l^~+= z-e7G-=MUe~bI;0C7PBk?lE6^WggsE{MB0CjS7DFb6<#RfY0+ghMLH92F=uo7tDI!+~*6ra7tKOa*1Uf}9XAJrkim&5Zk3J@O87?m zx;;SG4)(@#Mdm0^AP>t2KpMT`n`y!wgyldw8j9pn5IJ&+|6aR>v@yu;yp5wS`3q)I z-qXq>l#@PGm!1{AiM?HkhK8!|^Wb3&C%@?z6p2M(E2nSv-)=q;AD|F>G==H_n}9zf zlW9W-Qy5o-fS<|9th;dUm2}H+#Z-ZR@q7MK)~|WOWAkwLg>t6I4J5;AEd>GdofVVs z+$zE;_U(puzd_V}J(e~$Js#wtu7|`EG8i=sG9NnIei9Ka&n$#D8Td8>C8N!P-SlDd z;ctXO(!ADBEA213FS#@aN(xVk?IZ>B2b}H;QWUyX#m4_u?AcpAiWN0IoKtc9D5q?H z+Hy>%p>NN3{QNuesS(}L;r^aoPC%+N`7oinXV&S6@~ty@K`-|0rBs{`Rp`M~{uQQu z##hKHwc%(kqdxt38&!Af(lHMkb8Eq~f9JI-A6uFFAL{0G!GH8X!eS$D&gR8^N>b&2 zaqx*yepeyP{NmN9)7_f=c)LE7zbc?@w&OS4FVfJpRqHYY1y&D2sN+R_WCgH;#tRJS z;GHk9tJ@3Y@5fW6{Ygk4JZ7IRugn6@i7Plz4uVL0-ZleX)KII)pfYg8WWIK77{!)Z z-V56sSv^gD<>1w1@gt~2+I&dSvt3`Tkr{sZXDo=Ia7kfa-;&Du_6f=aMzC%Hqo+VZ z+~S0MW{1Cjpy+TXh>OA}>b<_xt^I2d4?9L=TDs;yL#KrRK4+rFR0Z90X}&$>Fo&Xc zo4Ra&ph0Xl>{d4`Zz}BZe6T$}RYKI@L@f=6lOhVr#&%-S(<7U+t=D7}g(`-XfaS^z z>dyzo-ryutG~5T}rU8Cgd&hDn@oFG^=aQ^VB&)%H&2m7UczLFd^Wx{L33gH2nxcyu;Kx?%F> z)t*{^%)BK@SCUJ$ABr{lg3

    #RaJl@i@Cy}+P+SK zN(d1N0$>{0x4#~qJZpIt@gF`VT>f`UvG!c>dZ1%85U_e3-nQem^`*?}P3 z(_opGqmMUwqr=*S7pfd!XvwJl+>OG1w$xh&QxqscSwkqG&d80tTKI`vc?eJw!2m_< zQ+7cEMhk0+^7WFJ*nEIv^E^_iCAv zL}M$whBOuibF9cqepZY`2Lz0Pd~>u-em7IE4CbwCbyReqeE>QOV1a|#Tp+taqY(x4 zrdL@uhNp&r_O7&};>gdHxBNLx>I<&(_7L9I`QaYDWwiJv-UdG|+B@(zXo?1K01fbH zDwq?$tMXI38DdK#1$f)6@;1+7fT3=d(HBd4QQpq3bVhl}15ibG z`C-!DHkBUSQy2QddJE8qnhofcq^*oLYeakjkT@64bpz5zJY8vz=zun3K?92s8>=!Z zd3B*uIY6`>eQApCun5J*=-L{H==V?leDO$b<$v$ z4rnb6J%altx<2R_AkS@;mVhzjip9BJ0I2CvPlurLK+;nJMP1W{x6sjbf%c8-G>!Ky zq7|U~1ly6G)WyMOX4-5-H6aX-j#^}^a%|3Hj^ozh9FgQtF$%lmCA0w67Q-w<7-mR= z)3d99pRNuEFXH+%5Ry-E&p9^CznNoC%^U(mueZg@US z7zFA3PdeEpg0tpzxgQJ*uNBFfn4~w?`7nUgNOQVKOb*<64h%ZqpKFi6#U!i8Jm#^) zu=85Q49?ptii-|@pqok4z~u9snVe_R zD3b^Q^bnFP3~9X(lNusJz{Mnv+fn?rgx|@n%YG}3lKGtT8HGlgsuo335u)5+G}$Q1 zAJ0BV9wgq!YrgOK*vG}r0y51Z1VdoHAm%-U?Kmj0E(XOUrpG<*al(XIw1qjLSGUhQ zx{;9SdWPdC(KT0OD3*i3XaNpW>BTxkyJs@5QIC~<0YPv0et z-=hnhStY2E00s(SU(9mGm)LcNb6SG5QL(r99>6pJn}Vx(X3+9Z`v>$knh1BDODd(N zcAn(xOG=-aHyns-G|WsRTfyi8tKqHd>Gj-2X<)B)P7p>dS|chC(7PML5r#txphg2k z1ozrAcs<3Fp>3|g$7w*uxT2BQuXcw zPX|vL`shr=oMB(I@Fp4MNTcD`jcCXs|GalH^m@0Y(Lfsg6uiB7C7FBOgGR(~2Y~YS zeC9b062=PvmB4D?FuSYb%~udHgtv!)cHC=q_cL{|U_Ew23os~4O~q)f(!PaJr(S2} zZH+9%66ALtg}1qfyB<&|Yd;Vb={NIsEFMoAkD0QYr8ylg-i90v9>kfi!_2fp7Yd{o z2OsJT62P?58b8T%@Vyp$+@)p}dzJ@I8x663&UIbRfm7%40svDHxMOF~>Ua!eucdcC z0ZptG^jVj>o4M}cplY#xFq%$HqI#_pe5-@yjO($kA*&`oK>t4G;!s^QZvwI)UVVYr zJruw}1_C3@8WcAGXU*Uq1@B&8gmmszd)#}{i`A@-iAzQpF-Do529wvIT+vv`BKD|{ zZEzTksBPKFqgUIO`!GL0-=d+p_PO^$S5A}NZa;F{ZryQ5@J&V%AQz_d);;wmPO_S| z2#~#i{rMEXyNsJ(%T%RW`-)Ug$P)+KyCl8sNpEX`<7R?4$g8|9@ zv8;^(3BW-%wrm!Gv1a3hA%*b%diddoFUG-RIG=?F_Ub^w3;Rn0bA9JTBZ|hp81DX4 z>ZdU8iMP(DlHLYGK=*~+gM+V~&iwr?3^QcDOnCtVPz(O4hk__(lY>(~uQjdXOiZqF zi|fAVs!{IDu}>R9G5YCzBEIo}%UcD;}QhqMb0>G%^^P#2Fj%DbF@|K zaVQf#C1V$ZVU#p0c%;6v>^~k7@|Pu-yVL;yhj)} zKG(iB2L~^$dkFAcClv452Y#2rW8{D0oSb>ij141ULI|US$*E^cUv8>^Dm9>X0(&x&5|jjpbC7$YRz$80nBq)3MGz{sYL0S#8_eU^iwJy?5lbzECi*7ezAV@rJh{u zA!*f-01Z(SaLakCkUp#nJcih#D+;|hyljjR#u6$PaNz5lG=g<^kmkq@bAsWK9!k`c zWRxR;u0~hW<4td?g+VcDI?@Q>p$Y?v2>h_rEx8y?=hy;CR z^h^VICLqW<0Q~INB3?Z{mooqe@u4&Y0KA41R8yg`tgS1t+kjYJM&EFX$Ee z<;dGAL-jz;wKo47c-xwZcR6XKSz{U_Xc6^$UA*daJQc$=jWmmK?Yc?vLJG=!n~|w5 zjuDw-8m~rq7|cz5O2JN`{yj=-R^>RdKjuM(^LqD; z$C@JwyARSWI-MiBYq~6baOk)Ln3ggC`g2dPYlk1BJ5kh(80glYqM3FVT zFtFgs%(1!C8vyVQPu*ISb@0QJ1ISHoC!J1d^$1v0w z_`R>B6P$%YQXrD;ZWG$8q7_)0pp|pAd{!4vPXOx?en8DZd9NLKh|54gi;m zpMdGG|6Eh!9&t=Ez6L|589mVJ-xkq@A?ws&Y=B?VJLRd69!}3W2i9ub+@HSEhv7R^aHljK>s1v;154;UP%ez<|R@$4b=L<1V@D!gs272XEzj@ZLp zdE0L0ZGas(#Yh`5mXq){CZS{GShz@)w|C)f+iP)pJlT#$_8`;591q~N<)`bnUi7RR zV{66{Euehecdu`e`LLz>aNr07#zu~ZG&V*?W?M7X`UJ3Dk;Rc?+hPrnd7!!rFE*SJ zovYCh0)AYNJrmlV;CWMBhjo=kB(3*c*F9@+3UBY(dL^%e~=FKh= z2*S{(t`53qotBLfbxVMqj>-9dGx~riZ_0MB-(73H;jE9uQ**+no^`XG_k&?H2cI$< zd)g$@2ImE$Mvpx5aAL^t`h#{Bzs^*wNOcBZcGcTKoJn&Ybz+O?J)M3>?3H+}I;xab zEqG;<+L+V%%z86kV`-!m$A$?O*z4K=ORT*JXFEXskTD@s#qSL)7$i%16zPb)75P?q zBe4q%I$%6x{-DVfYPU3fuSN6?dZFOsCTV2Nc?)}~DQrD-{poy`IYkQIuATAx`Ea(+ zG3s~{%V*~{Gb_<}?n5lW#N;R18?h!PFDQ`W{l{eI!dQCj)PkIwH*cPG2ssgW2S8A} zFo3qc197reWlIawln^6L3q?^#0obB-;W4rTLqa`J3)t-Y4Y`F)yst)s2bLg=6D%$n zumCkE-|EeQ(T8C>jrxlkegAlLr7^^*P`X1(3?y>l>J3T-pSHfd0YTjrYvgUg%wT8&nYr9=vT( z`c3bMeYYYv`oTGuqq3AuGEU6zI&Vix?g)7uw_xEk_89U@lzRc*NQp5qj^$n~oS&d8 z01Xya!9ngtrkcReVvP@si9Nef2GBhFO!CV+H>& z-5!yUZUCR^s7rYP{S*j`KStjra>tBwNbi6bUQ@jo^K(UR3UxSttyT~35B>JtBL%!=YVBRUl82~1w-Km<8( zyB+3G3>h^tbOJ`@T5Cw0(9dho2wy^pYmOT>7hxtF(ha9&ga!A;03Uw%5mWEm%56M} zwLFWMW^vib;=8$lnsW#%cr^n!W%m&pTA`?5sG!JmG04?c2(|Ovfjt#}i$XXth-q13(mWh4-EJ+qa!S(*-7ge1b7} zKAp(3&c)1x1{zT~AQ%eXvt9AvwM{^YVf{kL4ofiL25B4`8qW_@Vn!V!V=I=r<@qz5 zi={_?B#4JV)%$WLtx?zj3}gs(7uhL$(BwVd6UJfC?Os7G?nS{4Mvt|Fa)kOJn3A;w z!1m?_34r4kvZqGyk;Zr2dzVzZ02}EcGb))DG)V8#r~=C$5u`>JDwQpf$TO7jJy zVre}=SC>3++@G~#Jsl26>A)WB^jsQQ$;^skhZ9B{1;Cgvp-wf_!0)B;M(_a6g+ReE z(({~_i>_8!0OsPz7%XcuHWH^z-R?+mg3Ii@}E~pSDo8 zO<2^%Fzryu*|cyBk+)M`;2)G~^7eL(w~-B?ybW=g5>t4x@U|7+HUn>Kx?eMutGOm4 zc{_f`0h9PieTn;;f;I(a8Tnp&&b_e;+zk8QxqmRxmeJIX#&__xfC02?A8`#F0=;+P znbWEdY-rmX^F{%%jgk9nR%)sA`8vlQ&s(WR7@MKqC(or>d%bjX(&molI*dwYnpLLg zWvcdZ9J(G0%pn~-cnRGmkB*Ftz9lU}hFfa{W(#LTO-GNG%W1%-akj8V*A%%?JMEc8 zT3mwgiPTQL)`H+O)TS&l?7aX(Uf_Hd%5T;#?W1J);QOUfK>&9J((Ab$`?VLI)OxTkd%HTJO<8A&DHmPDL6VHtg=3Ef z_@3hd&BECZ{0jP-Me`FYpV>uiNNr3jm||h!SYNEA(zQlVX8q67v9g}a*o(}fMgL(3 z^oR=0eP5m95G9K5O~X%}K$^k^ykJ51cwvvoqw(T5RyeSuFx$$67!u#Max++y^I=zq zZURoIhkQS?RRpz!n`Kd;5{?>DUVP*cAA~ER2o}N3`kXBb-WQQXVbY*6b|ud+THu%m zJSaGi28Ni(X?p4)jg|#^0aNUFXDBqcIem+vMHrG6xw(Vh++$IgLzFGt!Z9 zPxNe}oPX{YoB&u$&SkF#4|vh*>N<@Xe?MEJ0)T_J^`KX_*xqW*3B0zH1Fh0KdAk{D zx7H5DsK@>(cw1ia=P10rMNZkT#rmcZIA7pxyqC_T-18CRK1K8$w1zY$GouG~ zCvW@xyL1{=41kDL?v+H8_nKPX!jOWlz*t8t#+7)8{kolv7gYWOm~$)urf2WOv_*p; z(pJj?{*=&}1+fgDNEf>TcsJKuOQsDNzgd@Ifw_?W4(ZKkM$iUc=w!zlC*2!aJ|{l# zrLPV4V>*r=e&msq2V=yz{X&(2kV&UV_utVyD-JJ)+=iT**FN^KkBuw|80tNuC!M|- zI)WrEZ;Qquv!HzL*&ci|G1xfZ4}j+(&KgZ)!guDgv@>n~Gt+1mu361tcF!VWWFzK? zIn%i8aZbzCRt#g1JDlVDhMFI*HGzX|)t#H~J<2q&_KM>&5@qaAS}^$*hs|mo(zsq9 zvkK_V_)HoLpk&eW^ZpC}Dkk4D^>TyLs^^;CI$&}*tFF{=X;ye2eByHu@>RXqZivXt zg?QxlBU}V*3QlHSH6>w4Xh#<^<*AE;^p`3nGF*7w;jwXM?HmIZ7y#85>lRP>T^_w2 zq0< z8>PsNsdko@vk6E*F)22l09zCv?hk=Y%eG|%r*x(p3D~h+D*m($H3gaE(`#2FC`oOX zY6_SMo{Y*JzpH@>)xL*ER)v9)cGSqLC)HxF&C=kY*UTjJ-kW%yPX{{jadc7KSSwI< zKF7i!0WdQ%EqOoYmWq5DggMVT17n#Q-P7)qW*=+(L*Zh(_%g zK8I25!XS+ofYWx2GGGs_0_60LVO?qsn0GkCnlw>@5gFQZoH*MDUPyLOGEd6^?Z7zZ zUbOJY+9(F;aUUHRo@w8`7;2Hpk$z}QFZJquU; zkQUQ3BW~ht@|Wzpj&r_l;_cQFz!u()2-)e3Htn%zW|nn+$=gm7e&LeNi$lE`=B zhu1yyj7oMiMj8BC3jmE4yX5VWMg{<5aVWM{4HX!R0RMQ>0VKju8hk$Xdyngb7K8py z3ifeLWDI~7lDBu+@0#^NfCB>q?*)T)fOj)C&9TGyCQaRv7PxMdMg&E?!YI5}8mJg% zlwxkInaiSKDE@8{Jpg@q>f<^Bk&YMYh_RQoaNVAuw29%-;~;Q7h;hW-l*;BcULf6y z{`YzNWnt zp`Foql!fdY+fT=vo3vW8sCj{Q4HirFBRiNgZZOqm%Q}3+}k%j-te1 zO?eTMv~Y{AVGQZD^wQw8Q7m|-Tx1R&@_*H%hA0IV);A@=6S|;*Xi_+)kWY&h-y38! zzK(*anVj=dLs;E3ENKLWHj+WSLqrw&TX?xzSoiSO?A+8nl{J9Qo?y=`)fIq%|7;W> zFt*f_h}4ZSk~!DfNh%D}A+`h_fqpp;pJP04)b^C{oYuU53r|T#L2#`aE(FL2#huZD z^pN)gl*NOzXVhm6d%ppEJ;9nRK_hda(8luvuq*-6>%n(kpLSvt5-a9uexsxx zq5ZlGwk?$n=Q3&}O%wx_LCYvkCmp0=fd%9Hpd1>mmLMk9VgWVOT7f@X=jWIYcxBk2 z>|l2(s{j(k=E);=P_(s{jY{5(MmKZOQLD5Ay6YB>;G>azb>QtxM;MmM#LV-O99Wb# zz(`{h-p*)F(<1ZB}?QX~^g~q*Da)p;bE1een19P>A4dM)+H;UGoctx4SrM49lCw zR=a_|aHIXe+aw;Vdd+1=8en+dqwzN7J3AcZTB6-;^0@G}7~e-F4dbB6LVy#Op4>A1 zIU^JYIki%J&PF6<(3dk?;7WKqoRf=AB4x=5Z_UM@mxn82{?6OEpE>pfo7yCTd*KTd z&c?%>tr`eJ_r~(o)$tdAcHLScJv?J52ps9})|&8YK1YorYpuv?1<)4j!8O3zNaLcq zrwOb^(A>_HbjKu~5#T9Wj8cVc)HEdLrC!!+4_Z>k!znNkvN)KA9<;nX;fB570#NR* zId7Xd1e+CfXz83xM@ge>)HBUifqXkzQ(bPY$bOvf;|GPO5md_%tVFx?475#;{OE#v zT7vbHI4tP+j`2Qn`!?6q3;Nq~WM=BB%v@wTkfr$Kuq=D=E5%huGO zOz<7MjF}te>s+2NzM=bo$-OQmQ}~CNkU4nf>67K+gqi&U{~ ztD6)C8phy6xWrLu<#=Wb#x!73koscZ5k1*ec=M#(c%YW_&sJ?-aBK18H@I;il#Lq|25$ z-VTzp4gdx_0s25RA;Zs59y}luyace(GI9dop2h^$Gf&Qil0n)Hy_x%zZk2B!UOC0$TSdj8CwryqBqSo%=5Oc2wTZHmW$p zP#qFRCsC_+iM<*nO@;GE^tWfrWiuJC@}%%~-ow*B*tj5Q1cO@h+B0p2e6R}$$gh{} z!PPW1~^2G znbYA2xr*lnJ%!`v6lqkXHyG%qM-Ai)2G0VUf(0CpWM?OCq+jKR?0^%n#~1*_htwkF zmgDf#Q$&z(u(+l&n~4#Yjj}@P`^D&<*R^>P%`)XjgIQ z;Qj$$5dXelea;WnF^bZh<#7Kno(|k z$FfF!uHkkKlc%wgQM|(<}HX62!mY7v5XaVXO+=^Io?Ez_z{5VftgZK;gOUZZv}O2aFP z;?Cy;N^5=gY%8}9LjgLi=8=8t(X9-9=asnhpfl<(OQ8tEfVBcX*z4Ch3hs5L~u{+F%*ZkmDKOJEO6gg=I!SBJ?q&~f3xUt z>{8H{%!V~$=okECjUCzmXkmDPeos*pJA^jDj9}{)?!QqUe;de10B%1)U{pXzxj+)uZE4Rp|ABIpmY8kr2&8?a|`tw z_iYLM8UAl+xHX*b07L(HFS!TCZAIWWcFI}x8nKpp45OKNLoLr@QQkI!#iUEL&@}FM z7G-kHu%{Rsj3MD|f=Nr>X4k(~4{cOFG2tZ>IvfR1WF!;v8BQQi5AbI+;q4K;%{8SC zX?zaG7?eWZjz5jg3d`ra!{NlWQr@PjbTknFCf8RBUI%&GpOEL1>;&IRzxz<;WPt@Tt z`W$;o110E6Q?=Y^=%&CGPOo&RA$pf*nxHLok4|@*hO2taBa`@BBV&!{JAp1vhbYSk z9p40OLytpmYjz0Ma_vBKdAf&TvJ;?Z6les9!`-_fOF?U4B*j?PD0$oXQs6d!n{pR* z!-;pq5h!I^tK*oQon#`5xaVeEcYsSgccxaYXwo{|G9u3xC&jIGK;ht+f!#2#IiT&f zA8@GY=)jq5Q#?kw4{Fm^!+?2ih-82uwbkdk7dpUrk^YH&s6$z6eZj=j2+jz0>OlhbQ2{(dMiVwFJ-GgI zOuj_}7^d3_Ry4unvt{-=-{-O~w$KOmd$I_r%bw% zIx~y~G>R^MiOJ7}t`+Ox8Xy&5a_cqHn|Cm^hIax@{O%LVi-*ghT?RiBM1r>=$?hmC{h}RUe%|y zJDO&bp~e(E&WyQ+ZtWv7<7=R8<-$}cUQil>W>kir&T}$76b>FFC7_Rf^rQCH-})_s zqKX?9BJVBl3FS54f6jBBW1sn%pJ|BpsK;cE|4Kj^W8IApM)Aw1_Z z-}r_%*t_5LE_>3Go@9UKKmLz{ZYIsSKzs9B-fC}o^P2-mxgef}kn{Ur@q(|gyYIex z-Tn7|@AuYPzU-whwI@CK$sx3N)@tmQ!iudD_nqw?0YHs_u|@_)ST6~jM6h0df8{G) zVNZF=Q!e}RLQ?~3;06SiJ%Ls4g;zi~XuCUk?Smisu>IPv{+d1idC#+FJ^R^)NR-lM zSO}ywMk7Jvc;B-4nVk@Or{RP1FZMCGF7Q@^pVWw>;c0_Ipma4koUk=9q%y5=T^Wi4 zFI`^+?odi|80mzv0Vr5&;xTOCz)>r zcY}L?YjZE1w@uzV8tMB%Z}AYxc#(!hLHC2c%R}qJz-d(bX&8hqHZfF`#!cwMsAq;t zl#rQlRIK+;C&~)t?V&m#Xn#2cLZ)$lF@6|PL!3KYzl~!74S?Ukue#^32DCv)rhx5X z#O4P2bgH4?GGEnXrY7I{+^6m8I;^ zy*{S!fW{b2Hqb2&Y;2tC{IQOC2;*T2)0A7J5h*U$mlW*ooTQjv*rqh!CZnq z3OxXXw_r%7(yi3T8vOzuoQpW|5*j;!)@N<=d|iD1rp`U(8MBn5aMbDd5KUoC$@xsI z;1D$(h{q_0&)9o_JD7FH11WIP6xjf@+4FrqT>RCnTTxG(GXz$ZRow;#DJ0$|u{Uh^7z*0Y|q{=vH)H*)0>f4VZWs)$<}El}j} zjlpyG2Os;Gz3Df9^I|-_!0x{5F5cTL!JjI1rnwoOo9i)Tj_-NTdzRArz4yJ(KKQ{8 z+B2TYyaoHdG>$>Kb%rngMXpKf9H38XBq8Z{ncO1&l$->M4-2WL6W?# zDV3Nv)*)Fn=qC33ygb7GDMRMid*M@hxIqsgaJqi8h^fP(L$sCnIEevh)Y7eGqKjE&^&H9Rp^ zgtw3K$Zp`h`ATCrz(x~@d;@QDEWs0HN9MD}peQx0aZ6(dw4EuA3AP70&I*l%CeDZ( z#vC5(Cf`}V?mLYN{H^@WSWL1w=YV}}q7RDUYtEypKVhU&--Z5|_e3;Y0XKDV3;ATI z7Ymx&(Y>peHJ>kd%(cTHz|4v^jKOqSq|vIZ1s!4h9R{986=2x)&OKbRV}j=^@C9^n z1@$~2)%KDWdqPCPGAf4e50!`VLieU7h66n1#XwYg-nBbl809f1#N>g$%(7;#q2Was zQBKQF9N0V88H0v`<18FP>Bc464I`_i3HDQ+07sIZL$rYOmhGTZ2U)>2ppj-`yjvQn zm_Lm$r@XAv&(G{%Jkha9k+WC`Fzs=Vkse6}r z2Iq7Q4_i9_6tk^8qoXJFGqXf)z~n0(EgDz&UPigYRbcW4ES$Amz~sHPatJ1MxnOcU z%iD*01C%^+#J|5{)NxH!6tQW65OXQ7?IGktS zEDu2Po8)P`tKqtb=JH#K*L+nLBS8UCH7lBS=Ed-2{T$xLqcg z9cuj9=wiWe{yw`n?JOu-&)L0KJjS?)ww>AH4@^Tsk&vY-fg>15A~=z0SI3;8)^>XB zQix`KQ7YX%bejOEHSV)L{pn9H*U}(@;9VXM??7=Z^a`$}7YTsHTDzurx+pSO>u&F! z!qaob4tHPowO<=O#l6)fo_p7wciDG*$9Jr-v^J6Ooaay|muuenj(03W>vKNma{`zS zp~amZ1RrWEig>@0u)Ec$K#TOn8CreUyWeeJa51>y4na3q zllk2_=0E<#AKS}b@>2VyU;btL-AiO@?oDi1fDvcP7ryXoR`dnn<`WlV?q`4YXYC!A zdpz+gUqGOFJOcuIKktJy4DQ>um2^85@Klzux78EqYktg8U&czW5eFOS+_Hy3Bb`uM z$_%C{n0v;NhVsm3eztx4w|{%oj=`{(b=;#f;-npV>2~|jhdy}u_u*o!(~HMctW+cl z4s?&OF5oB72kAcO@gx8>3)BNT3U6CG6vT!>xW+du(*^@{Ene%+7bd)|UBKpV?xj0f zJEnVK4`Vcb_*!(Ap?r#TKY5<=w)0A_^jo1MIQYy9DrANdrP1Py4=Kr+gldT=A3o{b{Lu9?VM{XfEd87Dd5>9^(mrw_<01J z&{GZ|(jXZ^C-_Ma6!$;1>-V#E-6`WKhDk4G5plD@bkGF?Kp%&QP6D8<(ETP+bvP4{ z`|d{B{AJMiQ7~!3TMmd)r>N78z;1Xd9}WzJ!8xDKLhbn86^pwwWo(Popu*coU4)Km z-k`-71ZREJR4$CaMKcQeaSX-gBi7Q51Fq9rkH!cZ40;zwP8-YfPJP*mu7y0F5fSZj z3c4Ke8NN5aGaY;>k9LAb)WqDnrQmp@Ay4q%qW&fH=hS;1@yNB9&a(3@AJ4=~h#cMC zu4uGr#6%+@k9_hG2f=4cy0D-{I+%=W^h=OmG@EGMZ>1vN->oolq7 z2BaC~B6ISc(P7E2e*UUciivW726;WXg z?O2rEySPbW;UlD_jJ%ZBsndf>p&!ibgmz^xO0XdFd$%tPhr&A?E=i?U7Ttx58d>a) z5!Z6&&3K3p7P?Ew%)gV&zLb0K#VfGZUjA=tLq*IrS4esle!*jT)xX z!X8Z_G<(&5=))hjCq3zjE1hbM<#b}C?YDpXw|!kNzyJR4|GvHJUGG}^g~-hG^>qOk5%x&v?c&><|9n57wSdL*lMW#09A^fAmLxv?3)B&bp$@ z-!pPDf4}ptJJ)yT7R*SjMe&=G8eEFaF6H7Q_-CS6x2hR8V&O0Bs47ZP6#_h&2}|J_Z6Y^$xnWAt@B*( zIo2=!;xCpif-W5A=W~4?c;FNE-uM3QTDvD+p7*(*`?;1545#eKA`Z=~~2;OnWt;^WIBqD4hPGiV=Ld#Bh%9 z0Fd*1kDyWSD3+(tqn6e23=D^zXOSRM?Jc=m0opLQOFeExx$xbqFi!An$UhjB=ZH>? z?p@WUo|wkYaukcxc8ILOp3nQ?xt`6^vaZRDku*9YUM#8CV}R8HjB{1T315>1i;Oj!Y91+AdGXQY)lJv zrkbgMww5712sIc(@W5%iJa}ATY16tELPtlBDG1bKv#fTBLg>qtKq%I(^&qK0HX4^T z{06Id0@7Jq(Xgk&yvXgGH8GF7L?AdHC@p_l8dwLKSi<{M!PdHJ8>XI^l}~wD!w-M> zL%|50sW(r3+P(J3#SnSj>t1JH_GMpYPk6!;T>wZ*)azgWI?}@jE+F;;?|;ADa{>6X zo?@n;z2fIyaRJ9qUWUcHE=J2+-})AN$=AQcp7!*ot#$Z!mq^I`{(}!bu;}Y+zwYbo zzRR@$suTFW;SH~My0|dU+b`gGj{WmK|MM2ef9C}hzxLn#`$cOLgwLqTo8I&$`;Y#k z7cn}7wOg&3gDB?Me*gDBYG3?CU%ck=MPKwq_Wt+3Z@u^Qr$2-9>pg`+?w?)2{73AQ z4?RSHUkuEyA=m)nm*0Nnjc>HydfRWUTBqr`d-o;6G^0!}dC5!G_hzlq+a~b8eEFWc z?^(}#$2;D+42Q4%+OJ!G&vF0!t6p_61pas#VGn)sA$!l|9)tYk%ILMP{r77<{^0lj zz@GHvCoO|y8XkZ6hab1E_=*>-u|9Gc!_WWx&#yT@@rh4bYxDNse)}>`zu_Cdaoz8s z2OqN6U-thAPxuUb%wwK*+2ao^dbsDFyVo2af6wDDd-(6{2~T{YebYC6)0)#e-}x>J zH`V34uU)G@ufOvW-TR+j`N}oF&%PK!_uqfN{r~^_|K48o;ul{Gq0cTf4BCXuNKfy< z5P>%=crvUXeBmHijn}%|*=wpu&g?$m4jR;js&HBwMavE+Fq&aL35zj z6(wo87pIn~Tj{vxSBGc>u-x<8~M@u17SrvCurXiG`^K!ERIU+z}3AHQun+SQl(8=O>OHt^e!M`3<-hxN$kI z(b_!rW;Rv2V;$=5b2~LX)*!KLo}JQ)Tu*~=5KPi(v7?>`^NPq`OWxJU#?e4lOzt=l zgk7U(zBaAgCwaUR^XghnIkS#p;W{TKKi|4lnqwp;&zhg553FMHr1edV>$DSekM!Q$ zTajJGkZBaS`5rFZ!sAX*tX@ueP(Pu_)0NrsD4er)W_kwBw{8V-7=_l=Rrb7R%96qI zO{*Nnk%2P|)=aB~|&Q2L@3)-wcFN_pT*@EC6 zp%7fLAfG%^ZYZ#EDsXg)gMlRAX@-a4!8C-`2EzThH>*D70!%}S8q+kmFt$AOFl6=s zU+Bp{+97v57|iFI9!iW0DIk#R048(YUiI^@N;)!E%zys7zKeVA0y*0c18jWPcl}@1 zbuWMU%k6nz`aJvcFaL5XsaL=H)tBhPQ|zTLeJS_gRTmKctH1VZ_Kg>y3?TFPd+xDs z`?hZ*&EPdZpV6B6j0xs{;Z?t2U;omV*u576YtH`@pLoFD^5(ZJ!2Ys7^JgwV`!Q=h z|LrgS;>GxRgMHS;2wcYW40qo;mrh0>zC=dmK7QfFfSGfd(Tgcq-ujle+B2ph(~LAU zi~C>yy4O2>T>dv}W~M=L*Cn#_g*F8) z!v*YTRBA>_dU(!X@RcvP-1m#tI{)gg{K~rS%fI|jTq0VJv;XiL|G^%-M4n#uvOi-_ zxkPT}eBOL9+ z`-6*-^tJZfOJrzD)3?6)&GzfR{_B_f{fCS3`sHgbh{&##&gC^bU5vzM*$ZCqf_2|t zzwGBUl0JGdOupu8zUK1pYnQPz*Z5n%^;xKlkUp&7&}vb@{jd_TR3^ z(pr;ob3v`YdXXPi1bXsbdS^40jv!QxocKPx|6OYa%^2kXj>dCZI~_cJjl2!nKtoIl zcfpIr;UM$dcSMakyOA{k-K=Z*G`u~My%Q|9s2_pBSLC59e$*UL$xS8Q6Qp|@X`|sX z`0PjdtCp$9Vl52u_11b6P^AP|O^`y@1q7rPExcBEr;L}(1-%KC;n9_<2% zE<~&779a(HHfSAthyCBfI5`%s`?JuNzFGPS!eP=qB^A*=>iKXQz?cB4=RHrAhy15I zh;X)9ZwIG_HFlb0r_`B(+2K$;MoH7?PYe084pKYK29P_qXO$4pUOUmzN6_fWHFu53Z)I)*EVQjA~oZvq+pun~2 zoYM#y*H+Xn4Vjy))^))!MksWkU^aLSMn5Z(e8F`D1K-j2<7h0#c;XzhwQxc6nqsm#-}Vk;+d>`3`h zub!tcz|vL%1vtv}%G^f?JQ@|bI-wH>h4})9 z{C;3=)Dr>7Qo-`91*x&wJ+%t=oa_CkU-I>qUaL{OdrJ{7fR~0|ll^yZPIyWJyv+jo zKm5Z#T+xT=rH3H9=K}seasl-dj89-b$NThWL|sbrvO%;)h2iM?nI5th*4W2C{_&OC z^x_x4Xc;kcPiETMOb`2|U;3qs@$(`3>}Nicg`)2Dat8d(-~7#GK+R%*)T-Qbi7rfo z<92`}KRMoKI*pu_Vlcn=_kg$XWz%Qp9a?NTp}dXK$}smkKX@LyZ7FE?cS$8m4M{=U-o=Y;cDUF zh&`Rg!ILhL5~Peg|M}0qL|cBx-uJ%ut?TDLct55KnPZ!C|GG;A?%4j) zg!bH^OodGuvP(z4Uh4~BoG5QQUGGvjpWrxo8$7GLUGKeQhVV96(S}{~j_El%%X7Ey z^qwYfH*cp0kUhT%-roFdg7bm5X;_69*aiR&!vTIz6WtKw(QaD!Tw9tmMawsV3hvax z2!yN>Ij30wNUt4RwtiRV6>3hjgVu8JFpVt@wZKu4v!5PtU)Shd7WEs&(<=rDjT$pU zJJ(VtB#{m@$AD~w3~Z21%_A&rIUF|1B2DK3$VVIQWmpB6N0bRNMceHwh}8~7LoU1;=KGqe*1823n>*ZDwiBW+KOd&nw{RA9^}NomAB zKsIP(3=RqXPSRo0WbgHUipg>CtJaU>rP(>H_v@JaR57`Q{DYx|{lT#*=~VG(?D<&U zajT2N&&ry>Ho=RAOg|8Vd%AKFauaSd-`N?YACy>~{A7GRdqltM3wlMMjX`?H32Cjj zZA>Z9apJ6iwK%79IkA1-V_M(r6cP;3nj8kyGCcs18+d6PV*3K0xS>cLLCwmo*oL}> zTL=_v=$vj^_bG(E4#>SUE(}tL-Sp z!sGq#fB))w1u!*%@2oBH&OW__U%>=iz8!_cjSLG9!+h{edz-)Cb1_JEDKww87w}BN zOBqYEKL5yv?_bfd`Pl^3;)GrEc>CMlZeRMm=Xo)3fP)!*m~}b9s-|s-r|W7&r=Hd< zfl%xvKoY%V8B-tl;0Nrz|K1I|X`Fq{B_j01Cp>|?hEz>&M;ZJd`#8do;K6kQ z?7`jWykkRZlq^9WW(9dU_jwOve1Qd~fg008Axi|OnL1A%jkhgi2j~XIfqQ1%u~E#e z18<*-g36TAMX%b^VWmF+yaz}L$;hbua3_}YQ`C@zykJ`1e16+FSEibVLAlm{PmeJG ze=$~ekM?8VG{sie4n~W6+Ou{9YlPzO9rD#uAv*63I#qlxvjsloU`wy$8txt*$twp& zUdVj{dj*ZVFwp0LW-OiuWo<1Tiim{3A)yA71zpGV?P!!U^>5NPYQO^cTWfTd$w+)o z%eY)no3z<`o|EIo?xvLE9sR=KLwoa8n9kz!6Q5BrfTXg=I~yfuuAwBs$N*AI%JnlklA@7Rfg{21t9B&KisrbJzE=)~7fpNNXx-SPi65dcEMrTI|H+ zU9j?$o5yAY;O)fYnPv^$ubBJ6VW-TUPnnPZ;Yspn~+ur#%8+Dz# z>|@?F96zXJR2T!ikZD4hquyoCV_M<9E=av|LFy@NBSB0MqZa=uh>g9b!2?Z`-GCaA z`xHo%Sr*`!bCgrrTYL`SiXzYkAk@fMdcaytCqeoAZP`CN*9*#LMM+{0 zP69Ag*kOLtD>51XOD`V&&zr^L&V8H{05{Lu7`5mVMiam%0G+nooS=MuHVviwo_!zJ zV73gNW4udJ@}P|7e$Ob(yvH|v<2SDKFa?sYe$8uE#N8f^d@CluF)fz(gZ0AY_#el3kf z92&YjMROkENSVC#yo-T2qdxOKb9^%maGulir~cHR%Kdlz5IlCh<>MZx1|B5vnE^cX z04v}f;fH;%bu@VY)UpE;c{`Lhd3)Tz+a-GGz{EjxBiNf^U`=fqWAJ*cJJTly3?O*s zq-b^9BdQa!zNLYOhz{CB(-A>AnQ5!6{}aQ3>l2$;)+y$*`OD3mw4gI$s;T?5Vq2@H0|>0ESg>58kiQ5v1$3 zVSa1OZq%mn8X!4zJ$YzvMQ^X?g&c388?y!~$LpZAM>=2XN*YtfBn1NXjkwvrfco&}!>JH27%AXIh>~S+Mn(&a zI19bz25^&k=H614nw5x(gY7d5`Q50#c9Pmjh!h=Y)iRCdaw} z!>cS+KGQ~2*D-m>v6JH^>z#UY0=bp;d5&fbf?G`Fjn^urT>4*G`lC-xEjsMlv4G$1^doA}e*Bx#sYVsjO*Tg$fq9-jbx z&&Xc$d(5$M^l`D~F$H#y?;~mt-N`}p9Y#j`)>qF|7lsW5FupO8<`m&5V90|S{iAEs zKU3PTip}KysRW_j%*6LJ8D}d3Bp29`y#M#NNd4+m_1}IYb?f^-`?EjKYk|z;=PqL+ zK@VdJ$D+~DS{REY%O{CL6mfE_AdsoRQzG2>{o8LObnO-CLZ}xp{U87BzuhH9D`Nk* z|JL8y`#;u(^mU!pUF@Izvwya~(zwDY?TF^gBp)EmTOOjMadj|T`%_jn=5Kzx{>nQ1 z>wopH_r2FR{{L~{=yFhYmo+1f)+{X9U)T6M|Ng(fodVSVV{TT-)o;({a5yHzByJP$HYbu z<8T~sP~ji_{lCBWqWri2@?UOzFXwlab-51k3vcr@KkQnv1{m``_E|zI~zD#*BG`Ap z-9|_mTLew9PBC4f_Il#pm!YQv0$C=mLkgNn^~rq2WX=LJJB`>{4iES^a^vfJWRlZ3U9CWx%40 zO|meMJ$0Ja?|d%_w^ZafIy+n<2$Q-8jjXKd^Su779q%5Gi}EvP^4i|yte(aII-FT@ za-P?+GieQb{ho;zaB|FTD_r8_H|ui_LjsmqGpIzx-G1-~4y~o&A5mk^TSl zKlxAgIxeSW?e$o#npY;|KmE`CGyA{%$N#bY$)Eh!-yD~JzGZHa?$zz;kN>ZK%z4k+ z(3qBpAR1;r7I?Kg{wsg=uWs_c4x{{gfA{b1a3{Rz*nj;ef8uNSZEe>3 z{&+?BFA_1V$AAAn{15i^+k5_lZw^6%PsrD5J-mqha(4daH>c(j%G9{|LH&c5BDa>b=^PuqkpjRw*I~xEX>Dh=lu8ngTI%X zk#TY})+G&;Q8^*93^KgdXSH(JHz@qhZC?4SShf4;}Nl-!E)tbH zYpgAC9eUh9a$*~XW5zrY+B}_^EtNf*uE7a90Aphtr@#+=w%&6SJbpJ3sKT{^#IM|p z&L`z`W>y&4p1lruu0|)0WRn@BF7mExY|YDnK>!uomk(P?mNF zK0O0)wi6E<-6bRJ61K0KaxJpE$24fHIghTpwey^>54(q=>z95e9ni^r04`@1hjNFL z;Zs^Zqt0)OQg6?eAM3E?D(3O>>J5}tXHaU=>0wZ=#o>tlxT$~B2@)uDmZFkNT*f_j zJ{DyEdMW4Un4Az|T+I059GZ35FC;Pd#99qxEHb;^`|*KR$OO@HoL~Su)HWl-T@_5TiukW~QBRThTv|4}WGj`dfzu zFJ8g(JhRFrW|w=7s7Bgtw&QpVI1j5lQnPJ3&h4DEN0CG4N6gaeI^~fgp}&xcT0gJu zrXOhf6`%2vN}ogJn8^A1?;J9fk*E+Y2>Y9$@PaQowZqiU3=G`<`Y@YD+!iINmmKgdacj=ZnswS z*K(rP-_||;#^3lGMSi!e1~FdF)cRW40F;n;)FoGCk9B>1U4LgPzRC2uF7~;A045I$ zx!-lP-=6Ie9YQ*ACbF@vy_z7b_y4uO_Sg2;mcPhK{Pt}<{>oqeD+Ut0=la`ot?PbZ z@65N~t=7e>Ol&y>s{`3`Zq^+A5)SY``6vHmI}@ub+d89X$@l62hy6FW&RXv^rj^lJ z_g~EgP!bkGv)2gc53F&ouit;WPtx__=LM~jxd+;=Hm^bV^8_sawywA2VO?{LWvx|l zrYAEHP^xewsVBJkUy1aFelz)uBLVyVDA)EPYs9v_7$rSNCc6uTBk~s8X^dxenvB>s ztI>YEKEt-^DqLG}kpY#1EROl=d|?hydh|{gXQXqCG8Y_KCHrcB)WIu%oAYJ9&u73~ zbXliO8XD(I0}w;7ooB%K1mxcl-Nk(o@W}OOE+f|`*v@$|%FBsu)zKiyBX#VvoTpQC zerrW$w!RW)YrnNkmSs(5*Eb%&KGUfy&i-Lj!2$Mlx85s0bS(=XGv~knVnCh0<%Ogf z#7yO}l6Ie@epNg>F_jY3!1jLrR>zAmpj5AiE!t&`#whhBl;h5$3Vd#nxtLiJwh7sk z;OBbInAh#thn;oe6*ghGP5*d&ysVYAW;~_=nJ_D5usZh`oAN7`iq#;<#!qmj+>_So z{tE;I#t}%!w%2k`lsNfXx(xX<`xsOn!8GU0Z(lga*@`!_NFsOo44J8G4DhHkv-eNR zyqu+0x`%d(9i`pI)&zFh)4d+x!TsV{H;|1Tj_JK*bQu^Mt4Pouga)<4z zauIr`V0*IL7@qN*A3Qg@wxv!HnR0A+J8b3T40>WcgOi8D^C>4k>Q`f^Z&Yj|NoSX%=%CyksH0?Gefh_2)Qgl0);wcfmG-r#J;$4l5dNwi*@k^ z+06)be4NB4Mw3x1{;g(JiV#OyI|U4pf;a#)b0b8G1(e^w?L6m~)GOzhxB>s*LN?WNl->Z>CEeOWSBITGR+PpFwfAbq*)lI|L zM2wB@1EeGxMu05pnD>3dK>``U#_+%WxBr&WNws7l3U0{x@8QJ6Sg#mA)@M6sX6YC_ zkUo`&QN#=ldm@%H!3oQ%aB3$xzxLYOGeuXkQw;)P`#f1ja?$lK4ZF>vFI@zhV4IuX6DJY9_n@9)yS>M@Z1Prek9%cA z?7%jS^@(k(#3bf@2DUH3cHYBCy5C_N-@~y&obM*ml`w2}KL}f+KSYw)0vSyX^J$>QL!@yhN=Lcdca&ck6V%;MAD}KTd2z zj;dp3rA;i!i|TV1))oI0J|@ou+EH z&nUAKVs8zOeWpE~?|^EKX_M(mCo%O$ym`u8tpD!7BlaGi`#)W7P`e)`*0DZlH4Xj% zo3Lj-))D(m)9D&9;JuFDuJP6N{yi9dhuxmy{G-e1>>L+@nCsi?it}eAAmV|~c=UM2 zB$m_nsG{}met+l*w~NML&B`8F&4xe@p)Wj0t;bhzdw|Ok$tq88C$Cb+LLDFNGWL)z zomfxbCZOEPyJ>!XvRRY11x`7bbYj*EZIAuAK#Y5KCRE$VgEOxr@ZG$5MdqHqjp5N> zGqxG9zom>#g2bCUBMTLB?Puf&Cl4E@?dY*4t{cD2X(Knuz3x-0g3OAOk=V(DfyuvJ zPVR6{RM+*|Vp#$?$;mqd_wA~Ci!k44Of)4Svh8Z@W!I#H&Zh=Ws0?Br@r^!krbERT zYjhI?K`-hK&1IU^fyYLoOCkdx!KkBC0TvtMzzaqzm5O-oIu19Sj5K)Pc}9O)ujO0W zMJo@nnyE5!-qNlvkSm6CIt`yKFc1xqzvC$ZRiO)STHy|Hz&o1-g4-zM)cak<38I4$YX-qg; zt(AFbvB50&Ts78FTDV3V5QVJIIH;1>y2NPb@8xH#t(N_mtUnBm3{T#Y?s7SEOSw`ZB+oI*00dGWdLMfq(7XH*m?F`icU9(e27QT9El zZfFsy!ShVFIAFWnVM*T-xe<&(INjNv3hIp}7^cwp_`W7{2~x7aqyAFh#@AJUCbu+4}vaRF@ezLW`T zEU!R@Sf6WOL1g5XOnI)=oO$pWP8Hv!Jze)hHDcRdBX3FK_Lw@Ih?vi}*fz@dkFc$B zs4~8P-Fs%jVOUF~Q?G-0K3dc!w%-KS?8NplcUZSp1%}v;`JMORCguUhD99+BrR^2^ zV*9!^+Ce<`J@P04+$WtUu_gPn?G~B$RrJ=qE%iIrV2Z3e@vL^*TD1WzZ43Q_z|*w6 z-#fjK-HSr(webQ-y6+We=`75~Ak%v3`8cUA>=oN7>pD+IkVpx-W1wO?kD6#rbSKM? zW_0NEakvAU?QsWnq1h}1f7wWuVj1xua)t&1%s!j>88$5(s@qBZKpEKeY8zxO)_A_& z&p44?u-E+j9<0CXDgW8KTUrLZSyAJ>ayyXG)ocBXBOq`tpoq_Y-*RBq0k4ld$H(oH zF=m@_$FyIOwh( zPPbMK z^f>hU!O5G;-_u(um{?;LWJLkhKxDbd0R$y>+J_wX$_4^mojFEu_Gcw> zhv!q}46=Z0Itbw0#D;JzzB*;G=r}0ICMhcZAMYKLT_ZqJsC;{tHsl(H5p#u8$!wFk z33oLG6#Esj!x%Oa9s;eL7mhit7~v$W zLMZa=43MwECJZKXSmZWj_trCxY?iJikc%d`()(s)*o-IL=KP6*f^0S}f6Ll*OT)ij z9sr2B4$@JaBm5&q3DMs)%tE5}I2%bh(M@~dBf~Px3W13s=lm9I%Qe-Y zjRNObE&#+y}Qmh)zDS;^H9%B2EYp0G7uuRcD z>X$=5`)B-_fNj6`E4Fq0PHcOd()NPw_&<)VF*=ws47m;)ra+=GJh0t+*62f)uB!&$ z)K(C#v>m{?8k$v`OXytk%N<)0XxlZml2q^)!aWLUc zJUS5@08f%M*fQ7_;1?G&!f ziUx_IR^JtvJ!(A}t7W z>Tmg(`X_kUzK)M!IUEQ!I}fX!=k%2LHCNZgy~uE`a$UMV=enkIGoQa_?8~93yY7C* zu>;opoF+IXIQs@V18cDL<6w1)scgk{@!9RWOa^(ehW>fK4@#JmV}*`Md1_IC&{!^o zb!n*^o+$&kCgdV@Q_NB6(As%i$tC-DcU8~O4#BNt&{Ti812BqR*PsGA(54LbE6USa z;pC9H>!_yjJxe|3WzU~*ayS|Y!hzG>sq@dESBts7vU-V_7fvqOMCGB`D4?~%$? zo=hE?EihE}hytXcZv-R+o^|Ld9Ejr2Sl}+6mPRgSaga^}*^Cd23BNGGgB}?+SDj$w zy=Dagl$m5^*1wqSd~Y~X&6*g#BSV2maTw6YODRr|r-JA?2$*B)*cn@=v zs3gc)_tTy)jn2voHO+;z_F5tW89m24W1Q-^Oj+NIn9ICjE=kHX>s2FIsuauNgK;gC z|24^8thwDAEoBYh02n^g=x9I|5LwJ9a&(*NV!U$>@g9t)wL*@u&Z%G|7yyi>Gl;pI zj6QM>UDo>{yJeoQ+NB47SL0dFKe2+>Btc;fLF)HBf(RQkVEC-gEu3rZ@})A-RAwfL zX%e{k2HW|0$;!qx6zff{g`b=JoJ7JZw$(7dVEdN6g=PfeM#I*1~Sq2gN0Cz^g(h-TJ{=X1QlHs&O*sa6DJM1yV_u|2S@ z^X1p=YzI7NXnNqRqRYZ|Nl>d`ENs8pU~BEA zRQ0q`dk#@%;vTB6J#2}wv=`&?;GWo{#!o|b{C$;Yjl)u` zMNu5gz~B~NsA)~`b$)RR0oWS&q zcBzx6>!k`^-#0`a@;%e?8vP`DV`RpW2fNaM0Nc}O7=e#>*dBsyCpV%;M4x8K#DVSN zbjtIs*D@69SPda{bK0la22Qxf%#!P?H7nR&R|d9Gzdfz$9h-*}KDjv?WxPsyn-D8J z>(v>Nx5g}f)!|m`);nxx#?I(G`rK0fwoY6PF$~?EDz@>gDIS9DX>YKN>V%=?NtOpJ z@2ttV3w|?_X{}t#nsz3nUAza6P?+<*Q_pptB_OlPcuw6q3L#>ZK(5PSlg*C6!*D&7 z*}UfEoq9IK<`NSQ5HZ^O6?WJ6PMA$Prc=pSOPRnmSKD82L%)7sOV?bUBp9*B96>gD z{+6~{BIA?UtxfXA%uIl;_Z@9({eIt`=XuK<-Wdo$XD<+3pYs{fb{`k)4D6MkeNxNo zv7VSCT@N%*0Zve!NPAv&NRLjI+ZhN>@Uc&-$N6YdoZI>i2{T~ouFTT{qsGJ*_1?wvbHz{IrgdC z_p=hW-KFelCYb_U7mMnxp@a0_cPSadmL zTSG1fa3Z2n4f-be*OkV6d)oafj^H|B`zanPO4Cqc;*QRpkq9VGpTCv>#aOl1K8zo_ zx9r2uP|F$r$*Dw^Dn8l+ws>B|tZ;zVa#&)+hR@3w*+(5j&=tTM|09S6l$9&MyZJn3 zyFoa%Ap8ycn{Xc(2-Isj+1<6YbG{gM$hyTGA}fN;!)e%p(c^s9Odo;{84kRhKHs1-3yVT!(0OV3wNljIPE~)Wgs4T)?*R_vSKc zm#jTVS7MtorPu~hol`d3KRygK@aRls5lqTDZu3CV4uaexH&g@LQ*>uKzAxBDCMu$e zy^BW0-VI>;8-e@sOJF2QM?ltNlkQp94d+nLIcc$~D)%m9>v_Z$M9CO*3~XJJYrjgd znK1rpw}EZQT?@VP;(SGA1$6K)`&k{g&~#_Wq(agac+K)4gzF|mv2JkW|aqPcuA zdc2*U!)`N*Jdz}{RdEw%zegZo=3L^uFC1dYKxR+;hOtgkg;UR6k6Y?p=MVFEy=Vn&;nsTXh z$OaGd){Mv zEjk$F)pf58u9?`Lm6MyX{kmscW9gB&m#?wGieYSW#2CL641SHe(+} z%d(%~PZ3q_A;2H<9s^kDR zf1VaK)Dm&TCR-V`Mq|~nzN5V-oSGTU3@oF9K8INRosrwb0~;DA$!ah{M%*}FWZOVF zGIDfXX=v2IwJUJ5#`xsP(&>c7Gqx#N2Ak<{Zla1~szK624ti?^`=$}l=7*D}&j!*b z(Oqk9+{_r6*`*6$L+IVV4Z+tf%dHuWjA4CPj+w1)jpsJloLMJrfv+oN*$ij$q~S-@ zZRxD&(gmD*7oEWIiS3EF^r<)+4YX*mg`Z(~h;kXBFExqvp(R@;ZX;(CORxYA9oJ-1g|ES?*&}y4$_P=MjfK z`gF-$haEU0v}XeebwXg5bi?wpeXxme(#%L=5wL2~{YVJ|oOhR(SRVuhF76>6_kr!p zPb?2L;lUHD``ysq*0y7Xy%LxKW>B3x`neYvBka%FC}xHuyk|K}*`&lbWX_!gA9IF8 z=ZsS2c>eC#_6^v!Gk7Z_viZ{b>=k7>5rokWuDUjw1-q`E_E@uqTL#BSU9|%XVaKiy z>L}<*C5q_Q6(W?}2+dD$z;KGvWG2bim|dhiEB%f0eI@@|V|sM&63G2*XwiJdynJwc z`<_tev&bqip8=RjlD*crH3o2Wyx>nurgl))7))|UBlMb`nL|ePaep`k+?(i^(!D~f z6*2 z@v;x=eav#v*#aMHSLNg;?D+6Fs%P$;%4@A%sC@F)4H41df`1J{IJ1<-OA1&=mnqH= zbZn^4Fl-8%8zQ7Up)l9aS?1C#$>{>0a6Pp>`Ir4eK0YQtrIT3ZhwCw)j z*LcJxvN>r4aQ_*?*o?*#Db{mkIZx=#p>Kb{|WK>3)9_RJDwl6`;vOZG)D6GfqP zoLUA0;oK~l;yzGj2JxO5+3Edn5WJpqJJM#jJ!hG92o1}_TFWxYJx{ksnC~&tvFNdR zA1A#h&QYx}x%be_if&{nbYx`=*%A}G&AouCQ`Bzb8Q@glus%Ffo)y$6x7d8XxyGCl z;rHv^V~EoUKEsGN0->;jy4ToshZB1^F_^gDcAefI)a0`BlS^8_ImB0OQY=Jx|nyZq5y84|9JVXuiGv5 zk>#9C#<;HixLBTb-%_SOX9l%KWTV%-x%2uZ%45H#BeBO9C5@1oAth|e$q|GFCr?L8 zlo*_t_3tV{1FyP8r(iv`yC-TNQ6dBa&z0PWoLL_(6Ve*_>4t@;-cpVGEd^6 zFOLRr)2_vpVZdPU)YvHb*-9twgR~;c)$ABMl@Ej<$(h*^b@7O|8`_qFQAosO-EI$3 z2|@x#&!sl@G>oVOHUvrXCJFXr zCz8^p&=76z$C{HQxr2a>oFf$nN=X24DAD~DWCM}+6nb-lwVja*k>r`A2KOg{q61XU zMOvS^xQF4&sOZe>BBEO!jmF$ZL^~WH1!Zn-+uu9!yo2~+O#o(`rj3Kk^86i~g(QSE zBP-1b>iQh9O@|y)iA|u8!l@MJu@tjNu%>&tY<}Lb$DK~P+}CKpQf9*F!k}UAh##J2Aw$p? zqXaC{71Gb@4=0n8F$BcW!`~pI1)1*aXM@J@j6;GM_cR25Wp$G{3XF`ByGU< zsy@JLlic2OP4lx2*Qb@OML)LLT)o#3gE$-kVu?%I!0OLf_aY5Tg=V0)Ou+hB+lzRq_lviF+M!Vj#ORk>J)Vt7WaQYm- zwQRxGmdmH#U8`U-pD@4XJk{ix-t3$W~mP`()M{cqcT@8LDTH!A*I)@2pVq zzeii+dn6}U+r0h;#}Uo~_yFyC7p~rO@6kJZT%3Z=y>`R9hOm`ScvU} z%u(v!;PENB#~5@X@i*=V@OSx)aL>urYkl8J2l{70j!91M*e{U6d*7lXCQD!9CL@&_ zg-ZBwFUjVIxn%-xRcg>hC7JxPLD@szQEaPm^fkoD-XX}fnZ4pP5~YhbO- z(wOS$$nLB_0rWIbDA!0wvPC5Fh(P9nWAUt6*AAl{a`3YD(#;Jd1Q8#9-wm%i=iVgR z!xn!W3nJJg*d&hl08xqT=hqLw3I2w$ zc=^vr{Ha2sB5%3TG%g!^gNSY2i;PV6*zSDO?y8yVj?5`D1u(Wbr!Ux!&rV`Hpp=d@ zKr}P5%rf9E*`11QMyMw~9~@t?4H@)x0A4^!K$1yZXnU}hmf6Lx!F24?LH&Gu*(5QM9HHv!uK1E9P>zC5E+kn4+y9o>y);j^@7c1w^ObfgCNjV z8r(oI6Zoz2I7IIl^{0t^H9B?cPbjGYA810f6gxO{F|i#0@%OruIt1G`xY}KUcg*sl zIZ00kTlKmJre>KZ@FA=hbT8hA{ZQ+k+SCJGSRctfaz-+GkM4EAAoNFn_&yzA8=Xzp zHQ*?qNyTHA;Pr53pT%D3nyl|vw$6h|Y?h=19Xvq~j$YVD**Lf-Tti_&OaVFv=9m;HSO?W^p=%oMu-p>>J^K!jK|F{g+gUi#7cQrw#kaR99MZee8q9xK@KN=pA+p zWymMfy# z0SjxG*T8y)Q;O)pzGjp`&1pqBLzzM_wS76BQHduUUal`Oh4CaIjHiMd3nP+pkK>F3>}QTi2$9Lif!H# zQOU%=?2*~ea5IAIy2(;D6WhV`<`~5gVN7<&?0%jT+mQE^IV%R=bteKN#0=ITov+Y4 ztqHbg#r7s+Z?J96%G|$TdvL#15*%P#9Bzz_`hf%=?@^t43%0XmZ>P~-ug5NVd5sdD z*oLKmu2CY7?sj2n6AQk+{)^P7LaHI7h}`bKp9SKuTXqoml#{4Z$mR!4_C|~dsIa`m zTik~Im~?hG(6ttsr6=Y!O-T>H(J0tVR2FyXioxxvI zoiE2M1R(~u!S~+4Msy;0NAps1-4+1iyD_;Opyy3ohh4JZ-4{AZ^8`Nt~{ai7?u ze5GyIpSmtYoERZBzmJ26k>-r_(kw+CgOs;?=XB)d_uIA%KlBP@Y@cAv1crjzO<1-c8p;rUjxS;CH-K{3(jid@PNqx*#td@ENSKPypCKs>R_Sf}-ZNBF| zf=MP$dNyrn)T2YNo$}hMb9Z7pG4=-ASkLuJ5?HYP&8Fxc!9#`;+p*by8~I*?DqvNekB+wPlffG;?*7QrKQ z^R%9rL-#;4#Wu;cj}>Q?#2lFw9mhizM+p`sF`c5fwPAwVZKEDk*-d9T;8*ZfME&1VRi$2zIbUH|I&YNaFNU`7Q& zDg*_-hTZPC4#+d)_O3xUmzKr~j*t}(Ygxs_kRWUDH)J=lFC?!KrR8Q-C#ZvlW-^Yy zdhjAbfL-PwUvYn~!(Hq^!{h{F*S<0< zofKx0-ks_a0;U3oNU_%1<3%MKMk^LyYZlRq+@lJuq|7o+DnyYjN9!Wo$D{`fco{1q zFR{+K5G@H|Y_3IZvshKnR74roe!eKDn@1GJ;8eMi>{2%#qY{GTiWe;qRe&+)fGbDB zdrTLK-1G6gQMYS`j%4JP0I7Fl$r2m0+z6?L2xEbe@A_M1B19bCchV9NSdqIo41WK{{>5cCAU~CL`9^ z8$fwNR)X1pREi+~tqERRZtjCTnJSFlN;G~GjEG1=p7#t0+1}WWJ!>#dJyPRM$Jt53 z^~Cuci*d{*1S5sZtQZ$4dpJaN)=;9f9EB%ISCo*d6S$*Xjn9hj{d^83sg|Ef=Wf1c z@IWwqx+4l5kvzpVoD*Oh^1LpMfX5jW*#!R}Xg)<86J#>G_1KB+6W1iPeg?pFY=?|w zXS5(+z_!~yWbba0s)Fs2<9v5skwf{83-bHkbb4L!+ z(lST~oqh`;7&3P(DQCH!lE7B5{iMTwNro~1e_QVS+{{1nB>26Ct>u2wB=(J^dM)N7 z32O$bCW-hiBW{+$g6E8LuHX!$GXt412Cmf6bb{GZ4wzBZGN8&?n6)37&C5L;5=jPD zQl?@|J)KSquHYR+@g8^F?{okVDA*%ul<7-|AI|>SWtQn=92FbsG~KfIvju+{S$dqA zytpr(#mDvJ`9}uFt;b$hw%>*wRIbE1U?6AD$0d%n*k66^zWBlSMGu(< zs_A&@9-2JQ#ZZdn<>}d-H+UwUh{$LKHn}gRb{1^%b8_ZM!@4@4 zDeJG;*33`Z_zM9kOAG`s#wV5F&4amuSq2d4Bw_B5q1y8s zg13y-Bb-9EUnFn9+Uu#dh~@)`>iFXM_dTvCF|!(phe3jJ0kKgh6J-#d*7bWqA?^1> zvTn~w zl<%=15EpC5AtTsiOZ-JCONq47i9?`eic_AYl8s~-3LWo(fk<4-c*|zVW`=Hd>dcxb z+|RHbgUx$B#JMf|L0T<)0=Aj)_&&CAUtk-XynSvUdwybc5|~!AyFZWZSHi2#v(`bxnQFM(S>#-{eT&#kT*sV!I2rk*R~B zE|GD;wqg=voB_nOk-GT}DessGIMch#sJpWha|@@?=Q%ogg}y+r5aV5!cs+x-PAo+Xu_MLZ+19lGT5*2}3kEcO*d00h@m{d=YS&U9{XX(>&e7ul^jxfdu1 zH1wd&DjT_g{=ZCJIj{&M*Gx)q(jG|Jn|lQvFolUqk2c1EyT5Q9vV6M9-q3xC166`j4OaPsxxKrAx8&J4xjf(SgGP-UosmcwV69@mb^yry3teKiy_6;Oa znCbx=jqE*MqUi8`F*l45_Eh?KRtR=pct*w|2?$ASKqY@pfHam1%n&%1(QOLCpT{VU z38MU}Ty`XIDcH`vOu2_(yrv$#rk9`H1|r6~!Si%OogRB@l{5soNx;sL_0Q_y`m>NE zW4gPHJC~`^*@6+>%6yDhLJY&#y`3Qr*~{k)BBbkRMj~ZWwis3QQW_ydbT*wwgYJm>db6_s?;W<&*)S(7kge6)^y+#( z2(iuVqB@UNkG)_UvY2ztrWaV(_t=&;?Zb@^ofo6i^ak5Gzh?QnXOI!f0vijcj8ts< zJS}_x+pr^RU{9Qc-q_|IhIMAihhOt&v5knc*@11V*jD5H>hKcVI4+1 zLk#vF$7el5&DX^V(qoeY!FH_a2y7!e2Ir|YM7f1n&M4tDpEI200J}Y>rRmOR0Z1zTBO|$r&{H6+wB&?kX*8so3^`@YPt+SwwOiv`h1pl zyVj8@nTc%;R<7})b1JyS^S;wL@#7>YS9#smQlCIa@672{&;HRl1uto`4(Y5YwqZNs z*)42to_S<>`;u+k&)B-`WejXSS=u(|6sIZ9a0xtaqTb%v?faSf6Xe{Cd$YEzWT_E@ zMr(c60q1nsmt21}v;jvTEX((d`)stlsU8Y@+37fS(`*@=9!$}XTc>2T2(x|#-&TqH z+DpA{Mex?vSZ#sUz}@OzE$pkZ1KZ%0ejboNyPsLqxIblZ1HLvkYGU7^f3urcs{xls zlz}NHw~4?+Bevsvw?(oy)KCsSlc#~N`}3jGCEG}ArgrOOaNyvGC{gub|5I?$ienWj zvhb+4j?BJ*02rUt_IMBwMAh)STTCeXreFTAm?aJ@=z>oL=L(sY!bupJjMb^%kP z-YPjnq%Z#4T~J`mu6lZ@Iz)J8jk>g^-g`UBF4W23=K*MpLBWDAY$o0Bo$kpaT9l4J z)L)LlG8vpkj)N|OV|ULJxL zwi&S!gFhoW=jr+@*4gXwb1q_?$K+lrDBNHj85L^L?FQ)rC9kermLmB0W;j?^566d_ z-rRVAu=rfpI!$!=8qswG5q%hlt}6yUx9Gh@v z=Nart62iR=YVKDFk_$Q7V@G+7<#V*gc9g&c2$jJ}5He;Ve+&TleyAPvmd+oln5MkqmAK#YL7 zg>AH09)ayWcUs>)BZy!Jwj-FfBgs*kYs1UlIKIW583;PDuYB=Z+m{!QNBVJlMZBrJOw2y3Gh6~ zT#Q@Gi*or)Ti+&;i^)xbC)s7}*XTKxQGz>|7s#>_=Ita&IU*aopv2i;0u}BgF=+P4 zjrJ|Mj$=EzrHOvW3(koLXhxFpE*Z8wt=^b%pz}0ypAbrB83>?*mGWYoQym44TY&xo zrt-Ws*weLv{L2?ZS2ndXuq|+AUji^)+L=pmZT*MqFdHO+wAPNYQ}PxKjCW&3Z@u8) za{VpJGF=}%qtYXZ_&ft{Jk%HE#(u4ydUZe7RWsPoiH_e>_fAts40dpRZUt35yU2rH zA%`a?{~FnBcWT`x?>QAtu6yUw{)Qe%9XZpJNIQsYZYSq)6;8e#(V<%&C}&ON89$eO z;rZS4&5H1rbfIvdk47CX9KJZ2_VqS$ccwFwfK4me3xEs&+XoXZ&-$o=PfuDSsrVNL zrqu}WUc}u`f9_5RW;IecWTLw4HP~Rm;XVN1s2fS43^fat(-&j_k)>%?fT;IHfO*m;%$NF|h(E0#wZyfnxyqJv?Oa`V1VBG)6X)rBZG zBM7I||ITpi{EIMwbA>KT_h4B?rjf(ot$C?R6izA6H+AzA~7z;*_rRhNT;=F*(DuZU}w$6 z$2yI;U$L=ovVCuiubY&#xn)jCwvgdw8U=LnwdMz7+MgPnZz$Ae;Vc_VUena4E)r~; z9T^dSJM_&Shmkby=QNy~uE&Fs z^_EPnC9%E-h^si$LG*@<2@&%VPFotRzymP1}0%8SthVH^>CY_$pWO%#vrxa?h9<*JREz)|f2Eb^IM7bC0@-9@xn&QxafAd}rFh zymVj{It4##DHzejU`!6ma*B-`=>3-&+?pVf;fREz8p7}McGdgo**#~KOJdhJFV3&} z;h-XW(Q+NME8Xjw(Z)a?y76!BRp7B*Mp*i-CCdj#k^7ZQt4RQ*F-x$|Aha5E#%Iv+ zjk+tIBc^je*E9wS;2@+U)z$Hyg=cL%#(ZQ4wZYP3IIT}PY#I(I+PC{W4x9kO@(X|EMG)e2@LZfbY^C;|10%ck*Ff2XE5a2PD1262t@Bz3ON{Rzkn3_ak^ zTzH|xTVrcS7~~`u+qinR3S<_72th)+4);i7r;(E|EI1IVI2lGV;d9fIfI|3jJ+y6{ zA&}NcG}LhAA&iY#sY;M%Jm)xQY%f1Ui{)80xL+*MRyJXTyanReL@u2OlV}-gkz>Q# zj+)7H?`Jd`hg6bgNtQe2aA3cJB?-zy25+1iFJ(22WB_Bj5nT>4vIsKDG%|W9vyq*E zI%=YsSsGa1AffwUQxI2w7(=!Ok&vAGW|_r-xx@AMoQP4U0|#Z?4bc|gOBGSk3>|(Dq}uz-h{#6 zVje=qL1KA$C4&hp`QV-qOfFV*X2x{}wr35bM1aRX&+Ih*-Wu1lg^N1CBu0tC*)9 zTmcy=_EYv3$op}4b!#TFz&&j!VbjmS*813`P4}3o*MOC@jR<1yNa|y+UlPsc8H+rT zKK>t3;rp(gkaR5E1kcQTGiK3{DWo%savxsD*Avgx3b_x@AUKH&v__yw$}CAP^h>dA z1{)_t(^#t6Bnv${rcBS(ILOn`k`69H4yWX2sMfBpZ>2 zLYD$$WAx?_nC1DYLC(%9K|XyFC`hX|aSP>50+b+_tRvLgbd5@U`SOe0$D>a?49XV+ z0I;hwj`3hH7W7)sDZcNBk5BI z3C{@U8j%?7w!${FGsln-SgX#g*Q}15Z!iA|vM~K~PzZUZMOd-*U(a>8Qf_H5TW&0b zAg6&JAeS&Rd!?HZJ_lST>$!X{qkcag<)cyM*#66>XQ?Rf2Nk^eM zw)+dVTVfl*FY54-WK$hj#Wrjvu}x==Etom~mt<)&GuybC8zeqp6t=k)@|7eg_JB%w*!O^ScLy`{Nyt6+rR+08 zvQ(WqT^++;`f@i$W*lyhi8`pI#xuuHzT_nEq3H)u#~yDYBf zgdE{Z_h{|)yE@Ny3H<>Mb8>R57uVY72o*dyH27YXAs2+;tYKw`h5 z`BZxTJKgN7X)=FyPi4C@UZpc5qEryvTcV*5>?GX=n@~6L=@|TTx7ZIxfH0S+(ap?A zW6F7#)J#S-xlUMvIK(TvHOURM;XRYWgmK5H+}IMVn=w?Atc&;Y4`Gq!MxQ>QDoNtiPt zIJ}Gw>j$F9Ob59goJ9PziJfA*S8VgV1QWRnGLhJh8ud5WraVgd;AG2F$P#{jhi#JF zJB_4{@tGvaQV#e%_4%jRma!49l-0yGvI)(Ke7(aq#{3T32neLpX(X*Deto_9c`BpN zv7M3k1KaAHzr%GGY_qupboqO1k4bDZkl=IQb8|5RMhy1Mw1XM-wz_`+fSZ`-(2Knv z*p78Uh7GcS*0%ccXew=+>J>a^hl8*POQ-B+Bt70!bP$4zF$usY4iMxs&bQc(6im#Q zCGK`x<8?T9l;dP(cii^+5^T>IoBh3<4&{fCA>hW|=;rluB8yDuou#8}kWg`gtQ0c^ z_3sR@A>-7|P?H*B)JuZf)_ zw%MlMKldyRXl5bYkU{di>*abJ%d9vyD>f-@kjUWr)DSX`AbZtat}AN`_?DS8b;=MJ z#=)C7^c(k9*#Nd3qh{=?c;)<{VU+t&yW7g04tHkP384n>cPpqpL;jn6~*`h3I+8&Yf7KY{Kh4r*TqcEc!# zoi(;p1bOlKK+X1ZE6FQ2iTT60^VPUHJ3$`Nz1GD5i4l%DKi7Q|J!#E1jpPHZ_Eyx+ zqljM#kH$sd=XGTQRqqS~~v0)B-YVh(+zdf&+ zN_$3@?!J>isFFa*5DCSd*IPq}a&~O=To)=~&O7GQ(%EO(8UDV8yq)XF2AU97lyt&K zn#_sz%FlGXIceEOAI2}EI&~d@ZO~koMJnHsO1UR-#@Z*gjZVy-10$*MtN;(1gUmWs z;ow_Ff4W4D5E;z(J2UfEuCXrYg^zXo_(1lO`v*p5mXJO0F|7BZgBkV~Q2%ffGv=5$ zblKg(43J-VWFcd{bh=^o&ZA+E%qWmtMk&M7vCSqY!1hzHJ*ZoUV!OY=c64YyWy!Vmnqg?RFtk5;(-XXS?mdFUn3@uvWKCv+TKPR4s-|KQGCdQX0L^g}aR# zk^LFGflt^9%vEPeDgt6XGGwsV_}3y3fowRijb;NLMW(akot_{o&IwR;vfjJPb^>R< zX9!NsECk9X9c*MQGI$u{f>Q_%&?4Z_3)$_F0bm71GfQl28L}xPl^jSNUaW$PmCxU9 zDiQ1747On;G2ZhyxgNfMW9FV-tzuZ?`PkWN3v53~Ak%I?^4eK84$*+ln0|;P<&eVD zAVZS@67UG}PJ0vVmH+{=UcJd?{(H~kEq411NQ0;1^KOs0zB7pbBV@zR;Te*_tPVe9 zLGguWTi4~@6gV_2h1)jh$>u{K=X%@-0+DWed#(q@f$D<1w^?!W3;7Qns+@c~kkIeS z$&Jp5mX9sRVc!cGxM9qi_*2GxTV|D1zmk))+l zxrkl8`ksy_UL>F}(6y9fuU*z2udzp+waq*@PY)_sebi#^-ydnjk zGCVEiI>|-DA(t)31|S2I}fB?^1sOW9UY~%QQ8Lxh5_lw8iBy769_Ww z?7H+~&bLgNx5oux)3o%y z-}5FJ4ML~&<+#rkotv^{X!moge512QBsFSEd30k$rBAɞoVqBt$HK(fBn4Lmag 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

    2ofXT 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�*oStsHF#&HRIvF4yImK-awTDImVos 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

    @q@#`z@9Q*RL^6p_b%F& zM!V9VN@A*s-20Rdz3?Okf0q^r;M z@wsu-u^hj@MrNKXPxb4i_dGR*r~3R{y~oe4k)M~0^SSH%DP%8pUe^739qkb*DFo*V z=}2gr5;`sifK*8|VE7UtIrcoHiEw>|pTWYVTI z0~=;$WyAx(f=QBTO44V<@QwrVI$sSCZ$L5UwTDKdyOySxaY|jgmfDn#=3&XmR%0Au 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̑w^^{_u20SbK4)BdUfVi2jfs^MV5sQKQy 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 literal 290135 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

    N z{oCw%?wMI;?#lwt z3;Xlnxya`OD3IX-<^c=}ru7+9c}JN!eeP0S%QJoa^w?aTwGL6?T2uy+HRd_nVH2IL zFVs{Ybm+u{^Cy*~GjZ zrw*90ab=(X^MC%&r_Yh`kT1!k7zU;-e>)D`#^T@q`+vXxvoZI-{@4GSc1bRkd3|wQ zy5_0Rp8NjN^$H>`J?p98-#4FkDbu@x=GIzy3dFC#|M~p-e@mh;UuZ5F3h_(<$gP#P zmM3s&DG8jWXRV;wzk(6s*;(Gan-3KvPrw}D$^C;7YX!N$p4UWu1L7uFU39Ji`btVT zI*{5acL`u0O}yo99g+nOP(aF124F?&*d+rJ%NB;QMcdYibv+GD^e9>XIWy!u!yNfe zQqvKpZmTnZ7+d=G`$1(Zk3VpvD`I%m0RTIAYo}o0dQ^*X8SB|5Q4KhKu*(#x8zi|k zUw!Ml%?61_MHo&}2F^>KhFDt4RMKZjPJ0^_XUBMN8A^^al_4WQQ~fYx6Ws_IN1CU0 zJ&l@&)^c2xjN=>w)BxO&X_Nux2oY#3a)fDXC9p^>toep<@|3+Q5>hG!8{9$W$oDjM z$$P)p&iRPz4XK7q^AzkS?~eh7jV0b)$^&rEk<*3)<6(g28i55&ilM{~jPSmrT~0$U zuj`W~Bo^C7U%SMXw!_hwXewP+a!8p&z6VP$M}{)aSlHGKQ^1AlhJ&A_kq7L#W8?fz z>|huR<|Ch9C`&jqJha_pA`#3phj!(jI#jGdPwLk&*A*)rsmKm)D@ zcx@p@L#g6!0JCKZGfNZ+7HHiTR_nv^{>3kT5flCDqP&8dY}Ka7Js!LUuw)}Ovz(8Af!tuz1KfVrMlbCAw9E6U>p&LLR* zu$V&!;iuC)NUSWXx7NV}8-IDpyry5LWWd+Py0OXDmo`@nEE{mfC%_U$8Og?wU2F0R z{alaw){v3ptbCgDaN)iW#(9GKyxqqU`jiflQoa;;e5ksz3c(z{O@_p&Y)Wjs?E2ahbERN z4DGZJpgB%^!?&h*7`Y~S`0ryav^5v0q=D?taJOm9&?j4+x9`Icp^eA*>g_5~TUb*& zkc>FK>4<1s_8pjwlikV~b8Y(RV+t9j84q@nU?<5$4gi>I(*E6G8Jgk_rY*n0KzE~I ze~^%FL;BIjtuv^8G;_|WehA6Yqh8#HY;u71!n^n|jn`62^f9_?19!w2PN112Vz9ae z2KqG3MX&;ls|PA@nU6BGfMt$RXO1ww6p(WW8(`l7t{=p9>dtk?ILo5vKkn_0qOzM{ z$#(d`Y`231WoLln)gd_BAPVo^?BRfF&wVkJ3ikt)6HG!KP&-Q=$FPqBZ659m4wBYn zZ-zlp`i}lxv=ulGeg4A;I>DGtB}47ksvq4HT(@hA_KbCG5h+wttJF0Op$srdUwjU5 z4}GA}Q8>skF=!C`+!l7dAJA(I+$tBra*GaZ$xy>2^LvCL8Jz{wYg^ldoU^2nG7NY? z<6|J8wGOL&Z;`)SJ!yFXXlO4C55ToO`_(JtEk~JbEkM4$&}mQF<(mHLlJ?c5en%^y zN?V@BLjR4w@i)pp`6vIR&tv=B0JDA9wPfuasOy+}?t6ZJ>ibKe_fp=M?q9#x>-6^( zls;94^}e_Ly!21!-P_Vywo7$cuV2&poOA*ziHvK?EZW2b!)#7DItxhXwP0(LwMyM= zJu}2>ouPKo-&>gwI`8We3v&tJlAx_*L zJ`BxglKVB+(INN4QO<$;=-^UnAVMs(XTh- zXl6C|A||wS1BbG-K?+4X4#TEP6;FGF-Rrnyto`0c+1`DP1OV3(L|9qgZy9BzOaR>H z%wZh6t?xCL7`UUq%Qi9GbUwRmqs0)lXWSe!M4y-GE_Vq=oev`UL>6H`-S4SI8SQ?< zCEJ!!AP(Xy#`^)RVu`sxnf;%SDaR6qr{0uW^<9?wbLwS)b{lQBjq>AIN0}76(RW0% z=)iUu3mi0J`B)u4`Sg>J1=}u&VNs51=e>n|h%#>jgm6G{3n0D6#N@u7L0H3nW08RiS5AXL3Z%bop0mSH? zX*9rXIsk4HD7Wiu!S}ez$JnmHVnZgfh2ufWKl*m}o(+dn9!`wBgpr0=vY)VWUe|O~ z#L~edn(Y+^uT3V8+nllzoG)Oxby2qOjBU0$z8LH>WwLDxtUKaZcb5C{S+9pjsa<0~ zuNvoHUBWqVUMT95;L5JG@oQk#fUfDAE&ahC{6VnCHdgF&1J(wz&2iAct{HBB`)~j4 z^0)rh-|8Cq|MuVhThGt>+&;6hX299*wXyM^{?mWzAlt^TX`JnOri-@d9HwG`P_YP%kynub-n*7)_4Wjm+pP)+3%CoSh!S8M6RAO|_(T zdY{7X+GT{%n(}N*ACEHjymtwSH@;IxHM<7T;|4&U_*Po(4ixFTeHnYsSnvAya87d& zJ=VX$n2Q+@485g(5XR7^##S}HK>#c-);PcF2O854U5+VHGRVJ6WJ-d?S{2lLKAcYw@ulO4}MHZ$H1{A%Jf%(gQOQ&7+ObbA<2PCrhkEpMhgSn>`Fe|Bl`Hhrmgtq{f*!K!0?H zJM%m1L}s4;>}{|O!!&`opQ5-&q%oSo@XmThNYlAB0Qkp`7`5-(o_~9DTa@f=AQO zPX*+NX&7G}!~kgkrZu`f2Ti9{^wn_Ov*#g~=&ZH@N&~zVeaw9vVggVm?3c)>xu$QHo&#exCQYVceQ7}0`px=R!IORVum07)Is+PZpS>_`+}b_s;V1@#jhSA* zx1ay|U;pbqFBz9ep>%#y_Gw|MGZ-OV0;2l&B>?$0(0wUAckgp~z7J4;7k2wy%lUQl zSb_3o0AAnv+&WMmtXJUO@p&Bpw+S$XEv<#}j_c$;tq0r7e*FNBV-eCaPprGtF@Po4 z7x|^-_H`-eW0KGJq36_RU??Og@@s1V{B(Bobz9o4Yi7Nqb-dGEW9*G!-`(3b{&6cf zYq176VD*L6vfR+zjw-aV-QEVERl;QC?f_-a$Q7=yO>Jt|Z;qWyLZg)dicc19P{NdL zL!J>mPDhQt>%gTrASKkAJ=@q|1Ax`?6=Mr<;fjj^w1`qsQch8a)Frn21)LgyGZ_S9 z%AM67qMY~?b%6FT%Vc<05i|I4)%3pHGE{CiB2K4q?DUW)gwf+*D#lAmBNg@&pl$is zI&JBM=2+x87zoEh?p|;>O2|+)ccSYoa@Xv71POmu?wZ`*-VE(DY$!xy35~Az{c(h( zI|TN!zdfplhNs;JM%qJC5$)RRbKmprkx5R34?d2Qp34B-dhn`EZ?jG?hbO zGV0OuJ?-Jx$k`OI+v&)Nag>_&K6=KEiAU$~KCyE9`51R$INo$ZwuQkIr+khvy@kZ+ zG{(i4du8}24D#37g4S@wb1+31_;G(9HF$^rolkvv$kyvzZS=oyv_FxuZ5 z%p8lrfah<%^U|V-i1%iDK95;UxfSCO+CEJuVy&4wG%U$JWnCNGkM5ZDKlFC$b&k zLi@vHG+=z#R*p>yz&v$Ji*lbpie2};?|-jPo-5=0t4o&{=XXhcaz27+`u<&$%{BZB zNH#W&aW=-9h#C4l3F*_N@2=_VrLSWQO!wAWF0u2;@aN~HsB>9S*jp~L&n3a4!?Ttk zwTZz{6J&BvJS3zJ^3JYXUQsb(b z{7Zlu+TcLUz}8r@p!dgGkxK z&@0(D!DhE~kPCZq+X7Gn+E~v|vQB%xUS7pI*o6)>Z+qJVa{YjiE!f;`L@D8Ln~V@v zLORO&lZU2co!IHu?+*iL6MC1S;FzU`QDDEjuGa zT?nzajo8?&r5}NxAnnr#Mjf1Z*bc+saInfhuuz`e;bZ7_I0Ay<47-J&+0Zd_H25bY zEOGZ8do11Ey=$SZKQJs}{*=_`TiGC8T`qPz1LxPTznXNlSZ#EY%L86aV9q{+1vWu= zIuGUpvy*pW3+DLEe5OpVA7XNh7YYM|ilO(#84wnk@;yi_M}ESlGw{v2QtQ&MZBw{A z>VOVe%ShU`EdcdLV=I9+>w{vH7mXSV1e4jroV=JA6}(0*4`UClJ4`vUP_R(e|<&soH8XS!7Ox7A01v9fx#TxM72JaN3@ zS;?LO6yws?CP2MS06ke?12qbuD> zPv*xkTIygE37e&?sOJIL-5t8tl&TcA`CGPAE6NzlF2cwcDTkhL*d6kW%^UG->0gTy zay;nK%Pq!1m9nJ4Qv!fnN-eKAWwz{lq#^)M*k#HZBvoqxzMYsG(Kz-tF6AZT;`(pIz^KOo}afpVqnY$P>vnE{E{@zw$PbKS$#1k0^j57J3hAhN)G`vfF z=lv-8r-19sH`c!piHdC3k<>X3D}qJ^d!AdO4~L(1{p?hc|=48UQ8 znp9N*@nN(>hS&8P`S}_+E$*?iZhzkm0PV+s-;XeG{{3g4eOlhUelz*30jMERLn1qN zbdFt9ed=StFd4^?_c?qxOebOU?tMAV#{l@-PjImZfH#7 z`5`7`O!n;%<+gw5x*4o!rORjso(sLtsWv!3s^j8n_4WZDjsxCFR(=j}poGK3-W--`c+T2f?Em03Y=)%jr zb9&;or9OLvbc=B(!^N3wa>tM=(T)m)^Qso>Cpu`xV%4@DpOpc23HRq37&cfaKz1wJG*E07u9H;GtzP`Gqw}ymdD_{=q<2n4CJyMSkw~q~5 z5aFSYd4k@V@OBuOjxX~337&;B=;5%9=qV0xJ@zwUcaMc*sQaRYMZ>Pa2>{(lW|(t(5U6P&rN7rP0IikZV}vK*&*&Ys>!HCj0DX4Z4~Jxzy&MA^ zpH9IFuY{=;& zopcvFCu*K!r{4` zt#0?*@AlJJXS`0$`s3uAYx?%3r@)qe{v06tkf8Q$&t3uD*Gcc1$J?&^I-vPOlz#$0 z3y6N7{FO9> z&fs026Xjj{Y~ZDcBV6O~jBMLvvRawiN`QJA09n)2OP2(m13Xd80LlRQQU@>{K&aMm zLf-`NQkTAv4{*$5xIf3o&|iXlbLpHuStLcU~QAZxLOf zO9#g3aQ&I%V2cE^4NE5bwzZK32(br7a_v~g;y3-(Viz#SZpXdnIh(;mOu_2%$pcRZXp1L3|9$JnyK!SWDw+(Q1* zb?Vz8$h3nv8M<_!1?c1yM(a}#1voUe153Q<>%Z?@fP>uU$@Rv5s7RaM4H1X9!g%JP zXyB__w@D7t$J^dQ+v{!K#+diiBP*2znqx>u)C=#gZDO+>{QH=4e6mj@DF$5Pojmcc zW5*#ug+P4$=5=5l@Ee$`l$62%*6B}I3)}?uVy1jj<+nep=2s{Edo%1Lz83~t>9 z(6R%h$-{mcIH!z=)79CM(-L`x^^JRYUK!_KW%{}r=WlcRI$-td=J6q(^-c49m)(G` zoA)K44KOOLO~4AEkk=2bX`8X=Q$;vqlFOo5Z6y}R_`sj;;IZZJNe>=oxS$jZNq`T3;;yAqw?d*Ru*H^J3q&_jHi{&*YSlMMvaiDN6!ZxdkrwEtTcup zR!vAbq@C-A{yiln-sXoV zB)fN;c5G5lPKdeCPLGHu$HC59If;+~HtTtgd2t#}w)s9t#vPU%U=AkhSW?sle(fQS zbML$Sf=4ac$$@8#GgQ4ruwc*vGL03+nT_ys_d{U)umq_F!~!7qmaMQPB6cVsrxSFt zpsDWEfA{#z$QUrVmfTZxScan>e!2|uijKdZn@Yc#!aU{eMZV4T7W)(W)uFs zMLgxGlGJ5pi<5~@MzKX3*&!yuwpG#c);c0|v;rJof#A(p2eOH4+!x){^3*@_ID~H4 znbC*A3abdGuM4#8?)`e$IH@nAd-!!l+CSSNLI!fc$(B0h@B^x@OXjq_906iDv>amz zV2%+Tqm~SlS2F`&<7$#^er*lMIM44G#zWuf9d$SyTz24wRt<2L<7oJ98Ax*rCf414 z7#nhtlEl?vFzViJjsfhm0}(6GNDnNcY^|4Ri|v{gM&}me5%!olm~o0nSVc&=lFY2* zo7q`0cWw4KM!g#kkr><55lrF^gjH~c&lvzSSPSj8o++VzY^Qw>DeV8p z-rFrnjvVRP5kOXTH@W1@u2yEBOlCTk4y7y5{a=GjXOh{Pv_B+gINenV#8)2fkGn@C zGApaQXGo4Z$eyao1Oo8~;Pp3NcLyBfAlfmLjf3Kv=20z_*wl3MXOjW56VF(jl5fD- zL+kBsSoC$jE*^zM!{cc`7(YNV^@8JY=tZ8p+Gi*wqzu5BtbTY>g31A$e&d@6o6L4J zBy=k4kcp4Xg6LBigx+b}l0Z^{^@PS4Nr(V>x#5suNS%Olku9t#JPHN?EG>&c+3>Y9 zhWsuA32>KV5S`1w%cR4Cv*2}%bb>#)qn^bVG~g}cN6K-=F-tPkyY=hDJHm~#F4DH1SGML$U)F$*QGj3>Dd^6C&Z&c6ZDH1Es^ThH?Svt{s8 zM??i6#H|L1>%SN)n6xFeQTmp(<~Y~Mw>|QMwVBk<7zz%ukzKT4v?0toNZB+SAz|ox z^aTS~CnKil=duuDO~FjZ{RX0?Q6XtG<{4>P#fL;1l%n$4AI$>Dch^nD$ zfpBxpq*u+sw*tpLA0n9$(07U*i)QPa$Q^=Nh_E5`2o4EDq4=E2Pj<(de~wv}aLBY? z6{2rsDHDcRUB)ODITbnA%sV8VLAGdUw522i1*JprU61O%dOVAs1wbbyK@Nry?7kWj z$Zcirdz82ob9w;IfK2(9BTqn!hhtg{B)Z-#cL2FldZV13j_nLtz!Dh(fG&mlvSmS= zl+Atg!G`_*;fEiGf#Z8&mL+yBlYo_muA1$OkX%?6z?Z*&vJ}}YS_!(Xu?C;riXz(~ zUYhhT$IN9Bsl4T#9e4IEDi$aif;4N+vq#v_aZNek_wXM52A==&C4=5;!0Cb+n*h>$ z%sn9b7D$_c__g1!)jij7t(|i{bHCaJC>ra?FJSKR8AM*Y)?Clg=SL+2&ud`+E#;oE znah0KYygZv*bJG2@A`YAX5(b4zZ#C+GwcIA$MXpWu~{Xq==CNUlNv1!rqqCPw7oc} z&SAddRcdT%uD)bLh)j8rt!!#cxn%Cre3s(+)pG7z_?or# z2Z-t{Z0f6k;{Fabtt?^XdhBegL!8Oj1)<;7#)94FVJ#ZC1AHPs$N&%a7h|K8;s!xC zg0>{NNf9FG^PXAkmf6viO|Bl-L@1D}s$O@CWPJt+HiLc ztZCjCi&woQjHB)8cxb>SAt~u01I>syt@?eIX0x`j}2e6zE1bJ zZ&%xqXs&fuNsi1rnH&91X=C``b z;-iOq``|j|Kff^C+(0abmE-ZzU ze(Stz*E|}-`7<8i`MPs|=f2-ljtqc%N;U8>1LSh>ng5;6<)>k=RImT0K-Z788al8% zHWX^Qb_Lee;&O)kJ-{{hA!HQ+r1i2bNf7M%)~{t~-&jA6LN$T>>_-!0REq0f6F{%g zcj$2rI?Fw6lqX7mF?PAysfuqhU$c zVGO&Da{x0T$Ji}u0}%yI#o=&H8O zEexGaK~G|_u5J{x(o!7g-Pc5Z-_6FNgWvQyGSKd1XaK55J*b*M=DEMqPY&1@e|N9L zeNKoxUCRcJtRF<+aIolxj*eAptXTz-=xH|_d%&s!#YpvCNdiu3)0onC6p>sQ_}3 z#^%s=n;9y7SKX7rg-Rg$<5zZRuhf@A+AT}$cH!UV24W>KQtQ`|f2G3yha4k}o+Q7h z)iEUsh|R9e^X-+3CjIgojnm<`KKe7adw&(0@GYdi3T+(pEkdyoYppMSv(ZZoH83N3Eq>7#vyLtNS zj~_p|EJCg&)*TBsLhzl3ur1majRPpxlcFI^9{L16T53uhE~QAHfBf;!ZcWioLEU+@iIx~w`&sI| za}XZyfG@qiIYA|Z#t8#!fAl+u4uCq_-npNi3fbDhi?kVtBYatJ*J5MPT5OfKHbk(n ztC``!wd0x$3-SwCUBCr0ln##U`2M%Omv-xGcd#=sw7E{W`So+ef_!a2E~0e)(F zC-f*DEf}-K61wEAYd~bFDGXnY=of0NtRBLSuyGp0I>OBKl|3QM@W-H(kRS zusgijdg?K+UCK#d0%b0DH=wj`4VxCup&Xk-^|E%e?2^yB;jr&U)HM%}R%`TOPAsPy z<_9yz6fa$^79isqJ`NzQ0IV=cg9a=LfMhq0P5?)GqfMkMbKh~}~LWYAL#smOAr}R`%ySNrP z*8w{$?GfEG*$H`Yuy8!nVY;#UO>E!MFL6A?`jptzGDhE`YW#AAs2WH5&euTM(Z77m zT+h*Qx2|)~XP;9(2hiU8{Via6>$qFz+;iML!1&truNg4>e#AasUZW1rx>D+m_7(pg zz*bc$qjxexUO9E@t@ykI!0mc=^)Z4Ac%|=CQ0R>@<0rzfPxS*F4avF@vj_06rsXy2TiG|924SIV5YvG9>K)MUJLqf?t;x|dBSj@K&;wu^ z*N1`{-m`vw(fQl$c)Diw;8feOOzb$cGyF;FD@1GptaeRzDn)zhhRCY3&MSEyo5B=%syNhc5 zb>1zj@Twqv-@`{BkFiQb7taEi4LYucAwcpW-C4NId%;4Xp4jm&mg^#zc68OuV@NFa zAq;TdDcFp`j`ZQn;CmK3NGKIf-XG~B5k;cCZ3rVL;J8`exc+L=FxEtVMr8?&-&3Wy zB#1Q|K_HSLv**<6OV1oQpkxJ)ZHS7Y3o;GNIr7c_^wUR=ON{l$0wy*yj&yu3#|ZdE ziqWkQTgV!PA}l@)pR$#oUKnTQI$I$O01k{H>|O``Oiq!VJtzfuW<7Fjok8t4kDHt) zA#auF^)#dl3t{u|`Kccxk`J;Q%HoIBmutT_fX|r8=K%atM;#)D2duhSnBU4TTdsjw zDVcRUD%qI42CjyeT5DJ9oZB%omPd78`~F_g{@U-?u6YYEk4)ut1L0^KZuRN4>(BM( zHrzUX0E}<=?%>MPwQsjK)=n9Y$%h8;)%x>~e6sd2B3AHU0J)*jGFPB|TQ0^O0M;52 z7lJSL_36i!Bne1S8d{m|i8hSoZZA(y9)cXAmEj)Xg*ddn#kjdbp;1>E0J~z%e0KFX zvaQ5RTv^zZ(U$pap?MzKz?j=SpN&;44II8Z{8HU;3r4rKA(k!VRkLe_!`HZ`XxA{F z2~^7emL&u%{atnn<`s6F^G+TqBSHhp_YO4nh(^G>ig|TsuGG#Bh|_aGer884m%Ow# z;D<#3UDC;Wf6Ty;vRHJjT&>@0C^gh;IB5BA)DkF1H|52w$9YROGf{*3eHeq)O3sv8qFb++C{Y=k4_ z?rSgB6n)MPfOT0sDx4Z(yYGe|F=ia_U2_tlq=K9Rpa>upkVt4YY1Dh8u6bZRne;$| zZr4uH!?f~%mU9G13#4jH0s7u zetaGvX?Sbt<0K-^yRE9D&RuKskfHBY=FZ{`vb`AoK`)-n#BBF#KAd zU%SRN5S+g|y4DOn=lYJWdru!;o1=NIZk5;OEdRV!$F()k4v!yy=F0=-=HDGc`?2vt z2juedRlu7oucf5VmI|~UTQ~2#G&?`{9zdD@u1Ecw#vxv?)qzALMH%PJL0Mw|=pUe6 zzFSr@0|xU9sO_5DRClxENFq^MfE~s&_pLL5-kES-M4AFP%^B4k+NQQNBVktGQm;M+ z9qvwmucrR+&%=GCIqwk~6jC$)p zh&fu4ewwwjr6>vja=y=VO`XqApE|QF-#D1Ey88RNHJ5idXl=?=uI9+6Q8@HEo5?n` z&g$S_o#`S;hhQMp=PtezUoie$`T?jEkRHyOHQi2meqb@}&agg{{ADyYRQhsk_@et2 ztRerIF(^TuY&@2U@`U2QPh7oVdbIpz0lC#p!?C82#LqMCyA z4yLQ_3P@~Z@RF>V2V;WI4s4s_o@VpQP6MQ=>XQTGG3QEB=8$vM+vSpE@wKxxK_9_l z((Rnwu8(&~1q%zHM%Xk3v`?;U)|}rbXLglwKJ^KsBT(M_4O1+D5tcX0H+TTCP&l8k zY}uO_i=9CNbP6B^U?QhLvVn|(Hp@Un3dM(HQE-zyc;DoloGDTIFW>$7&p)Zmqld{^ zd^-k7OXHVp!$A@vkT-0RJs4QXg zcl2%=b^5OI4jaD`puUwB&i5uEaWHK9X$*ng9K+l>(F~NVfo3iUrKgVd!Fal3X0u)2 z7P@t1^_zo8-t(LN?rX``dzU+rH4;gUG0ne!2xR|z@d2QO}%IM6HsECm?){jO~fW}fHWJ=y{ z$>39fq{udOU|zuS3!_Zfmn=jlA&8tKKo^jk<32-?M^?hkfhA0?d{14E4=oS80-=<&W}XBRA+e9mI+*9la^BKI4aMt%s`8_8oh z1GxWaf2$t))T5dZyBfoTF@O3b&XHdpk`9T8v`^~)Rz9!H04V=0Yfy|Hk_g?ZBLggU zOJtph^v8|N5)Z8WduyZ984sPj_4KV=FM0g#Irg5y9PZ&BONi z5$S{BTC)cE_Vs;jEfMA^sK;;|^mVBp7d+id$-qAn5aey&dHs%za&e$5?-0#75Da;+ z=wYY;4gu0-iD!A}Li0F;^Be|(0$z)TvTw;S7zU@*7Fo^qq*wOwaF81>Ym5^B;Mt@C za?n~8>|=y|& z@Z92rDQhV|Z`fs_eG15BysAG3c#1O4!ZDuan@Sc-cIK0kbyY--5V?g6mS)`ht!KXL zV7G>tnnmsp60@i>5XVtZjt3C035;?x%LECC-1kVa`N%bl@OBwogv?c-ss;7Um zN?VN#dU?w;w^s@dRe5)@U)!AU^0E2(&o_MwR^)>(?}HC7&sve(sZ^kZLtQB$N!X)3 z-k%cDADlgt@yy%N>+0I#QpylUjG3vWCI^& z2IC9E+_qh}&Wj~Z0X&-nUop%p`P2TpIt~_%O#d9Ww*6!up<855YP}G}5|L z=SzJzA|cIDGUOWF`7PlY0BGNdsM(oJ!>s`#Gx^0WMud%JF;?3!hZ1y)c_WOE+JFpr%NR2>P)_@`PFpceSQq^>zY0}VI<}GY$?2x z!l47+mv)^^zM0^W{CYJQJ$^8}57siUHBaHI}ngPrX z`Z8N=)h1EEoB(F|U6?RA_V51gx0dy8bE_mf!J$ooy_RzY3<#JcQUzLH{;^2)yHf`p zELzt;_uS|TyhZkai~?y0;8ffD)E5c$u#i4=YfvBF$WtOz+_USM08I+0-}h)1-MP;e zTl97Hg(ZnpvIGWDO&CAw1t@2U2moCqAyVg~#jMouMH-O%-Q$-#2+COe%fI}~R|n71 zzwf{Q-pAwDP;RlsM@0a$tn+{U*MIGQX8?8a(y%grhGT||=YRMQ|DpV^|MkB-3QU~< zN@m%PK=XX9qtCw-oaT1iTh~3u9UU_Rx-S9WM|1EwZF;Q^0H7Wd_4MN_Oy+!UwXa&L zr6f=~9_zq!_=q(!lBLmy(b+EgF|O4PZZ7(0K)wVB&+B+z6Pf&|Afx83@CF9Z9SzOS zV9Gn<1whMl|4)DVV=$!-pmzsiBv&YmOzNY`7j%5kq_Rcd89{fTD-M#GE3Q#&TxsK$ z`X}EB>)NFb1;$+GjrT%f>N`-UJ}al-{1)*sofmv?EaCMC2GcYaZkB2;~s%GjN4+q^b=udj<65q$@jXjD5f znw#T)2ezdQ$uF2|ZSx)mMj;mT?wVdS+_Y8Ro1J|YP)nTWZg>>0lf-D*K<*me3TEMi`+ui9LkYBwn`48dfB+oklHlzN~hUfxSVfVR%tWUND0aIMk4FND@>qSbAu#rR8os}smP9f+yMN9rst;)AYn%|ULe4o1($!a0MwdOCrT_jbj@Mm zt zouHGmiAbsaETXu!^5?M}>Vv3C^V-&86P0A31G z2!O}}E4VBX6MF*K%)wwNrE#taD8tCw@X=vQ)g9@J^E?Q+_VHUHU3PD8-o`eAAe`ue zx$N&a#w(3KKZ&IbU{}M2s3Q8sZt{_41`)?Bc5V9ZzC|^R6O5MT*BuRG#{dFI?fnaG zCn8BVJ=>^T&+AET)21xBWv$b{mn1_#g2FT^E_nC&F4)Lrv3cM8J)d{Wqb}1=w}@fQ zy|P)V?z)6DfcWIS&Ln5(_mN=~0vB-aD1*HmzMB;I5fZQXb)yDwHp3Hyk-DNmBspRSDQ$GmQuL~gJ+x4xXm*dc{0Q{7h zesIPaHaCOS9=>jRAps~^2yE>y_5hNCXQnJvtORKrqH(Uv&4o^yYfu2KqQ6lsau@{i zkLViflopa}=ENtokr<2F=?^DLw8QibeVCm8$3Onb4HF*VIleR6W)=$zl9Dt0e2oJ0 zj8R0^$j>Qq?#~IJ{u;_r|MF)t_hHT6J}-ZsjkCGPJtz0a{QdkpP7U)5<4a3D0!ufJ zySJWe=Ujlm8vu2#_qF=oGA3`i?)(|gmWy-rO9M|W{mbXHqqB}0IDm@zjNpi?0kTU# zq2T7Yzw_DzSoUMne@nty8R+P_C4rE7ah*sfZ0%Vh)^V}6@nQ}@r*-1T!i4~FyE{lF zr@Va+P}|x?dpa0334((a>l_9FI%0Li)88Zt!eW5P!}eK+=_T=jw;hMJ5#c0j6C%z+_^E*ePSMrQ{HsG~=wl($bdJ}q zSI>SUVO%H(C8QqxkhXm^OhY|tqlKjCJVd)n_kcB4F@(wtY664({k}w~I>6j!zzrWS z0rGv<@NQ zq>vi?WB?glR9g5sbnSD;agT27g`B5!zcnOE0bDlD zy^&+^FO&|uI~hU{`&uq}if!=-$_|EC0h$bCmMg@>#-e0VYm^2}Rx(;$#c#g6-GUXI z7p^W+3sDTouzBESH^3PP(QAo*mmkaImuq%mCkiY$Kh< zekW?nd|duJm)BTJ3cEu2TKU}k-CW1q-g^LM{wy28ueI~m=huMQ(e>T}aC7~)+Ia6g zytSYA^vjRs`*wW%e6Ig}<(PR_!;Y}u6EHWhsF-j%|4QF|tZIq_OlY{==hhOltp)as zhhGNI<9dv1bs&f{dMkr8#M@0GpOVEgv`aN^Pe@n!{}Sr5~nB?gs>~T>kJfB z>yZKwb#@}u--brD7>jD1UaTDsESG8tE3`7$@N9H!=WW>fu7z-B5w*hmT5U`U5g4{% z9MVMDyfr^Zn9UAs)@7J?j26IQ^K(k^Bpx+nH2W5b)OutGq#2f~8}MHXx>St}(m`0; zJ??PE8bl|7l!9%}_=7Ng$U+s!B86!I=xzLan({2&Hp)~c`)qTfZH0(DS=c`}Fly|Y%bXCR7bBjM<2ic-oT5ad7%Vw9w@Q1> zXx!r&gbqH(;nqx+XVqjsX`7{uL^~mNw1Dw2ob=w)pXf9pDjz@-#_80GJB$wn&m zcLy=(bad#;rRcuCvQS89)A zr*(D&o}-!+F0258Kz+Zm6H&~{=oCieS-4yXR$AjPUyr0d2QxfVN`UQ5t~o%g#hoFMZs<1u-a$0NJ5$z((~aRF^Gs4X zH7Zs!4)>C^(Ex4ar9xC{R0}Xj>o`c0f#`W%XYYD;HAW(0ibf%$pMo($s+#rAA?ZP? zq0FuUcC)DVEixN68&8x8+-r;7Cj#Jms5=XSu-k5m{D;ia9poBrVy?2%A=YR0bnqA} zJ!bV9Nnl9eCqyL}51AM3gT!p54EF$$;0EBVmO~sw20^~d@$d+_rX7Ctn?yk)p-095 z(;tk1#?h%ac-vir*8e_7CO>2oeb8+nq#(=C^DXeUfocG}PknjZv-TL^ zoUKs#2iTP;8*+^N-7OkvuPvg`La$!8WDS(_G(Gm}6TbMiQ)qhBl3v{*k?Um1hqB}f zv_E|uqbq!^BJB{3td!5yPu~j=e=X%!e~&;apUFJ_r~mYy`oDkt$A7#yeg>9D05ccX z|7(CPgYcua&Bq;G=cu2#-q)^u>+|{i8A!hdW{<9aPuq^_x#xNudvwjK21+{S0w|W* zU}(A0^!;3a0@&$Tj_2h!v)sz+MZ<3Oc?7uW^D?fN_-B<~96f#xvvoQ5BM@#wo149; z@nO*yc4tj%w6)aK<~+`AYFV>uv=-^8OGp~}xyF#z)WFSTc)d;gnB}h#qRW`-#l}Ql z;QMsXL?RPyKhloQ_AU|kH;3rzV`uAZFdD4CnugqD5C*;=sdPa^9B2khmyk+AIfi>PAk2Kz^Ql2)oIot_!KqZTzfnHOWdyxFXJD zJ)O4gJ~v~$VK(VYF_2H7g3}r~Btk+_U0dz)Z+ z#`zpMF8HjJlH>=)Wd%}??r>LUqaFB{5`aG$SUK)9`fQuNeyFEO_mtwvz+CDO*r3+p z5)m}p7&}Xi9RkLvnQ_VWyDX>`ljxKVka>>r9K!e!8L?(rZ2tVC9fU(JrB253;^Wa$ zG8OIbJ`lV73xHlMH1f%n2Yn1mDk`$hTRX)Qh-8LTen-QqlYEZ2jjfqirp01R+M1^n z2>?q+U-XI5Ey1{I7MzbB2%9#9mZg{_s#JOwjZ;K6B88hSYp!{Kz+6kc0LH$Uv4Hp8 zEt4#*kn^9c-pGox4VH<7WYP92>#b~f#C+Daoh_#0ZZQcheWp#6v=MD<)?<~|-{o&E zaxIC*&|^x!faWYYc}w}+^ZwS$40`iR>3StG@Xgw`d;4k` z*y5@$w^?`0%a+W4fYM@rch-5dA^e>tA9hCA``w(eZN@^k)X$RVt_EA&U{;riyr8M9 ztNYQ|hP#!^qLd+ivlNX3U8&rGVFwqrPWQLfgYMOg4*e_=Whl^$ z1>{L%?7xeFR#;yJU$Hg-EUX(qGHVM~umiU>vi?eO7P$fXsu>G7AB#nxZ31a1#HZY{LSp4`Un;m{+G`sHA; zBaSxfjW(bRP*!^PHVSF?V7h2&A2}>KtL$KN^(=ip&Q+a81;;%;zH=;-4R66PJ-zok z1-aljb_NvmKfhex*z-Ly6}s_M)S*|pf`p?Rm}$Lb#Se(-dfFp@p%aOn*qAczaBqC)sT~5oii!}7?S0VwAh}K&@3$3)|VGH))TSu zq!2y?&q@KbfMDr_TX-hH$XfzZ@Ped>Q(%^B$nlYuI#`$-l>;_T2QGqq=W{Z!mhv0% zE=|&joPrxmuC)k}^XLn8^9O<+9}gY2K;%5OpGq3>-@c4v_L$9bjclO2fA_vG{I3;N z<7|D#9WkQ?@Y|L^~OSXTy$#39ddz~}PT z@xKOy|CY*^^dX;n54--Ba+~=df8KkZ9TCU1c5yDiWCVtBp1utB)P|HQxm||&yEFol zF4?Nps0JgjpHJiEtDj#2ZEB1cn=*0o8?pr@O7&VIZ}|A}CuaneRaR%Ty2RK7NUUC8 zP2*Mkebe082)3#vprWmdXdE^7pZYAp1_lfI-ns-*Cp=xL)%%OXRB!130`xedQn>Cm z86vqaeO~QlFW?1-!dAv-i8`d2zfl72F!MN9;(X>2wpswTNMGJ!F&KNhv6E|^?z__^ zWC=mY)qz>;eO|_ODy7FbPT2<;e`hl749_-P!)cFms!deC>Y|Q`fOZU!STE?~i@&q` zI$YObH(rkEPHmPho9G$zE12!#7z;eW`r1AE3D@7PPRJ8IR+&{@!@Dux7?hfQQs?f; zw7j%W6VVhOWAKx%>$nfyfzkjn$yhY}-LthL3?v*fgDgGy?g~-E)Hn!7O^gejD+RV1 zl}rr{Q~>>Z%c&tmVl{>vP4z6D&AT!F47BlsP$dB$st1Tl#k8BRAMS%pUezuuIf$x3 z>c{MShr=I1+yT$)WRX&#*{zyW~6o@eI;AhKI*$x?%>8fmPN!Br2q>&f0H&=b_F7VkF>ns1Fi- z$RX2U;;?>^c*u7G{BN;YZ!KRFG)s}TO6=loa@P4Zmusx(%pB+MW;QwB#7F1l-)|K; zP7>SXFp;;)-#TcP@+Ex;#`ky*=g+Ryaa1nOF9Wu4VsNgf9e`o`CDn8+1@U$_oY<-} zgRQm98Qby4ea+W(P-?}c6;VOSEb#P;gQw!mGo~(r5d=7xXlfD0PV&&*>|stwzp&eET*j{)LyYREogm>U0)3t`*_(D^1W`uTOyRA z2{wGZ?0vONK)NLYXgiY}tT@1diOfV%A19N?bSbB`XSdJ8+SB#H{ZytkIzKPFmfLoG z0g*7IzI|Vk^rXanfhJu+bG+j*xH5=UAeq>0Ga!+#DnK)B{H}A(PWz09FbV*J5OL@8 zn3!cHtgbP)y-%IoJSVcQc{??3bAWpdSEqdz_LcPRoTGh?XA`mz9lJ=3BJUhPCg4HU!&M z$}t1%pOttVICiZ8%!AEKmoo%f6EF=x&oy#;;wpfB2dKFZtwrV0s}cBS^n}w${5Y>HZj8S_u z7SH{LP7fV$dD>|M_N|V245EKa(NrxjV8Y@s1A019Rc-4&?X-3$%hbL;(&?E7zHq|m z9Fej}cits3H3&P_1HiP|Iw6KH-;4BPOXt8kZ)pctfMaXLcN%o9gfSK25_O4_5CmX{ z1aqk|cR{qRzS|C{)%j#i;Tv`~AgS$sG$IXMG0t+{udd0Bx}71ltd4}redrNOxOVKK zbYCeP-slKaWnxyHUsz&Qld!QKMmkY$JlShmHm7XIzu{?NfB=SpG*z_0*FwU{Ck-*?~r zz5{G-2&@@F^-mMiN^}dENIENnDi%u)8-h12mJXD?IP&3KN2eJ`X`AX}F5~Qyf?N6} z=aOkq7BT%4FoH$sjuuu3jYrfC7`hvwnylH^;rv$25bdu=gDM>`+bLl?}_m>ul zGV--Sb1u@)uN`yxFIA2t8rOhRw$@(*WV}qT9h*VZ5x_oTO!*yW(_7_;<-Epx=I`$T zjrrJn&Ux*+zjV3Pj$3p8*7}b?ynbICa0IIwq+8SzpJh;6mzo%~aMsIU*w1SLNGJ2c-H`Q*=l#zxx~G_ z*b9}6f%Ll6V5s{$(b&DrmSvD!8amd+lZ}v|qgthM7-3vHC@Q9Et`Wy~x5N?!0Fh)E z9_B2KKYj7Gyqy2|vO_7777T%BoX)Hf0#cc4G89T0Zw25A>bpNr38zdL{Fc~$ceq3T z&`cK4!`!WrUR*5*1(=&=!e#s)3|kQ8L!BDc`LZ+U=1@O}9+WM8Lg7iKx&F*+NCYf> zv*7@oBmwZHg;b*N6!i4(HG#fx79*=*mR#oDaK>IR4e6p;^PG#!Q~rio&DkW$WQ^QG zuVLEfra#}kI~lq6lg))PyGnpQIWAIzY*XE}4ZYS?JBUTLO1pVi6AsSqEWiKMpeo%c zlF~t?kfLTJ(Kj+ChJqoUbDFj9)I-ea95grD*vSu)L&t^oX(E#+AJfh*+m63rDama4 zXA7U)+q*=cG%4Ow$svC+V)^;o-~OhLsbD;0k?aT@hNByW-8mhjE|A~;<~O}ECbQU0 zPfmC&7;Wt0j%|6{g2XDY+R~Bk2x#DufyjDgxgN1=HRbnDE-S$zp%6cqn?l-)-cvrq zs$~lVHWWrqjw4i^Iwopc)iQhXEfl!PjJu=!#$!sP^^Rm-z=K!SnocJtc3Jwt3 zs26U=z8Wr#F`0lq+vVtKqxIE+XGw;UKf7y^KqQUlux@H-McJ8*ta^uYE zWcVW_)@oX5LX`1c$EvM)n@L_JpGC9_WkIz8$YP3(8L(Yh?cU~69ZX}GJSV659HNfV z+gprLb8I(_yJ6o``sln>^Nt(S`3;V;iQy8gs(l_ zTaZ)&&{uO{#8@(mr-N{u@?bf^Ce-2UvJlX~j57m{pPoLINFcI!IJMFuK?mbN%JFw; zXBKeFGsvTMl;RlXsi&E?#2v1ARs&6C4qL}onmJGNU{Eh?wcwfu!yFndj7-tGgRvN} zcgIO{W!a%RccG}SP&_h>GUCfB%Y>#c7QnGU)%fWi?su4>tA+QED68>V9B%tV3*^C z8P6a+$7aTZlr5INXj9(w{IceuhOS%yeQ&=l{4aG5oMT^pE7yyJj1%qfkz8Uf7;D)d zAOkV^{lEU#|62a@fBw&XCr6I|kN@#M_V2`ynb|mgm*Zqj<*lP5fcH6|@2|Q1oc)>E z&^)i#fbf@qdswbg>eY5=sYAPJ%}#YS9TRobQv8KQR0ijW?X-zY^>LkJ6=xvWnYgJf z`B<-qc>>M1@J27W)zyG*Vs`U0f9@A-sxyUv+F~KXiaAy_cv~IM$W&Vgt!xJWnU#-> zg`-0gTgAK=Rpx@BQw-QPZ%?&;Fp>b*2Y;`Yp-t6UaRZ;NcnCP{hXQ+-C${2Xd`%H4 zdiFUR0~l&&+AaD502O0xbA9q+U~%c;-54KrNR08&_r0-jW)vv9J%VusbIs?G&}2IV zRMq&x{rzb1jme7WL_sk;k${{6wp9ta+JZSQ8j)iNiI*2q0=ja7C#WjHgm$v5mBIO% z=pc+;ChGvqtdCO4U>reuKt{TAYYnLh@Vi2wcg_Oz_#pj^{Bek$SZs_~f5=WUQ<=ps2e==U4MZX}`` zY$>#jCw8$!GAiodhZ`ho;n>cT#V390IoW?bnCNe=WY9DNuDn(=tH$^F7y;q3#{TJ_ z{>jggbuA^dUE{jQ*U#;^1YMUveQt9ubGz>?ul0Yv{(SAD=fcskbNz3rV?O>`ALiqJ z7SK!|?&uFg8OMM{jp4KxSi-0V!qUOAeB{~8-zB$Q|K_Wgr?~Qz375BgXzGJs(AeY= z5CaTaWaqOE)WKn=@&8`*nJ4F78Ze;_39WBQ21e8q`eND-Fd7(T`L1hBjY+E2qzldC zG)H=Fu3|c7>(8K527HWGrnzl-RNIg|Lh>K?7k)%7C>b@UjSq|+gKq- z)a-)z?I>v9ds=QGz}Dqt+GXjhg7!Y2GDnN9m$Q8)xAPAx%U(X41iBSp0b{ry1kXSy>c`T zm|uuZVT%JJ1y<{0x~xtNY6!YjGv`49mUtF*-z?c}@A)|bY)1O-)%)9xmt{2q_0j#^ zBuPa63}v+`kRs$rtPgXQ9#qU%lDz4Uf|{PeMZu8yO+)@1oU8JQb; zYX#isxN#(uG1Zjfn~$d)kJ_NOH_11)eRohVWdP0qRkR{GZeW%uh=`h-Bn$90QpL$x z<(ZX3^Nf{oKC8}!2p4iZo{nKn={0cHqb>j|tTEKS)UQ@UED(_*u=r)5WqU(CFq=pB z5J3F#xm9k}anJEz`q@3@E&YD&?|Z&` zt?h3evuo#kt|37=S}XbUk)5hn4UX~eqxv|8-vN37HpkQIVS5@3uak7Oj81>0Ya4l^ z_tpTC%V?-%RxXbL&%aWF1r8Rk8IYJd=k;PRWG32}@_lmJ-C=?w;fBu#!;-*oOAKED z@D`ZHGSr<@CGXqrgM(qPH)Cpv{s1_w;dH3_>*i^*Vg9_nUD;CNM#ubzyf51g@{Kdi z={m)(TXlBzIvw#_zgzLhBRgU4nk%h)-Qu{_BT=MvquS?9L1(du6j&%N`h&9`C1eD~ zY%gd>&mDxFE&Q2O)mcZI_q}QC?8TVkZQmR`Zswc_2xDyBs1%7untRyJaN0lHSP-&S zzaWv7Z6~l+GWjR$HcJ+H70Z5aSf9F zt_!XKxaxGLAeGe78T_(EK&)mM?EE|0Xa*MNK>mio&e1P&s5{OUayoo$H;icT{ISe>^4u=mMY$z-eb) zTtA*M)fvHzw`(aQI=#-N84PR*iG+cW#5S%_)Hg ztZN!R+F9$^b_KT~c`)o!uobLACz!@LsR;zvk)MSvtTpOr!Dx}Vq9v_xfw8vx9B{AO z&)VtLWEyDCw`8a|$hCfvETo!@gp}Gk_r=3_`S>gv_xEI=ulF~}Svu%PD{lH);yH^0 z9|<;yh(QQBlD^2XBo{e9TNtvWzt#1q?L2R1pV!?q&Wp)e+@Z5plLF}Ybbtwmjq8CB zEJZodz>1yEdL;AS;^U=rELr#Z+;}9iGRS;1Do9Ckonl$~xMy_N0G3;$Y&37DJ6_s6 zf*F+rd`S1C{`c7;Z7{A|*QcM&2;cqrL|fgj!5HzrlVEIm%*UhQSiO&`T~FGnvf_BQ zpz*fb#MJ_%{$`%#ADEW0x=6XrKUq`)=3qYkhO`ALEU^G=jqvcv0Q6G+^rs&>C}#2n zWGnl7cHy;vUd_^?EHW&!)W`35P9kN%>XGZo=Q)DL?2wl;zvNJ8dQ8MrW($JBsJ4Ye z)-@&vFwV7j;N~q1CY7y;9Lt%u)BcF{s5duJNnrJP7|1yC8S~R68nzg79O`f7FJESG z!}^wT1cr~!p<95Pv$Ri>>ix0Hsnw*>Fil&Ll!>@jE(ZIfM+; z@|j>);z*;xXWc`-;-IKXitK;Z+_>&cgsEaBqgj0B);lX7z>I zisd>fWb0!P_e8t|uqX};0F}!!8BEO>U7j1Y28b%5-ZSPhAe$UUcHf{WO^^e*& zBpo>f;hx^_qtqqFF7E#kXlg@6N)ha{8V!1%@5y*t+_>wwW>Z#tPZ{*6n}}mz553;r zB@~$?m3jno$g^a%>#XK@8S$5!wQ=pzQ4xsa=qdda78=Qo97^b3-5C{-ABIi_#>`i* zdx@0T0DKRqP*2+Xn*AP1*T1X3nzmDqU;3IO^dI=|XAW0GOB<#TbE z%8rB7rP`H}^gLyFNeOU37%u1GD9CX*-LZ9pH>V^$5rChK367UzXpcG*E@q(xD<0#s zzZf8!gMENLOmaNjf_Y}KD%&1fE}|)LeC&t~;HI9Jx5kPy(vA0UCmkxekQs37&cdp~Lx_Fk&2Gf_c zL2-4i&p#cWpZRn9(xU>&KS=?fI9Y;cNn>u4(^;s!s)OvBuA`L(=yJ`lA7Y6y zjQP~(U>+Z>`+^+jHZ(Enl7yk7dG@n!>!_c67&xUD3|#3Toy;>_e{Mw@pV z&VVr;fajC$Pl;H4&6a#7B zvb4l}8oIB+yefFt&sF*mMqN+hQOyx?Cp?|XGVt-?JRI-(_}b`h7V$tp)=K*1{9G$) zaJW&nFBU<>fC)IFsBf$2pNTci+~xZY$G(SEuZfgH9L~^^zr1xFkavHoJ#q^S_i!JF z7qGPN4n8AaL^y0Su3h^1wA)%Pt{>)J5M~;^tTW++hdYyTFSNLeG1AJ?rx1}gXCyoU zEKqMKUZC{qI?C7BdVv7 zSRdpGNA{3Iz7QIOg(<(QHd?``WN?Yt(3DFjLUNyHCqFZ)Q(U*p!`&RBR z|Nh_q`woKd)ff}wT$pF({T9&5Mk#;G`2vLH-V>1YS~3$UVjwQdmuukX_WT^>m$=54 zmTbt(!2c^Nqy7#9D4`)OOQn>d2rr+8+$`IOKXqZl-oEKoZc{#@!%ljxzw zi#~5J=Mjz;+Ps-OAq}ZA$n%;pAmM`#lba1?$si|*F!l&Vm+MkFM292JT(fon3`e%HMHo(uTjlD+tZp< zt!y~(<|rMR0aqe2WFM?AK(k_|v;W;CD~mc6o@@>@8p+xEO<#+(cMm{ZiUC)yrQ;zx z;9-~&a_(&M*k_9{qhqgmH&(w!L{SOG8i!BaS>Ig#nhixIRGW=qzGqFg<8v5tS3vK{ z;$o{Iy121Ha+Y`IABK_AXcQI+q=551J2zEb`;`Ch*Gk)H^`!F)j zu$qFxKfJtn-|O{^2St}xt$bCU(q7lUtw>A*bLO)jNxVMu>oe#$ry z@j?@woDw^{q*%~lrOM}I1=N_8%OG3Hh6Q8H->~uz57qmP-keN)zxhg;1HYA@w}@dQ zYe#l5WPKljty^FT{r^3zwG?)W=8_q;d&-xxxv$lmncJW1I&THGbK8E-;vi+}|LyUZ zw8^cxGmHb=l4TbF?CcDvOk4os;*3(wZ7`Ix=g&(k7w9!HniaIINYIa^#k{yK`fA7e z%eak3L>Mm2YmRo28Jo6p!B4P3SV(*csN&@dp{cd1dLc7V&)1v)4*?Vc*BN9WGmDrX!vzX%q z1G-w8O9iIE*5@!{oC(9qHQ06N?b`IcxU)m-eWMHa-8)(qHBLj|5(0igP5R0*45#?2h@EDNFFEzAB) zk`$c}jfXBdJn*qo$4SMG+PCCrS`}2IC?KqI&Q%$hgyPUNe<@ARHS0nQGObj zP$>eMl|B2uZ$W462nk3)<`G+x#O=R_w`=Ic8E_Dp4br^OMItTwF^kzmwjYdI`QQV};|OT!VVJR%TXUr_p0e z!TC|nCABw;NWeY%>AU~{|K;a@w|^^NsmOf&^FRM{`I2%k5WEJiKL<2_4)}bn+*{w5 zUi)*-Jpy(4{+*fUF9rQ^4f#C*EB&+_vCz(@rtciL8AyWx^mZC3Q)HIgYy`vvXrUZi zxpew5%CLA?wgeQtt=dp;Zw6t2%;xPYLtD%6%-n~*=KjVdnzL%|1h?;rDV!WPYp}A! zOwNFJu`W8(3!_{0IKsCr>G%E)Jgp8Ahj}ra2!MRgu@;8m+T+eIXX&Ei(a+SrWQ?ok?? zT_E^soutAOz%(0d}*Cira^)~IB?IbJ~i#fouUTN_Vdjuk2 zF%erh?gcmb+z^m*vYmhx`Kr`kbS+CCrT(WR&)}S#B&{1dCygQ9Ba0;eD!-p2#CAd%A_K_pfL;JxOH2WSrD+@Uz$p*~ zY{C?y)yp6pYx#)927Jozt8KXvnhyPMeo(UQA%6>lD{ab}XQ>D6Fbj}=<>Vx4K`z6M zCjH2|X4qonA!wGlad;qRr^99$aX4pu=(mgh$aw;?b&MarNi}}q@>Z$F*DUt}L6r!7 z_+rqRjlQp4UIWEn3$TAlJ+sj}?+RoP{bgka!Po1}pYglw5O(AGO3i@MfC3XJs7Mv` z#pB6A68J_&Q4$MRQr$<_1k?_?XvVR$#6Sluj_b!5%#jaZn`3Srsg~@V=h6me*~=i) z0K99nqJ4~!6Ub#`i+!sqYDu7#~NECC*vyrVDQ@BS40nA7Y;Iqb-?qdOQW!*tODKZS4-1@lXXjaXx zXU1tZ(%gWtqG`I>EiVrIipdYM;Vs9#d)W!!5}DRn;%#@MAfzg$`!4b9iOi5{e(w98 z*7WLzV6pq5$@5x|=(>2aAY1g2ytdaP6JqoCinE2=Wv6?+?Z3;H-XxVLMSNHU@C^k*Mj!5f;zPubbU2(u?onzpzDru^M^ zw~Zl`bBNZWPViMtIo5G;xyYRSjpxI@N2+TX%AD{`#;HeKDa|5a1kmq> zlFhC3Sup9}y2B`)& zoM>R=Kpgp?`a^)P7n5ig(m>L5i$jtCSQZcuHGn7!#-_oTl_HbqoTN@yfN6-*3Qf&7xjX`JbiY7le zS;ks7M=Tmb2O>3Pg)0gKYI2H{lh9%JKLzkFggdjivui{nSd!eKCJVzI_6m_j&>=4t zqO5t8iW>C0&R>l&Mi=jWuszH=Q3% zfz6n2<%47-?*3mPg(cYuO!iN9EwUcU`H_soK&44pLsp?cS`*Gax$FevqR{64`|idg zer{;j)rgPO_RnWcO}_8J0)Ke_q5SEEq?Bt4?v&?Vv9{$%Y|?JUpSv4Ea?RiT=7XQ} zGAf4E&W<&8`3g3y<@@iydm*0w;CF%;g{PjaStY=K_jlioz!~sK2sZ$!N+mSKBaU!V zfjHaA@A7h%$@=N1Kl{zYpuiI6kRn7H2-ezS0$LasoZ|rRGw$i&UIDfL^pL=ACbB`MwXQYS^QHA2)p6S>39x$9HqMtaN&+r*y_tC$uG@l9)n{xlF?J=p z-rP8Tv@V0Ljsl8@cJm`z)_X7Tq6W+iM0tNgQULHOv!Rj*41fsz)^MNg;`?#jT8gHi z*F2d+RsneL!EVD?*VJ_wu2x{=mp%@#!I_DCetH^!yNr(Zd$5DcQk=b8mvCa+Ool;Zk3F5c?{%1eb*$e!9kb#OBAN)86DE5doF6ejNQ(`w z=%7%}Tf=DSG7|xijrhW$5e`BuVqiwMc18W_asxu>ogatf6f`eG6k-7Qo*iECRg?!^A^J9#0$97xf_)s!+ zFTeY{zbikQ$^d+4x3oWl`u$)AnC!|S`IYaa-UkE21d@;<=ltux{+snt=Um3`Y`$sC z@1SuO;G4m2W@XhnIduw~Neb^z-LgPlfis&FkrZ?uWwc-*AXEtoS#?<63 zVpy)L*Ut@_L$&01tT-b+Jw<#;w9@%S8xoH9eSE%YoPW8JHO|}zVeM);0%v@FbWHwi z{(Zj2=K|bopC8pZA3wJ%_xDym?&;6bb*}w9YX7b8?rW~h0)PjQA_MW99v$}&eXRAdfgZbc??lgJZ^N`!wD~4INxW!Lu&2Kn>! zA1z(YSqc!^^BJTrIfK67;JCX3CFhAgRIz}q6PpADnjz!NIDiB!%(a8~H8?(RdyBE# z(51GP0Mar<;cyv&jUND?d1lNww@1A2ILXz+wB>$gdB(nvelLVME48}zmt6zmJWC;S zU4N&PVmko4M|Y97giLmi2q@MY+MKf+wr0#xmYLwzSPz4@T%>-9)2tdX-I_R=*Cip>WbufcLs;N(fJ#Fb57K;o- zPIWEqlC6NPJ665#ZDmUV$G^^Em<)r&C{n*HYL%_fp0yC0@X-KumvbbII9ew3**Q#I zei0M0j&aWO;we?Xm0!GE158K2X9h&qKAV5PcHOuBd+i$Yck^}f=hxcwT0Ph5xOSbR zbFTI4YmLpV@tMn)vfjCl`I$Md5ByZs}INW__zwnUV*m;;}$Hs%<}27;464V~-a?eCE(iZY!F zPS%3+7~|baWPz(jngt7Q22V*#)Ev8rKTR9EPBv*!r9_)Ici1Gow>#*sY6NMt1Z759 zFE~B|22VzMMTkV*g*clYcH9lAeoPn*)md9FtV45(bB4Q;^>}<1v4dZHB`E{nf!qS{ z)B(E~=Vf&uOP{33xzsI;Y+xnTnQsoPErapPx_;`Jp5GhxQF#sZfoq7T%o^E~>;`24 zVfX}$3Jd@A@{<_V;Hn%F5Wp;L(Oe#T-);!MXR^0`O~R3kJxzp0K4%|tf4IoE0kyB_ZkbUQ=hI5>0VoGP{yzE3Fzd!Vt&7X#smg>3RyFBEB zr9Gw{(yknSMZTAxT_bL6xYQvNBUa7tdPX<3jIhR#ufWbwffrtj`GFs{|l@5g{T z9q-4|hyLH8&K*fbIx)t?7_8y*07}h(v7ybO=Kib#(AKm)YzF=@Z~Np9lCZ>6-ncWl6_1ccKdrn&vM7qRbK(`#l`xngb6KO)%U5i-J7(fs)&!=_u_I1XPcdWHD)~6akwZyz(w4Hi>ga4q=z85dMoQX6Xd#IaaF(A>EC-U2R9nL$Pv`*)T0}@Gwv$myMAFc3xd9l}7a$VG z2q_sEE=vc-+)F*`nB~R5@KwKx*xAvxXaW)ql2Fa@)2^8efxd2R{pAqC0CA#TfYsF4 zP%U_~zR0oU%%IJ>2G&6l(B-jD>U`MqUy$vy$46Ie+IIyKPL;8c->8G>Uxa<#eq5<1@QvJ7_B}(n_WF z>K_b27-)r8AFJ%V$_2^n9j;nLqTg0mMP80?9C7lWTN_~LOT8O7S85lMWeQQ2} zXhXXOeD%Bv!fCz9wF2Km}(^KuBmSJUUQB067n8Evl9kJ z+6Ak-6l69vuMNW-vDT_Z7|}U_wPoFJCY@0rUK6O+vCBzB0AY&(OLm179PY91J+^r9 zKE%CWdOtm^S{d(wlj*a&G3MTEv`2a?;oH z9x>6upUhc~@X_(5NvN`39V0sM?q$kv3YhOA937yK%wt>-YF-N7h+)a#5O*Fj)aW3r zZXNvn_ut3orgzTlFMwL=gg&RS+OD%r?rK{P5d$!XsLL!jVtdhA(Kpp1w-Pzs+hCPO zl9cLw;28Rb_M6Zw`9+ttJA}}ag$1kFGb0+^A68!V`UeZ=L4&B{U5lgy1LIry<;yJ) zme;}jdH(*|d2^k&{@uFXweycYzxLTt8)ugGE$zB?t)nq{Yx{21ebk<#^XC4}e~%2% zyQ30paJl$7A9qyrW!jJ6NPiInH2q~oJ>En;rb6u*`^CZfabmp>)_}fw0w|Xj z?ahE^H=qTm@mhR*qq=m#Qc@iXE{gXTrns~b%y2xEWaT=;)R=)W9NWB|{^G9s@-8-R zgpuPE*W0qj43q;yb&eLdVlo@On}nhoGc5mdoL}ZrK$egwjFrnjD&vRbA#}a6@*MnJrp-g>t& zVa9TJSb$9}In6b3i#2|=NGC9A=6idCDR0@aZM>iJ@fw9=cf6t?^1&SvbAAd83figd zTJ2r^Y`9`~48iWa8Xc2k-)3xlt%V>AqUGI5=u&Fe-Qs8F>%72P>)7orqJZQuakAF3 zyjEFPo7)n;Q?RmvQ)(qjOA8r}Kc`e`1VfIzfoBZk9Hd`7>muB6wUBw$LASI^F{a9N z8IvHZ62PrBt=q-zT%QYLyQN)34w1SA;}ViMcEYOTS@0IPP3l)nYR8sTa6-!tbeb5X zdAK!2++(_I`6-bnB-J(SE&~g*`o};0$p`kmC1=P^gb$V{9B)z{TDcf#));vpYZ3@DR>4{n-F(OI92j8D)P@9`;Myy89T&_i`K# zfO7~vDIzP$Y$J(PFidF2J7b^2I4R%CU!YtAV)HRaKlAz5KChoKu}2{F+A;TjcJwp< zI|6e@;}9>I+kkWa{u)@kXZ&xq=jgm^!1`#Oj*h=pUOOhnGPh;90Msp!H~@h_e!sa& z*eAZvFAW7=cAb)NRx1f?8!)a3MAvvZ0Wf_YsX!a%fNSoLmo)dBS<|@zk~z-C!2vu0|z|bCwmHy zwVJE}C&9%hFv5d*#K40ys6G%iqj0auUE?&&sx}mY~I$Sd((N?sti3EFC;=n;R`KtT=c& z>E+kT&z|N$8X$zM!I|0(1J6h|BmXp=^cV*3!NRX`-)O36i^8&ntR}SAgiW*cyhToo zNUa?bh#rr6SzX6{?vl<=J|{5Ai^XK;-p%(++f(RVlWHJ$<({sV`H=tz7+|H#K9p!I zRlk=M*K(bRl(vq^M{MUuPIt1?#-X)XtN4vAi)KjPEe^THzFvHs1XIRyPwNJdH;*a4 zD7kC9^bofAp@GLF@&|?r&l50WwZUVo$R^F4$arW5Y>U2;?oziFWGfmp-jTY5K6?R% zNCt44<0dElA@KvHNT{@~>3#psL8kyeNf?qt)v-_jg8<0hcy@Md9vkL_g^KpO$J#F6%Kxk79?(W&p6uj%1WvC3*8F)s?w)h?t*Us-H5Gx;)a`R4q<$J5|=yJ8r^LAO+;rMgpJP#EK zLPVV?Eo2&i>=s`JkWT$+uEkAKH~+R4XRi0%K_Kn%7kAMYZO#3tx>=7lmnatf{G~=L z-@W;Da^2V(A*awjsN>Y;051dPd4{SDd^4atk1b*ET50|+Qqm~Ej01J6Sh_&;gGX`r zD)DzuOtNc;IQhTqlA^0#k{ksvtM8f3BN|BMCv#Aj-=%)WeK8|MmW6qG-v0!t1%eaer(%Ignq2fj%$PqT?0yRM${5vzh&eE zkF2h9&rXmE*y|q7uS(9obL9f-JWDZ<#&ouQ!EjOh)Dyd`tAS*d6037#^%&LNZrpd5 zX24<-l|<)8cW$SFvYO9Bry@-C!cvB zaa)+r7QzFEK3Qm=I*@*E$UPP!af@?=4EbJ;r47VE#yXJiBy%4kZ>d9WbXZ_IuGd)2 zstMMDV_=sB(2KQ0>}Pe@`zhwXjf}TM1CdzJYK=zxW;E1^2KcqlUjxdo_2(9F zzIM%f%Uk+!?R+WsUVlFB7I?pQ&hXvEFBgAYl>7RO^dbPN>v9u-2EgVQ@K{&WGxsN$ z-qF`Xfo1&OKM&|yTH_qDy=7TKX3E#$xf!4``qA6Bp1dEv1)kcv%pu0mS-_Vi$me0IK^_wc9@M0$E;b37BkyzjAP&hGH}`P`3_ z@=3PBjZxoIzkB^`cdsfxU?@C|^4@$rb*{ASB(doZbrpau2GMSE(I*E+gH*sq8qmwy z;(C~EtXc1yyqjA%d1lKFXVY4BZHa8*p@*;)*{QTWB%a-v$uXDZw~g?(+P&Su9(KKW=v~D&k);oo9oa8TeEt8w(+_oO9R@8UY)ML_d!J7``L#SXA!5lG5yVY8)fHB4)7BTThe z1vxe1p0+1)%w+-Bu;nB-!NSq7Z`xPbVa9}d`UBDiUMw8Ko2Ui#-rLQhfK`@-AhG`d z)5ucTCIHwo{zT1SEasQAv(JAc;plkC{u+Qj^O8Zs{Qc4A*Xp_#{PEy>4UqG@WbvGj zzXn`uJ!X0H@7InyI_GE%j^_TB5pdM*{MjwAdUX6->bTXXc?_{cm}%wcWMA$SE-JFoZB**3_2OB6cwE3g#k6 zf%ZSfI?~1KSjMigZuLX>0q*2H93Ho3Y^4Pn(6rHdz5YH+shkBQc7RrkG5*chRjkX% z>9BPcJ@6Gt*N8}>b>{#C^mFT=R=d{{V@p&oV|?wMD?phYA7#pSyC(tlIjWN~)z5}S zQ1$dNEV}kJO?HIY)6k5`Poj`};(eEuJU`n`$fIDik39q6C&Q0YPnWycTxNN!?!uch zc+Vcr9*HYS)jp% z18@d-Hbd%w=Q&CQ5dc(M{9K4nm>FvH!!XzYKtcF49GQZqnf^4~pi+=|{5fTak;NmQ zYbKc(0*ZJv(z~hC%etoZXCBM8hI~i>#tMGP;IUK|BPNN3ke1 z-f={faDlb#1mMsYk^z5TnsKz44jI*oN;q`99xQ@_=S*-LG_>`7jBp&>^{1z5x9bUO z*#UZgcb_^5sB@un0N~|1y`M{0$@jLGbkAjNE*TPa-KqSb7BVk}K?j=**j6Squeajk zta$Cw@;;OSa1)6_fNC*gwwoABP3yb30b9)=$$(ffoNBq1ki-x*Bdw^cXLBE~+OKyu z^0H@v{`ArB%e)?Ja(s>DC>P)$84JOjNJYR}0>Fhqe@>Cl;`zNhqrRu)IuUhk@AIUx z4aI?{l>{t{%YwjeWU;=8;|%hiBV6!V7gSs1iQN{ydO|+C^~NB>o~~(&C_GR@+XCC_ z;`FNV0RQ;MKl$IPaSp*hsTz@tgrnj3vh5vCB5$tAR)R<*n5g^`khaLN>KwUu%{GHB z*Od0*tcOt`|Af_+?}=57CYkS5+VYdL&b4X~^FRFI4};cO3geGOOhKgnC6P7$;UE5? zvy%4~0l*T9ZFF9_UH<;>|K6P@e=X%&Uv2@U*Xp`we2#$4HRkkIeb)feYv=tEb9fEF zzINO_bzS@XTKzMl`dVH0UN4t+LKx--`=u|n-SF?Uc2Ya`eIFR{Vnb0{amKBK zFZ&7mR+9|Fuz4ESJ=NWUtu~Oq+jwn8r~tHSgGW;`#!ZPIy++ql78r5j0q-__I!4_g zYgyu2lhhzb1b{JQZv8daG$IAZupS_WGOJ%&vy|m9kE85S$4N<@r%!}t)xIw2ep=A8 zt`-3SWIpQD4hUa#-#|92UiB=(43%eaVX5 zCpZd*k(gt)t8w_wq(9)dSer2}ial4yNg6h9H1abB%J{R`oC(ui`u+9b;8&lsimBB3 zk$cj#&Gs|PZG&jlGGz{2ywfz6n*v5wfKV}z`)tguFu>U>lm?=Mk#prdU3Aq!D;6Yx zU5@L{3stlB0p0=Z$T1{G`6o*z0;?_G~K%rM-QOtbSq3#Y%;dM!G>p8?;Moxgg&FaQXvwjXdk}v+KRr&zEY5 zK_lS*9`G!nS>!SzkGU7D%Q@L8?blv@ZeV!}K+fN>*6yw6=PX}xy}zWv1!M7=5%Ogh z;aa`6RNr+Y>GigZ;MsmLlpY`jP;=NUzveywXoZkeifRpF2__ zrY)N6$$$b}@1cEW{9NJ(GPZWC7T?ul8Ov7|vson^)suE88>d^n`Q1Q!wgkjsJ9FPX zd>x{)M&bS#~P>>foVnA?Bq1hA=kId|1 zh5}jp7;w^GcjvegVG8^E*ziESdks)Oq)=oA7$0ocTKdudowt%5{V)!R@&%)r>wjlE z_08^q#h7na!?V5b0rP0I%EJd(<~r22lUP_CXIFxj5MDK+x-5+2S1J|8^kYsHcd0&9fwHznf20u zZ($ms{SnJ&ph=u-x3=t>)FJ&7Mpqv8pOXM38$x+u%_W0ok&@h7M0&C;OZl}G8H<1U zmw!2ytfVzH1D~0B%g2yGiFG+2cl3Kc=ID1>JJfrPWxW@ezIOgCP=D*VqrTlb|JvVQ zQa*PKzQ#3bfyKSD1Yw;PL~Cz!MOH3-$$&v z!~YtI(*||KAMKy-8gJ*M!D#n2JdiEF>YDW?P;HADLf#23jV)d%CquQS8 zV2loU2(=Osn^w=j$GdDD76$SQWwx~qfHQYOOmi_x>Z;FEa~80;lx9WZSR*7|XA#X& zGKWKr;jfc4BqD17;0tRRX%BN)6>t+3gfMi}Ytw6B(hLm)`C$~5Sifcf`53j3-LPv+ zU#0&poiW_88nBiAiXJ$VQQ5gv=L9(=BwroDbv89My%m$vLrywR4YzHZk8dT`M&6M5lPPoER7v z{n|?;^~pGjl6SMHZ?|;tMwC0oVmx!~=?*s@0fUtmLDKh~7T+l4#Es~DE)pGGdN#6}DMJb05kE3$!xVQW+?UJ=2YfR?PW4V4S zcb98(bkFDWy?b%2elenEg`4G8nb+Gr#X)OLAJkGV;Bjk1atW^IeXzFjqT{$=d`Ixi z_PjXuL<2OOmSdh_2rkF0aZYPPa*$#`w52`)_}bR|IyuHJ!=^0g?tn%ex&kO@vWdmR z!pSwe`_n=+gyVa!8ZcE1s2%I?rswBa4`)68++zE@J236r0QjCQ>H{)_x(8X*8RQ0Y zh&&*|_sMw!Sn;86F3V{4yE`4qJhiQaW;&uTaC`&YuCRbhm&cx;^}YJjPk+{VCM zg^p`H+i2JB&WB1M_h1z7e|za1sL>(LU0wk7t+cu>NSIM11yZqW`2(!5cyeIrW&msudFWWCE*TD0afaYIwnVGVIC7S@pz2%5;d#w%gIY;e~H7DBnYxQ0QNq1cL=(~IR z@><)E&YO>WtsU3Szo*?ts1~B)` zilwt_J!opwMZ|hQ0fx9&CFc~$uECAE^EZ! zPAk2SqkuLer9=|i!MPY&7U!F6bjsi|pK*9e@ zC53Rz_jWVOHt((ohJqGh2d>w*MoXW{bPPF2i zVW`ze-!d@ei_MK5tGe;E{PaQ`uNJX`XA1opq#6>BP+8{(ms$YY-laH>fYII{W1aKO zh6NClVHSX~$<)gNQS0&47i*4?!DM8o!TCi$+~nzRK7&Q)fgo*P61d%xgCjRs&X9=C zOT9wh4_ajw7T=5DUOa4t!Je&NEFg>tj0>bJ=(%%!jIXp;CXg7_F~%w_`5dW6F0*Vy z+VG{InY8V{wju__EY-LND7z(oaBPl=o(->i>YQ1x`TO~v$@L#y=dGas-gf4CU%T#6 zKdyZ~pLdVpaZkAipx;}r9oj+Km9e-6nmI886>xH`r3BxT0kmPKn!~fzi?)$41ZOur z#wt#XaP@1B>?>{X&%7m9oOIu5JM6JHfuFR`BT9zst&d`i6dQJT9$Ph12#HTHXh^mJ zpp9KUU85YMyB0aDAB0+f%GJQ)l9*5CLuExR-9I{ZCvyhGU=ZVGHGr#Yvspxob6MPY zh-fMrDllbkw!|UJvXszut0XiBUT|Q$H_r}vHU^n_g+-5|?Psh?nV;h!!=avVq|JD7 z^nYM}aeNgFNg@_f!xK@4=Ss2lK;$+0rfcDH#Y$`+V!f02<)2*aWykpHSika!;1ZGK2L}QdXX%K?5Mu zE&+g9%8|joZ_}KgJ)DVrpJ{r4HNmkl1h{@SF0h!9o3MZ~fR=i6T%SvhSItex#9=V> z_ShByfR;os52uH(0-R|x;F(z7U&1uA6Y*;+H#N?mS@ON|t^9SAuLZ(yG1Gw0YXJEY zKxeQ#e|M>S_2bG2VEG$xIYQh>N8Lc%spRYCy0a1E-|Gn_{cu3U%S^vpy!}JJtPPPh zZvyb?nhFdfxrE|W1KJjjEcdT57>re5?&8dRYkn>cLV3LV@q;GRXGy`}vM3{KfR5w0 zB#GG5d0A$V8QM}q=gi*;;km&oQU&iL)h4rJJ8Vz=BY6l%{H^3So)qzSK z|!qb5jPIZ7vcAIgo zxB21xJa^~BN|KtL`$O5@lQXZhBQy2X38UE>Ky@+V?8zf_=y|(?+*%{@1UvnD4@86w zDZ(TJzO$BHF^z#sThnAv>|y&%7K40aH$ws)`PuNBra;dj+p2?0?N1~-aicKZGqBSD zY@BgJUZMpD%aF@7f8OYMYP=Cp0x7GGm1@8FoZBLd$L3>4>}>9@)#fl`IU<*3Qc}nI zUBTzh$;w3>Bj3%=fduE?hEQ}g7}gR38?#`on#5$Y{s?;vD0a=20crUu z%p*5T7Syw~QS2eZg3nBk2Gx$p9mQ@uxn|a<<@nhEX>qdT29vS-TEJNf^CZArfb*A> z9MAgKRK5mq&TQsvWZrx3mmK$69rs@2bIU#Tf2}rrNjj3nq-Xq3Ue_nnz zfNcYpCH>?Z{;C04O90Veb9Jk=q|Z6F`t==Z4{O;QA0RIQyF3ONG-oETl>qd08n4{n zmOcZdHv_thkB^0!t0^99dU?ZQdRx+qUI8JPx()0q<5H6rIu{@P42mo1w9~BA@i+_+ zD!7AyJg9R$T^miv*FYU zKmUx5&ZJ!MN2e@6}Gw zwdM|m09z^V3=7OYAH2u0M`F!|@v$4I1vE1*-A8MW2o`#+0GyiO>{E$*@^W1xCD9nk zfVkb6-PHiE0_KPiGa8YhAr2<`!9q4_TOjbb7a1RnCho0>^By|yVmlFZJ_FKPN|IF- z-?bq6g;{w%X7~$$nE=Sy*uZd;wb+xgEX&|Hx$wIOeh3f^CIt-ZPX1|%IF&MJp4MRu zknGN2dhfVvVw^?bKfe@asRl8LvlS=_JrG|r*qoCY+q^(Q`83uipjKb#!dRZ4jm=Hb zDFE~NcjOR=+cmcI*@3E@D-LxS1>8KuI?Qs8y!`@LRt@!Is(<$^GaQFgCGTGRE&dbW{ICD|uY=Jx zgP$WnGnWhma3Z~T+;jc;?|jV+%#Mzm>&oX|J2sbG=iKMHjdNRGJ9cj0YvA|Z{vGx6 z+WGTyFrRm=&fBG4v}qm(DYITszvsNMK0R*n&mGK`1VRn)mNM2Ezt;gA0g(NkwHGEV zr-RyBj_0&wP+U`pvpqm|ZbMZtG&CXgHGYPJTpuSz@b0vBw60>vgPpBON>S7JlJp@v zKKh*4%M=i}w<+YE0c)fnFwI<={x|E80^~f;)mhL!)JvS(BPke}(z0<=n$H2@_Ji3SuKi_o^QJqNCvjub>Xy70TuITb5^767#z}Oq!bF!?V6s5q(Lin6wBco zRWHC{>{#SyJWD6;cR3ECvkdQ@xMv99fMLMu%XN~Wuj|%Jvv}aa^lHeyny?h>L)q_$ zxuN*r#2ck2|EVFFg;~1a}^n34s zMBb2NB>DyqjLatIYzav3p;C%S%P50^ya8#(Cu3BR zh`@>yB%J}`m@MbWvJE+o0oHJR5#d7W|P1Cvbjwp@C7ZfZZDMf{d1HnSpEdetN%Z(m1Ai?Q#Qf z%I)k-( z=Cb9y?PrUk6!U*dQ8*MRYVx-ZRxDm`YsI#tNf;r_uf-E?M3~r1&alS&yY2CA!x^mk zc*dM`aGtcVWoNtt;I5=c-uGn8=%DuXi(Y$+RM$ie=`o#48Q!(b<2n7!GSmk6r-ulk;DLHCtc(|Uo+sf1Plka#p z3ysJaC}wFx_`ha}QaZC-bUtMMafpP}l;0J=J{5p1Y%R<)4vdPoo_*f31PMUi*O>)l zV2pBVZNR$LeRiimY3I|^Q|OfUeF!BdV{Hj8L#)M3ixjHQmX1{`mA#&%`)?{PdH{60la3{S4+cLe@n# z6{HSafXS3X#0-EWv1I|Zc@SY$X@daB0a(}SgUxYSPBA(h#tqkOdny)KNI~Q?lA0il zhxvO-&WtMlkLy!HCw(qC)-+WAo*uT`RO_+~6G%N+M0|%vn110{hy^WK59NXJH5un` z<#rL^EQ~Wd9$%w;(>VY2lzdO}x0G7ztH&OFcMUMl=LK7nuQxKvW8Fz|z+3(DDud9X z46t_o{Q#T-gn3&UFaq>?-E}D=JJmc=fjzdEpj_YWfzee+IImK93)o* ztih=2&V#PAh&^3GlF<8897F+{X(ON+X$EcdHMa*?CXr3w+V7HNqz!mq|GX^HJyB|VI-I0a}W~Q4*BzA0sQ5xd837>fKiTTn_nYVeDL($ zNFt;jWDPkyUQTc#=Zcg>tU^f`^3VVL&kk_82~H_&2_=i~L&70_--n17h}QY+ImLTs zta37xt~-(tc&?AG-4k?X23^jQbk1js866t*m+^b|P`;I4w%lSiZvm~h)_Dt<-E*AE zi{1?n2#!B0`TI){cm29Y$KM*Ge9V08+y;Kn-{sFCSQ`m`E$V z9UieNF~`Ov<4BleY_G}T2~Y@&pMh$>?xIm4ipe(QTo~*AUhk0?c9U+XM5AR8YoMI> zDd4$}n`>nQ6MTAk&tjCw(4TrnL6v=Mgn5HmE@M=z`5plv;U|R-wv;3bVE3YulDS;! zscoQGJDcO0*s@m*yc$llDH62pMw*=rdltseLd2Rag$$Ho z>zeFh@x09_>V01$Zn%bgQ%MXV`c%3aAQ*Xv{JpO4djH?Qd*9=6XL$*r5>|Gz6ys9w zgM}g{iHJHumL9P~ebGL3xx!{4{N!4q_tmh#0PV+)OBC?#eob`S7z)es;NKIiLSnvW zwpv5tH8%o8qWZ(1e(2W~+3oZB+3uIM;GD`jI-K<7$ny9 zqW9BU!*@-Oe{hW1*G5`dy^@?+k8Kiu0-oic$TJi;KJ;^lO)Nzm%d$pS9}r;yaH9Z< z87Kg?)Fl%D_|CDI!x8c9at6LbWR47ihr?!h<3$P~MF-*8!|ut{D#QJ*541S`5eqtE zK(;|ErAcDmd&WH$1*~B{4%VH|Bz^aT$D@8w?X;Z-Q(ej!Y@NCQ)OL~bt^Bg(8UURE z*{$z#nZG*%ude~#+%}4=6)_Zf3ETpx*S^2iu50Z%0@+8`xCYd2f%RKscXXY5+j;H# zTLAgm_t(brTCw+bVqTB?c=Xw=@f<(%t2x-5lX+yIdUI_I;P&!6VlS7py`7H<2GNeI z%4qVeD}(4EKz@8W^&LRl5uF}LjM>yk2eHmcPh*!^$9-M>n*IAENogjvlPY1SX35-Q zPEoB~8iGqx7CXmTM(Oyg3SRG zK3=f!{knB6#Oz*dZA(P32qC!md)sxq%WAv!yT+2PvGa&FS`%&vE_v(*kHmhiMS=zH9FW`wI|$)XycZviN{?`Hx9hWFAJ{_!jqm zD<0~XHfr)4O>(5qibqd+*VpB`+WOus6ycW0wjSV*EGn~*e7-a!aPhZRy?Sf-rfNPD1A2JXHyHS@%%Ge^=3as~O z9pfqMBrYE1BX3vq$$R(c(hCx~u+SNFNk}5~$g!DmMuSc1%(Tfb(Aa3uZLFXOv&S}t z)RkjMcftF^VE240zhJpw^d?~N+IKTB%*V{fXEr7mjH)A$nL#sk%wX{ru)EfV{MkL{ z-U5>I3;O8q{EvF_&uewfpB=UF))-uy$6KKJwev5IxpMr`d`5{a;alT(d5xAN2F;(J zalK2>oYz*cWX;<#u+sLM$^z_qimZm#I8(@cmf}Er>`S~mQiqHGFQ?Bou%*(HnzpG2 zj31*=L$3@I$+dQ5eKf8rpdcPB47!55;t~m7_G}f`WemTCoW@zhT3yZpJJyWhYuZqI zA1X-J`jxTNG||mKR5cK3T2LFtlSe5i&Tx}>gm%KncTfo!Ph-J9C7;gz?nQ#Y7-6*R z2511&(kW#pD}%3fCYiuuMnv$_{1SF$tOIKF%)K@n)H zfJ{kv=9+c8_TGXOW{n6dEZ2}wwY~qwEX%PS*plwNXl@Al?UJO{j6i)f!_U^;rbK0y zrWRX&#l|aVa;Bg=j)*m-JoS7O)gy@TJP;$niQ1RzyfbXsGZac+y0NhO9B>?1OElh6 z7Yuk^Qfhel{AFy|EouoTYSO>W4GZnp+KoGDF#S?TLaVQ&A|HOVP-NlJ7!nJqKrWI) zc8I=q-y%Gh_c-8ED_0rhp&U_R^vde63P5WmO=Ua#~**N$=AH-68Bia zuwLu2dtj1OB{CwiIM`C?4NJ%RQjz-a6h=*AehM z0)ROr;;r-V{q8NtU+dRvf4}v*_X7DZovR~2daKUcpm#b}Yjd!2)Snr^7S6d)NG6a z0Iggy{LR`R?~k)b-zXkm7Y#B@8VzC#8>vU(IxQuJXga2PDcjEPWD&r)I2ev~g8sI3 zCbhr+_kA=vN*F1;?_|eyZ`puqwo`1<6a#+#T&t=pUseUKA>{ygTcoT_5}Q2szV$49 zyJkN|3ejU18`;-oAqJ8#Nb;^Zagn>E#ro82^*Nb`^dw1aq%H_Dq#!a5!Gzj+upNik zRY@5pZBe+7mjTVfy;F-x4K%ytnUvx!?vEamcssk%NHUVMIkW!V3%pneZ`bp@27@b9G@A;c*t_i zGfwbY4;N_bQ&@AzT9pfL{Tx>=w0Pzd649l>CB^!d|K!Ypec@EINz7`52}L3S>x#y? zFT^@}v`Rxdvuc`O0h01vPT8GfDwo1TNUu>#0BQ8pdCP+>!JLX)>iPcr@B6VxO0q{L z@uF#?TGI|Lx!YZD1mDxda5afmAb#R*oZ%_O1G)%-hU! zkdK#9lov? zz%Rb47j+%BvBb07nbMl89_OnjFaI3B2wWDy$d?vgjAIvH5vz7>hm273iCd zLzaHzvB^43`m(C%(u|pA2-+ zAI8AnWhITdf#YHcH#9x;Ila^NSc6MA`>8KRWaVwPlYmj_31eCSO9!rd>`ru$CoJ(E z01~2#cWakt7_)miMJjHcSC!Z>_pFBuJPA{lBab0DVr8-hq^s)^@qs;|3`FB<&ZeLLi>@91yks}%s<{Eu=3c=OME{0vO5ODO}{P|Ja z?d@O{i3!-E5_BXpAU{a4Ot`mmD z*LDP9fqqj?k@ts&dJ8E-@82>?PzV>+N^)dlOMO?^-s?AAbUT<0mrAteAf5YEfuPnU zV1jtpyh}^Xsl3~eK!iD2ED{LyFV0Gix@oQ%_hm7e!0vO`0ncj2Mlpu1MdT6ywFA8p zatQ#UjyHg3O@@LR8dCopvh3rhkG@WLzhhK(g2>*htLeT0Q@Vve#%cDDZ+-l-GiUSp zhoOxq5usb(()vQ@NImAZjlORm-luz3`!+DnpFV{{oDXnI*?p47DPR!GqBO$Y zECb6MjXst4;&uB;(|V&5&f(<%o7Df|!*BYrU0PvvW=Fl=M(ebM7~wksu*e!Cn9tw z%E-w)dcQHwzg&TF9=4FLfTj8KBY?~eEM?Zg->UEE+72uXZ20!q9boR(G57TI-Z41( z{s^GX2Eyl*x$b%Vu6=h;X%~R@GfEp7bwJL2b=IqW7=C6DSOTQxOL#p7hH4$P^Rk+`3HNd z4N3FRnjg3A25ovjwcY(3WBzIym&`_28<)kiBrcuG_RO+A?!juJLuKpR*+Xj&JFc~k zKsp!_WfFmKX68(Pci(jCGIqjM(G&0-FP`fk!SuF}=r7;g*KV8;p5zu0;{Cr96A z?6_mQih^NcvypPx8pM&4NG2-R(YX`pjWFiy7WhkwB=IYm}1n(vR$Vwq}E!39!rJ zK-!`#_J`g+w8`0Nka1#+FAIaBAp&`e9oq5nd^Y+%wrK0r&Hvs9`X zkuxCe^!UBtfCjj8BQVKw{2D%oN{XFUK)i;DW4A(ODvOUvtiR;on4;9Mj*88@IJxP2 zz1l8%af7Q%1*-0x$GDv=NlC=2ezdH`Fu35cJ}#Y&k0>*-vw|MKxl!2X;WQ?3<9EF! zFc=g-XB7c}leHosp1M@7qPsp_1yD4e_F};jS|gH9?6lxys`q{jvY=`z})0U(xSIE4gdbpuij)O8F;_sKOb zyHVettl|i5A{Pd9$_t-J6G%BSps2P$GuvBJc#mKr~kOh8^}q!Neumh0qn+k7tnG!x*v zp?!cF#*c-^4Hpllacl3-FJn#}UlX`}D}TM^I+%LB$UXX#t(mXYmY)-F9|%X?nQ>fMuAj*5Wkg zh;-g6oYgsji3OM%C?-@{wWtNVje};6Qv(|&l(@yEMy9yTM0YT3XTt*!^It$6 zePFz+fpwpATW+47cv`>Cc$X6LiCyQ0XcsV})pVuZfv+?l%K$<#SNS>}SWAevs_f{e zk3aexf+wWTnsn;)C%<>|T9wLv1k;$`(`rDCcYEGVAC^jLD{>>*y+%un6rei5RiX`6 zTw?{VKG)~2&(<{3NF_2xz|rv8!|-VwX$U}HtGW<--R-FufF}xvu35oH7^|W=FE+=* z#tJ}Ihf*~#&PEVw_~4JdUO7%>Cb~Yk{>P8u`<5Lz(G??^-3$w1D5>EP>9om0N%R=n zAJ4u}ODO3YQOM*Jc^7h@>F3oX9Xe-_t*i;gSBmTJ``A2;8s`Y37Q{hbRPs|~3pt}6 z!tOn9OWBQ4?R!|S#Q-gtZD3~wh)TaB#7S8FzBOd$%K{N;M&9Dl34G^uKBriYINxy- zQ74NpGjj5`09`pg%R?j%AvX%nk@62fotb$o zFQRMscx6zuHwSxwSH9DM2vF;Q=v$av%En|=k0$6dZAuJ<(V8qKTCqP-v8Rc8~<;x6? zGSK)E;P*M_WirxL{Bwfc%wYXohQ+Ot@B4eMf6KVYFYENp#c?C}OswW`oj5;( z>7!_dHGWp)k23tCsnFn82PlO8#)A9~s z_Pf>rpfhU#c#I^j?;2f;u9U}+v5{X$DgqGR9e6}|xSBTbi=Q9$t!cbHgKY`GOgv!^ z&*svA96EMX)8EgZ%1kAbixmwbdW$}APnPFprTj;#GhOeuhu zRW$?%`AY&ijmYunQjFB}Q~ZL!73!UsU}`#Vcj%7T7K`st!}qYut3l@Qi?UBYS5V)zX@YsUp3zhrx(-y@rxj|;HezbU|70JM~4?nBGJ zB*a|DPrZhkw&nq6ZPfMl>ns5X{WX;U`+PqDvhv@wz+b}Y_AzP)(F=@m4c0BjpgOb6cy$nJ(J;tZD93gHM2cn$2gW;A3Qk`N5+hNI zj(v@^=M^n;M8Qx;$Hl>@&vgQ^CC!PiF`KV_+Y*p&4s^Rel>vX|3Xsk?Cs3*(i@wnGQNFXssLPIL>3BnY9X2doYX zbt7#65U-}8;il=9&bxQc_%c{z-OHilV0k5*A8pPcy<2~$kXFnLx3|S)6f7$G)5FhM zf)uqjRkz%;2bx14b;%fYpq}(MIr0dL()(upRS8QxOwbN>!{cS4;_dmZ{B@SsK-b@T z`8D_Ls4$-jXBZI8P^|mE;C3u%q3lD~VRl%i=i-AJbm$pGJkf&sjL8MV#vgDyIW*otiD;q3Y zXwo3NXr;keM+h|-ax}>Oy;!On8J(;uBY-XRQ%`m<2UC8sG~P@iT3p&dT>vP?dNavN z&jYb!Ksf4po2{R0++?90`nKk>@T$?Z%o#`k3*O-`i%`aPQGhsS8q-^VzLXvb0zt zpxE`n2@<0~$zH`>O4e4F$>az!7-bs6x%ztTgsnO1ONAu=1AEH2;xjY==Rf@MkG+DQ zK1Nu&NCn+I!UF@B!S1?-)&}VXlsCuZMgGo0)AcxcmW?oPc}U?JbWHxn846_?|vUQ(6{neQ@$2EIWmg%?&I@k^Ut?j|4WaXuYd3H zZ~g8|j{ThDubum*HkJ&IFM;?t|MB@z2~eD$1<++Jvr>o7JHraLpvr2Iy9;gi#QP+bG<`dzPA4HnpFblr6cpzO|=E8*G{L!6%@CNPeR zi#gFT&ZA^uaXmQw-Q9qwzV0_;qWjpi*zHj5b@B0%=oz~0|EvJfWE_1BC5Zt>UzY(m zOIh7<55`;9c|@iVoDrE^UvQ5^!b(n$IqA!^DmCI*$4BpMULv|hXoXG2Wc9BWBU_IR z$%70HAsTZuv}~X^W4NO0EE@r#&$ zdQ)%y4@;DP0{B@NJV@4bQ^{nK_M3?ZOv^%DPeV|YZ{;skX5ce_#^3qncnfIFAnCR9 zGLtZ0EC0L(zGk3)>w4Ef-hABAwer}^=iOp$Z?*gAXTHXK?0kM6w`<28wdVrt+-U!N zP5Z^c%sf{|*D43&%lW({d@S_>>A$UvFgO1lpgBNX0F_)<`as*7z;R~fn)T0*D zo)xb6i@$&F?}s)T5CB_1sMSq`0tK$oCSo6JXf*3*YpG3XTp1_y#5RuX8u}QQES+22 zr~r6!p3Ct{)?il;qt%(+eH$_kl5oRgA=^M#W6T6-3h)pB-3(C5_a2|N?H+>`p~p5E z9ZZ}%<5~P=45JRLPOGP;W_)3ZEx1SMd<$UPWGE#JCm8RRqPS#-z<%5w(i6sMNenZf znD_jQF)$AD>dZb`Fy7rM(dzK`tTCDV-V7+|XRMLk(~lE^kg=&1Ezz%QCG_>vYk=_q{g|Iz} zYwB@*^tN`xiCaNcw8&>u-Pin~s|RpQSY0;a4EsLj{|(6*uP!_*>sfQ?1&z%eqQ#Bz?$Hb?XTVt?osG68;Yz=-x&>Y!1@9$-=jz?{yq(1_2> zwXjh5P8Y?wWUooJMpg&yJb+6HJ({z@ws@$En^oHLXp5E@)_`O*+LSCy=`j|Q%keUXJygs~dp>-4U%r*UOvymy2(;wSUpw~bxYz1_?KoM3 z-+lL8==okL*8us~E;A_qYb{3x!fVIh56%^2#5wk9y$<#V<3KN%&OJ6@=IbddHh+I? zB*9iW$SUQkVO55sis8u?@&)hDn2t9;6X*4(zegCV3nZB@M+Ubx0&tJryT`kzZ}0Ak zr%SVWC{$TJYhAH#Tmoa`fq}ZLa*bjjdIa}4-bJQB&003J+s26PV8%w-Rf`T$EC+(T zj}kENTj@f!Fc;Qmd8a&-2$h%f6$C@NXk24OBWW)6xc(kJy-#y(5en>ml(oi3&kWB@ z=wqRs?M{swVbB&gEP~OE-~=J%fzjO*;7Zhp)xe-7hbc8lK>@C%4m$vZvXkBM2r1Y4 zIP{%`^WxbUr3gTjbGn?M*Q?q1y2R#j@ppBPZndn=Aj_QgaA}sDqytxrRV_)^B<8R* zSU^5t7x1h}H%gLyl)m219**{oO zj+HHIJDd#Pzducb&H}{OFSREh2KriJFY$S^HN?l810y zDM)FFl%{Ps^>Kt~<-T3)S=bHK7RK0?fN`wRJwW?*9_7bd(EA|AW~Nb zv{IDCRb5a9^03bUP-UW5xAOK~Z-!4j!3&{QmSIe!4%H^>LX`HyM&r~-`!hi2VZcp` zLxKVeDF-xqX z>Tt_2KD23Z*39G=1xGh?c3Ygo);5%QAMO@OBiOK3%4D$UxS_wT4iW`$A=7vute1f- zccv@V!94o$JmQ_5lkIbtCfauM5=MkHYhA|J+02n*9F-+&H{`H^Cm?ajMhYcN>q&Z zmNgHHi+tg7LG9q`)+yT)TIZvKSOBN|Ev%_7nkNr?BEVP$=RfMPHkrTw-S5ix-+!;i zdbqp?2jE+>YS7zAU5LNw7jg~h6X09M1MRa&D)>BuXI>6SE@IKBCWiRW(pULCGc=Mo zrdBL^m1c;pW=RjDuFF{?RyFOEqS~8Cz!DGiZ{;st-U`-U16W7kY(D4KHF4^_byPBLM zC-opf3F){yU^Z4(-pMmJm!eJq4z^`)|bc=K4L_;)D-AIxv5+DBpHH4S+(QjG|FdVU(Bb9DfF3cYU!wN;G} z0i{7Is!^Z;2~LI3d5Z;tpuXL5UyvgFY->WW4QsLY+!$VhJRpZvUob-ZwFtUUitom- zK4nZly#L@NYd5I2ZMbg%#7byBmK?GX!qL}Xk_x-=^s-(Acj}xhC5NlarNiz2??3#< z|NiphzyJ8-56*DHqUMJu4tRiGfF>-oTQ4>MNGkYSCg}fX@9(-~NpAF95au44yLOSq z;&-bxOS5#=(i+XZ^#3pB`~qD`7t>c79jQN9EV5W1nHlaj2?HJg=HZchSCOaHqRPo# z8R6k>ZU!?qdjWd^ymxCcW_j&!t@N;FJC#D8t(7N;H!u7?vbR`=pk;1bZXaDdEhHL~ z)>kd#)oOyq0f?r437}i@pgmGXZR>W}I$&EwV^AxNLeJGOCe^|{UPO&1;xrU8CJxQo zX&HJR-Va(dGG>xNw!iqrFUHM({No?x$K#*p`0a0hE5HB!?{C1%@pC;_|8dmsOl;Lp z;H~@bUBiL$c?O8?)$iW(-g@Todwt&7_p`Fj>h>{pI{Ur$$?@OOVtTJmXLUQa=S-&e zu0J~_c+542a-!U+Uj3#n_nv)nassyvkSB5~pLSB8eC913B<{!DjCFZx;%%9LblY0y zV!N61$rY~kH!uyAVkx1j5{Ol$L`q%V3gt9_xo&C2CTWPCP!E3qC)Z+i8}a~vMiIrz zeCUS(m|}~)q)v9g)zV~d>jPFYXdQZfG2pj4ACH^1KL7Iu)qST;0|i-?zRPJ$awEX`Vnqu(B?JsnXXi zBV1JA-Cb!UqFTJGJ$E%sp-611yR%yE*x6Zf2j?2;)-#xd9*>Wo+&TxMtyWqC8XzIm zDAa_w29n1*S{>XB2tSVNv>}hJg{DzM%qeAoI^fx8&Vg28BZ=oE0dVDcfN%v2gt@EX z-1MlL%>Z7l&8K>1Kh2P%5`Ew5S%kOZux)lJ;G*l(VP6>yx>iE@{W{c9+F z>c{47Xom2_2?66eO9yRpu04hXBXY{49P)$@xmq^C-80dd1+K?)2tTJF%|e~&{GYsM zL!~w`yLoS8O>h&LW)9wA;KxXR(D3L+6U{|X)&ozS%d}LjZ zJ>|4=$D5V2jebpvOW$@0i@KwGj9eBkng|LKvH~;?kT)#mE#DheY97~g zU&y5R?u-u+2h*m6q3dYBCqLc!-A*;wh#H~P>AjWyChAH8eOZ#qP_qVd4`UkT;p!9x zc+4msIQlJKciL}Ga29a|>Qi^B$l!xJ)#t^-$bqS1jPG+;zs1j!9-U}lP)jobn>|l? z)mj-aUFP-J##mMWuHblS&7BCJhb%^!5#6N49H8~L9ecx4<^Xstv_rEBry`RH=nR9t zcwe?KcGhMSsE2B&b{rog6?#Ug8UTo3M7J&jb-W!=FuO1du1(8(tu_XFHDE8nb zkUFM#wry;y*tU99(3TYCIw}dxLMsIwLanvO=n;fF8FhGgh;q^Rl>R_A8z}=RCRND* z++_dbs1ZH7Pkve#C=zU$9C@N_ZSg!T#Y{5#*WwH&$sf80gGvSS^Phhnv6+vZJTy3O zqurBR2}*6jlCVwNI6of$Gmq~BNWU+5WwQU+>vat2PRoa```F(N!w ze{B1{Z#zHc{_oqD@q77vTu9l9ufLt&DFJ|{=azd~J@02`OP<^uSQ~H8iG!Ft*WGGW z&*x2Y=SToED*^5dm|BFbJJsqY65P|Yl=i9YY88#=gaaV}KDUw0TDDq9I{zmHum|Yt zJu;oai{1g|l3D*+$f?B|!M#1Kr2yBox+4$f_f|EXGDhk@WKa2I;?sl0ekc}Y%iF5w zsg|Y3^&;s+$T-5-q+9XmJL%MBR%Vp^*pgC&3tVFI}> z`+N69C0EaZ5SD9qKJ2sh=W=Z!`$4N{O)8kJ#xC#4NEV~_Y8>X(o%=@pmc^~EsT|ln zbK(!hFVy?`V(T^rH~{)(P$I4qz(-1OezyRER;D=M-+M0(a|YtguWJwGVPF%L)n@UI zpT4_OqXTHh?&|aSbO`f0u?6r0w_`1x2EbSgZ|5 zUncxG0cTzW0BCLj^#Fc!I2r|J|E+92hrZ37M_$E1MF=^g>k3ih>* zUw-+A2+@LuGhW27o}1Eu^_=Y}mO|C6(n;jU(;qrH^TMea5jKwLWJc`&hqYJ_PDVu z)!!tow^A1Gdlu|^=k&ez4?feS5SHt?Iu&-_%Iyd~?#Y|>*kW&huVyc6Wsc1%Jg6h!C@2?Q!phG0Sz1*>_EKk47&7sRm6ag9mxv@1eBYzu zLI3X_M|iZ^xBIzfP$@k5jI^23V#-br%jUM{cn1^cL9&R~u)kN3@h;65oM z7C3==?%@z>mR7@Ii_=xeJW1aZp=|6#2cAew$M^?)Y9SV1+>T7SU3?c7%b2I(;~qwa zL@O73Ht4jTbiwrPUZ0GibBpC7(y$S9I~n%n;x5&i2%>%CpWnV$yy6_ zM?C!NGqnA?w0I>-SDp zph`ucr@C~MKycB2HwFULM8tc*XG2HY~TqYgS9_vx83@cLBoM2CbVaA`c!$SnEloG{&uBI|It!ij;9r zm__S9t1mH_SFF?Bood5zHNiA^48FD+C^5Dwcm~j0`4&M%A;*hb_m!ETK^@jHR<{ZG z6YK&<%o=(Tp7?j3O&c6Dp_wGN+u(V4cqhl~f6blz6aXuwf(L@i$t1`DXw-5({q+54 z2@U+Fl4xZ`hU zpO5G2{YRP9@+UBQIDdAp6fkrKOedhl0)GIU685G&Ku>b{noKZvSfBO)mg8A_I-Tu? z8jdJk(!#ly>%6Ako@J634muensq!*wM5AGS^ExPhc9#T;QOC{Yw^bQy-8Ye*N=#ah z9c(&?7V5mG<6c;6D`0X6b9HO-v5jT{ZN;)|K=d-!O#@F`-)@u$DZqSfZqe;nuhWr_ zwvgUjV$9*tW%5(L>sULTw_W+b+|UY$ym+1lt3z7hpmh-5%`CuXT{oHA^BGTrOHFL+ zAz!!tHru7p-|Lvy^-W{)TJ*c@yTKh_P3TIe9*JIDW?3%@*;UIn*kbfSZx)f_`6Vpr zK^5{&H7m0ICGkl*Ic^@s!^UVIfDn2N)QS=H;%ZoDD>#Dsym+J!9O2YAF>-8lJ zkFzn~?5Fp-t4- z%$8$(n_}xJ*d%o~=c*MKFV^1oDd9-Ho<`Nbl%Zwo0l=kw^;+FRfa0NbRK81%q(Nkm zk#xi}{V{0R3dhqE3;XJ{jymzd#nv+4dDcRb!5|+1v1xA4p>d9_qLTe>g-5;paE`N< zsotc>=&eKR{L5ed@_Sj0wcNi}(EKj}41O$VKD*|vdw%F|e~Ih=r5>#PJ^Z%v_GPN@X9vE=Q06NWVEp%G`2advS0+nFaWEjs3Rdmv zyja7>Q~<(ufgTF{)EZ0OQ=@Ca!RA?&i;aw+tK>jvL0QRk!iu0Q+!G41}?XMXJQF=HUDF6V8lfBlZ>p7ZMvM{Lhan{Nax zV_WKZNAEHLW6on`6)AKAk)S8^dVK++Gel2tQ~`JZqcYAW3w>#CmXwZIz1$NP*jCyO z_$iiiX&IhxDeJ&eW$J6o;3s>LBt03W2LSM}VI_ismVv`qaG{q}H2R(Z_}G7NhY{Gg z$74nJo^f}B^C>L=D)QN<^<{~zcc?L}O?t=b_hJpck#F}tfMr4fEA{Tis=oxwrFaJT{#=*})x*jB2sbD~@zx=+J zhGVkV!_MVIfC*nguUd}vpI-mzPks`KQ{cC70HCoRS56BuVX&Ju_$93Ikkebyg5X!{ z@5=9OMYEe;Am?+>{GSY7Z`&Y`a`ZTcSM;$U_UzEIzWCycH^K7}G*_8@=%~95e{ILd z0@Jqu)AxPW*>fs*tM5%+jBb_8K9%#Kd+ya~w$!vqi$C69f%m=R?4DZIJ@9_^yyJ6^ zpKJLaI^L51#~$}&{;}7`c}c5cT-Q@3w;;Ob-!2k-*b)miU~MnB*9xy+glIsu)UgOj zT6k;U7*Jef!bN^903^Wb!D1aiT<-VNTTZX7)YB|%Go7u`z5>W%oP`CnNv*trq88xQ ztf_9%-u75f?RO8Y*V&p+2X#Q}cn%bat#E;RvYML%8$g*QtT0f#Z^q;7!H>=81@TUM zpH*c7ur{9C0fH%*R=y9eX+(3#XbqY1FP+-h*{F)h=Q{R6G^24Z{j!;IiikN=o-raO9m7Jq@#$r!WHqf9c1r&I+U$G z=8Te){V_7{^)3<71S}AKGd;#?ontNPgN5}4xWkJk?lr)=VkFuH2+Z->!|JWLPneqmK+R)>vf`n=)X)>f~DO+JQ30e^+#L5KjCD#C0D)4 ztgNU{nFWEE-|ya&i>#OrXH^S}yo7RwoXI?$_%;=?=b=1Y12nVCKRuBNqz>qsghUTZ zWu3q4X9Zom159f?ycqjVCKd)tOnOBF<5_@IBYj^7pca3j9!iL|!N*zBnGWr#a)9eW z+(C}v_30qGY9a_+pQp}uBsF2XM9WZquzvsa^|wzxc|X807IWms0H}k2(0e>f2NLPS zA4hhjcTrc(lKA4Wp3&MWfgL{hpL4tgp8p)s{J+ByVC4g#=*F7V&mEzT#}O#r1CSqj z-dWw=y63I?j{x~t?pya9&)s{@8OXjT!w+V)5n0|vwr@N>}x-N9~sZjsb2yz zPvutNfmeFHw^}0Y|8`AtFksg}BPdqdo?y_d#P+S-)cH_Z>a=If;~rpH4$rL$pG3Wy zd}y330S39&?v@0KT|8Yh7I9y*x&bQcH_6c*&nSEKt$&k9E0hGc9=nCB%URlM+m^-< z5EB_s7ni*|8@9#6v+ZHPqHnrCPXX&P&3h(O3`2dN$6QiZS^&VMS?IPUEa@#$ zOoIm^V_%`wK!H#&{^0BN(h@TOp0RAFlE?ebd$PwayDCL%iC}?IZZ9+{C>nfULUA=2 zWJX4d(h*!}2dDUfslkpk(A^agET^2qA{$9s#3Gf1BVI{UZFrA&a1P%~gthURWG7uB zYo{geS*9KQ=9X@z0ZUx+EX+HPE;Ic-EW093ZAt?sR%`k`;<2|m45fxP9$6&a@@|xq z-GeBYRsEqv_E5_{V{nXz!M9$5F%UG2#o|Jf>i)WIWxaKo>VL=_`0_HRiLQ=ubR?Wy zP&(XTv>Za%*wLIaQ8e=2Cxl;sp`_?%fHC!X@US3{d`|&$@T-pHtoseePQd#9P0em6vki{_Fi^DkpQ@YSv^RPOqkM@UC&;W1_zW_KmmWC0q6_ETHIR3hIY|oIWzsFmp0}4 z0nlCCu`K%9v#M=ny{pPi^k-2Buo$miM+5H8dk%$1==wQ?n-8kCtS(2(GB@c<&2Dtv zO5kg6fOURo=A_mNZ?!t)EhX8P{al>5HKRTpq$wKCJQ@Q#p*C;?LZL%#0`ydr^L>;xg`7Yz*RuW$CxY zpDjU^5r3~MPSwnThd9nHoc#!wMyCwg#JWxc84Idfl(7^mU;-RxA`#Q>u&C;N!(ux? z>34#TUMAmA)ulvw_Z$0y#75vY6-o11G zGs>pz-v`L&qB9wB^Y_EG-m~HuHN&oDEsC|I7i(@ED;2fovuE%u0T@dKrfYk&ncrG@ zcAFajAoG(=ifr3)S3m?FsI39*Mz;BGxf7c71kL_?fM0;4)TU(0;Sn9efia1uS^>EO zc(~Q9T17)7&1eq9`lYO?`3oRBx4;KbD^_Y!6$6MF8^a*flP<6nB_S;0Vr5gl`1l}& zH_w0u0ZpM1au7~-L%A@%w*ndXw?0zhzY#~*TM0LNjJ3MmzRkScYW0mUvaKjLy$3L} zUE!V^HP?(`_cMf#*oif~GI|!TeyUjwn$2(Oms3Oem4)nZCcI>s@t0!*>dO~Yq z;9M_jT60ALkf+kJ%f!9jQ^{ex^EYXz^Zc0aeRFHR{kFN^ml+t>ps|oxujbEa#Yh^U zJMdD@Up3ke0WIh!vQbl>;k-@0`r}vD#)ar3<{WA`)|8RzbB5d}i!<3|(1^4FL~~Fe zG_0Kiq4yDuLV<4udHOqGx_0c~nYeZgErKv?X0_hpSvV)cwbp#*I0gn6&IdUbIylZm z06}A=4C)w-c85XuD>Xp)TB3wt8Af0=xk{y6REh?1to6K7Iyg_=;42{$78|(W6)cYz zY|s4a$c_n5qnhaTf3C%u1Ix1>e=a?PuzY`QR%admN7)<~?h2CYc|P+p*Oy$6dlu(= z$Jw)fJpMAr4*}k1eNg-U-gC~zO&uq<_Z)z9tAI_4Jy-I)eTsiAkg!OAimAlp5Ku-z`wVxY6i01M&LY%3h_S~J%Hu;QL- zm6jBC#Njn09C2|+I~R{L-Ft?ELl)McaT}2$L?ko(c{=O_Q6?&*IyASqrGhz)3uImU zLRw_IGl1I%2UQQ8%ezN)h-`|5!%pW`%0kGo8gtz08xDfw8s{TxN@Y)poXVXDbQ4Z= zk%#~i{OevELY?DnZ8RBMl#lt{KvoH`mXOU@LnU`^v9>b~2bcO{S@-lF0t>Kiuj>*( z)ST^7R3ti^6}dUPFklbxi&4&!d^p%GU=Br7e^;Qqm-omNi#dig0MCb6aI|f=eV$v4 z(y#{Dw)!lSRW{xWl+NPZIh_112Iis0T5bsg`j^W?jN$s+R4#jAB|vM%?`w@QJ|cEZ z!5~m3_X*QMO&PJceMbTOm!SDEFw?`sWwJioyVs@W(Xf7a2|qriY=D0ahds`~dD~us zrhq_kuA@OuC59j1)vVLk;F$mbf9hHClq*b7X$FmgZcA029b04bQC^)a5Qvh()ykWL z(_#keZ9QJgu6N-+2+2LHMpm^}8Um__>bwsT3mWgku&r@MmFl*ThU!*31(c`B- z{fWylEzbH+c{cE~Rn|`qvKd@84Ben^_~5{Spi)iL)AcVw)u@NcRUJ8h2yi$ni?;l= z06QILL>KuGz^TU>h~~aZ)u`9hd(O(a_l!U1_?Wi*H6FD4hbkiX-j|Pgk1Ft~=Mv!7 z^3w8I>u4~qj1Q?G)~#Ss_UyEmb?8zlA2UKf0kDU0Ik&Z!^V5R@pe9gl0dk^TzbB0_ z?WT-C4U*Pc1O5h@76)6c)NgTlU04J>F2Fmtn=azn;-Y7(MOQ7x#WPK5@cmqav%rG{%W>;2}T?F@Kc!oWDFvCo$3 z9D0tp^;_K93r%)7?+tlg96$Lu>b-E;>&{;tD+!o!iUj=gesWs?Z13B&^49E$>0@y5 zwLjaP7-_Hy#N%2^59*55Au(a~6EonR#!ZsbVC=Q>6Vy}R#8@q4!#IU9yc`uVpJ%n6 zjI)6ql_D$U&;kLkM3zv1izQ3}@Yfz4qlR)LoE+9=EU@4DAp6eqhNJE1Z(n`&Rk6-W zfN!p=DYuz8NZqaXwrNoBBM-U_`m_Y%T(^2clS)I;`xPLLEITj8p9XLvD6HptpApL~ z>-EW&Ty!do2=^-#H}%sz2z`_Q1*Om!LBPw|BPmwG6H zU;iEBegCg|{N^{mnZEb3a36tJJy(IwWF+gO4(EYV8A1Wj2+S<){I=_BapavM4z!r0+hy^qV zcfgZ+*e_GGg5&cWTlIc{KWBiF!Y#h7FLm@b$?f=}{HSc%<~~OM2pO9ICd+!rp;83; zK7r8WLGOc#!Lys!EZ~DD7a3(n3gDK2v|&X~{%D=U%^H`M&H+ritiSIaHL! zO-|zpTb1nfh>c(>-Glr;8a6%Syuz|-N&od z`|4SjGc2FIgGu)_gPnMrNwMv?$=_v+y@~@Bj}c@7WkherkVyUvJtp8hETFH00?Vxd z#-|vV{6*U%K?uL0?IB2bu2_A|dixTfy9T7@sM`f2Kl~8DWf&Djwnd2slwrFKNX&|IUuwVS5OBOlnq|E!GreaVzowA`dQ1X z6YNqJN~kLUbp|!cg;}egLK7d`N%FtWQ90oMD%$;<_u4Zhp&l)9Ygn>|MJVb} zXcNAGn%8{jp$$eY@-ECIOtew$)>vVu->F!1dx zjHzx|y8w-&tR|Vz1G&M49d|F&PG?x7TFGkYbsWHRL_6>hV2goECo&iq;v8EAijD;uaxB118$$Lz!05#}-OZIL1H%&EiCBTmMz%!{lZ&H2 zN`}!9THq!9zHQsdT;aRgi$#V2WDd)Cvp!c0Wd2kyZkRHqL9u~SX(K+jM{O~n*#g|^ z0i`1%ODOK}cM1xF%GLn#MTl6V;GMCnbyK72%U}sCZXkT{n9)XWHAlx1?zlN{*S>4{ zPNQ%>JglLdAa6p&0h)Qa0MdLXzXi$*V=}0{UVqxJePpbHHO87@w&zh6W3QiBgn4jzwdFp=N`zr z2NwT#J3-T9xx?J1zePFqhx%9Y;`_WmySs^Gh&U>n64^Png(0FAWP2 z5AkhU|7<{}c*^(W^2*t}VBZ2P>w!0XfNAPjDl>Di*yiAD{b~R0BX(L z8lV79Zqz|$OM7IY+cR^X1OdeBwD%D9aO9Fq)k}yrKo;xRh={S<+C;d!^|A&S&$TI? z%k<<@#>)T;y-(ZVEn3|?QA-=;qMD5RMuL!43iG(c8%`ynJ30(&vPdKrNqLF);T*x> zsFaY+P%E;m#aF5Jw}UqnEOTh{zV5~;2XHc8T1qE&2}TIQeV^8L`l?lKvs+sg++Ce2 zqCiRM4vQ;D`p&XOqa2}h?y(!OL}E7{Hpo?>}HG~(MQ{;q8P zdj`N5Wj{R+8E!>sB|1lraqDwv%H#cza(w;uH=_b3csX!OmM8#_Yg-dfV!^rJIjVn- z>(!BpPOU=Y9~No7_j1V~@sD1%4sx~Z>R=`{HyYkCX$hXWmNR{E%7_7L1*0bPHMlUS z;Z>k|pK@5?)sQi!E}k|3A7X2RErDt&ANOm${6zwMLqWlEu5~0@h=w^cipQTOp4OOT zU&~V^qgsiyJo@R!pHs%4bI-l| zzfaxjwI90YtX#(%r`O#B=Xp&+$NO!$y*Hnmw2D?>lpHv%oR8Z9l+>ZM0EZQw?2)S4 zfO40#Je%PtL1!)ZOeWcwsyOr;0A4LU0~8m)jCBrRGAxh1I_C9M0vsSTz`tJ;Q5@XC z%>SR&_x7NaAje@UYi`|@viLg~aAX)(U6bD)+vHY1yXd%dVP%M_E z@QUret6K+=$pDrBV#oFod)F<=mo**c3|N{oVp^G@kofo&2`l7UEVm+Np(WW16ab62 zY;vff`}7#r^ED$%R4a3HE_WR=>ylAV`e8r~s%S}sMt@fYt`+X{xX$|kIh*YEu!>iM z7F3ZD4)3}N8S042rQnXTBxpFVJJ}B0u+6LGS}~G^oV%EOoPN<-jje17R|HCMpD4!P zu>Kb1wfSxY`6{ZxlQ3^u#{u-+5NDQLc?7~+p43Th)iCP zgC6oK9LpPS6bh`a*+DkZ(aEWGWTFrq6dEQEFkG$4+L?L|%d}acUm~;|z?4p^^3iK) z69WMnuy?;j~$i1{a+h@2GmM_^8|P_oZP%D*9b9#P*3LG#6tL;Y z6<`OzTGmXuLAbXJJ!cZ16rk=@4lj>%-Fkf{wb(P}?z)yWvzK(f|m2}c3s|Syg;?84*3MnlOO$PGkv9fR5^v<$|Lw^}q$A2d>h|L)pabj3# z8>K?e z*AZx`_TGZumdRHx>ur{145x7Sxu#MvW^O#0piN;}Tp=YKa#Ca8P2*$YIGZN42B3w5 z3?RmIFJ7S+AM`JtOPoo!B721U-5_4uXSl=PDfsR^xXDZ5BV*V-E zeeehw;f=fM%VY^j{{HX(e%zytS0_R%_hkaVXg6dfq#VkGuE8LAa7RSygsf=0ae7*G zlz9|yQ5GC(1@|iNtAqHeDC|8`W!9{TBx!k84$kFYzJuWZ4#z#cUqXFDqB&-Pk9=WYI! zd*OGAy%RcTvZXs{40=s#Ia&rV-4ZZME1cQVP_Hw!+WQ{rMyf7euAeac+v7SwPF&ks z(MMAL0GdG&ak~`;oW0B;n>&zKi{4yT{$|`>i`s#ulxwr6dbYJ^hC{$??Jv8`f$4P% zKstE43b-~4yLat9*5dJ8z|8^;Vhvzil_N{SVxW0(K*k(2zANW;-^YAsAkM6h&}J$X zq!&elaB>xUptLksFpd!>M*D>!l=p4Bfqo2uPz1DW;~YPG!Vw!^3J$M?G%L!;WzaDt z*8KotK%Kvbi-AreZzz8njiw~KTJ@BzE0>F> zMqfN?Ov?xv^sV{5ZGlUhkDcc97uW|{2NKf--R4HQPNN0%;{8DNQOXR-gGRqdIkYn4 zA(E*|(K<3z+#Veh`Om#@?Z~I6=V`JfY6REdAU9roEyn>T^awyLT9#S99|PD9iin14 zdwF)A+Vk|HFfd-cECmfCddBOsG}47$3y80i&qxQkSkf0l*Hw>G>QD9`glUwNpA2g} zZLXYZILo|fdcSFm`!p$ZF^)L|{@Q8U4lRQY#rd-D%AfubIRDQ$&cIAv)Hw9J0%irp zgi5RmTfLU+>*x9&X*vJ&Pyh5mN6Ts@`26$FC%}9>dKw!)49;$mSN&1Wf%HAldkdc4 zeBPVSmcQ&ZCkKGjTq5oZO-U&FbY{3qYsB6;WZ?B*g~UZNBu^3#x9&=jSSIwy zXeRo3i3MDQ!h)*M=KcgIO3P>-gzf5r106euEr3}7y|D9cUKzXzD)L{+YD^yR%PIh1~zAkFH80B94dj&mVNiTj>%&%jN^i=Q|w;5&P(K*6t z$XMMF_BdgH)d9B%w20xT>GC)J@9d0d<76E;<>>FFV;tpXj|3xH_m}J&R}|A=cNswm z_6~i+Fb1BHbw*DQ}Ff zga7=J8KljK_!7Kn>q{LshN0A$X;$(~ovt_ua6Z7Sj>DHN45|-~5dqCMh*3c|In zf5|w`KOS!%zy0mscmk9;f8=FTWp^ zLC!nIlF4%H&&;x`0+?5UyQ?n;fS|>KHMPWmn9M4Jf-zlho}OlZ58g%LZ_E0y)eq-Y z+T0%id_BUq$AL^PwiVnK#fLIn4%IS8J4d;#d008J9MVtxZjlcN_czwawghFPNm5OA z2aS=$B()&3_Kn{F$t}W}(O)PMVIXR$01O*wP4wcjHTku89^7sERIdR{wm{F`&$MA_ zk%k#ru8VPXJEHZb%;SVI9ap$R<}^mV{yBD?a^Zle#uKjhZN5AF68zeA0JR81Ha>5W z0=@TH`NQcCYinAPdsM8(bVi{B6ru=$f6{=~U49bn8RI`Nkl`4d4XykZ>j?Fs&LX#C z9HmR&rybt?K4*9Y6Dq#KDUWtUauRP7oMiyH;jc?lTYM~m0ku9B@^|Jo?lF|#XHqw00a04kY{dX#kyYI4P^HonXelJhqyx0S1mS-S$!1ZCa9~Q$EsVc%sf+n#{$n^vm!nfFuuffBX)EQ{z7S4masn7jD~1^%_sTF z$zkh*7k(%J%a7LPf9`|6X)Qn3-|`y!r(;k-bG0(tHSO*{ey@M^Fi+u^SIhIys<1k|k_sqQZ^Vmzy? zq2Q08Iy9`H*91m;hS7s#ZRJ@%zl8CxdCrGzQicG-0|2*H-hWqD{klOvT`wLa;6akg z+Jg>K(^`}A8nBt~Q;)gbn!5*pUE&=k=}KCX4TC*+z0St8y%%aBZjDTfIR@7?t@cKB z&G*-w{MJw`!CTtSpZ@f-@m%w5qpV9f0$OJ1ZM@Ct9GLxd8T7^$5nb%P*@EZXge=bw z7Lmj;CRrcZWl&&jkwu#C?!QFf20h3(GK|1JwzQ1Te)ieK_txVk<#t8sHChD8IOqfr zygrEN8Ty@=%>Ymp9MlGVtcGce7j;jKMi=_Mq|pRG^YYS&t!N)uYXPcQ=V~+%qf5MZ zaG&1OnBuWIYk5@zt<(@K`)SAGMuYC$&QI9BbYoMQfY$uIoWAc$2qL zL*9S#ZVZecEzbXZ$8Uf8Tlw>p>(KVu1%AP;P7jpY5yx_L%H!s@CF#x zvVQjY=Qs5UzTPW4+mFY9BT_vSVI2rv^2x7I#bSf_Fm3>P_q z)><}baC%N$*Qa~V6)l;5JJu(nUWgP>A#&u<=5r`NK}Yj)qCTyKB{*w%XjjxNflHNd zrPoFM1IU-KXMR4wR+9pfY|Ia|L|FP@Fb&&SoyaWa|OZBK9&-H*&=%^ zQ!ojUbZ*R8&`HB3PPAShR%exme?R@AbTAof=8m^Dn&en#9$c$L;M+0MVis0gx%eWrSvrP;cFg)9yii3sf zOG~{){;)LY+ed)6ACJHMQOD$4N6mg&uLUF@!4GAg1EYDnH#OiRz;jE%N&U?Fbyn|N zp!hLIwanJ<_1yG(Pk=iA&SKN2@8@OBzunZST+H+4-%s?0!@(j5z&zf6uYd|~+f-Kh zp#n>(K=YOxZ}-=F$w}LLJh>HcP%Ui7>sTZJyj6M2x@7rSk8)dixgE2mQN2Q}cB_=6 z_uL7uLwsK3YXM~fI83L@#kao4`nx3Hgbu0qVKKIM-C{*+`2l>r zZsWQwfz(*jx+=sSzl6FZyA3jTq3}L^w3A-vNcrNxg2F zaIF^#BvyAoHlfn!W{dSq`ME2s{99<4$TE#n1p@gR4KVLTDO=syEZ!|2=L+&FRh0Kb zaS5rU2RL39$3hmmPI^)%(g2=_* zcb+&#!paSYSp)k-`(^FC!)Ui&53{RMbDR>{8A+@sWciU#Th6AE*%|lbM zLA(X{<{WcM4GBY#?`rK{ni1=@E>*6`-uQh#hNS!FJ=%TXHKCenxyYEBXQ25WP`-DM z9?*EsKx73vXH^6&xmnA9`TpQJAPzvd0A!9MP_BS1>(nODJX<*e-W;x-f#nf^F;N4E z(%RGy-(@PVp1-YMJCVTcx2gS7l%Bw22@Y$!&YzimHQ!NydRxx#b&yn{dIuB(O1-^W zRvJVQoCE76Ik5PbgzQ9$qgRUoQG);sN4=17yP+)s;LUQCX`W{#D1lQwhayP0uj!uM z`?}mUjSs$azqessF9Gb9uKJ`i`5-477*!aJ@tXA)+mycPP65($6*FB3=j-&<-6La&^fI^X zK~u1M?HwP0PiYNKuXyoWutpCmL?L-o=DeuQpdP{L5joSHvZ2}Z{-~kre85)@v00JVLIV-!+I&0O4QQv# zKfP{;GpOKx6N{O0wQUNH(WJBts4A5{Qu)k-cm2t`NE=RDe)4L~*R7mwvo=3F6-7C+ zBV^q*BW@6B;}^gD`Q+&Ep+jFprHcFrxPRDzwps!11hd+_05PH01)Y1fAC&rmQmFm> zwU4>FNYwE=K*@>4ua+P0PlIDQ?vCqPscNr?_O3>7|7eE~$0E)^^K4l@cRr)Qx$W~k z_59IVdz8=d{8@k8E4v_Y2fr<3I)mW6d~R99e|vq7ms;xGJ(ag3+5kaZ8a9_U_W@SZ1hH+hzMJu3jm0eoj(w&{BYkt! znER4uu>)4Uv0**!NmbCbnKn>&EL$v!oki6xy;{WXR@x)Tb{wAV6~t4*dr41cH3f^F zhFW?WJwgE?g2tY4fCq5un^}dMMTMvqSecXwcUIdnr8DcpD66#sNP4Cecd)P5tQQhS z?6Kt?kpmWUDjbF?r@ct;lTmE+f%{4CebyMekj8vZc@1EnyBlGQ8UW08h{xEW{$3WA z_(j>Jtpz60`(CauG1scxH5;7XG_0;T*(*lqJ$49c$T2-deuZJ>_wi-UX6ajHeB%d? z=#UB^&V#$lN7rvN##sP?=Kay#iO;AoYrJusX4YWo1PHTE=$ zmr*+{0);rnK-Lw%5Dz@~^)6fSz9o8vDZD+RirMZ;`g^g{p}!k*LFX`NU z)oA)|<~UmnK|}Wd=2l+5;HM~AyIDv7<~P5IYVkZ>bO%1fjoXHfD|VW~d?UKKtaMf^i^%zT=h6V%q=Xmko zIP{)h{Nfk#R(P@>kGBu)6OF1dIq#hQGY15G0hrk982{J*`d`a`{Ez=}{QWoo=HJM_ z`*;6tT>HfrUrY;O{)A1dg zhtg3Mf+Ki71H<>e-%}v&0pzNT)bI7aW8EfgVETRz_K!zPv^gm)?TE0aa&7_n{qkq9 zTmdIz(T7L$H9$GQ=VbYAStV{P2ek@Eq^jgJ0A!mmag$1rsAbn@JJ1aa8vrXKFi4D} zGWJHc+i#3F+FC|y@Vd{yJ}rNg(_*{72dHgcp;RmYY6m$Z5$CH+Ho(igkCkaWV zVF@nn(sH&~%0g~!@(gm`#s^>HLKSIg%^lg&dPXnEku&!XzwKjP`eXpkx+4Z)*78v5 zQsK5XKtJI<=w3<2SXk-_i{=h%!xFzH6)4_AX%UB-HF7!lHW~dz9L%MEk|_hr^e(R+ zF3pizw%f-G0B@w%9!`j^i0#Q`-n+y)pXCyk%|L9@Gc3vjX~!*#@?(syKI0+qC1}T3UT+E1Y+e znNebtrV!(|mn1E_DT#2w&0?G~CrqLq#%p%RQ?XnaI7J#&C==RHNApWFxq_FlYFEIE z^&gOrqHPop$AgcL)0!CyqElkiiY)`vDW<}D4tCV~XrD~L`MdAF72-7G?52OUvkaJ} z#p}sAx_Bklg$hJ(Q8tqB&*bpVBXMvYbdVU-dxl)&8N|W0l+|ktKDgL)4#C6?j2oF- zIl;@4#PX`aP*00ZN{2Q;{p6(VTfljCB#^C@>L0o(?oDu% zb(lb<$PHHQ)lgoPfJrg&Hu|hS$zP-$Wa9|0mvK|%xGo9oo4}_&Q&yHT29^MaC@(}u z2%zNU>-(ktC()>8lsvn@w$I_4Rz+wj@o)n{`E$k@z}=Em7{Hn|vq)8bYdWWO1J!^x zKwE2`q@-BzTSoZU%Qkf=B}?*6Ewy+na$Td7d&w@i7cd-Q=)5nXKGYp8Nj`zagoc(d zy^p?rm9YaQtSv2Q7Jz!>JS>WPCM^pioQKbYNHfm6tdPN2M+>e%8F01CX+vZ}|vU(1H+0C(zdS6NkYrrH*oUPF)T%??C-v1~-CYZFKULw&;8qppH*B!%~ z^*z+5-N#|>sw^JEI>v+>_ei>8GP(xE=a@~;@IpqHu;?9oSfkmgp4X*rNm)k1nME?< zOUdBqd}0isQQyTJ6V3VY8gz&nOad8EcjPtv)n0-1>Xawqsjr0=g0b`xNo01X);X2MTqF^#thFf%H186iTY>XLj!O&e!vKpE3Z>wk=UoR3vc;^Q zi9Vr)YtjXRmg5j7Ef*qfBw+K&V@4wwKq8eTt}`5BxY9J1EPD2=b-EX>k`1~{VG7u; zgOSe(;4^v%aRxE{^K3e1P(&QyZd-D1kP&i)#|=<`s|_$8=lmKXbZA?(u4IifXUA_s zz82Jbc?HkEmJc02(lh=t#|+G5!lW}`Jb)2NfLOs_1%op{nV)g|t)82qlZ=`3_rL!# z97qEr&L3{>E$e)Mpw?=`ZlCv2M-z63r)Sl_M=)*Y+I0T-cg803wTaz6rmig(u46y+ zYT@*P&r9rwww+N>tf3VecNa_rb;r6L23EO`=K^Tu#n<%$n@c1i!IHZ!nee2A9QROSq~|UsAOqzlMV~vz#sl7B?1kmG)E~M? z-EGBSWk5fvAtC$LCQvVu)727+fIG!u-S_)?dDn18tlV4%D`QXZQ*Lz740>9e7q5>g zCM`g-xW>TPjmQlRj(o~!&@8rV#w2cwB~;mobxe{C!|Bqqd0t;U@WG|YaWJdZ-eyIi2-+;F_F|mUyqzYTx}`B)p#9SFsK4#4sBUyA8~^O@3%Pmcg`5QfY+= zzj76LwYlpw_;rw3{q&j7LwT^==9^TH%^E&VEyBdy zO|Mk@4F^E8oG*jZTI-u(RtT~56!%BxdRb~gR_o_~{~v!Z|IdH({}_}RoI1~r$$IwV z@fSZPC|YsO0TAURY|4yMG*t0X+S7mj&;R+Rk9t^QvVZ`yy;2-zsG}3Y7r*=6*k-eg zl_ivzB)H3(--5OZYWsBQ8NmCvqgRV(eKhCJj`~~qJc-uNpPf6F(*pdRzYljYY_{UI zQcVsw)pPCUo)Etr>uQ!iXaM!Po35G*3vM3`UkSzRjV6-Y#UU$XJ2ci0KFwM+V%9TAM(`aY;Gx*P&We5 z$2qsQ#hT=GS|mXd$UCg4lJ)F+pWd0hqzgydBl}!82RT4@sg$5hko`|kbok8k{93>; zU^3QGk;pE%x~yvYax%$XeGRkb?E$#kx`civ$1Utx(HyrQW*?q>;nTd z#+t{{t^m8{yf6#+>vhf&fR>5enk*4n1j{qyKI_Jg49b%3SZ8zyy;kRWQ-B_%MyJrD zM))A=4CBYzVbRAJ%NDJyPYR*>S(x0H0KXab&1e}J$9WSUsWX0T&~Gvv;EP9ec^FaB z76-yc$zYsYitTGqU589X+qXwj8eL0?q(-z8aGv!&Wj$n?`#s~bkL$K=!b#*N(VeSa zu;m1tb+GIMG%o>$0m=p>Gvgf;1B4HN2KiTT`|MU}=nrPf-@-zTNgNFd@JQKcGZl<$ zxo8db;JJj7Gtg_6Z$L7dgqEw`rvP#QwQ^H+5Siev-sYDP7DZ_vfLCoZME<(%p;q9! zJ#xL8Y}EOWaC}4<$*q+>cx<#At*<(kF@d0@s56FOpp=_A_YWQ_A4)c0wp`44yPKDDa*|QCeR}jb~`-e4gx*9>hO%W?m368^Kpco z-}g8`znd~@Q{$bSvEqFFJF&MoLnXrQKQ|mCx z)yG>a&n{rLQU$7l7fM)5>uR5#*F)J0Q0b)}$SQ`p+-QbHH(g0>A#mJ;)yBl$nb=%lMRcp?QCc+2GF4U2jOOTJr01yn_ z!g93KK5PNph>$T-w|HFXCYb^qN6+0VKFXla$GX~5g`)Qo3)wD8Wv7p_ zu^dJxicHE!&t$7NBQ^l017)y-WmwFN!({ml2WTIB0JH&+M3V2Sd|e`J(1&V(((>FV z3VC$rWOsH49GqX)hvB%WM~zN_0%DG1B#}XZa8;|P50@Thn0&F!doM<3kOf}yG8q6P z|AoKGmO>jWgK;z8k)SJVJpr*uM74p!fK_)b*rL))Q4|8h`TL@H#;{t_V@4e9uCiA= z_RbYqw=@e13l4S1+SYvU(q|P|?!73P7$(=$0>NQ}+0NtfsDsPkF zHZdgV z5`O`pHRd8^pef*8sbCPm$lzgsRW1r3zd8r1z&NkvC{I-dJ3wlkApIYnq_sYMpA)1| z2Q<1Q`(M3NwyATp-0xf)(u3$FlmoX~4q#bjt@7i(B=tAvXA>m6%kO^od-=Ej$NwRJ z^EZDZXNOw1D>?qh;|Cl){{}XxpB-4YmKVo@=PLz8{M&!~ZwJr$|NKAyKf}@-pgI1_ zA}!M*k%|;!QKT$EZh&gjA|(^xp_(&?`Ub#JZh*CRFe#mu9+$@Vct$_evrYHRe{V`W zJn5#k<-T^fGw*MQXY{B^kyn!fOzu2JQXI#Y@moF7mUdH3o^xCN)N#T@UV+uIGRHBK z-D9<@t)5humg7kHD-M=umyhLE>aNG$(>cr_q_qd$=%ESz$UY6HOy%LIIE1x3C?VT)O=MSFT5%w2Q+(o) zv9D$PcQ!$L$SjSOT zgv^4Br9qD!w4)qHJt(OLk}cl1RWu`rkwwn{XASjd_a^2cdRXlnl@FN{c?T`xOV$gT zg;8`bo|;^|ZQE4-Pz;&`13|Cb_sSZ`jFk*b3tX{8bQ~0FxYg7biZE*@&W(DI7-n)Z z4TWvLq3F^UjGbc~NI4Xs8M5z_Cnx6b?D!?D!Zj-zoMandmuZVk56XG=xPR~7T{0kc z&#e&3(=3BuJGWOW4v0n@q~VqGY=csKFzpe&qk?;-G;oj+aV`9nVHJ0$20%FHt2R99 zse{Bd5xCa=db($9M#`w2W#n@bWJrY983RIQ4GBIrA?)Z_wkd}eCKj;!zr9+XfANdY z<=_ANe?Ne-X1OCoo`LJ%1s}UkP(L0Ye^fx#CUCpOsh#VRd> zJpoOvUqz$Qzyj%7ts-A$&^`T)>wA{n+Z*@igDc^n-9X^_JfSX*ke36JN?yVI*4lVR`TVctKh(@-9K>p3j7y$9FS^b`Qq z9$WmZpz+Rt(C6h#C z(%Cg2OB@;f7Qqn^3ndgMs2aP!gD6t^+slhbDe>efYoQr&ZM-&;7^Noi0MF!3dWN`F zj`on?j$&d-Pad2eGYpDu)dmQnP+2mU3_?(Mn22P<%Z}BRoqjzx@X0<$8`1Oc-+$`C z8fUrJz*YjqXeizr1 z23yzi)E_5Q%33);VfGZn#WrO)z=tZ|1CN z_lbS8cWSlDmPCvm^bAJhD|in5KvM)B0C z*JnwVRj-dK-9So*?CrMNfstFbqdTxqkdZvUD#i(S_pGawc7t`RLLfz6HwU2Y@GO9C z)U9?A?Z`Dp0_Yw=FEW<{W)=xhI|JP83n^_1yLpRW^M2`54}|s4k<<+CtLz;B1;B^` zqF#NzwLFBU&Q`#%kamwkvDCgwKCTt%4eVw7!N;%9F0!Zwia@45zh+&%zdNAS3+L zEI*0TeC_-MoGrOS8-b)FDaTJf9lTyG04sF05<^L_uyos`{bFL*G6C3Waoxf~+Y9*# zz^D#(-@RV1fL*t_#Rp(pnu=fYnQsQ#i5qZn&wkA$8U?%CuMPOeQEiwN)WP1YRSvw z;K+6-_x$|lKaX&4M0LRd)3#hPp7msDaoH>9+#ENo{My$wnhJH|+5FY<9xqRsfEjQ9 z?|=XQD#+~&fXNJWS}sZfe7fPNzx)6G-R*snPE__aZHIX>%eQfw04o7PS#Wy+P-BwG zg}m1?1wfrATgwOs_WT)|QK<^v60p{5?AQ3z%I66hCD@+Mmb&&@YC8j$)apbQa=0eD z#=(M2pu0YQI(n^f1^cB;|2+N{d^hzQeccQ1_gE=89cft=f5sA^zfX%}mVczXB$(_6 zkYMAW_8mei<02N}?hEvpb9Ro2)f1n@mTm7vQQ3oP&}hF6;n+NWF$x2eir~4=8f}cjtJ65xO+Y!LFE*$w{*F+OA@fpZtY0EY zVd*xD7>Ij`by`nYdU8nxW`FTDxCtOt4_&{Pmg%Z71om(U6sMRhqf8=m8D+#M4q%tf z*R!n{5R=FIFs!xE8~UDMf$L7WId`rTCK*&AZ||d8tfTz2c2_?$ZJ#E; zZ36~G4I9Vr^&SA9TBPCfFh~K6Xu{P25kN}Yu;6PO6daF$+Rllx5G&AC)}aLGLAIY7 z)0sNe(10q38i@l1g6j!ur*$CYARt&lBXPOW9{G3ix~bMxlhRbJt?nx5wIrR<@9ZSN z`>M%xs#X7+Z@!KR4@IRC^qB+z#nH#F|33Tdr&8zEstgcwn`fGQi{-)l_)mZOI{HG# zW2Gqd3DKS$fm&roZBp0aUKZ%XebR3i@8;X>V&k}%YwEURlq1j&+Klhp&4p0{6IZqV z&VaZ4k9EiIi5ps*ZcQM0Kw|;jvi4~i&Gyu)hA0EP$&CzJUHqk0(NCX`pgODG3h-{x zklNKp(969OXr>)i_C?O|m^QZ=PM?%IrMzoD7wd2=uL}T@ocT$Cxs&vh@LYMj*ij{aOlTj$t(_N z7?K_??sw$#K2({_9rmu+O`756ChbqQ|y65{~Oxdg>XBL1`Xr^&NMo$2{L^_hPUwwe;4XdMzb zi32pV{_+xQ;aCy@8)}gT44XOo8qS4j;@^zBFp5)udSh0sv|G*QHp#{z_dtrl{#1oz3hO`D;a5JRw9J@v0TAgVRETHkT9to&@_ z(!5NLgjjlm_guCUD5nBWKq+;rmfs3GskaRra!ora&z(3Cm~lC*pO+C>9=tybQ;rasRCyW#&Bv9lMJiQP%j|+VpIIcDvJ-Ec@8Tc^ptSrSP3=u>MyCBCc$Q=eGHRcD$h-Z$2VV z5jmF8W;m_imI~f0aFhyimR}w^%r>R6wnCw&EocfW-Y>(xRF# zN;(^k-*aKL40PgUCO;X4#=u{Zhks{{VL=AW0saB7SlI0ypRK3O0m%R->skODUIYHT zL%*Bl*LI4f0Cu|I!RJwLLd2oPIzQHeZX;@Oqt@VUmrQQt=wkmo}}>;E~>YwQ9(t20MuL zzy=p7s1pdU?tJGKW7Z^pKcO=45|HM6?EG#StK8Q7SwRGdVw6KkA@tv6tqIJ!k5OWw z+d0C>Eo+8~qfbKa&Uf~qGN>PW2|sCuwTHOI@J1?jd}i!xxnq2J8-gD$whoGq2a=>< zy@j$e6u@w1Tqf%_%mFP|`?vc$n#=$ZjB3{Yz2KBRe96S?f^2yo4Ai%2mxk|f>1$LH zjUF;lH59eOzttPr+E!;e{Y)Yhwis;NJ#&d0_{mA3f~aA&E>3&^ML5O)KqYiX{KZ0N zxR#im&_13^LK1)(;MAULJRCxkWKx$tz`k}Wsk8NZC=6N#Wdru$Q&*6wpEVpDF&PQP z2k;{QIxlK!F@4ZEc0XTZ6EcaYMH(l@T8{O@cR^FA+HIvyXzc7(KyWB8E_Y;BK`c}l zCMDz!XuNv1!U~Wp;6$lmz*naNo>wjVoYx%-?GJ!3>oYB*$i->%b&mPwDpMC!VFV*7F98f8bydl#|;MDs?Gq%}3vV z_nAdTxAHA*Ir;5)fBhbauN9yD65Vvau2N)lukQ6udGq)CcK|Z^UcpR^ zfp&OAm#NKJ!rZ1~H#bR{Ehep$IM;sNo~7c@ zgM%8Bgm^{V(n=df*sN`v+5+vP)BYwUL!Uiq1t2VzIy&)wwztlaW6t#J=>n@zn?an{ zad$ZkptJ2!@73o@VSXRs)htTET7d2+ue+IWgoE1VvWO6W1tcFk*SM~)JG{urdA$HB z12dQ4yr$CNMjH@uBAO^pz`0Lo zi(FtTl--}pg8FBhrgOfnZrL}Jhu+s3M2;L8KA|swXnYGLaYJ> zK&cm{0y*Li1I7T-yhxObMHo%Ow#3cZPJto-2D(Rr;~oM~05wJJ=;;}$Q6y?yKGmA& zIMP(>?E+&h={DcWcpUT#t!viN95O4oRdA{_gew0EruDPlpM#7<%j#4P50aIgRNZ~w+#YMCvdz5LgHvxP~i zC#vWv<;Z?)Fd_s4mi{c_QU%X~c<4ad9iw)|^A?4;^5@ z0R>Sb#(GsOs`?+Z5MuQ!*2}&Zi?&3nZ{ky99MBt#2fN0-ix)oTd0E4mOfOg-+;?Z& z3dcF8ojRvNp@?~N zHkF40@t1xr^u8X?CiI)hWetN|?q=uQ9p&~6lV)q%7T5Nk)KTUBM%H5QGowP1M*1<< zzP+V28=8lOySv6tulWddufHpgqn!zev4#(tgM;GDIp5(R>EP6;j~dRcn=^cChZ!Kl z&^Dhbx3hH-{fFl`d&@kiE zYkj{9N@*y+ZiG5G2ii$2$wNEr=IsfHJSNu&&WCTS1EA}7tk*Tk2}wsXZ~5kfeGM7} zR0ErbS^)R&igO!a0`9JYvG<>TI)tdtG|TBXL->GU<05Z9NUqUl6P|7RD}Cdu61EN= z6SNAf=V_&WH@M0Qu52LeWx(%~CjG@1Uqrc|efFux#x`z_0&W0eIybHX7*PgP3q_s^ z%mBUVrMj01Y#A>#ij8I*tePH^(`P^ZX~dF_0P#8~-@TiZ39H}3uoCy87`(Vu*ZO}M z&l#VcH^tynr9&MJLwi#Tbk9Z4ym*(1uJY)qLv_*DwzD98>NJ%RuIME#+ByO9(wpXM zaTxVwAvP#pw(!Vt9MKGZ1YakvqsmpIl;|WhS)s}l0AL>D)&KtS4}TmEkH7lWuU=o^ zKaTJ~v@;gZ++*0Bgyp; zL%XdTyP$L3Tb#$(Z1Zo6d%L8^eT|@0sv3&+Oe@4fnc@6eOIZToDrlD0BF1nSe0Gvv zWGq{==z3fBWdPtkWMq}nbs3)@=IR0SyUlkQPuX`kmmW@u;^oP<`};_-J(T0LthE~l z>;SuKC||@* zj=6iuOmWX8I%!LKC8vaWX=@7_Ix6_g$05f;{! z7<(6%kqOT*PY+rGA!v!#0O-vX#bnq@^a&^j7%*)dB}Fnr=B8n7V4v2*_-Kjk9y0S@ zTc&Y$^~e{NHEbKjz>%&Z(A0d_b(kI4QC{g1nd@C_}GT z0Qe_QzpWhzXnyo(>-Ab6{Y~3|cBuCvXX=6zp*{cWah|dPV1pBG9T~hS1|fX$pFC%9v!d3?1mMbXXf~VOSp?!y=;3 z`^1y%j6T}zWn_%<(yJVGj9@W(_o{)yxnq&haG9G~Pi>cH zIbz~IuJcDcR}b94qCQeU@n;|#$23~a;{l5bykC;s6d{(dMxN099w!tAFL ztS$(X^|AbyX9ms!G?h#2y8{*Kbo@=^2K2TWrPmw6aun2s)@LB^zw8J0AC_ckXbLTDI8Df;b<3fY)i;w z@43K6JZ14VSJ@3tFbPe%k9RKvFso%Bl+mE)`8xwo)htx6Z6N+Ez9gM%TXw(Cp#bP` zK<^nJ+rWGJhL{CjCM8G9wD~M45Pjbd*%&3(H=}dNG;W)7qhnUUn&y-i=oRDl&7z?+ z-{vL?hRR?sAQ?)DEJ!MSY@S~-t}kOz%TXi3*e3UJ3Mhp30oN5!H`e%Wv&R^SuDu`! ze20eRezS-QmA*6D==Bc;X>Vhvls<|b$N}ap%$t3;-3ctdqy4^S;5(BBt8|KlB8a7w z9b5%&`rY0s>tu{%))q5BS|9>b04-t!^K$aT#R30=8=#g;`cCDm>F?*hg)wR^K@=Es z%VKG;?cGaSs0PoNAQjO z(EHRHtH8xTu)Ua;_0ZaMaZpVs(vj-i2R%RqsuLB&bn41rL8Hl7%Vvp3==Oq^aBa>R zCJM%g9qqC)?ddsW4A*afXSLG$3r|eN>4{xm;LXop(byj?AUp~az$ubsPyq4J33Hm2zQ=FZ1znyypT+^G5%r#lk-SbX;;KxER0s!W^l*YkN@ zP&0aKQ&Hpby;_6wxxLE4@1L#qENDL_+l?6jJKIoov8>;e|` z*g?W!$t&_|X}JY(n#BqSU~kthQUxCL4BF{H!X+1FF@BKeh{QY!POhtdU48A?${a0n zsH!Aqd1OhJnW7hRmvrnKzd0v)cWZ5=^Y;0thcU{0ax~h-e!Y75u0Da#bx zxTR7QF%bjmmsg9l0`7~4r_;kM>@ws=7{0;5+0!vH=pOj{INb$nKbG?_{B36KzPM#Q zoXEm)(C0UwI{@=9g=VpOUzoMm-&6X$vmPUcRi+3J9f}S+!Y`u?3#6p0$MBm9VI5eIg9ol94GQrgd?Q<)31uvX;Y829|c1H2Zh57m22R$dB-bp18r3QB#gK0 z%IkLv2JwClN5>?f|8Tsb;OaD$9GV=A6|~~~rN9GFI;?;mPq+@?UaW?pwF;@GKauKn z%V4kc2LNF}p1(bgylMrq`YZ)H3YxL(zIR6{?HCL9@)96i+#-w+jYmxY@=v7lV3LgA z0vu8Y1;V*CGRI0(hdr#gC>&@vI0OLP2WTXIK+%W_F#$t;RZh$UcsAl+uuh!n!nI$k&P6YrQLPQ)jVkT zOi_y^*{wx-PUU30x)!8<=oUjp-e)>F4*E)WXOHbV>ZWaJS;3*< z*%JRa%~(g6qd|1~vN|zumpqK_lidreVf{?Q#EZ=i&4(%%C_i}9oV)a^Iyjb9~4OFmzYDv&01pw7+qC)jI z{uU5e>nO*5@+{8tmVi>k*M%PQoeizbW=Eef zaMGNgpN^!aYPg2vjrw!TUv%Y1ElGiuImlh!2tW3@)Mbihg?GsSptzY!U0>P z5d-}rQidxF$iR$LyYC8=cc$h0U!zUfJ;bCoc>!3VW?(%wDpH;s3fE#;1iSAB!`IiH zQeHCTNCsu2`o2t9^XimNLMdKieYQDn&@rB$Mw?MIup(Fdm2H(`fc13hR~QlY8=;z~ zaCC~Y5dZ_DYH0igbkxs0w1R1EfL5MxWH$IrgCKW!0^-$ywN;vgDu8t~lmNOSAw;yH zi*r$_3)di|O7j4K1D-ht0JgfgMfCYOoY$~A6FNs)zT6em(AlL4I!4;ib{p@A z#2^wK$t0lGZ=BtRmAp7TAp7Ac;@@lNw;C$%C!c<5lle6RzrG4 zd3MR#HpwC@IFF%L?H*X%^BUH@>6{d*%=`cW5Lj_N$3S_{n!krArd6Dyy-+ITR*vm3 zZkU@ny_7YEJ`S;ZouGX2`v4BTPlg=;d&u8~5!PKjwG&RV1t-~nV3BEQcXm|liDVDi z2bXtX@Shx%Bw3stYKpuxU(x3 zch2u9E_+SfkzL06Q^&x9f+G^ogeKApt;P&OEiCzExCl;-N(qH_GL(s>6)LI~q*hau z2#ZRB@75*y*)Huu6pox`>TaCL`s%yHc0KWuaiFshtb4tuC?zOJ1I0Zwbg%OfC(Cj#1b>8dFOUFl!q;wB~-Qb6tg0Y6BI=i-qa%;HK z?lmj-L-buW-YzwarT>j6FUuUI%W&f3Ow||~UxfFNDI^<>J;u5t@&nN~D$mv`xCEcq zEWHl_%4};Q(`s+qcQGK>)p$(^wf8k>8(34dT9EBm=S*`{i?j`9OBD%S1TWL75U9{= zTw*#4fNJ%SNtsv*z||-Q8Vv)hFyOdaUWetjguBD*^O!IMKC#}91LB}jIG;+b%#i$z zrz64Lf}73#L`xa<*k)j>Zx7pHn*-Kr#p$k9uF4^DY7U%gw#+W>csF>po>fXMx5M#n z(*O#D;WJtUvm_hk zW^sxNi_3%a>QTOE^O%5{2wwlE4yl$|Q>MwPA0X|=faZD~WlTUu<~4D?5BTE?T>Z6x z9#s&2_r>qVIH`-lvAkH&<7=OR;MqL~G}fncd9oj`pG&y&ZGwiSj>pT|T<**<^84}g=p*ZDV$60OP2(JMqg)bCht%9#EZag=Mb z?w~CH+`Al}I2~k5o7&^`=>bmmpcMczX+~9-96O9TCX5z-PXdn;Ls%pLVpz)bq+65v z)MxpOeJP1Zjxs(O>t_7%b&v37%@*=O6KHJzCiim!(WAX)IRg-A*)JZcqVkHnuc3n* zU%(SzUT1I#3#6aJF%V~e0J$}x$Z6Z9Dt%ko35>pUK%;BK)y2TtZPz4)ae%Ac7*HbC4P6uG_qlCTSm*A%#-XWA39NuTH zs~cjr9LM^knzdFRYSFqZ(=s62c(4YRG4KqY@0NKkkS#_)IL?-(G3l~H)>nAYsjQG< z+rTQ=sZZl9l)Ms^Mx#Vja9DFBaDdweKI%z}uxKM$XZ*B`CXrYNjH8G73q5%qjav-= zm~txsRs)u@1W=f;R`XsY$Ze7-(VNs6i1yYoU|i|6mRCCG^m3PR4$Tw1O2m*;=fGhd z)uiW0 zsSt-r8!%}l=NTLdfV6ztqjKub@8RWS5*vNwFF#h_5sJ?ziSZIS?^q|nr|XmPtiLnx z%N7}=eg(+S?zPHfTQe9A*{qgD5)J$Ma*WAoAeHbhW3litG63qU_3deUvU1kdt>^nR zVUO~>y%`G0BWGOJ*fJ#)Alb&uT4Pictn$P0vRInoP>%_qSBtDoROGF{nkN(#V#Bbz&Q zYp2gV$F*nI9$=yRDz=$Ch!>$7*|8f$LtEu`cy}O1z?R9EV2XUf#4p%IdK2YQfc&_;%*rpfyICg>i0LT&*xRPWMrwGw@O`}yrIZ30TmT%Wf08#x5-84D+ z61(fjsJ=Uq2f$C^uV(GoA}%@nXAGu*a%fBHtiZD<5B{>2S%X9beY2UBp6{&Nm5W{R z=w4!$2MyH|)+mUF-l|}qHbC(J@9Oc+!}}5_0L%8~O5P2}*}~0b2oODvAQw|MR#82$ z4&y}F3)nfcm<%xc3f3rNT`v)bxHg7*ne&~!RHTn2<}zj1*v@)b6pAG{&Z(8S2kySd zAckr&XbDSZv8!8BN|^uubpW$k)p+l1SP?=z^70wsFyw`@3l57utuhj zgX?TBPoN#bzGMcVN8j=o1GOh*=BJasH<}_cgRg!IdJ;zV0@mdgG?#+9$h6q!HM51i-}x&aIG@j` zbv$WLy}wMf{p8w8`RMUIuWQpaXYH5)n;go&eO>~yd-w4D*v=aOTmXvw>19rkX`p0A*NhuNkM2RuHDzX7S2{vyQL@t-GYWxgAM0nE)tm(F97y<`eIyBrI0~e zTRbuk3Vr$*^~fj~7I?{dZh)sH$M+uZam%sYn&cU7%`rA;1a1|SGVe=I-<2_zmKLG$ zu;%KwEq3xG=rhBRzTii6iLrCsImYl7+w3)+dduy1l%KJd`402wdyjB+gG)rpGt9WN z6bg@B+vEKiG*a>P&1GCO0oqRJ78F(1a%~jW<4JLAq*RxX>&uG=3D`3ciT<9LC$r=- zE{rE`sj3ZsSwauP3icgq>Hzm1r&=U2%V?LEr**fT_lKAR2L5p$q)$G1U)FIOi_4OU z*dljAWX(;;SsfqE_?TGa?ik zt9)!bCkIk(7YFylL9+q_+P2I!6;?%uV;h8|9eA5msMe17YmTM%}DZOqj1S8l+O)N=cIo#HQL z$O*{IRl$C*pXChf7Otqg0rKU3ozCh=J=>k@kFpH0oc&hHtEHXw({%meS@+t|PU`=m zBSB6s!m;RyIN)frC9tKHRVtX9>TchT?ahAd;lO8K`>h~b(!i$sTUAwLR&Wboo%=4! z8Sz(R;FWeRnMH3YKuP4#pSwqS@I`lkxVDHC&;+2Jj3iM&T8X)4M0QB@E}0q`&{^6l zvz0Gox2lPwWo3ttw!%Vb@~&|Vxgecb6&lE2INXkm$^AGJJ7 z6TS~1i-p%j&|~LYL9<2>Bl4CW7YEVAi$*Efea9VRq2UI0;ui<_B$j!Yz^V^TA1kI5 zJeJVC26!1G#%G#w!;+>A?2Pq`Yop_xxSpG{z!%ENr}N4&Ju`sH=ib zYWAfhGQwEUdxpZZF=DCQx#lM2HozF*`m>*X7D2yNJHR^>3nu`C`}D7Flhcrkr&}~y zLH7s^@59Pk3HuS{pwAYF!Hsz>_g&e-(F3A)Oi~VV(Iyy(nPBBQI_=4+Cbe_1dg^^@ zX@qO6LIn8NxXV1BI-?}iw9wTl0p~s}prL)E2spJw58@&cRGm6PDbQ;lJvxW}wL~xG zjjGqPJD|Ul7)F0*>%_{mx+(R8_8$3xdi>7Y`TH-w9OpIT;XnQEcT@d&7UP02OYp;4 zFiQ%o2(Ic6f3-~8s+z7R+*==S9RKzoFTi)+d~$0HUp?lmEl3;das$vqWVh@6)z zGAnB>DIfF2eSVglgGDKIm~Za^j*h?g!!t&iM+H)5AlYx=kxbvGI!*V@e_N?Vb*DVG zs~?`#<|^Nm8~t_X+3n8fw~o4~pUL>nO;&PguwhopNP33F=i=|$z zC|8vuy_Jqs^gmD4Qt0@ zWkyQv-9wtSj6;p(v;w=NETt@)x0Tt)LW8-?B|*59v6KBFF(`+#TrpOS^=~tui%=xk zmGv@gJ+rl`OUc-}H}8X2BUj%7%%W_-t<{2tvN6^*Pf*p;xr=H8C?kgR;TT|dU2`t; zwjZsyX8m?v>NaNrrkr8WD1cW)LLpe(g7`oLuStQD5z4TYK7_g?-Mih%e$@H`@nq!Xz)h&QanT;LH>1kB)0nT`WTQXH+1Q#969 zg5%9ttNwa6&i9ZnfTZbm0KL2g*^=h2&5!%HkRzk#~ zNYod#Dl5=Vuxhj0fPB%Yd3mZ6B*2?-Kx%V%#gR;*XUG?J7Y6mlwN3@{7Fd3rQl8WQ zm$Dn6Q9@97=>OWDs@ebQm%j|9B0YAm^7-dKiwQv$944C@vZl)Z*T4FeeEH??BkSSK zaSv3=EdbWkP@b>{%7qdpS4F zsVmUQ1xIi@*Xj1RYBWy%N2mXqs_zl)p?g}260t@MZP z36LrCJ#lUApXnK8EcF6V4!@-pImc<`@h(&Oz0?P%YiJ#*%vFVDTEu(~!g9-EI>J}_ zB0O0teHaJGwm-4mt#HDk8*EVrKxOm$V|^$B7(Nx^>4T*T`_=-z6cC6UhDC3gcLjPi zA_+999#-3s;0_QeDZ+b?E*kaS34iD9UkDXvS=)$U#2N%pJt`{n6+S|hQi*~itxaH_ z_E*{t*3#}^h`9RIacc$WBBRTt)T0N^U|nVmUI#BZQi@1;#$J} zR4eW$Bi{7lAULhpDHoZ*91{vMT0Caq^Go&>2hT(CV31U2${KIm`sgajqsnkO)JrKH z4{imol$uaFe1HN(t5v)zEoktzMUrtA*+F2uWTKd-X$OMekoQALZu300aB5g0lO54I zNMb{uqN!q)=Gnjg^{+;3aN3pAZaW2aN6>Nx$Y{S(OX4j)!M`FO08VfG{vi-{2Hf(Z zb_$56@(zIgwB7fB*qyf4dNsM%Zs$;*Jg>G*4&~I(_1xJr&zu8~?K$gf=`%e-+ATe# z->IkExy}I8{V`CTN~@wBW!3xnJ%7yWds?C=fL(y_5%5n|a{mkvtU#Ra$fY^JF3a>h z#t!uwpO@uESv<-lz+?dlrD_@8&Bq{#R}5qs6$=OB$Z+V-tbnk4I}_ZyWjXMYea5$> z3sp9mj4*ay&R%?LOaaOE82CMFPx7Dvip;tADQ%u&TiW~@u5OfSmA;`(Bw322au92P zI~QUELDn_?G?qHH{ISAMW2Z?0e`~ax`MXjPAAK%|FKgEHv}ji=^@WhHF8jS;kNS7e z7i8vkhtd&>O$&gZYl|r#HWc#xc=Tjx)D7&guDRym@E!`J@1j^=XHu}{V}y`*vBtOp zMO#5N_E&x<3m`*X_L0+!FRi>(G}p&If(;oe1hc)PZSnr`sgk8pm+F=+1|x9NJt#eYLz-fNj0C_^fNZ~W&*@p-1-XA5fheDE0XaXl8(@8` zJ7BXPohq`Ry0G7k@ z*$bT|KzahuY=e~t&B6fOY}H~nEV#F=fNA?rSSy!8jYvhHMLQP<^pX0z7w5>hKCRn1 zCfuTYPzHM8)>0py0a&RP*MwMe+d7d*925_uj%1s0veSF9(56LviO55M)&$|LCxIH>%|Dy7Bm|>V!Pk_Z+F1S zkfdL8Z8xwfu8{0*Sj)9k94uZ&d#j~hOSAQ73$AZu!z}Z^f%39TE^SJ@LLdR&uS;Ya z%sv9oz!A>B);kHlQBuU$(cB3S5DZ`4@2}sD4Y0;owspC?!)K2*Jp0C!4wXX!&{Voe zslCQ7w?y9o-n9=OB7ep;6c+6)0CuGr>pIQOIy>6DyY!XHVT1_W_rR1RIn16}h0~y! zff&rN_{q$1){6jLT0u4UV-++oYq9o5oZLTt74du@oFjzwmE7Ky_JJVb_>#~=B(0@2 z3I`w;5Uuq{lK3{t(SuGhVXadR^a_eU@$e#mJ;IFiLU+LW%7FOnv(HA1Wd%*+MPAp) zS6|~F)_PUPLF$Nuq1Edpz^IvSik)FTr*JzJ(L{Ama(hV=&}q)H^7!=8n=+k>C}?iIHvr*`b}zO3GF z5*9@=>czaM&AKusY)Cv@ih|M1@;SiYYk3Od)X1Uh$pH5|^?P({<@Rb2dq23jA!jVa z9?KXyVuosimhw6lKDmU|Qv;tFpxdYD7x36CeW5v!1ZZEctpLVMYBr*bD9CR~v)u}f zRqHk^{CkGA(}RRA+Ig!ANSfgAR}Gk|h}0eT>i9@jLtD3>2gV$uK%en4zo>>+ba(kN zFv>4~`Ku8fER`z*)&`&rTWoH8Bl?)W1DUPaC>u}T?GaOM>0r1$61ZI_L$RK-@lNKz zQ|CYhU3!qUCAAvySjX$^tkrX3RT_lI(*(q7EIdGsh4=bNXb_e50l&1>31~^D0=eJ!-H-B z*rZN`VNo!x<$v|3KTR?K+&w>kJyBBVV4{U!mDlS5&|03#T%F{I4no=Ren^i=yYwFA zYiqymd%g^MeDlq>zL;&HIH*ISIvrL(Or#aP7vQQ#-9?~pa(5yfDFOV*A7D-$ndJ3F zgjPhHZirh@yaAez z7_!~`kR^?A{Mw&C|HUtEA{b2I?;b!u`R#`5d~)v*5Kh;g0?GsSJ(P3rXdk%d2uN>! zJA&V%jN}cxescb;`ka>2^F#lLGHN;8-VO>2pw-&Og*hH8xQltU_ney}+z&ck8&xmTg-J@Z#^}0t}ie;`BaA=>?LR*yrp3N5S8W!_@G7e2588f+0b=9?H zfZ;-sFwofJ-1yuwLP=da*cN~EoyMhD)grZcC?+yOX`-m~tVFaCr^#ha8XM2+wf!z9 zRUr0tkN522_gJRFYzLWE^{}~G0>n<1cb5q=tXb{&oBd+nC$2PWzt_Q{Y_u?VFwX+8 z*xi0u2n|<~=^*>XLZFTM;+LW!*<8Msm9+=Ppqz|2!kBW4_cGU&Y>exg@=?&*N!wk+Mi^h)SE zKq}Nu@Qws4!0x@2-C_;>_DRqqRq-*)v!{LccSxgP>AJ1!GwZw7bPFt&ikJ28>#q-% z0v(K~NpetHup$!=TV*nKfSoB|6i(~Qfm1LB>wlnXsKC)Gl9!Vic(9zRCN+?E?-2`` z&WQJ2Ev$<<+QFsKiHw1T)p_>TOrW9_t{hbWZ+*eFx1Jmr0*sA5V%mC=;}Z}sKG00d z$!qky)$<|JF{>aSO9&P~+cBaCgZ^oRHv1&3tdy%q^~&Xiv*6}y0Nsbs;^6*1jPLK= zNe-GpwG3O_#&nKBwpfb@zeZb$mAxJ;=UA8lu2n7yI88H6&7I$dRrCG(@q&*nkk|7s zPIG|nK%X&w=xfFq)^7kdq5R-3Rhmb22En0p+bx2K_PZ)3))w1+;3Wpw$K+RbCG;O4 zzNX(K4kY!{>wl#j=ikp9=O(uR=|e!M9`7E_BBQ%D^?u4b!n(VFuw47gSI`_`r%uW^ zJC0!U<~fGC?t|tdP`*>XxK&OH#%pKgeB{v%pZkaIufM%fU&^~%(j5Ta?v!KK-F%p2 z&`Q~@f>-%K--uVif1E(9$W2+}^O6p3?a-!nxNmMuyZJlyYogx?%93JuIUE z!YZhe1cw1sMP%kiAL{FXuhJ`!0`ZJF_C6>5s1_|ik0}}`9VtxeSe5K9`CFBFT4W`_ zFu#s@xH$RY>=j&JVp#WiRv6*X-1^+25A1p?TCJ-s*HV#)5gl@KbUl=aW#$>P_QO$z z5&+<*ar$vtFTvX#_3qZ@=JG(s_!8~?0LVqkuEN}RsTh<rY2tuubsk0=l1D!jEv06xrr7GW;1PK3jEhPa zW(*kS$kggq$M><5Zcc{lZ2}Yp8)yk;0lfw|1MF(ysuAJMTpQ1e_UK?Bt-db-i~v2h z)&DeYCsfU=X567{IKF0m%mKnnpyg=@Jq8CIN(elJOlUTo&Y)3@cD;Vq2n$0VPARFB z5$X$IB^II47v2dpjmn`84^-dw3ZA)P}r?4W-CwuB|5Y@@Jb5Px{v zSiG53&4T4Cfq(8YgB2$G4}GpjUCO%5i*5y1Gnk#9Ioj#pW>t>4n=4rtzD6L~J zINC1D%^lRGthJXlGpSXDX!pT4*1QU`mh7vLRiH5YGbnghGTAM@wi6CbLSFD`v7EC8 zk*Rh78{eK6nR6T<=d@aH9=&CW^>}kb8FU>_gCCfgN5UK+~`Pi3^Rc%S_>z{0(>EOT=uLXXGSvMvvo=*NM7Tp_B4H;Z`j zA|&|1lCK9`W8K{yn5Wr4tqhr?bqyXyr{VaQS%j-G*0{}3b`6w58-laUxLX~A3}aZK zQ(oO43%@AF;R_T?$;2tzj$zSOYDtILfI;jf=8UtIM-`RLocb1(F9tX%D zi>=~Dj(FmBDZPaV(zb03I#@(!|Qe2hky{uLkS_H_gaGR%Bk>8c_qM$Esyltqd#hi&J!}H5WijgbIFRYef&* zS*_+74WtEUozQUld2pqtYi)4vZfSlQ+d8)B=*y(ftC$w*H zxh?OeE%}TJz)tTtk;SRyQfBb?A)x%G^3i927eG+Xf$VKX+D&`f;V;)6e>?ju_s*4z zdjYOQHTaM$j&15U7Zotr(n&95aOj8g^Hq+1#+61#zoDQ2h6CtUkbEecx&}x*$UuQt zM7j_hsU-Wh7ryi1d09vMm3Lj@ewk&lByfY*t^b18d5}p0x<1K>_Oy6M%CC%jl!Yo= z-lZ~bQ%3H5N1OaR$uo$Pt94y38QYfip(^$Otjp0N-LnqV3fbD7J)R%*9KUWD%%rY? zE$W=ybP31Cby;Hy#Ms0bpnJFvzU(lNNk(@tLqMNoN5qrCX}?}W7GuoJ1QLbw{me--&mB0jnQyO*hs4c5qKUf9}%HS9S2tlDlW9vQU9SBtYK8e(7Ss(EzF-s8FT9A5K}09S)UO=qKx?w zb;S*&1JC%ov#t*_aBeMQ5m(L;fDenaf$PWE79TIin&CnqwgVh1_^l3KSduHK)&^gk zq5+_-0G-&rH8nWI`?_5NDAO`XNjJ=BWHb!;_28KF&pCAREQB-qxk$xwKaGM3;H zWx+wFEM)wyq@P9+(cjhj{OqC0;AdBb!@%xkQYi8zl;Hm8KvIphf^uZ2*A03@W8nAT z_J&68BO2v~h%10gc-ZvsgIj|EsntocE^rEpUxJr@^_S)`C?U{TDoCCkYm!%vQi8l6 zN+g#hG}t8+7?d;=3TQi(DwG_1k?I(w?fv=ZpT7dNk$rqE(?leacC_?tt<;P<;Zze7*-Jc}6?ldjQk* zpU62Fm6K;2!Ssi&J(l0)aN_JJZS0Z-oz=D9E3V%Hg#bqFP9zRFkz+f6s4lVSFTTK2 zk0aP`Zhf)^zgUKQzp0a)wJm_`p}yt*S;obpJpq&if0Mp?e6GtFfZ578s>wwH`8klu zwAFTg%)d*UKw-$NBnheXkj^v05R)$$ryB1b#c)C?4 z%*B*pK;I}7q-obeoaXWoaJHn=zF79Y&nlelWJg0g=H%go8&-S5}b9~*;hHje>N+3TJ>w$ zb*&!Eg2g!3=3Hq2dhz!*6wVlPSym{*%|a+XyHU-k%!(VA88|;ZeH+mlY61wYFr3xk zo$Sfo;hzCc^AM);TJdV(B`aUGQr5^1HNpnqitAJ)HFj@x&|?6jK@AOZ+k-B_AUCbZ zqK4GOAeENz+u!_V&<~glkjK%Y4G$Xt%{l!(EPg&sv)#fqOb*owT!A@?1;CSqtj3+L zK(AWq(awX+zoe%!hqcB2szboFY{k$A^mEmSU)+-z3Ihs3rE|~+Xoblu&QNdcUWD_B zKetBPfbv41^*Xs=O=e7*)!AHf0mY0to<+OI1mI!jYA8N9PUcyP=a-k$>$=iHD6ryKz10pPcjer|07s%HS2 zvZdvM)eiNRn|o7U{Y1g3I!Hj#3NU?Au>wrfM0YJvip!eN~x-!6{ zIg(*GVnqxgwSv##oA&`wl)QCc!bBZ%7il766mw$@S?IC zkyyd{X5gAI#-+77jh7j-TZCP8kDdkQ+4qPazM;%?^Hsa7X_OloqkYE!Ia~kcyFM@* z(O6pU%#8Qg=LUAV^(&#`EU_Cq?@q}rkwSPcH#cs*bLZLT5>oi_F@skO9MYUB)p@mA z?1YD`mt;g3hFvWzp&L+_H50q6K32?suenA0VUDT+@1o%ngK3HK*~P`K@DpHV5-{-6=2tUpP#pwbku^YTw2mGt2MWVNWroWDF5&O z2$Y^ujzS*2AkORF~)Av0*W%VUjOE`4|5bJSFNe+dCnAWwA$SMf9 z#CenB*?+^juLtEsW+O>ZnTk<$;IkJ;+oc@vYU$NF>+f1;Z4=gQyi|2;3~utHWeZZ- z8}PoG^;*Y6ON&KS0#Ksrjt70UmSFoTM;u9M3yzG?7Bqy-;xD;^|1ZD%LyRA+=j=Eb z=jt+9>rrUN0w4)o?g3qq`(X44$mTNGI6gZ97TqnEL;I=wPQiM)+?14c@H>0VG`Ar5 zBaX9n)o0ya2h=$SYd7_n(A)Q{tIe3_*H>`;eU7*4aV+!jd*?rZ;{ptCj@o7iUHe%Z zx=C~Z9zE3))ZB|WUjNoCbp}n~-#P%0=8kK2s_!LY1y&>nbJ51BiYc zyRen~645Mbdt=V^T}o@iYkBODMjK>+>HTV3!21OBwrKlSm{(edYmt`$wzAcXC3iUw zj~59yqDzTlaeL$r&Nk#bEW#m2jrdfQCgu0)iD|dXuDRBF^vrno;-JWF#X2xv=Qop1 zO`~mdW!7o$5~1ukaL61{KlV*#(v~Yak`x8j>fZaLH1YYm&mjX9n`mF|Jvs1ZILV#j zC4dyez7OCxxU~3KZN(bdCB`w|EhmHb9SVnU$=lku*?8~CF<;gt@kR~lCmt7B*NxZ_ zHF+Z6WpV#750PhU-D2`Zp;38wc43>YW@|fZmpS3TuD9Flm1G>l=;A zHJtP#%{I=sTL1Oc@be&FfAh5fp!Jzwy{`2&?4ok6weD#>&hUIzj^Vm7f4JiF;$dZN z*V*H2Uo3m^u49Ry1Cp7QHF5~!S&y4I&eePkQs1@&uV{FL1Hs7-0L%SYibn&|FSmlQ$~RT;MWl{uwFdZAD}X)|o-K5bYO&^}?Fakhp)CRz#0(~6}0DCN>>S(6`PwyQZ+~^;xS7g82`=sQ|)Pz0iNWY;7 zaZj~053aUaj$hAd2sb@cskl1rLF>Wu(iN6cp(s3zL#Fey;GfgCdTAtF_qnJ7Vf1c&>-aUY#JNE?UPsI_Lel6N)(;_rPTVhAi^8 z09B?6p4IyZyzjN^jbcA|&E4yJ@@GF-ZUMRg-+C|Sjv_`*Le( z<~-oK{uW@+zgLbiD%{k*6VN_goOUV;EBQeVS84Zr!ZFgfeS_^)pjpM+P^S1Lcd$vQp^m z`^*a;GFsM%fsB=0e}CkNT&E2?tP|}3A03e%lmlH`EI@%_6aa8d@obKD_=V+jtI_Uq$sh$aiiEub*J<4* zaz(%P;2g74t(f`gyQh#ak zFVVPEhWZQx<%(%@=Ut6)pL&QsJxm6vXx=yn*1?IxR2^W+OUaNR&>8eEq;CKY9A>NZ z>O#53c{?XzG1VhY>)B{hep`}|ivzA2=B<+KGo^F|o`AL3rU~Gh(LiFNsywxp{4p%8 zBGr*^J3}DSc{{!Sv%8pK%V@#F_ zx4!&v$m>4_ezh`VF~{*S6^<<^8MNnDzx?HhgT0?wFx$Z@S{9<|_j;((fOFt6b6~6G z&iCAu`_^*+6|uC7oWinZmZP&a-CW(;DX?o(S+~a-kUYKrd;Z=IzqRtW%iHDJ+Vi0& z&)437(zmYH!^gw9yk;6n1+{Uz|E+1Fk8QpSn(x#p-}Wpop4Cz*h`RJX_j_%3O9};Z zfJC`1fLRM!`sSvk}jMYIL5u1Y{X%u?BlQYd9j zbV`HEg7zZGs(3GL&cYhkm-m~#FrKNM!+C9rno-sz%HCsMOv`8EFThvII~Zx1jXNt7 zP|W%n0Cd3W02Ti7;xZU?5vM|U0prgI&9)S!#X)Y2ha$Iu1C|`$VQgCygP1iLDo@R1 zC@~g7IRPX)t;8Jmn$(CHtZ@~PPh(!NekVZg(JxLP+2;O-W@77h1{#1SgpU$noE`JW z;heXRXcT~S`b;geFAkd5byiGyW-bH!VQiR8w^+wpd3UqE$l*wR)oWN^Efn7xF{Ck= zVoBaMcB&2gjO=`Uk1%?vFiK#r)uPPV_1Oe;DV3J7I|t#4-Q-}#*cCEWEMrU z5HqP_>BE|2~LucIUGk%9+5=p`2E( zIVj?dq>@(TuIPt!+x3jwt&~s!j|n@ zB1<50%8z^BZ^G@7d2diQxPKI1B2h#=?AkHstO>?O>SG14CQyjO_%piRaRg#@IBhI6Gb1 z4$KzgZ;C!s6p-HMh(BauUJH&f{Bi=E0aHf}49WtQRe-dCj&vXdkg>h4jX6ez0H~-y z1|i!Utw4ox=~NuQ()zefPGtz^NNcDZ9m`N?*>!?ztQ=eieh85|>U}@;4#o0Y!I+en zuTE0%mXDm=c%gd_i!~fvRZfUKY>sa4LwPv@DFD80k35C8`smi`8i|B7;SrzGpNo?~ z-D1?k`e+Re`Esd_mu=cTU^39U0{T_nN5{A-hsQ%TXTAa^7 zT$48*;9%nn#2&AifNz&`P+jkN>u|7o2Hfl4`|W7c`5O>*eBAMVo?SrEjqDEB9LqcY zy-_|&UC-)w)|c(1J?&1pw_SO7&Hx_Ed_8h6_rzboO5Q#JmI>fixwI2U!d9snX{F2G z`UJ3Qx%FLbNBR4>8~e%;&LMA|_`p>3mD9necz zGf0MR5kR+qLNfRPih5jjNYGOI%SDQVU-Ws%zZLn;GM)NQ=KhL4DDCeKh(~#QTCC}Y z#etbQU|P9Es8}L8)U0&j6lh65Y_Qb`1*?O!_41Iw+z@IyJ=Ti53`nF_>66UUtU>ww zEyiC}ELG+jk&EH9AIIUL9ViU8#=ivcH*q=`4vN7ZKvj?G>~5T2TPHI0belj~uEWM% z*6NUcn|AB@>a;f6u&1+rwJOu)n@6FDOo+u&4gRRRv3efEp2;P-(armv>q)Fr0logF z83~`q&i{kILw!o9V^PS~us*YU%d?5rVbq+ff$)MkkUg0{!IiwvB#XiF&D?}iF_P;n zna6-}0xn=Y4BWBrp@b0G1L{abfNS$k_QS)wTi{GX5iT9BpA{JC!}T|K#SpP;LlA zk)$(J3e6Jj!opj_#sLn|S}jJlS+&)I3*bykt%PN`Qh5OWp`7?Yt=0hQT+ab+E5Eve zdip6f!^(4;l{^%SI$`jv8ug=saUFlPzmFmHn8Tr%i`)ldN6 ze7;`&%ub89@h!mjR{7I!6B3gdczOA6m2>*wlkaCgp8?JG#y#?Z>*pWa+vOGcy#-v) z6qUE?^Rd78JHOqNQ|V_%{6jv))fwi&MrexxG_FGB%RmG!uPep8@KCYC%^g5 zvp;WGn!OEMP%oCr;KukyaoT&2FuP`Wy#`jTSTv1^YDE5I2F@CdfrlJp8k@J`Lx4Xm zT&=QSfBj7e91vSG?HS;B7-^#~Zq=*KfCeHzoq#oQi1)HRf%O=RuZ4R{%VwogAQVlN zSb=+u*UYnzz!{LbF4l24>Cv&KQ1ly`hgr)rVMiStM=Ld;j{EI}+aw2YI zC^&^kuY>G*-6rlY6C~}bY0WKx&2yxjJ_1hq+#L5_0^C!_;C1ck>{+eSHR=b-0?{{& z+LME_W<7*=uH_J=rCPVu!c4GpCd61sTboG#S~giB0ns{s@xBGjt75`>YIGAq>#gqS zVB^6Y6ko>uYH|M3f%6e~9Y5E<@z$4xpGkahy~U%(aP0|bzJGLS2S|1oygN{+6~1{= z1sIcwL*A&t`SG!>cnesb{dSb$v7Dp)Zp!GlR;V|R(s#!?wPT&$IL_|RAKRoL%Hf(L zFuwuPrO!_LJ({xL0OTI^YO@S0ke9;qm3&sUWZuZ2wyCwrIZG{IgeuS~3mwOyQTlA6Ym|500F)*a-_=rqF-Cc1ofUrj!M)tbZqYdmudGKoi zTl>LbPI`vS!$C1l6@xwTAw&N2K%V7>0YFfTGrk1RYqN!|{)M{CSm|%QKTBP=`4qn@RI z>RgOfUV-xzRpVd%&ELrHG)8U7%%Yx!Y6&wQ?Ik)>ANI#T{xLulpqZDN3h8eOJbw4P z-%T1|WMf&D!6m5xH-M{t)=qoK$P-#GtxE-8Xdn-s;!!*K`FW4X6@Yi81?W*@`>H?{ zAS$3#@btwOzw^o9RTEhhc-b=)Jo1t$XoqvGokLhYET=Z9_1J#mx3qjGUqxVySct3wJwLgdA;~-w^|Ni}TZ1WAR+v9ucjse>DuYUO} zi&8SYfcMcSfP|m@?6dI4Ra3pa7%vj}e zM90}|q)fa|0j51^sZapWNgKm#qrT~JVjn#x0UQ9lMdLCcLj%YWNwAOi03xsLv309? zdj(tokOPa`8NaR6AT}!7>m96CGOE(bAM7;Sn_l}eTkS|q9(!j936D?Be89A1e7Q~rjh5J-bbO1FHTwXm0eLk1% z^Rf3z|J>?+!n%ASuTM(sw|8}U&oYKH7-SKe8(Rcii3coXEGM%rxejA@Amd$Z5<gb{1~}VoWZgqzH`GDIy?va|-v5rr-UtGsnVUrjbk+_y8*sJVhkO>Gf&>*w zd+zKVVMLl?Te#1ySP-r^?xDHyws}1Mm!JIk|MA$a|NX14K1+QQW=4V59pt{wMqr}h zJb)Ge0KhZ0@zIDLB;@fy{~}z0u(|~%2)sEzBb-mp~|k z18k)jF%N8xcZ}Iyo+3&Op{3UXTa)1z*^a*Rix}*P9+`b(K7am; zU&t4qe^D=38J44~b7^Rzn(@>-U0eBZ5u@B2Ds z>mtR|$J`4t00x->+coO=A9&2jZ#+GN@+a@*L<@X(6JTCl2Z&PYkLUFFR42~+==V_? z5xEU+uV?u3{D3H*%I9m=EAeP~C0M4N#>T5uTftWY-6X*(-WfbK=XYL~F9rSp3T7Z! z`OPXJ^RG&e{P~_v9z5>ky#0;0<)8lfpKC4IBgl~Iz&-+O_Lc+W(Gw1kn(0&qcW_Dq zViDD)PpjJ)s05(+6ndQ*f_a0E@%0!1^fIU(ra<&#GPJ202&1m6sgZetvG3uLo1~h9 zdv9>JT*#Z32*W~2W;mgAz@(X_qyR5NI<+o;Z1`9a|J-DG0iB8`<_6!+`Ty?Z9r92 zQ@~tedLAVide)bQ=L;61-L2ax^TIsk0CefKMD>ahU%dm|Xc4Y;AEbP2 zJKMj7dqt>eKnsFngD~UWZRx@$%_Ac}2&*2UO&HT}eB-@q9cN~mTYy0X^x%fD>I5H% zBnN6AdBJ^}eYb6NHueJ}&D$0L-3W!ePupAQY&gm0$Z=31;0FO)HP*>+-F69jo|$rX zN5{ImkT@ZwKq9j9oneo1-ej2Ynh40#*z@my@4NEzpZ#2Z{_|gS#$|N?Xzf|^!Pggt6S4xNPl&{ zRp06&5AM%-9#K0IAaFLgCYougD9y#q0Yp{Do22czgeT{=p7HN%!WXnEilrMm>msgEvK+WwR zrb&P)`whM4VxvV6u%p)>U`{ajjhm2k5`Ma1DpwrFU9v^aUy< z*#;J(O4SAVDhUWa1`YxM>r+3J+;0LrV0--@fvNKStLfLd7))1X==T9^D!KWJ&$Mp| zhF_!Ko!Ml7T6M!(-0Nbyy#_QduzflW<6CogPoKl0D)6Q3DjlboLoE#;lWE`C7x|Vd z3`LlQ9&-$mT`Lfcy6?$EbKP86Xf+2LdBbSVSa-aF&xmz_X9p8;%K$LtJ;cW76u{HZ z?ZO6-X)hM~%VXfU3eLiSo7dXZRX>$`I2K?WpIy36c4-^9M>A71dKtuK*^O<3+KB5f zYs~kS*a^DptwiY^Nwg;R~wYQy~M4q#)d$L3lBL$gxg^%AM=aY%Cq}=nB&tJ z1<3&Vx4-p){O#ZVoqYP+Pi4g{Vf{6Yj=?R83&f91)${Bx2@94eDUgdew}7y1*D?GPfo$5 z=$y|0Ze;+AN4Qt#b8}XDP~Gbap<1%&z~l7uy;FGrSy`uf7(}k+1YLZ#C(2zMn*S`) zwh_SUln-M)2Gdv={Tbl&0Lm>tv&hzl3N@CGxPHw$M@4AylLDGpqSz&w7V9*FW@loh zz;kN@Xl?bt_w!hczWnM-`Nx0!C;8z0_dB^T1E5Crv!m-9OS>A|(#4hRY+qk?8d^=T zB6MzK6T>S&bP>W%>mY?x-aT#TIp?|)RU6ncY00pn&l8*m5Vo7JMUQfkM+c5PXTrfxYX~N_2FC>Oc17>OlMsA9_wNbhT5Q=<{}9W`{(*rZ zG#*%Y`4>@jwZ#>Aq5!j{ki)*zg*5^+oK#a(1s!6 z9%G5gl;B&+yBL5k4Eq`;3mvZV*~s%$m79ICAqX6Re9g6ou2Lb%TKBrNuuo``t_D3# z?N-33|B@;-g->AL1z>%mpe!%$@6)&sK)QhP7}U&z#%-Yz5-#?n04{cq3fDPnZ@cgA z0O1s4g|@XMB0ElN`_PxE{wprLz&)O+WmNx_a3C>y%#zyy2L#wvIYk}sL#+mw(aG8h z;s-+b6t)moj5C6VprT-2z4J<{bJdFSdF+7F2h}Rc9xR|22Fm+IM2v&f0j~>~BrP6# zfL4AOIdUFUJ|MNAjs{W<*fPyNZwVN{1)v5!U&`@1_-^Ll7|gJ<^)FOYc)JGeG$8%M z-}{05&ENdZz%m~J+0}6bj&W@U-+X>9hd+-1{CNNMbsm#d8O!qY8UWAVbphn^+zgat z@mm)840XA2)8T=IZ!uPFNOJT3-|gzHJ9K?o3ac*b+!N?JyShoPN=Q(&EOK2Ht!(ql zh(Cr3=zLA5Dyv*KUuCLPuy0eDT%RFN%4@IZxwo!&|*b3en(xcJ5{Yb~ zG!ISRecX{V;^T5YSKS(OOggc-0F?s=Buu#U<_4&5^h9{j4Y>GfCD2%1iAhTqGC=g8 zIzYfT>!{U-?8O7%cO(7W4n{~F0b_sK;MHeK01x&O{hgpvB-u(KAj@nv1|@|Xab0N` zL$(lL;h)*{!6o~wZ*2!yZ~LC@0)yLfoI^kWQyJBPfo2K|!S<#xrb1m}PeV**GQr|^ z;J0nDB_De2(GQ}v!<)MRaX(|1O<9$I)JQ_#d<%~b#h|tn{8B&+L7|xL7OEEI$pTmd z%ya77tJb?hYDa*{Hjd^8bq?SYczh}qiXt3YT;ltz0I6c4_vA%J22Z(EAH!K&Zq&i)p2q24Q+ zcaxt63ix}(omZ~ zM8MA6MsO75%c>Zq+a%e6NC(LwjrAx*Gy`0v2h#rFK8+Xd~|bt$XI;CL!C z0q`QPw#XN4Lv~{ty((g?;|O3Y$2OLym3xBotnb_*REq#W`7FgkGqfisje#*09^eF` zT6X|=YTSzj*;GEZ@Cj@0PILMA>EpYS8OL%zHwH-IISdzY?&lcI8Yh-!{rvY9%px;f z(9OknsH!A8FV!x**S1hONR}DzMFM|dx{$WFV{gNvE<6eVr|RAd;Hg66zJUps+SO~J zLeR2)0VXlj9DPknUBe9#BeHIIs5%8R+^B6eUnC7pQ>T{FbeD8fq&>_pfN`96hPXg< z&Ql%}31B8V=%Uv)`)M$41gHmz2Sdm{wyj*s0wA;Bf9y`D-g$!&Aa-!PUkhl#QGzCz z^?bwmf!TvSID>qb!C^wryw$Ed>(fFdrLJ8PY~z4I90xf8Ufya5W|~648}S&hqg{7gxu-yYT>`s*qjTQplIgl8!{hI_gQVR9u%}U` zM1({wRpPFl@OTe&)zM#w8RG8h#%ruv3(RQR7ceMvjf}TOcXR-pXlym0BHn%R#h0C7 zHbB^QpF?*D>@NyNhoeH~8V(FBhwnaxVm3lNV-mpS+8sr710XdWX&4W{aL^x+(CvvA zjtAuU2DwR*fi1A_0PuD%>qhqpvX?ckyTN;1QhrQkQ2Cf>cDO#bPh_)*HNgGf|Ng%V zvpDl{#3qZ#;XMpy51HH>>5jh7zmFTfF$IZ-=W_SvI=Ro;r6Uucl+|by0s# z$N4nAK9$p_P%a8rSuXG6`me6(^jSbO(oTJzc~D)3vKIBo^Ga$B((-xJA@g=sCza9x z9{dK|0@y?b78Oql@}W7<-&+JU`|mxz<2el@uLNWY_`~l946tTjm5es^vQ`wjT;Lzm zeEzsjeDJ{s-GG`^-P+Du-Q;~D$HIY3^-c5(?$gng8rm_mxi8+;$GDgMPV+tU0nnEH z6zScqT=l)^$Xff&CD>rsHobR*j;f_G7p)c?1LJlFARyQCE8nx>da#o{q|eEWG(Zv? z&;uxp0N2adNXIqVx=Z+q4&$sA+ug-jyH2v_Um?>yg!85Py_NCU{2*t2GkRPI4XiQ~ z^S0P?Z*TUa6cBVBYxg$cW4=e2@NoA>f)DpaMvDx9o}e}6Pm7nq%NK4xWo-J(S1+>- zrFR>Vl#P6Q?3-6FU-rK9v2%6Sufmm_UFThHO9Q?4w!i4gG{oF>qJ zF^nsGFauE9@#>Ycxi;S}!F2bwhX5z^JX#uf41vds4mLx;F-&A%cIbvjeY!5RIev&B zFWW#oA~>6-8qGP}6TgVa&>dsFbT1qTk&Sjh$b6*|-d!q~pQ{u*Nosv|h7W61sj%qv zzJmQ5c3lR>`EnUUB(vvLDHGGRJw&?1OO?^(sG;)w;&04Ej=X8G z$_D#x=7$>+3eIIPlT+#Opq^+Cq5?9A#(n4mL`7uxbxJS4e1QcM&W!YX@4nLq>9?QV zW}8=_di8sC?-7{&y2py4#RL4Dd+oSY|Lc6QS|4V5v#gs(tA&4^-E;bJD$p-;2T~&l*feXmU-d+ z=npHC-L7SM8^B=bUgwszrr-nb2w+t0KKAl}a!}s{xYTxd0fAtFdSFa>4d;2XWpqU3 zUs3&B=yLzjtoqXH7r{arnDY=yT)Oq1bA52{r|y~!P7oyY$piSKqi5SL9iH6U%Y|o* z2e^JSFdllvi0Eir{$QS66=h5H1@zM;)D66UK~feLg1&g>6@6;J@}cXDYXzeb8J-uY z%y_@}klcrHAjSwn8XGxw{711maz2ZOF1YvQh1GL*7y3MQ#OCTG(RMrTBibSQ0(Nx> zexlKK2flt^8V-gBGu2YP=y4|kXm@oFa#(>jcv^MI>YNOEx@TauEXLJFGzNAhX{KN zjL|SmY<4HYy4rXstDdfRZS3^tpMNe;*Fb)IFdxwSMt=-0bi%WSowIgYA0fKp&wu{& zYXp(gcg?!4SmGll_ql10juq(TJXYzr%%fw-kJ|SfaQ##rukKqQwBvk_>wJ_}r{DQH zMY+qO+VuIabx@&L)ODS1u6^FEay5GGiQ=AWMLYQ2R%r+;wMG34`VCm-x~ug#EtffC z?OS!9^XEDr9h~=3J+8}a%cW#}gaq;RhW3(JqH2IzHHXib>y?f^xJ6-OHE@Rt8!i^VL;_5fP7k#6l$C?28RPARMaV3a&{h@j@)OYeH zJ+C*Jk2+X0fQp@FZl{k=0el9%Smyy~I~yK-XGaeLXU2e`<7%Mt^_$m$CD`~sQ~=Hn zcwI##Kv^)@271qdnc%|DcCb@VTdIELs?GcDoyQ&a&wDVp5)|C~0|hV=O`*ncO%MJS zZvV`P(p4(_DibTc-iI>_{$_XMSX{&bgNx!VB5E< zYp~KO)Qg6#o0m9PRA8bp3jtsXRSHZtJXGG;uLyLHQanJb4J4~Tbc%f2!i&YFD`5i+ z+r0)j0d%4F)?L5d-F3ZbytMF%=zaj(FN4a*;3reQZ9_XP%|k>+MEjtAVRdftvWL+m zm}uM1VErQxV1kKx7h6Kow`V^4{4-gukWw#lA0NE}h^>wA<`!680bkF0Oh1F+CQWXE zR~^9Ob-fs@BR&5YCx^U_!1`RjY)fm0iPlG(w>H5vG#vapybi?DI*VnGnP`(LXaK6>`Rb5u!SM^!dRd3X1&Wnd)Ia}KG zeeIyE`ANow1m*y>aVP5_YP?IN$-rnO5DajL9Pu<|=ZX#h!+(#}X_Su+AWvjWjGryv zaX?@tFnMOUw+jGha%)4IcOpgDAaIy-nSbb@YRvQ2hIhsmQ33n?!LVk9qc1eJ_5r98 zbnOJ1c|0^a0c#-XAp;y;#Rg*}f_IrvQSXmcOM5RQ7Vv;av4n(uoksWwS<1I z*!l`>ulXFNECbZIC{&#klK2ryUkdXM`Zr#Vq-n9BOsv6Upg zW1-6GYISzagG(6i`E$2N-As>M*84RaM^cuH?Hu8MLF!2)kbc>cgx4ZwNW zwo{iTEFnOs-Ppr!69deww6nwy9TXe5H5V`F1iS>@t;d!RpWW;3@1SGj54eF=?I?(8pl!N3Fni+(2G&UgS`hMtRoVY`M%fW4EU9~1Cy z^dDcpzU>GGeci$t4$-$cyS6%+7ygxwc7^EluvxY6WAWAb^3$bVXZbY`?mh0!d32EW zsp4o|ywUb5Bk|cm8Jr*2jRD!M5o`y)Z}oMXe`pP4)wh5VKbZ`kM6d(I^S#ltM?J0e zOez6900t2P-jTEYzu|WNBtU9QNvdE-;J0`;x_WLKK(mq$T7d9;nuCC0gErQ^?e*IC z)bAYTk&>qcS@k~vj3xleSLm74`crjY;EckhpI#GcMVr`G27hVvbP~u8`We=<4o=J1{g9{wRJFcNpR@- z)c0;+dD$a0^Eu`MbcE%qFRQ;og(E;$|D7re0eY39D3egq2)LU7;T|P+QYSd2+9|?x z>$asA3iqtBOU2NTjCX-(hrl)=9w)KcLy`C0f;R#~#d_|yRENcwWS>d7p0mF

    LdC zFSLkHV~W9Y8&LJWxpdrzdC`Gt^f}txaTnn;^ub-!;~~^yAtXQ`bbNIdeyZVB19@4t z2+(KGm6N<0^V-{ee|MLz0H?*AF#!WYTdqAA5FiOm}M#Vt2c8 zJzTYH$=2qJgSJPY|B~J>5KyJL{)y%B%EGRO>V>;{enIqLV70L>feKF`7c7H=4JH)7H|JdZpi>OCK6#}akJ@5XItTrvlEK|i#Vm^K0} z$1eh{evB<`v;&N}8_z}LL9Ta{g}Ro3p^(rMPh0i>$tYEgZL0n=mZQP8FMu=)m=@a?UW^inEJw^R50iu1Z&-pyMyWn%Gd(^IoALe8M_G5+% z-BVkm=!rgGcOro2$cpYG+A*YSH*f^VZ5;d7lD*$fr9*#z|8iuU?PZ0+4ETXXW!+=% zq|wcrb)W%HQ?KxhOPYbpHan1ypWnMT4FFx}l+>2W=@H2OHq$p6P|*IUBeq8Pe!C8d z7{C{YrGsh+-VSdf&r|f> zwU8Y$uqyHtLwlrt@zlXg?R;)NR%H(CZk+prKl}sv$xnVFKl;&+)TiTz!}VS zIO-O@FY$<8=fl^BL***ZSYwC#wWeN<)2iLeGNi^?7N4u{t9)f~zb@`cnV{uAS$Be# zGG2+J%{x3Y0@z?pXQ1ij1rW<1AuvL#M82-+@aEW2W-GOh0X%DX2H0VcBgt(0SnN3- z+$kKnE*bGCwe&%C0CWjXl?}G{>>F=)=~=t4>GHeGY7+gOA8e&v2Y^A{x$nSuVjV=M z^`1#T##(9}P!kML0k$$hZT6k=6v%Tsxkjs@uK-`2lrk`|*LXVv9)6dH*%>~2H`jyB zT>vSDn^hbjJY05XcF{%$US-VYYwtq>I=;U8d>tGTST~Ux!zIWu z7E0`#t43~N$OYmJ#;4NtpY0E2r7$5nc=Lj4iZh?Y=DLz?>WzE9oqBn_UT4?&?em2| z8zTR)k?SR0_eu&{8wEiDQ;j}22WZ8gVV`tCw_n0(f`liFng_kD7uQ=h;M79che~d>)rBn&%2L3a zy|1~~jMx1-bnab<*ajDN5V9oh1MW*!8-Zl@mY!4KDzDM54~!;#u9gFe#Ip1xW#)E# z_St6wRRs(N+^oHhxZXDDw%A&Ec;kURoF+e)qxL8q5&0|+3t9MOxLCo%Z@|+G^Dr?@ zN!$+jLPq2kW- z5h@%^JA6FbcWV!Hb&OFrsRVuE?|?RZ&cJVGmS?2GK+gvCo8Nq|_amI6+m?*=-)E11 z$bVJtd~F8LN9hO9{MbLg_j|u5fA9x?(C5j2`cMBUSopU(aQ+Yf;XlY<{Ka34?bT~t z>JeCs^^nE2VS(oJ+Lm?y!SDT`KR`eG>Cdut1x1d_yLIsLGb}|{=<5iM{VSBni16#= z)YoQTpgGrRs)^p}8pld?zg}G)YL0VlPNR!+Z356&6`ShK*XhDx^(WxN?O!Ebj`LLK z)wR{VJnI2&+u|O0!O#R@D2vrGY8K1lebTQ@_XC*aGv8X?)yqRU!R)1eW+Ol^1ZbNi zm}*TUk6>m6&$>8pYy~29ZgJx_#o`y~QV$gU)<(lFr5*s_8^%U;1b?B%+-TxtK$E^$ zs)LOd#&YI2H|hlf1~uP|EjwS*a|5nxs~WhW+}7Vuu4`PXB^}TP6DR0ztEW^Dj}A0Q z^*X^Z?Q-(gza7v??!6Ozo*p^KcW;8LUT00f!Q0}!yi2Huz@tX!zjl*5GOU7Jk%7p9 zVb{%>#Qid|rXA2gfKVSvc+P^3Gs1DFo4WvYV44B$lRSIO&Qv0x_v?W&-eeqx++n_y zKVM)O3@rO_md%aRPAARhLhoIuIrp7wS2q$Z0m@XCfFbr6-<<@;K3^Jk=B-T*9&NrM zKnhehwygvWfKk@~xFox3{Q{>2Uv*%q;klx8qVsuaVG#N_MvtXPJHz-_x{kJi;rr8l zg4TLetxe~|f{0WJeP+z5RNqN5v$PQKuIO&(_K51(pvDyCZ)9+*rD4!r;zd~Q+&Q?5 z*cp%KUc59l-E%sR==1n7-HZFXjF4y;&>cU>;Fr0G;Y+^X4Ew=-a<{7sjL658A7_AB zj|J~eyA2=%)M63>#QGLM#EvK5iyR;X5r3cq_0?COq>eItEgSG;Wp@mM4J>yE!2Dci z0A@@W`wojwfNrPxPuad%)x-ww9D`={xeG%?`);4`bB$<;*12{+`=_=C4Tgd_??mN@ z>Fw9F(ZX2F>FW6K+uxS&e(!s!XHK)b54=U+`p19zM^}M4$YceWcr>l)(^k) zVL$hO{{Q~Z{vg^l>!-i^>%Z!LSPev5DBU0Y;0N;EM^@RG5ZikF>%aQz43FBTvSt8c zWAvln|53NFx5EJNKmYWf`*&lijh+7MzxMoWtp50q|5$$d)1USi=7%4C=mwmR=l|qS z{-hgd{=?t@{bODq$d4Zxa?{EB>al)*`*(jQUw!%2VK1P^WZB#QqmF_D3wT*y*D}`A zIqNa#yLI3AMGnCqA6ZTVa39mo!pD%GUW3~Iw=B*h z?FiDFOtQe$bFc!}S}KYiPO5(pIPBVJDcBpd^P-zxY8#tY!W`s*Qp z<`|WZbfvcvgtBj}yihj*8`;BJUrGhV-HXBBvE=(a1%s%YfkZc)Yq_3xwy#|VJy^^S zs0Z}=n~v*a`bSzTx6JjV38b01MTeZj-C3>occJcCy158`b_!-0pgY&>R{hv_;4eOg zP|Za^5eUvKQ5-5n%g z4l|2=*KxpWL9}OpAuL zR~;hnz4xBGZD}ooqS!=2sBL$;4*$*fX*KDTw|l=Zz-8%SYGR^Fk3Z@l`v3V@#@+qhRrzaW1|51+#~TVIEsw(sH;yA{c73_Y z0lcTm25vaa{dcLEF3v4~>$){B_sui5SD!83A*@r+Z+{ zwz`_Fc7Sa}Yk!u{7srE!w>Aw81MfS-k@mY|y?75nJ(s<**jzPm4Tc@>!v4%d@NDjz z+RmEWV*}uYQ(Z*}r0yklNOl;1#+-s?0YPMV z``zz6{(ZN9H&*pmzxs6m00+MY1Yg|0cm&qp@50O<{K5Yu|Np=F8)xbXK+iy!&kv0E zd>s#7w8Jf#{RZa$zyJ9^%Wob(4aB~D{OkJ9;~GEqM|?G-L%ZiM|MD+;d+qp- zKlzVcullDy`>8BCD)ak?fA|Oa$A9?8u77Ry`OlAauxz1w{qbXc{^9TcL4NwrKXrqH zhx1{-SE~Ya2n#^dafFbbzIc#!gjM-DpT4?Nr+j1p6Efxg+@nqR&i5aI==D6gzEM}# zIGM^7bA78345npOCt3HhOj))BSmSlRZ*@%;pL6}@{OcJ!DoaIq9tirSNkPTALkU_& z9|8b&LNfqN2c8WEcya~2*^ef-^&3Q~gumbbTNo_jGUZZM@(-O@vzpMcu!DnqIb z?_U|ZBh%DR&jGr$9lJ&7Z~WtJkEcA>oe~HT=%M%X1Q2r$!1r)0?uh)SXtWk1?ym4$ zPZi_dfwpeBXxlaD-X^$@{)7hxQ>Dme&~R@HYo z?C44WMDwScVXG}o7|MA++0`xmL&FwHBkyy7&)P*Wfb5K=2RM-uFtm)j>_QqSHh(*# zj$g&DFkH?Vv)!kdYI^PRd9O7$THz8z{Kb5+3Uo#|-Oc#~>g;Z}aXP22Y&)NmUC!5T z^d$s`RBuqtD1PUQ_X|`KaD4Upb=qq=z6eH@0@*-K#pVkHij~8Lu5YcEVB$wr3aHY? zWC-UZjZtVq6x~rr{IKV5B=tI46OK;ZWs{)9!8?>2G0dBgx0n?nQ!OQ zR_wg%I^QR|Zgsp1FE9Y){@iXk=S#hJ%V$!eEl!w)nlakjwGPhSM-f`Q3%2LWKr9cy z8Bz^&gkha|K7W;y(R72M!T{gLHn89P<~O_X9MVBe!Yv>7WN7UG(8j~>pc@U81g4gU zM&pex?-dRekeyg;>tOce06&QaysS=_%UucskgV>*m5PCUV{cjS%i0V>N9aLeP~LQ^ zzXk*y2}41!+t@;rc<@(%HID_(VUTNifA_oJ>j?}*{`%LyA@Et?*81(g|NY;~zxnaM zc?8ez%J2X1_vLT@?r)FFosO$I=7Qb^kZy-PIIrG%m2JbK^42%r>fTa}skgrVcYpLp z@?HQ|yOYD8PlXRJe^bw}-vG^)zX5SO54SiYxZs7b>dZ~HoeeABj2Z3E=E2`T0_cxE z`dDuDN#=b8k%kILCc*DE!?D}_KbO47P^f`d#n)B3hmht9(EX1*hAvsm@%ebFr+nd> zK&p;yngQpn{B9jHu;;v+9D{8ht@-R>-!s5v-HMPD1`rwZij|wd2!lh3FfabV| zqPKZE){!nyp#h|zg5m2(0V&PqmC6H`)4^hcPB%Owv;x{v`J|dclnpSSwTil;ZsRHd{V0#8)5BGKZEde>Ycam+7 z@ddu=b8_E@XJ=0x=2N)xm6#J-M{K@>aLSPGqU^5E*>Su>z~c9v`7m_cFC{2kLa_3= zwCC;OzekOZAJ-mr$zMjXfHlh;VSTvtKX=FGlErkk@!QJCW zJokgD1{BGe^~EFy^9re*fues)PD;11swKg4RE8o;Munopr zFI*y3`qQc_Gf=4KlzV8>F56V-~Vy%J7awR-+%EJk4*2! zQyIb?Fw_DPez#nX7o!1n^#3_t1P%zbU*q4B-wQa{c>cv-{C|3V{_-#XO9$eA_{d<} zc&(3i2$$ZT`a9e+-#a%=7k?t_ zUgKVnsV=vAw;klQ>g844xa_MTUfk1$zc$>bi;892b%Nn-e9kq&a2xXTMK115`kFv< zEFw^S!26a5g%@uW4+5gU3REer3gKdzg$!;K%J=(1U$)^|y<@QWr;re+qWZgK*(n@I z^|vzXB{CR%;gi8@dEJl%|Gk!5y(xDB$Z>P#&pNgM2bbIu4=~q47dikb*AL*k8%iOd zM=L<)9ye;tS^a^96M#n^0~l&`z@2IilJ7=T(Seh1*PkLPnn%xT=_bs#r!|6W?CEJL z<&YR?=;b1MpnX4I3am4T&43{(1WCT*J9v3G=War}kBv3DiA4UTa=>_n1C^DZW6l18 z8$1AR#xp%w%U(baEIjPGU^Hmi!L?etoYOEY?ZHT#FoO%T^u64Jl!PF%ZCP&WFN^yU zhV7SikEtP~mx_HSy=Dk}k}NY+P2fA*qlwl!>&Awcz*gaXM76K6nCIzfEXE#l%>Fxp z=?>Pot9YDTy|x>dN=wE(1-yvR*J$1Y(e}b8i+Pl8^KXZYQH3-4wp8T#@*_f`|tnZ?>p1~XaC{P9;oiH@C+&_5#efjQpzAL}{)i3)w1L5ZC?hpUq54(Q% zuYUEbp0~|2JO2G6I5+VA$A9$41ZWD8n0m$^{NW#V6_y|U=*RNE{cr!TzMEj6Id!_^ z=+MJ+ggN-Red7M-Le3cmPk?IiYk5|0*JgFDJyEOq-lOykAdl`n?6&E?Hs!S{>#2Nh zwezSQx9ZP%>MD;36wmi*e9>l}b`1P!fVlV?Oj5GL4ey+)Ktad2 z-oO-Vf=>+~85mBW7h2WT1gQX#tUe)m549r!v2r3}c$wAK1P36E?9X?jNYIcme=ylX z0)kNATtYR0iXWM*Xg}&D$pG(EUI2|SzJs8XK~wy(!VnAn<9g3~uFJlDGN`QgEYvcT#%l|28t5*76OF-2UEVER z@@>VK=Was~NeSLsFuZU%M*R+hJ0`FU_%R;n=|guNQSR*60x(to;YJKvu4|AJPA!KVVGRqK>9F4ONjA?R@Lm`KpgcUhb_2O^0SEfOwQ_-j1J zE-i;DhEeM9ZgD=>eRwEbfB7!KJC~QbG~4FkK*ihiGJ>xFyn`vQav#Ez2!JtM<5fTx zpY#CzU;@C{!-bs##Qe>X*Ojz|?^2hmU{OAOG}E|0I9)SAUiLU?BP5{7?U;r}_17el71k_JihSC)>n0l z%7FEBfQxC%5WNCgFla=QVm0m2$Ifac)2SMbAR{|`{Bvb(S z@F)QY`8sI;eoN*Os*@0i&@KIQE06&u8!qZl_hNxP=!p9r-ioOWmQ|^K_|67@5`Y=y zmfJH;wzPZoAm+ORv(Bd81zsud61~6oT5pSS^ie_C6(T&C=}j|?HQEl)m8u+~Bq-cb znG>QqrJrGmqB zm72!5hMtq?EZ_|U3$X**2WE%~+cCI?Lw{HRXh4_0H0BnX13BlykPvu`2~Im;gXV62 z@6#2Z8vs58@p_j+SP66$l*j4|JO{UiwF3iyeU~IK9$ct4VTazwSV@re@=V3$bQh7Z z|CgWq`Ty~F{eS=Lvrls1y<=XIM~W@nx>Wc@XBB<&TBQ-8rgvPhuwXt79NTx+GsXj# z6M`lRI+x3{`|%xs-paQL3181B6Lr9(2jFHPkG8r2VRdF&zDl{mLtOyOA>Dy>cuDR{ zFp(^eKl-D8EC21k{kNEp)8ZtfQ6AFF3+Mm*@BioCx0X*2fjOm_)jRBfG2t(M@k{yn zFMdAcHWRFrB9L@6qKiZIRSNYBTg73KB?(Huj>L)Jy^;fTl zJg)o2&)5MboI_~x!F52gKp88p=&z(bDvDe+$nU;^B>g7UQxcW_2| zE2qoG)|P)7G+|Lj1ymQM#3h-YyLf+;&aWpdpo@NJ84B7y5Vg;Q<&Qu9#4Y%h#0#pY z3RF(K55NxM{RD8mGnj4;IshILz)_uhpp5_IvpI!x=9aWwf6K8s41-Q@gh^v>V%9YC^d)A_ZFaOsGSV`*ja_kp0fL6_Jaj_x&ZG1BIw&c;xNE~x&I4Q13`YUycsYBheZZjd zGWn;j=L}-6*t-8zDp#kd+b^wS>Gbgv7iA@mli$ zMy#i72RviApm$1U81Y6t(%>aEBzn-geNRBYhk)gRNU6=BU!mUf`gJkUeTQHxpW-l% zy@OD+nY+BVN8><9qUcNnDRJuDC$)i5SYU#g2HH1f7&%pT!XMA z%#tFQUs#HwBmKc}Mf8VGVO%qr0V*d8a(S*6f>O4vAzb1_*A`}{d^n&OF77^0GF)We$WP4)K{jmc!-a{ z_^mvK^9$*VXTeZj0#FfFW5~Lcjm-cy`Lmuu5oU^d7Kpk=*CfF@<*Ssph!9VheZ*$~ zNU)8afRM`Rb%OC;T!E&w!K0FHxCPqARkuVei@Cd5Y**zDHbf#)N= zvv|9@x7`@$od9(Q0RgNU5mjKuimn@(?xSI-hOhw@%zOr7 z(y;Kb5r`Ss`+OP-w29EzNO`n!&@UN++WRbw+SJu84D`CbcGcDL03c!&hb`=@>~M9H zEyoSu+IK(PU<}?hd@MaEOcy*Nh{@hOy0Qm1xzHGw^8jbSwHr`g-i*ORP-h4&6+mSt zAY8i%h^{QH1Vb>=uJh|a`*L|m2G&7s5QpbI+v&j8fjV3mrjg~Y`PwqC7{)R`^tc)K z>7AsjNrXm1tHfPJ130ehMThWQ0dBPSD{|tmT8iCkR~f?mO=cI?)_05bUrWW=!b$oQ5DMEXlGD z#A2WCg>{$sfi1?nqU6}8xiqt28mCjW|NZyB*&il6{6|cy(sI-1)RYbu$}Y)XuF|Xk zs1oClE{7(NEC=Xm2CXw_o)XI~VPI8HX3JJ(uJXdQT7-}Li_eeD@z*=}-nmwJCKhGA zzIj5AU%&J*6I~~fy1Z;9om9Qftv$19ZGqY6JW*qj5m4ec*YBxfb@3a2H$;iUbEqpP z$U4z^{2su#Ty^!beuP^+yLO$&n6F-q$9k^na7S)s$3g?O0XMuuTPY_3#d%&C07?!d zGpSqp3)Z0%n1v2ZSZ&2`X%%8u3gB1g7Q@5`SmF*eH@Icns_!5$5Cd68Tj38n@=UgO z3wBz!kzJMoLBc>h`V`(EI#4`8btAfKtA4@)jr$RCvE&nt^DQIDoxs$#M()1Q-P;hh z8O)lrnje>l4mb!kx|lr)GOLH}0Jst=2mN_E0erUff87Bkv8at$OO1K6)7Tik191b@ zniuy_p)6*bSxiJ`LlnVO;plGlbf~8b1bfbvCh)cqK|U_~&|-MhP=1EQcPnj&H1%#p zLXUP&qsq&<)HAJ~-7YG|8g0y->gcai7`(L*j5Z!ew1r$9cJTU$9SjiKC*1Sm@11wv z6?pG}Y69lC3p?&519$|XwSB$yP~^z71O2G|oUaEMvh`qbwUtW23Enmz+kuYB0H+G+lq^{P|O6G(u%wS5t>}u8tNf_Q(`Jec!F) z8rI-DRbEHHI92MoCl6~d-gi9!0In)eA6WE}8;W>VjixEk4n9{shTl(>!x*a37u?$x zd5Ww7d*i=0)#qqBFQ(?I%vD`lTx?U~Re#kCYC~N`SlAoyBdA(HFJHL<9@@B#&2JnC ztab@@C{5Z}&j3D|59QDj6h*z!R|zz|K;?Hzc9z$>r`16W47m>2;9#RY$6AZNgw zK{vF(FMvN)yx#K{(g8+4(sNbJ+&=U=fJvrrH3k6nZ6`pkrDv?!Pnv9XRLj*dWOVoC z_m&DEm^T=%dw;bQ1U%|pct_aE>xAm!jSzJLXm+4*y>3X8LI2a&#=B(d;X2QmT1nM{ zWQ^O08{n3$M=%V~hwb=o!(?kY`YWyv;J3A$zZfT|^JKq@qz4XOlLTV}02ts1daM9j zX9DfOGca~6ydWM85IXk_e!gYc+2|@hmp#37!8r8NvB-l9Vi8IkUSAS7LIjoo{X9{C`wrU8{ls8~45zNN2X>0@)3zM&y}@%yVk zQ=uMWf5tZ3{V)42JD#Q5=|B*mEyz<#*IDCW(OIZ4@)AM-p1V^Ta~24PD#z;%gv$#{ zsR3_^B~>-FCW57o=g#VIhJWuS>FvdWs2L7~bBj)v(ql3JXEVsKjNq#oY7eGEj0t2Q z5ra1y*CD*8v|?~&lAbZ37No-})d8WF-(#qOd?Vc2;Xaeb>;Mal@?9!%|GbE>gHD08 z0Ua2;M4{V)D2A?PQ7>6Mh)9QeU|ZvK8s!a0>2|-lHcQoo#S82R$Sr|qvoU$EfBE#& zPnLNc0Ys?4SR3AX`<+a~FG>c?R}65I;hxohb2|QSPIo0B5IPt@a~u0&ZlkUMq-ZYo zvk*}CFBX%4to#@4Se}6X~Cq-&#!b$IDCNw373?Ebe>qHmhwg(@gId zttSdV3@EQyJ)vjn8spNdJv$@aw+)!I$=+&waBQbp9VC;>5Cv?n@X}yaaSiJWvsOr3 zxP6?k*$Y}~D*5x2eqW#L0gK(KpehXu%^2VTK0fj|H$6@w&*=-KJ&3Nel{R5)a`o}c_WYFKX!?9zjJMGba z=zAM!8xOa~9odR7<-jz(5BZ0=I|Dlm1~$WMM@5V^w)4gm_W=tdL2IOe-Cl{)77~>| zh)~0@ia|Bw)5o&9!hJ}1Up_L)#@GV*g1tqjT7xZYvN6lp8i3~rYbZzRgI+WqEOvuu zMv8VHyV*k+@%sSNJ<44GYA`jdXALzG^Ih%g9i9%VB4xGQXh9qS@yyZ!^fBve`NDOZ zMQdc>c#BcRi^p89*@1|It8|AzUPoX&-;*F!S0Gh#5t-|J1>W^qhk8}dA>X4mPuEu< z`s*A8LRRHX)meQ!6?5td3s(x#fNYRvf@)kCIxSLasW zWsy#GY}e|hcJ*bzcsKJ$;&z?IllP7Nq%@-5YSe+vSc~bw+!m31_Wbuw0Ii;-5&TLk zU%?`6WTjP;9qQ*Gjaj;vhOZe=s`7nD$HLyBKRL#ukiO2bM`(c{yk|)?U!a9L~8yaJT)R3 zc0<2yOI1MFnBdk+01aOoyzk9e>qUC2aJPAP0m9&~SfU@{KiS9ERVJ{urXINzD-9_ZsXGouRO24MY;+ME#}NlkOxYR1)$L_8{5yCF_4x=Kfn-WQCh z#gc&DuSz|4mvi~I?o6s`j-%rq2n$NKWv>%=q^hmB2MDt@bK}nP0S8x+`sd>1v9fwokFz6k7eh)d{0ireh zp#vnl#z9L#drQG%9{@AP7rM=6m&^ibcB``}w2$ZvlA8)>Tr zW`P9yQWAOn+kf|O`-5shPd@qh6K5E%mf!VZ*DM^m2^+6oz14pk(Eqx}42)Oh9G=I+ zr{nomewltsx7tcPYIX`Elx7fEo^f2Ky#}l|>$6P${PI^d8e!^KhU#!djzD&xsAcYY zyR;#TTitPV?~{P{iRrZ_@x{<*!76Do0k##tjdn)o|y+(i+Kvl2H0c>u9XFzgJ z1AGA-=6wg_+Mk|b$`Er+z$>F?HMug-LRmPe*#`R(uFFJ{V5s+L+!o+D^V0&98hP|Q zLlwYP8XkA<-t*m0=)U%}L`2}&s2^GkWPg9cFpq$zQY8xP#v)465Li73|B^yO>E_}< zStzH2*ORLv?DURLa4aqRA8S>P<5uqGgaFv=x(h%+33&Cs*iIRQW%bvNEL9T0Al(}WPLHO3V4 z-p-q@FN_6&NxBQbJ7=y>-HAll6tsE=T*6?~^6Kh5QJ+1?OR&@in4t>|H4!k!Ev%b8 zV96H3q~~jDCq~{@5ELEMaP6FFCjhd-2}JI0Z0?rW-YbZN=+`b?JtKu{kz&~;rkh9) zH@wk&sIe+-!hw{$jCwwo8$RVJ$ z`%D$am}Y+%TX#=~{FY_TzmL#Llf$;m%yRq~Zzmy4hOccZrY+CUFT?pBudHc3>rOKCU+cMgf|tBZ7gA1)ax))fK=l*^x$RV3d=^Z!NuzVB9W*8T#`;ZpyY(>8rv3P^4VSX7t`huF?XOC%JZa z8rFO;!4N>Oz3*%Mi+qOcnt{I#B6oMq)>&-TH2Um1&)7lO-J68Fn|mX0ndkF<4;*qz zRylRWTRj8m$wf;Sz1*wa^0R82F&_f#!P6U$ zoz>rT#eD~1Pd#=!45yh;Vx%wT_FHd#qXX?tLx)`2@Xq+^%dZ4)ak#1L&yh?A2lW6r z1wdv=4g+tbb=LJ_Hi@d66v$@IQ1Ux>jZ z`vffq+o-ptW$Rg}g+O-&9zM{)2-giGMq{>Lg|BAh33lDiSsjrN@;vep?42mf1J^(L z_~S>w{7whW7Ip8fAH2!|w1?CObc6@p!^mmN?MbA!e)!d|ejO8Wp)Mgh){W|S1^TsJ zw}rl6f$t;KGJWTIJ*8TaX(<2szOmj@VPET5f!{S8x=Qv$JHCEBtj*)X_T(*54IS}} z=SCRm3T&>xq%Mk_PN-HHRBQj#+f_XRuD9-a&hxiNCf`MLzbQ=hH!T+N!H5WOy> z7)0iV1AytAGk%pGvY)6O!m6KU{@EFhwz4_~v7n<|DgyP4C9|1zjHflPs|bM(AME7U zC836vxts^5@Z%fVX8yiF!y5#8Ce=!`3@ZWZlCc&E z^@M1PUeCG&ze>KC4cMw1ivhF(XzREp`Mp%GceLmCLkV&rt6{_-DBBf?l=HjlBY|V?-Jq)AMBQ5nh;jZD zE&_X;Soh~orXzJYP8H+Z{_gMZ6SP7J+Xm_7 z3-?cGTNZY`OJJwd;162qMZv~|kgB-CV3yr*??rFuC!c(h{+*e62dKrQ#=`|E)!1qF z0gO83c3UteX=U8nF!@nG0Do(rwbO1xuoIq`2DY(Hl8Wi8)qPr^@v=}Y0BddgyTALp z9?8hSGXS(nNA{4Ew~Xth8Fev3&QE{)X{u-}8R5)j1inwHXB@HUX!8uRpUUg1JOGJB zJ!`A@_WdK+SfC=2S}r`l zwgH#j>EsWqgPQJeuEv>nL-R^dk({-igh?fmBbu|=PC zz!hFK&{qJ>0MYJR&DYZonzt<(;w{+AJ$9Eh^2LnT=tl>AmkzLbjm0qp_1Jd;`D5Ez z5bA3``AyD#QTL?4fC&fp5r{blTzmR|#+)!bf4PwF=q_b!9S>Qp?!&IC+g?R*9jtB- z-H5O152H8LyTD#|&U#a3=DTe(E)Rj3JvWXncj4dNzur~ZgZyI ziQO_%l^|^4r@8xN-pbW7q7EZWxMc^w>n51l*!H^L-AVep4qgBAWx+TD#O9U;fl9b_ z1Na3fMFZX6-dD*oBOG_vQ;U~}oi~MW^Q3{7gEau)79CZLb3~Gf!QVnT-@JaHek?tt z3Wa&s2#*_m(!_+f&U@>vx6_k{2D^^>rgREt+t7#B(%rtqwizPdAib%R+>wz82Db3d zsJ<{WtO*hcFaki^pM{&Y;|D+Zeh(r2@gpPsn~y%qAS>pM=10H(`@Oz@`?r55Uw-wa z9I>!7IAnm&;PD7V^Y0#MM|DI9j9~D4Mi);ZjU_^w@)x;{T2^U~%9BOCpMA7{!PVnK zZ(b=Nu=pxEr{fNNPCHd%Yt)kw##*Mms@Viq`}rof8YL5|T3&CA6Q=T)Q%lEe=X-(k zuC7r%j;3N;RK3Yq-trO9)iiI}#~4Qk6YZeO>e(Dv;#OC5s0*uA@iVN`b#+z|@2FO6 zrBVklgVh4`4|9(ik?)kqQ-YPv+H@;@9R|WxCxR6w=_S97h&kq02_DF)2bxHRl$dPw z$>c?P-5xi56UgrLP-z<mrQ%&^w$a;riD-ci;#~E?UEF%zaBl~9;pf=P zY+a3^W0BoGIlN^U>dkB6-6(!08hzrK*;02s#^5pEhuyUX;LjQ7@q#=#dUPxi<-wqE ze`xe*`m@5?0lkN<1 zy9w!`W+T7kdol4)Yf6l!E=X_fl;e%}4}vw>f53QGkpo#p!@#jM_A64GNL^v`#TOyD z)0i*xprP6UKx~qQNgl?0vgN0x1xpLb1|StIH`1CHk54`^uOD}V{DC@iC)*)4g<{Zee=DP{;pW;MZWWK z1>hI$W?(Siw_?fp9_0FDMW#A%y$1F#&rKj|iP+|gN9BE;+UZp}sz-UK-0FfOFvw|b zE}6iF1>h);qu=d`G|E#B`s6B~ zN`?1DvB(S>V{Q@{MVq-I%jY19NR~H~*OLV!sht)R2XZLiK3b*S_XNZuwXh5KL&I|{ zS>HX{=YX^gta8muw5<(6SJ3AG&a6U`;5k4S+L8+-fo;?Yo*ee@bm2t0r^zUKQC_N9 z2!+B%o>6`e7NHx3cy7gzM(Yq^j#=84d8kJ(jBzbSdJG|*GY71z$gr-u>Os{VV8V?8 zPhrFr*Mn&WaJ+n3OA)9L45B^Y}LydE~)0gNV4#DPE_4++FW zWyb`8^QcB)ljrU}bZ|{AQML?@0hNP1NXYA->P&IqD4!=p)*(Gy*Fimq4Od;T*m9m| z^q;lM!19{_e7S3IcS=tc@O7=hes+V&zGLCo;x4d9#}OS9UE()_sz~aKTV+kq!`x<7 zAMR6wq8+cie3g0k{@u3R(E!8W=fLBCZ@qjgRaKDFcc{6#`p=ebB%!)% zZNct_jlm=L?y52`Uj&;S0Y^yf=5i?#7rw8zO_MD)>}RSrXCgn7@!kX98SV>W)#?K8 zYZ#ByDc(Qfna1jE#B29@1Dm%{Lq;IIUO)Q>UNuxpdO?R&40h>yykM12Wbo%P*d@Uw z&cm-D04Jn4Jn-xR0{{#XF_gP)c3X!SV1!`<04a2|RLkPl{tVQzK6J*SkC#V}BDify z?b|0h9WR%ZdeU!TZ4ccC5Wh>K07-V8w|p#*Z@&Lc`Sq`VEvsV&j`Ovd`L)BCW%HEr zqUZg7?~`r__`UD-hw_)d`jvy}CiRk4xmwUNU%f6b@6mPr>;bYmbTyfyHt2O5mT4zY zca$HWXQ1))J;!}~e9!goX}P)vLy2H!h|LLB<=w8$`gfsby_NIWO*GawN~AQ}U$`&j zi!Z-?^1i9$A-^SXT%-LV4+fulaBaRvZw$FEPUv*;R^CSf##O=_$JjS|1C(Fagu!rK zuh}@vh7<%!tgN}M3DUZPMH(T|GqnZ4-r(s0zL(5UFU>K7TnH_8B5Ej6+_-y%^X2FpQ`8wVmU*1v6$M|4dFbYalGfgX!@ z0s9&T3s+n6djio8Vq$&FryTW-M$X1-=nHu9h#rb)b%nltyBr2y74kY=n>CtA0faRQ zg<)XUOKBFx+S{*bsQ!?k0=?f-#fj0_OT{7c)be@U_S*4<>W$se4GFg~ym|`tO_Cji zpdwm=jQ5iRLAaTN-Yy##0>88n>S~^5?+U*SlpfOy)EZiVt;-mdxCK6f7Yhkcim`?8 zRw||FNB0#i@f|^LfLA2uUK+@@@_}s;oZXw*xdi8UO&F-}AT)ed0~GdXiOJq>!BG2L zK*;V6${Rw7N4W67a(3J!uWs=7qNnff;4T*@9pSC4mHt1gV6cj8*~xkP-DkFYF!R_U zl7gJOQI;(GE__PcJxTGk2?cLpr(W^#}TobXz*-{ZI z44-}WSr!0x7~qjZ9vZ6W=r4Bxq~mex_nS0;$#4FjPb6)@FC$(u3BIG#U7~J}K>qFA zcCdWeYX?AVOZH$N+5{#7lb;P3%Q-mwHy7jHL3T(V=ogO^_(cvD`iEcScyaLOxCmAn zyzH5k<`;#jV)V$3kM%Uq86ST8+x?|tZtH&ei(ew6Ax~Bl!EwZbuMV!G>0NJA5E#Cd z+n1MHJIeU54r}HYd0$^&f%7Ky0-W>zT@PlVv8csLeAOPl>vt(>c@R3pV!pn8q+f=` zRfJ&_r5Zmyy4Q>09PZJBJY(LbdQ8c$@|!QJUW4(WoawmAd#Wtg zgCDi|Z^$2v6+iz8CTg58+iGl@h>Uwy1x`pUf`Cmn82QrNC|7By4Lw(_LT6*LwM9p_ zCKK4Of82vaU)j@wxzWtx$6TYQE z+W2@BAi>(}pfSdH+r~AaIqL`SA$D@xbetPOc47X#=x$vR;jX1nvWI?m2RAV+lT39Ey2o=`^AZ7CY|G>nS2Jf)GTXJ5Y07TPxr$qcm=$I~+mY z!Y?%o3>n`d=5aULybEt%E&Om_#=lfgiTUM>xwHPjJQBFhohsZ9+6r(V2SK5S-o`Wb zcox;H0F$JG&o@jveW%Gdx-CP4~0RW`LPZ*8LkwKd3JL5A<|2F z5J8&Pk60K24ub9Y+zwAB_7526*4*OI)fOVShYbk%ECx^nn+ssglsedIu)FSS+0`++ zo4Lzn=nxx4=qc}E)Mo<%KhX%f0x)Z7?LHd-T*KA^R7JL7!dGOX`;fj-UU!{x+9*Px zBx7!e)jth9NN7Nw*dll<9Ayt%Cy&PmkIXDH&deI|Z$6d`s@8d{&#!;|n=a^ByFdNy zZ{?T2{H6TnH@}e;5a;j9ysL=Cx$CnwhWGK(Ji7U+4pe`jho|bM^xvHC(K%L6DKNqR z9=HG2QEcA8+hti#-96p$tP-!&>zEbrkk0pA-=A#YBIT_b*gbE;iT-?FyOGze-zw`a z;~E1z>U@vNvX1K6%%>E%#$v6L z`V#<`6rmtGKCfJ9Uu?8+qcmc8C2*Es1Z#^q2+*MfNb%XPpH$v`_q}dy4;NZP8>GN{ zhP|fim^)Qq$R^K5&Bx5b(Go7q9 z_Y*VaK?uR#1^{5AmjiZOq2G)4HS|l2SFUl$E8264bvnAg)Oz+hce?WcC7nz=``Vsr zLm_~jHaFyVAHOYBMs%>RO25vuo+>_j zx|WMm|3tle{W^o`0Jr9%q`~AK;MiGVSLxU(Vk83Uz~cs7#|Z#g3!AR3bZ;T>fz3@| z7@f{+sfLhrAF8jVC%=U{O$Zfj&oaPNV-92fbWa`OnlYaptsMfWj^ubLR4iiNMIXU$ zHgv-~o{GA)eIJAt5TxD~N#_tn-ri+d{9G0G^txa!m7en{`?h;Exts+qlhckZg+#m+ zYF_&~i>QVR#@PU%=?BAaGNRmYXl+)nfD{1#cpj0@r4}&GuPqwO?h=IgdWOVe_Zmod zDW{^jK=0X^uKQjlf}Zp++yP4A^Utoq0|z9P`wXrksgFG9B}a#MsimuNl+S6nI)Og7 z>(ty0sv7Jg8UWw66`=#eVY&ejnMvkj#jqZ+qBCp!$)}&lFCH1@U;paY^7&_ z?v-_(tNfJeag~lTzg5QEMv?2jn19bLx_-v+r`LD3Vq`TYi!!PdDK;-EHhVDWd2eHx z7z?m93BbT=;Sq1+B*lFac{aJKaz7Bgivcr>1TYxS{%QpbIeoHBGUXLFsxXMJKI$MW z0#hU+<_a>qi&Nsj$=TCS(pA$BaDTUwehG_RB2+ zUomY2;G^%b-U5hM*kVM(^Stk0+z+hlDcqPzqa72CE%1o2=4`GrgJ8#fo?zV#PXz(Y zch>ceHnW?#7CQntM|NI=3J`)h#JZcegs@ORb05?~5v0WXJLX#qBQTFdzbKUt1IO|- z)*@a485XuOBn4n~?<*}?X$NE#A+HJC`D>-BilELU!){+)A_az-D%s6 z`|rL7B6(MS_3K{=A9xAs#OTZb^azN~2ZPZ$-PJt{1hLBZst&Cd7n9h`HQv0S-a3Xd z2#pL(%t1fg?3*J*R7FTZkYf=1bluy*HIW5ok%B?Xi~oW{*JxMeYPQItDh_C5S(V{b zq%jcl+s}S`l|0GIqx)}M)2Ukct}=Dst>4cm=Q+nbO2;ETCP4eI#-Ebi&f%C@`t=_%bX=_dR z`2?G6KaFvA(j`2pH1zTYK8DoLtKSEU!VuuB+}Kx1C6H9McWdRKvSM?R;>+7NK*e0FlTSMz!0?b%i~O;>Foa ziC`-i2dmI0Mw@CUyCv%iH)}ZHJp^sVyuf{?^L&XA+^iW;!B`}BFxZ_i#vZ#fV3>XW z1o0WFS-j)!^Q1h(upW8$+!E?GHYQNPFhC3fGt1Z!r^8uo%mJt`>E@-jedj5Eq~j~?Y$+Cc1ytRF$~TRQmkgD?Qs zdQj^CvtF)Ce6Y+A5-#n~2h7HpI*Sdk1NiVn5{8Ljqvsb-tdBnaXka4wUXklM4*B^CAu}UA*R4-vTG+B)ZCr$p4o^S+K01#2 zd<}2-J_b*1fx6nk_vaqbS@>S-u7B1Px_v9vK&Pp&1hp#N;k%9V2sJ7nxz7G7FNShD z-8-La?YJCS+_Nh8Ru8Y*dsL22f5SQIzcyvEs>dkE#;1a#nd@JRu@Jyf0y6p&sijSuDB$`~7M#XAK}q@SWam8uy>J1fY%EtOT>O-O)efNdkSl z&4Pw#0wrdbQQu9=$nr#PS`kj1y%IpM!4N}5LD1)?Ftn3mGZmqyRS1Bi#ttg*hKEbK zom{t~&aUF&`P%MpS6>h}?(3cv$bT@f1Mc4k23Je1AjSs$1-*0tKp6aiC_5);s%HVm zLy%i=GX_wL=!S5GTNuW5n@?K-_73(>cj0flgoi$^r%lF4mVu4V?yUqn6L4>9d3RFs z9J>bbU@L@|<_s^uJ8%pKIWYsg?u%GAQnx6bbO_4kzO4}+gHAbsFfa}x2c{t<2|xCq z6Pd239aBAlti)JbecuZEwN5DF1>ayS+49|EY&6QY_!HwUO4YZoOAqHXp2Yjh=E95c z>Qn+ z#d((wUgURk6Zi4QpJb!&?naj%P#!mbHbD4rH)n_GJDtDyGT7U5SG~Z5hk>2l$G)Dy zLc^V$-G@kk0Ihg{`hyZarTv9dZtF~O+y)oMf0oymUzU$(1L~}Mjq*p=E7}JdQqq^< z+ZwF;d@%T3eV^0TVyB1q&-d~@bDC9tGw5Cd%n7kr-x`zNCAWC!1|%^fh#Bz76X)e1 zjmR41tm=D||5N!L)oq28hJ?q}Sf!e)A@aPY-AXYqp{tTP!HvrFmsYr?Dxg$pk-SZH zU$uqP_V25ND$B;MdUn;*PYox^B_eNZmp*SQ-n_13+Y@5Vp0jc(8s`I~ zW=;W$*xg!zRtFig;MfQZpt}(*Fj?kSaNf@ch%*o=;eKvt?_+xNhYUSYfLtk1-TfsC zg_TYq=Hs!q0_F~uTIwz**mKn6?IuPX3?zsPy!!z*_q|x74v3m$9&qE<>qM@vlt3#$ z3^P|?B4sc4bc+56S92ZgWIpKqn&!#81*2)#97sDbNj9vyx`QVG;O@$-U+@L}5_+@U zN3clddqKao7H+rp1jZn!`ZU|%x3~JkS?x>qV^_tf%E)<_B#mqhh4Mt{y=n%Gur@th z&gmJWmtptCHve`a4LO4Bfw5lg zkk@mI-E8a2uB&U~i*fP3h6Otb2DXH&O+@9XaJ z*P|G}hPMll;Zt6#5w2ny(f)LwY`B5^O=9b#@V-aBmz zKhE&U3}9(Dxdr4Yjo=KJaxj#SKKi&vv9t8>W>GA&4jwAle=>kMylDU!Lsf%+!-EAt zD@(Xw$q^EsY8P*YbnGS%^uGant2Z7#fL;g@`9h6J3gFK#YMU_7rM7yYekPUP z0=<09V0K(^kHPMc=df@;4b1slF~-+GT@Daj8jXd-*$yGcqOPm+xmZ1Yj6y)8rjLDr zbMx^W)|yk#(5kI2Uec8r`2^eIq$1{=d|mpjSY}Rn-}@=XFYc~7xTG|PjQxM??B3!w}>mXgIZ5g zDi{Tl$M;4KF)@{>nfGnf1Pq|G^#5x?*!p%qKoiPMV4=w-daw|Q?P0st2BF3oTKCb< z40uiZHuNonX1tgCHuSz{Phug=`!G?Orn*7*DxsRdG7Y=H`mt9G2rOI&T-!?pMaej- z1xpI>=4_rfY?EM{wRR*uI%5uT|C{|jOV`^hJzUi3OspdSx&v_^>kbgQXM<1==sK%g zj@5~Ru3%j}Wmw{HN!VJx|H0gKK&g_^;h;_cwhpcbVH9|m##&@sqzI8MLjaR4Rb4`L zLBkV6bP$Xa&rm-Ip#nQL1{`ya#0bGw3Pc;gHt#&M(*br9Xa1?Xz(ee^3q2YH;zRaj z$2;Nv3<4QksTnicePuVFJCE?t=e}qHTDZ2e<1W0gV9c=#e||V8yPLt>_PWnqt9ie` zxc_0_2LNsQzZP%>ecYMihds0nUJRrs@SF(+Myx`hgw{cCQ}pwm;JH+GAtV6XSxV%O z{&y^@DU`U1#VNg}8JPa;v(JP1KLwkg%3DeD8lefs-n17y)`#TU>E)DhDGUm&pNjyk zAUTsyF&R3>DtSlh4|W)k2HOl4*TXx1nUgYo_bI|d?m02>0!3%?wgM#J3OT96J zt6vx;!hjKZeHF%fpy&a(E$usxKp!d?)*k!2kQ4>49Sq7@^#p1x-5+#V<=S^E6Abl3 zmwxX1#5XDE5csw=C|-QU_fj_PTm6B9@%y^{j4kLm>h6aicZ>-JDx2m>8{#!?`T-_DX3 zz|6N#l)1&i3BA#D^%dz#wITXCR=)zz1u!#>XaQP)W3Y=+S8T&3gPnP|dZz{>o;tg2 z;RjmXFw5_088~BbfhwgElE!wl8*m|@1fUP2DmI9M;avjvCh3`j)hDoKTYbRdUiM4+ z$MrGV)5xu>6~sKq=Pc$Aj}u5NX7Cj=k(hrls^~v}BLFtA>}hx(a~gW>?)L3&h`WI8 z|2}^x)&f4=!$piOxfFAEYCb0nZ1pvJuU%@6DFO8y%)zcEL66f&s)0GxuI84(JPaQ^ zf=*YrxJ$GK0PYc5sb9A-a2s%v$Qb<+eE|W6?XX&aJ_CSobbvbVk^VK*HXsBxe{N23 z53~5zKgOiH5otMdu=?}>BcWmffDF*w!KyfGzlYv(y)!gaLNw>Y-CcRs=zSM@;qVv( z?E^T2sOL2V-|$oZqBGa00Nn0P!|G%CeD&3r(H~ml+e%;j4k5Z9$ID%@Y6u&5HKz6t zi~}DYUMJN(Tk0}^6oG!t!xg~I7j4^zEf+iNet4efhJHkWGi!hYUN_Kz0LFvMovna9 z9z3_E90wR}uybJ6U6R}+BLqb|FmX}#`~td?Qls4#z0U*)3mSomZ7L|1?-yTwA@h-2 zr15>lG~*hl;d7Me_HUWNr%WLA8dF_mQLFKCaeodFeb#+cPQR|zH!~}}0@U?;{p+cE zu9;|tIwKI0B^q4a`@0mV=w=yK=#D zT+h7q;1Otxx;;_!aHHx$`nhgxopyQeGwP7p=U|~eI;6>SO$MNy=|a-TJhc`GKw5z1 zy1!MqDg!ue)T7Mcp;BNua~&93S0G8+*q;79qlrki*|uISfWqhDO{rhnw(KEhdzooQ zscg8E;8!)nVx#^I|Fvt-44`3$v!vUgr;GzY=5#uxZ)Q7pCKs*w&O$j@XS9foQ}mAp zD+}hbk&wb=ruPVuT;mF`lHj85ix_huRU)EZ7$(dE-l=Qx@B-MM!k}#KAsTZg;L_UeCJ#ynFa;h5=m*0k4yl5GVsnokBx^<8MH3I(KcNpSIKJ zdm7K9V<`adHjL*UyFd_f@&18+GBBJ+1$-EABrq%sH?VcX9Du-aM?x9?phN!Z)m!4B z!=Vd*KLh7CSK!qgZJg5k3Y^A(#*m#Xg)etfEwpBzgr+>k;e$g$9gU6qR06j*6AS4d~UeD=%XQT zx?X@fZj@TQ=X1|J*5gp%fq~f?4s!}weE(gJ37)D9P19A{0ep?Ot#Tf|FXoai(jVR5 z`{s%HxXNpq2FJG_fz~IVf$Q&Cjy_TTbj|1K)ldxg4s&F9{yFUkJVmA%r2JI!TnA8$ zdjfa?FkY7wPdQBnfb0U(*GJkg;8}waS+q_=B2$`nN`fvmG*uVa)mCNY9s1#iA9jx# z=h%VdH`X={Iu=g`?HZk-Xp?F#{_cNRMgc(4S0ywnf}ccxrK$^+E6HXSSO8NBu)5D6 zFw{co-GvU*8bbl|xRDNe2|+>pM*8b|F=z$|fL^iC+FDHe7F9rc$uts>F^vnw+wBID zUiZQbEyGW5!Cdd;Y7fjH&lyuSF;7`tMWVGN(;!PFOW$Nr8?oQem386Zlwc8UY5_v` zPz!Nj-YR^z6qdLPCfONr*E#NNqhhD|KHCUg?=AffyZQe8OT!mj}0KA6xR+C}p z{e-|KTX~GIMDV%+gEz-Lo<}#{J8dbH;d!=tw-_S^v|DV zy^t!1Mn6HtR%!0-!aE&8b6$CF#dEcH#}6;No;JqG)lgoIsv1D#&^5}*cRD4*3Zpzs z+Rs0CKgtGLjmih`wcnN&svj`qgRf`+>d}{=k`!@Dz2j2hD7_v#;5yEF06NZZQMhe8 z-g@gB9^pteCvd(*#QiwK-JBh!tJ9V7qfY2-=ymgfK7y)<54PqYdp+DZ@|*8{vtD+K z|M>hcCZc(5IGPBvCXqPrS%KLj;EfkJHhOiDW(9_C<%@dV0?&NkHIv?ixvQ~k9j;eC z<2^@Z{ccCWp!y~w!ck7k7w7N4OWE8;;imFg`lVOb+x2b3y#tujsY#3U_;J`uJ-%_( zLwv2bxJ`9yWBum5=1)2JJy!>PqI3BIAoKiu^4!!`r3?T%c?K7_TZ~6T9mjWtzxZo` z+Xm1q)oIjujT;<`8$aPq4mw53a|669z=au#NQSqU9SasL-&-SBW0KqR>S)F9Qt1rZ zTW`IR&p!WLh8~Z+lc8+myCnglOaN0P0Z(=dJsJ!SqL^MR{JPE{wYs%YH@0NMQuxsF zL)*tMjQ0{C=R3QM+may^*RgCnsUfs-xwcJyMwphN(c%xwpmDDRgKLPlq0! z`cf(@#LvCMd=__Ah0tk6eLQlW&shV&hHv^P2J7C* z#ZX1)#%r6VXN?#4Wk8uBp*4bnsHWlLYje?S25M(Fa_d4wg6_Kjh|X3c00{_4(HdiR z6Abr^rTP>reY<93txZ-B-O4dTi@DO(K2C062}T=H46Qxx0Bk^$zv;v0{+rN0mZ+z{ zCw!dT72xi+Ur~0~76?2EA{Fz*1&2L%bu81a`r1YpglI#b8@mHx5W4Kj&yqOCZHWi_ z*iSYAz%^jiQ$UY)42-k6DghmD1B`$n0I|lVLYJ8>AMF4@M*MGy0Yp00(h-K5gq^!5 zV?R7V9$m0pg*-gw?eWc9>1svCBA?W)xm3tVR_(wa9!?Ar050ox7vt@!Al2zQl#BeK z&+Pg$U!`XcEQqE<{rkWFL;2*BPgD7P1wdEdSBHuYECb)e5bJgxSQoYO%q#x+oP6qD z9rD6UoYhZoUI^eL-JG9HwaEov$8$rO@i(mZRKtI*gZo7pWl^pEb&na+U0+(3sOz+= zpHBj0xm~rV@3-$;t^;6H0;HU-QT`$heVkzR1qTlsm`4Zhn&6O-q`<3#rKl)wQnFjJx?Ycl zNOOYsgQj$1i~Ns&{G)Dg&hPoEtLFt{H~?4xQUKO`GpOb^KY9>-Q-rc6kZI%Xg6(9m zbRH2c>a=YGnD;!lioyoKmwC4#-|WAr5ZE%InxZ}qq_F_wF5kylWYXb-`5fZU{Os05Boh1w@rKWoco#_{8Oly$? z2jF}@zsc<(s{>e8`-8qQd^8ujFU55O)&{UKkfy*5-4O=R@Z50@H+M5d?#6ldsoHS~ z*4dfx^0x?m8suvSItVHrY+=gM3G1;~=U834FT{OxQ_`id*dk!#1No|G!z3)Qyim{g&vmlO3|NBG%PaHE_j4`_M)HI@gL$(%-F`ty=n2n&r7C*V>KjXZc9w`DJn5?JC_kpScdb46XCG%HU@p0Wz`50GJG} z@irLpR(i&jYSik!K_x)iqyyY4NC(hg!bIYLHa_c6#Q;E7 zYNamvGSU{&5n{Ch6h<1YFvOXb&f(x_Z0H*-^g=9^5XG9iqpgBwZ3Il}T|q2)yhk?z z<$EgwN+CfafppKWQ5|Y+v!jTx5tt8YY;6nQ%bnQ{mN0?(zDJvR?Q2ph0^Wiao)4t8 z)Jg9^Qi2WLbm(6;mTY8a#P0kuggH-g0AwkD)&nzbK<)mHgf>67li?~05Zq@;#tC*1 zNMAm&QK;iYSno8(3>SQ*{t!>y<{n;vFYLkv28;$ut^dg;%=^96d=T?O1oK)3V2Eol ztYb$9DJ1OBn=il4iCbE^XtS2MJGM)v+aY`fh`0IhGDuYz<6Q^~b=KGfgdip@&xgQe zmk4YJf8~ae*bzfKK11X_v?m3t)&$WO-BE+2K!$6no88J77X9OFw6o5(y9JklR?)69 z6VE%IGuZlJ&RYPK0XQ3t4ucGUL;zGaz_UgfvuYu5BnW{`|xsuL}zW9>3<9amjM-x zeczL52H0MKb33{}>&Jfi!S}x}pZ@k!-)4%pJ~OjE{3AfD#k5_WJ35|wU9XmQhN5_} z*9+;1Y-MJZ=dzwJFf_ScPTiw)W(|1xj`283Kc9m-%VE#$>)z)!xn|n+`Tlv(eY*H$jCWL4YqFF-mPbomF!r@x=PL(g z&vP{eQ`KQ?R(;G*M+vk66r>pDYva2Dbjl5gLBczB{;aZE0zKxmlW_z~*1s3~$h8!% zSAx~59~x)s89)5t4?D~D=_9eg^#=F`IP~%JPHS|o#*1`*N!WmUsg~~v&3>t{!3AJp zpaq@S1lahOAFmcV&8ms<2EioixRFjSZwb#2XEDM$q_+dQyd7A^+F9!@kD!CTG=?M) zkh;NDO5`d}aqb%r6lYn)fm?)#@Pfba%P}+xZMO^1&UwaYr6alF^4iwgF$b?rcMY0k+fM z^d+mfg+OxIFH!=nhbPyqoEBJWk0%kva3}2Q)cBx3k{oQ~x`v(gR+6i`?t^+z%x7k* zx3opr3cR+e`z6$Qv9s>suUq=4PVt$(D}=9$>vZ=3C9OP=u|NRd*}Ti*c}PAtEdW2% zJHX%z=6>Kau-oW2BT3-~&%J*@Care>d~0{roBJ2>>;V5xjPvF4kgRe}v}iCZvO|Rf zpxOQVc?I5i=iTro@pb~yKJlWHAz5&TfLcdH!m^Cq1)&$&${BgO%7-Q}MxJxf5~zmQ z(F2@B8e9j+$0X#)h^(Sv{;I(oxGwW09d;wg3SJoS`v}I}4%6GSiS)xC{$77DU=f$bpkXEk~P{Mq8k>5dmSD^a1e!5IJ!}?mPS@>vk6_*%G^Vxusst5aCIT2^anxr8O#C#lY5hc-o&yn)5-aN&s6oK} zcser;T@!ky=K14W`2M8}h^9&pL^SB8juIeXym zIr=flrZ$$@`;Lr2HTr{9TA+h#*Gq+>yfPpi0;#|$faM0J6krN@F=5qrxFdK7dx%H_ z|I1EBhLTvPLNLd?*DyGP00IClEkT%M+codE+PfOSK8zC}TD7qadft|e5t*i9;r^gq z_(QO^(`h3i0e>yLVVr87wGsqQVLJx)nFT6LWT?HsK#<21yF)V*i*~b7U;2>_bqmb5 zQh_M-TsvOAc#*!UOJJ0o2jwF06yeF8M78g33wOyK008*@yo72PJtkRi7c^LQK9 zN5Fp&KzyWH^zq(}1BU=8?v3JQHVP76>4x}W;1eCtf$AGX8NBZiT--g$-T}49sAuvG zb3Pq_8q_~;B|-hd4GSOgAfW^I8nYJi;@OT$MMMJ!k)%+49uWf($_tF2`}cAaZkRI~c(^k}d#1 z4(c!$J}(fcBUsR}+$yKkDHw7iX&d?;i&<;ewVHR_`ng!V5%|L2(Wf49)_kpg^|+S& z>X*ODcj!)asYVoQ?)WUkj06q^Zn(1mdYwUrK4%*`Cv}f|JvH@s5rGf)voW8YKa+YO zKTt~b%|46%aLkjwghNp{}uM1bU4G za&}oWz=i_M?-3B?;t}EYsM8i5lw0}%b`VNg1I%7v^ccTOui2y70pux+O$DIUz{{3u z41?gN?%NqGc+)n3F0>y&xz~9w00&`70xV+(8S@uRto3`p7P`3xtj-Yu(fZ7p^HSji zkVjsK<_A}70CaA+cB(nuBy@yDFeN)Nd4gAvjl6pKuKz=OkUb49eV63Y&R(x@yZ7)& zhTiF2?iBTQp|9IGXENAMYiZb+ng`gG2@r0jy76M`ew?>0j6C~TNU+A2#7M9)yE|1d z7q~aHbFazy0?PE@cn^c2B7m{us#EV5#Lxg(cc1c5Kk-oI_6d(}J?wasK}*1dB7`#k z>JgubhEZk<F?$%zn53T1 zIhEldeO)WW*D~jAdC0zl2!19)40DUN?2O;56}aksQ?EF za;JI)V%4dJxiCIHJGT4w=A(~NuQKSq)EDLUZTy~VW$@JYePpP(Q2~tlq78%Wxa8ge z{GHSzshza^2zM~I=R3>$atw09@1LP;J_0!6y#m59RT|J)&C~AflD?UXo!+N$_M7e= zw~j5GvQU33>ekBMW}ZgSFJ?7~RAnTc;Lga!bzidzRCcgpW2qr81aRx2h}&hFm=3t) z;?WI#S~yUIQ5rzp9$qV?y9*3Y6+IGQ8PhY+>FSmC&bRe`FA`58+H*0Ywys1ll19dG zoAnP^(D0bCl>>w9gC?ol+Sl$7K6Vlo0SxgVXc(^bpL@Lsta|5&n0!gW%)z-6faT^6 z(G`=&s22H*1^^;-mypQ5bFcjxfzL@ zyC<81=OxNK+4-z;^X zna%&=i!VDM|IJ4qhfa=1xJgC)=x+dGSe!x~1)fgW2$LmexB1)#VHDuKZ?0DC#=lcP@-T z62yUedb-z-pRb1KmaMwt<6YiWu%nTYlv)`y@b;6H`O9DZI(Hs0hJXA=|4x4Pv!8b< z8^;V7a1O@`b20eoDnKIPg6nxW?bc!a@}2K|N4|K>&*s+G!L?7F$8p5~;ruEu0#b|% zZ((4O1Ds229_PKvhsR_2Tb_rjkMg}GGsslet9%aXa)kX?{d%+BnZ4$Z7C_F=Dpj)< z_rlzo84bo-k$$6{L4LR8yRH#Br!p95w)j09QBKcy-v|H0LmmMtc|M_>fqjiSCb(CC zp*`zX?4k=8U>FnpH%Wa{uw+zSALrNtPqvfB*YAw;2)q$(>+hdXLugUAtdo*JB`|Jl z9lYT^&mcJGQ;Udw)3`yjO5Nh9o42ie;d;AUFz-Eur{7BDz|~)Bcc6p37!5>Ew4Y}f zgGF8Kyz5n8I@^4|-KPK~0i+wkY+u~Rb0>_{-@;_ltdMcw)0LW#NVbDZSD zTEF-1KI(v-3+wl-j|B|X?7;4N?Q+-d3P3xApN@I%9)aZ}JNyvA>$-8>oJ{ zuQKplsd027?}d*=&o7>}j#J{hV~}$ISJz|4GwFC|>&!CN`-}vwWq@jHzGILru^65y zi!*W;URt0_ZYmy_i`W$~JcoMQJ^S9mF77-yY;c@&5s!9m^>=XG%hR&0aNT>KPpQUi z|3Jst5V{p?+h|s}9Z zGdM+=^)gdpl}`hJe0X>m^rVFb+vVEqK4;!5g{IcWJ> zI@A$hIl*+)5$#8PtV|o#uFuu&a9wCNgR*6}hPMyL|$4RH4q__Ob3U}9nA zEk6K!JxF_%|G}|JvjT-j>10axyObB1jcN3__E(_nAnmH|H~ajc|L1!c;4dnd_sr$q z8V`N)w+xEbty+38d}m4QZpEUtfowB~JaZx(ws zRKgYr0Mu_r1?#gFuvY5N3d9mVf{A!R-+`6%?f4RUa-K--I>PNA^l2gJpzTm!uKI4d zJD|Fy3WHt47?f@@%{v|YI0ZH(!@rd6U>8-!Z4itwXL&wD?Evcm#-UhW&7Ebi!Omue zK%wO~7*(_H@b;y6P6A}*S`(eqjpo`Okt9#Uy4QGqqWUUS#{g{6xb7>um7yVsL|&6w zMb*lE8BvTI3B7Eub_z8K%y-=H#-Nu3;Cq039F~{6XVVfSL}VrvX2Pv@kFfJ_j(&>W zWpND2^Be2FrH7%Or9&IpM>vF${c;%yO6ym=A8by&{q{TF-&@T`5N}q-C4hO8^2TA9 z&hg)iF#w9Odv>$2yLi}aVC>JpiZgv*C8z*sWA+km=p4+P2c`KOWP2cjA%w(Y=NMR{ z<9hhj&`-v_h$P5vS0JH4B?I6I6U4gUGIb_X@i@%u2HMuWXT(f~UKH9=>L_n|9RbvT z^PAuFLAClBpaz2rplkIs&{mNRB|$itPOc}~*nww&HwJ{LE9(Wldfe(j+ilR_gdc2- z7kqI;!1(0TPX})%C9OTAgk|Fnw*M|71fk#T6AUmIZm2m}+4hIDP-{WEq1^A0hwl5I z)fEc*cAfn?qCWuE0o+R}^|{EZKoE8;9l*UYv6dD)AvR~zd(6eHb1{dQVc&FQ8ka!P z8&_*2pI;n}KXu%lpfzIz9*g_003d^t)`q-R<#U;K_iXIj7EAOoR_U1v8024>`&k54y{J8i@Ibr%L~eJfeX zulDAKWVJ@Q(L5XNImoTuR%^=+HH8?j3;D&yksvz&831VcB6gtNS=817bk~k)7Z`Mt z3K6}h*Nh%TShrGhh_si`H5MMXU`upQ@?Z_%s3)57_oq6F^&kUc2LDXY<^G3_$!3`zsEyPGx{A{^tn&F3({=UsTFz&h@% z?28n9A0|&>rp}P6wX_N#IlYX=X5f=}mP{~v zlNi9`ar8Ae$VV4IScvrbgXoa15_FE&fPe1*IqD6e2>tI`38${=YxTrB-}CBv^q1`G zP7=nLd)r`CslCqjtQl^59lFk{?6qS{L)0GV=5gHzMt~5|uh~DvIG1j4N}|EeS*Mt) z16WyO$zB9FVb&0;19o7GoqZ@n;)2g-o(KSpc7Qnqs6w5XEj4{=2Ft9B&XO@e8GJkA z0dix=R|&Ad9>c(|OQ8{Nn*UM>?3$}1%9Wr_AIp+tC%#)`&QrQ zGVIeB=WiI}Y(h)l#uP?ZSLtO@r@5}kV+Gik_a`vAE^Aee%5l3^^_k1Lx<=*Synj*d ztv*@hD~tSA^FgQno9nHMbPPH(9Sbe0R3)ULes5G3%z~c64*}HZ(HfHf*i;;Xw}^p`8Mb}dlzYZ z)_Yi@U+=JEMZy6y)76if!a|naTE5>pplSsu$FU887Y29I!k_Ryuy~cWjP-1*9PdK( z`w2U`1cEyFzbm#H2A%GX&_@SeMatN(o@%)6@^{Zk+<5DpQ3rb;gxZMZjgZU<^b_nl zYt3VNin=m}=xe~K!bMv-P+#fwKAqBA#s;vcr9W@?LeICa18==5pthZcF>4_Vj6pl@ z5&-w-W-E8PnAhkKgqt?+7+C)hg%LaDsYAZkytVoIDpVFhNS?MWZI%$!h6M%0q;O$? z^qC)jzk2zq>%}J{PHQIb^gBM#e6Ij2z3497B>#L3_3>a<`GM9O7P>Y1Vvk*O2hb;} zP}j9fvF}7|<}N_>vG<1y6|PG8y3Z*SYzn90_2X>^@d~>!ym8S!>_%HX92+>X36X2z!*-xd(~I@3 z{Wk$f)*PI%)1=L=xd%Up{0ZZ^t%fk=WH|dq5!@z7tj~j4KU-tkI1M=7a*4pm0IZe z93S_js-XvY%%3Z8hB{dL-VRlb2hzo!)5#NMU4hBARzK0z{WD1XI^`UsU-mEc|8(K% z{;PZrK=7)p8N~7Zt1+0zYIW_XtfAb6P=K`w+Td*!wv-MXL)uu^l}M6rlh{%z!e7BATG@C42&hFLl+Qs_yi84Xz_L1jmgQHq?7u**&+Z8)~6&ok(o8G1l#?RCrI;?-KxuHLHWUy|ZA{4hV;-w#5^Nv|{j3twOtg?wP+0};o z3}p`C7KVwAG0yo;0@lME+(=08jCKqX=DPP)2(E+)tz%6G9PL1moozeCxW1Ty^J{tk z{r5Y-tPXSa0x*QIVl=>r3L0o~ecmnA5y0@86abxIZ0WOF0JhmN_+OFN4S<(3se4#C z0LAE}uHYS#3?|F#h)4(q8bBQ{3#$_(UptJEEh(^F>DV|xf8}m_w$i)Cc0K^-%pe0e zB0QxHASQ=POJ8Px&EVPEX|wgqFiz`R88P9wZZLY}m!SbqYZJh{)e}MtfG11vV4yJ; zK7Nq$^a@16m$wNz0GjqtLmh`7T;3@_+W=xQ2XLQH}Ks?>!cVe7;oh2C%>Y z7GPMxR&N1n(4%f`zzP_jv|SV5ZNb{# z@xfi~mRH2&E&DHpjLy(|U)W)5CfjHMH&yye0#|3jU#7~Z3qLMAVJ&6`+~=+IF>q{n zj`>h(pCJ42x=BO7%?UjwaGj9#d3y>~4-eiFnB%U36#*ZC8NZ4g_~n;hB)~LP0B2|` z-Z~rJRft5NAXZ66{|I$$=h*lS;EmNNaB##w2DuIdztPixX$8o^3xt6#COih7)jMj- zfA4xs_M)-vcd)+mgAc&~pw2<(d6+!;fbHc>9c5Y|7@JV=NexL6-Yl3shCl!iiA4i_ z%6dO|aF7n_DDDXSlsZBErA97Q45ayZNHX3i-&te72c9IlHR{>fX6qx=k=^lKLMNEp zjX6@1<(3bX^~q}rwT^LtuvID?t}nmQ0>v){uO66jd5(O00&UhGl!`37*l1;X%&MfeV?8nH8!>F^Te zdt?H@Ghm%S&{a#@+L-YQR5MVU@>_vl(X|@Gs$O%yv_+n>8jA_|%9PLC7kVS@Eg@oA zpBw4t8@No33>hT$E|mZZGJ@vJgTQl}ggpSi1cy2Tp90{OS0gYxloRY+levywaRzpn z3rcku`aw%o!Sf;Yhixg=)Vn(T{ZfB)fK2Qj1RCgE3-uuckL(+{UVH4|-8LLB_DfZqO^3GRII9kTGTX6D z>Lr+Tt->2u1VOLg9>CbZa@S|w{oTuRH|JeGV?J)l+HR$8ldjg#kLu)xtxcB4DF75e zaM#H_m7yHo;hcsK)By&eR&U2UY{&?MILWm^I>xvk#vD`GpOav)qyKX#b%2~K=_%DoUF9JH!EG9Aq1OrRh2{XOOkPqCxMjP+TDw1Ha$gs|1RX1! zQxyVzkb&r=a0=8WfT1u?9h130WRPH$JN>6ot|7@;Q*m%P4i-(_C>4B(k|T;%fy zzOzM&eeYNmL3qNr5kA3B-LC4sNVc|Ta2+QE7pfWnBL-|>b0AN$?z%^KkLWP1s zG6ss(0??TrXvK}cz(51kVz2>TUWM-QH^2E!mmWmIZ*?g{gTWjIg|{XEv>*VOQJqH_e28rp$;oC1JVfAL?jtNv zxn)4cc+m5)iG=cIaLw-7nB}*_+jrmfmC?=u<0b8)Z?~=7LLuBHbelc@yFpS!pR?x* z2t066h@A`Q5ka+wRZ;+A?Jy=9`t$sv^Rn);j>du;+s^Y50)}1Vhm3bOutUKfOK^a- z{`R-O?TjubVa)q`O1Yh^E+KKD$skZfC~&a3 zcB#A1BGrm)gNBj%%y!c!-oJZifXm|n0$}t&9KlQr^?3>uF_0aAY}@r1gkc$UkNbK- zLKGNUfEoiM=Ef`mr4$>BfKiXao1O_oQY64AoK?sCN*sn5lg*R&+M~l2|~*L$Mo{ zF*mm&@%ydcnaQvIC_p_=e0v~VNU7ZkJD^_;P(2DNmz)a#*E|LoYp5^i zw79c$&Vovxx2ID?w{(4SxT9MF&*^gs{#w#{1)S{xCmm-!M3;J!T2>{0#>XUiuLSW$QS3sK+Onss9JTN`5 zatvN^O~9@e;01%|`RckqvR>l_W;l~+&CE3O!E@8N46f_k2Cdyd2qBHy=jB!2JfCvD z#Db6WO>`KO4tfZfaz51`Lab+P>*x44A(aI5VD-}q(C2#w%&SO78WXK8WK4DBaEdif zlvwSkB>YGV)uQW{Mkda%HUYCKO=J*MxWAQv7g#_T;qCiXIqd2Wsxg+WN6o8{$+*ov z_6Qo2b=fr8(rz=PTQZm^2P|H))}j0CYuzSnbAq}zkSAEdzFxKR%MJbKCgn8* zYX`HTSeJ4};{hgs@6*Za3xjqT(%U^futykVB0yN<=ON$uL0p|8z)Sq@fb^Anwea;* zgOK!jGOV>C1L4S1of%$y`nvkU4HNeZg*ul6j!;kOdBWpG2=UoZ2x~6TxjyAH2*AD5 zj_sySHm1NC=Pu+Np&P88wjppEV}!l6flwS7< zu3|NpeD+RTGX7V<`KzzKNY#0UOHzssw`yzsYIBkERZhTC zgSkds0Q~S^v1`2ZGQfk zFwSO0z0z^!dNP=~s^?thbWP{_=rLo<`7z^mlx9_)-_!;Gm!GX&w?)?(-UO{A2ETA6&7K^ly z1TjKugdOAde;b4uX9|(CWE47nZ0EiN6W+U&n9~l#!EjSMH?3eS=v%y7u;%7ki+USl zW<*mGGI(@(e$JpW0Dh}_cY{FkrH{Z}0EQUMJ#v13CLoWH3+U7MbxeCs97NC z`?;$XYR=N=bqN-iBluzmy0YDq5ZZzPZeb`{LJ_m~NlNvd3d~Q}<4zSAbysjOj&#-B zF>JZ_mAn4K+6+b*LW&D9rEZgWDV{-0vvL>b0Zh&j=*$HV--WR>z!G?O!P^za);_ye zs!-qQd2EhR_#JaPVXm60#mn$=;_4j6L??C)AGmB z#14RLJJ^5n?CAk{Iw0HzV?kDR0P78a3=q!DEx({81`PUAskR^$)|-QgaDWv9i1>~0 zkgT(mAfyAoS1A*gAOv(Z6^rv8`o^U@UaBV0e+IZlpUf7q@lGNp+*x3b zbjago>CjIsOrc&7vU1xf%7BhF`qBCU`d;=B_^v`rL&elz0$Uy`HxQ;!=IkrnKJ9)V zn@i4lsA}+BeeR(L=k6!q?0`iMLF7}JKFh1d1k#=Y`_C+TdH(44t^0NQ&R|?udFiAs za8Ty0Ln;45fr7yffXSQ(9}KkH+AB$AykWs0rzAuib%|Tl~v39>EAZ$ zvKE}2>s#+0ZdXI*GJ;{0paII~J{}GFA7K5{wcAEuKH7uvOV*dxu8Op$X;{YnT_jI=dJq7auAh1lcI}n~ zfdoL^iiXUQ?f9c;B}yw%w~ z%LN3DXt=hG`PkRuP$S@3$!s)Oauy2EXB$POlNMeRB0m)fW|*K_J4sN@-`9KFYuYw%dyi=l*r$WMAo)NRc3Z1p-uu|0KB{SV z2Hb-4jocVwelpflamM}>hOSVTfiMNN1*<;rjO4m~5++4+TvZaR`WU$IhWX+B2UU+E z9h($ZaP?YOi(!(jW0D9~g140WY7YEB&K~@pV3k`-J!uzIPN}v5e24LX0Ec;NjPoFl z0Z_Q-2lsGc184vOY7z`KocX&Ow#{+QU3`_}Xe-qG?HOp!P>Ui%ctn5~fKr@?q1xqA zex}*I4!$#ch?mMNbpnhz;64v8KW2f!uEYBTm}1o3(~rzN0>uDe0`x&I&%lgLl(z!B zqyD&$)l^tV7utRZTMM}EKDS?l;P4_0E-!sD?ICoa?KWrLgn=CEbDO6R94^)R z_#$Ws+KBSA-}W+Wv~hj;64GH!MvN``an{YopR0kClxXvZ1q=vjusVK2(T{B0ZO*tL z(Q=N!bs*+905itlw*obTu()1TOTncWj|phDHZ0ctS(>jOd~fqPzd#x3_4in01A)l# zvA)(gFIg}APacPLmn#6fY8_sRLoILgp~?b8b6&D4Nv`s{)njduXPfRF>Zzk{v8>YS zwR#8oX9nDD0;i3@r;j(^p!3hn6G9PmO>xn$pO9OcOXYGtiZbf73xfs4&iF@BLv4B5TA;4!6 zH|V!UYBnL{@J<~-^M*g#ebdbYhFnO+4?-P-Jp9Iemucs95OB~p10&utz{O>UesSsE zc9&`A^B^pwK6kt~-KTILog63B5rHYt7j7fihWUiGy21N}jP4J+U*@}0)aNqHD*(P0 zzOYZByNbTX`pGI6mk%G;9Snd~ttI^ZK0Xo3CGgHQ-B6uU$Xij=Qj-%3T=y2aL07OV0|- z0K(l|`Q>dX`LHfDZ-IcVcB3udR%e4aY$JfFb#Uy{3ji9Gg!E7of0VpgZDZVqD<9K# z4nb8gaCia26&vygP+~=SJJ>I==dlkjEZ2>`mwF?4T>70}wAL37T_P$Y1G@&VAscPc zwRqt$>$?-chjAqCvwV;i^#V}tU>BY>BA^TO!I8GuZ)d6DV-gP=?!n|@S8foP*iaGu zQYt#7dIKqv`}5s*-su4U-FM%~Fy`L23PqkTrwD?Ad#&Fgyp*7ENhk8Wh+r;)QSXs1 z_m=v5#=?L0`R7tQ8YN(T_~Ew)Kh9Bsd;u;&83Pe5_7Pyg3@ub-WQQ3fukxD#E2Xy= z_uG$s`Ea1B!Sz(mZ*IeMPN(v)h%c{C_pi#Huc2=SFuLr}QcqC&&HAd9@-~Qns;($w ztkZFu^q?GF{l!D0UJuHJjpNqgWo!N{$T{uLD>N5EA`o&y}zHk+sJ$+zf zOu>x0FKkymL2xmzXYI0gKilE|x_iM2Oo3Kb813$F6yY--i~!!3kYR&(wYBV$0FVgNY%CloZU8R0Yr|lH z4Lk)fgOtcR#5lmXdbs6q%N72Z0oE{}cCM=zgcpSF*&)0;*a3zT`Fm72H4@ahWkq0prXui*k}Mu)CcG6Ftrn?AlQtx0pi1eoSlQj=(@Qc1{-XyeVT7#(K1Xx zAQRN@d@em7e*m@tG$Wn66fB>JcJA{>Q0M?th^;Oia*r^09)L0g6bL#PJCuchG<&F* zuuuh;a$wVW+$GxJmcr*j7a8Sx*wNA5pS25qqJ4+p+}q{zpo~Q!^rCvJ9?bg zkLBW}{hAC#v75l#z%vlxV+oir-&!%&Se5iBC%WefsI_*SUK-U?iB%fYUga=>Eu3Q@ zIDp6LTobvO=TN+?`)`@YA<|{As)OLLN^^8?ozUUh71)mcy;XNzos{D`%m9CJ>zG`o z^d;fsykek&Bz~TX49uXIgUW_}Tte+Cv;>}G7+qa}!-NdxP$YL8A3nc4FUOj_R*FEZ&fLBJgeZO4BozND(b_0N> zClCT@9bk(PI6-?`5myB4E_;Q*#=8aU^9A99i47mdvPHe2`>I=n`EE3E+z_*$$o_5V znc);hi*V=V>$U?_y9H(U^)rCXcB)X(7$@JU@O-!Mmkr?vsspKi9jcT7bSxC4T7fwG zo(75G5BL-=%=p2ybe*h=y2I`SLZ#i~z$;v##u@_kNAq&gL6zT#Xs?_z*fH zseHa|L&j)`fjeyD1B|8~%B6h&nr8yL4xfGSw+FC-d%zxIi#}fzmx>VgRir_OgJncG zY#1_H-B2FbPF54Z_DIiL++q2{6n2`!Xaj`$gtNB4m4RdI_bRd-Z=00ya1|9@x%kpYCcHI`r>$b;iWK++bQQPR6RHh zDDsEUV&}dcj5D@08C)J74C;6Rj(gcSkU>Rnqg;bH)!QZBrE%cH<4Y+5-Av_PRZ$9L zt#a2X&3x_X&_x=(aV^2vkjV&&pV8w_*5}rB?k{HW^16)mm4oqEoj&RZ&X>=(#eJT) z764wg3cyju%!YF@*ow*$5C$^$Hs}DD|1b9b?8&ku$?8VU_BrkmIcHVRe9R9Z0wQqb zB64}!)5qJO^`gS)xRAmjB8R70{+vjSkKh4-+%+sekWMpM7V`7;d_Hy(T|ooEq~I$E6a>{#0w)92KLF%G_A)b|7=tS8?0 z-ao9f3E;aknN#wjMt;@KGb}Ia%$xT{*N9u1S zwDjDWmGG51+c~k6X~3sE1368}CTV9g7DkLEhV~Yi?J*LM=}Ql?YL1DxHej{X1gFFW z6}P#@Ph!nj%kleiM*1n&c+=qL7#kxoLnUNsIYz7WiZo(aXTL-y#h!C>A0zyyDhiA_ z2QG}WgO1A*oA}Ewzmk_`>1&~~9c1{8jWvB8GJqq9(})&7`N>ampdtr=v82;+{F(#o z;^El<(R^

    ce0P0hk6rzlv~VHn2ba^pgbgcD&0FK3L*YGstJ+2up(rTeWBzivsHV#wwgLn zKO1n$Dr+iC+Jr4EbiY<#(>vQel>H~`BgGy=!S5Jjc|mE>al-Ek;<4P?h!N(;p*Ib3;&9N>v;hEkAnBN7q^_**M^sei^IEwSGfz)F=9KK(Gqy9YBWsIe*kKpjd^_l>{ zYefK!9>26Ri&{IjVSjO*Yb~eG*56@NEcfp;VXyOA0nLm}%-@Bd3kb@+F*0bYr7fh- zj)vQ4b-i>Bi+XjfbbN;HwH==fklG5g7fU5tVGflJU@oiF&R5rJ!x1cW0mS1t7jPVZ z(jJ%42#lqug(1*E_9YI{6-U@5LI^3UqgQ=6t^jfUCZZXNn6Xv9cIQ(z4Mm z<`2_?Ax75F*xKSBHP_W3bxt8YvE6CN3uk!!`?)rPH)5@1yd%A^wJ=jV zOIF`BV$dOO)>k$7wp zL$T(}Sk9L{(rxS5ZOKqOX*6PNRFsr$D8IqEYTuFEVa zzz3|VSqG27(jvZQa`B)vDlaaWStj{ebTkZH0A__*IYs1zQ*OI6SpZ-}?9h$`G*_p4 z!&)aQQ*Or~3HT`D;&KoEvF&y*DH&l4+%R~`NdUV^-KLh?IyatEjf*?c|Efcx%1ug| z;r(=um(QyIxwKC{`6R&~pDA-f8yEm5_9oz-frrDS4!omtpGqef{5(UK7t=0=37?^9 zqHpg5;7-Qna#mAX?ab|9Qz>12;50ZTruD_OrYebycmqU3(f* z@thWp@3T)oO~yH&DOTnqHq-Bq-|5@uJ|s#h@uBqcyiXwV4xpyMtD6 ztM+f^cKem{uKlgR=6KBU_ZQ&l+Vd(v{uZO)ozL3e!D_$b_-p<5jdxBkRY3H`IRenN zo!Yfy4&y?vyMo#k6d&vF^*S02FYBp>#eDzjJrDJHQTIb#bwT4Eq*QKK06E7btJ#X( z&BeS4FpvB2-d1^EwUO69AEWnltb#qvIvgyS{Q}GA_hfC{1-Bt;Q0Z<_W7zOj;(WHQ305&Q1_tmy8Kl3$*^FASjF6Tz@PVnh+cpJ#OGjz8nn3_m_K7+4th@)nFhmA126toLjvC|i zn_XlY0EU_D+>qrGBfJ=ASboO}NIa}fe)hAU%e$nBkx}n3{Mn{d)OKf7f+e!yhtyH8 zegO78Sb@4v)xjhwPb+YK9cL>9|FQ8p@$4pGlwKUhXsw<|98~(?4O|-9-0F^V(H?UROBt=( z{jkQ|+m87toc%1;^_u|dy4^|rY_Lox6rE75vh>(MJVyWE`x&Z6;vkdw!&7PBr%}Uz zuxs0MVSMl%eXajsp*c>|mb<3iqgenft-Kb;Qg#dMZ+G@vlcn&S7y+~$au`5t>uZu6 zSaI}wj1?A4n=r2HZYjT+;cp^5B4P5Zt&07321h-xX)nehTIe7A;PZ42%$XbI2(E^F z|4p#Wba8gTqj(svM;uS7PZE^M*BXv)vP5I8$7tVNmit|)&$a7Z1D3~Qdt9#{uXpXU z<4qJS>-D|`IKS)rZv(*J^c>%K+>q_@7K`dP)$w3ham{|^zJ*14ofAO8KlLN8f!cQU zc?x9bXPUJzflf=0`1$_;iv0>GZgM}s_DJA#IHuQg@pC&Gj*fDD-RK8KycMY5B)%@P zgM5C#4d-DSL|Cvbfsdn~Q!s`O^kR+KwzXfkZMkl;a;+`vAMa+ERR_u*e;FXg7;zo% zo{T)1=#F3opvv=jjOH3g<7fo6NXQZ_sY(kRV0*i@RxCI%cVYg#ivBYJ+=fG9FJ?ZI z(6}t+$RwsiU<*h10Jl>M9^iihNn8H}cbpDwOZzriOYJjTFK0xJR&oQb@ha9ZKqpCA zlCX;;BYvH`BA6s0P8l*HwGnVgI`H$IgY6vX(R+Ky0WKlo7~w?Nqdo35%2O}H;nf6i zB8%x>CnAX;DS-V(CZoo{Su*WqINR1IuxuSo_I(;e$XL`EAWb*^WKR)&LxTn|M?HIG zmAjDHkgTTG?Fa|^7vhD16*XJ|+10LNm0HHP_9)>GM2gyibT1waMZ ztw}cg9tP%1JLI4TX#w}*cj5sfU+}?HUX(D|FpU)<5%(m z>V^RT5TwAgsz+!VA!^W!qr;^eBsf(X+h~6Sx?#!*?PvEi29>QY^Hzn?cNX{69Aws} zfMf1QKiP2@7f5RQwkH!-P;l=3&=R!2ij0xmGuHl0{BumX9TVdPfW8J+-UW_eoR>Jx9CrW`S)nV}q}U7c zqYpoF4Ok?|`KIHK^;y3VQ1^>~`fvH}8bE&WS$|oFeCFQU5oj*Qy|_+)@%cA`-**@a zS8vxAVp4$YJMJL>Gtaql{MGBWs1`)4e%AUG8>1&6>sR^=*7n8tf;wC7vW{uMDBkPK zvpWH85gF(>HXlv#}x5FQPYyw0`)iY9Gi1%^9!fMg80j&+oM8DO1|X=Ln6 zz}+fQ1|atoV3_tuL!)uO0Fo_$d9+{3EBME=?z=RKMvU_7z{b)BDF+#){a#r9O{InO zXE}eWw53VAks*)gRezW!U@H5xxxvLVX2OuD8zfN^LjZz=KHejI=^j#u)=R(5uJ(+F z93zs=m=Pb}b@q_U6F#BCIPBwAc-|Vr!={*%&b%U;ENuVSz zQ<~achddeb=9&Fi?_2Z>*$qcXbkwiNj-R^^d5-tZDf)}|5o|D^KQlOo0niWl(eHbj zgf3A<+(0O8G(a0{=SgdPruv%y)N1CoB;BkI)}D_+7Tfo>Q*q4EfgH8Q;QcWH%0oKD zaZrVsEBS!|mZ#Xh{`~XL^PB`|&0ica$ylCroNB0jFx&+reOd;(JqW-|lbA3dn5Z8< zg9K%!jcp?m0_nCHEDQobit4J28MOhgshy{_7cvap8sam}e1{w(Q)llYUkQ*%yRwyl z5s|vx=9b!NVb)u05uI}|+j+#9#)#m>$aW3SXhwpzfdOHU9sL;Ws%yYCW1wbf1f*+R zYglD%*B-g0`no9u%4|u} zCY98s;#y)@z((MqUfQYZYb(EHnFGK0B0^e4>HQl4={J?$US$!aR6I)A~FnN2KRr_=w;z z6Nc=U0L^24{w})e)-svK)8!(@*@$Z~=KS7wXssjh4dZ&Q!;cS9mylb=c+xcQ3DSf3 zAp;*q#CDLu*xfa8iGy8_lU#{UMmkIatew@Zu)I^gXuHpsORn#%W#tzHgT9xMcfeb) z&47Bwnbl`vFpJ_b_1z;4O8S0_c~O0Q$uNYp5g6$bI|fHGmC(O!_QhScIhQ@3PRsaL z%;f8JB|o!rM@Ygpq~AuX6y+_)m*TgNKmH_xIm~%_sz_iO!qMw=p1ZFXb-jz>|URK_Gvt8 z>4on?18ks_i3F%*Ao)ZpX#s|V$r2beJfCjYXrv12n+C%Dn&OhSIfw2G_FwhQGx<%V zzUDp}mm6@-cT6ZGBJNnaWdapD)>!-}3Bpe{B@f+mSzcOr-Vz-KZF+_DtL4_iE1rU( z*zYXBN zC}S)@jr$!z?X|1E0H1)zzd{wR9(v8V(3Shz4HPt8`Tkw?|E7A4<8cZU1vGd0ZY2t(?cn2R@@&uTzC*bUQ!S37lU1CJHIOmw^ zdw#x2X1*ricR|Qq>c16B+6w4v)C)VDcOEDi<6;DIt-kA7=lQqDKIS`buLwb1m_q86 z_1<092>6ElsrK$kDvj!n073jca*Xs+}1Z07g43lksHx_te?;K<>J;T|0VxA?;f9D~xlpv-=tjcL=b? zD1m^3RC9lx7c(SDmpydYP1bE3DOV?Qe|DVs?Dsv!=>*yrau$fZ;8aZO1j~UDi0U+% z(8tGQ?(5jXW~^n59hIe+VU$vtF400xo*ZVT6F*0SwUAFtGW1fi1dJEQb$c2kR!Ag5 ztYc@w&%P@zhJx*C?|URg85Kr%j7o&Wd}X{_``Gm~ni&i+#U-~b$Bsr6@iEjA>mgs6 z{bB9f`g~SzkG?1 z0~^gbObWGZt;5h3Gmy~LsI#682v08KkxNv}Z*mc=GyB}Ghh#*VZNl8m7?QnYC-i~F zKZccOP}ED->-jo@ma8FCfZ8p8j-fB^XD)eSW&7CJg`rh#H0-+qHxYYTU>un2 z+7XZ`2s)Mo&PX+;hxfGu`^%pPaFI-07smPFaXLS|>%P}M2jE==E$=x0+y2(i`ZpZ2 zp0I+oV;xxJUjWy49Dl7Y1@f+ZCx8FKb^f;degjy)29jTtQBs9s727&yIW(_(lup#x z&N0)*qFYuhacrw0&k}0Z{5yUT;M;Pn_61A|IBxRb@|ij#E|rn-Uh<1Q8_*di{9j`A z?1}G|hpKjoI+F2h9|4Zg{kDba?b+y2*8}5|y|= zu@Ln-hMmjj8nt^p+g8%1gHiOklZh9Z$t0QP7JbiWOSXNkWv)*~^GcT^A)4Uy?%Z_7 zUI4Rz_te{OGvWmj0t~7>qzY;%&d`7tjj+{PMbFrlU02tZcacE4gu~ZLe>B7@@=ge>p9iAlp)>^UcUe!qv20B|>=3ZJGV8zTYQ^nrT*4u61| za3%Ej9?4^$;pi6N{PovgHD%eT6oXIY6*zzK9p_}nwzBv?jwB!qYSp6h8Q0d(CL>=y zZ3!)sI;Y4KM@-#0n1emELLhN;#Dr~A%LHJ_Gr%;flVR0sOMvOt)Q1^{4q)n&Zk1+C z&>tOyg=1BOg>?Y`I6D`Mn7ZhTGvhb5w#Z|c?BsJN6d>1j?esD+&!~k(*Gkafu8P+omoKa4B zL!JqTyX9FJPnbag%qvP&Nq82cD1a8gco|1=L!@`<2Q$V3_F7mqU3VSA$Y`;yxfb`p zw4W=P3bKOv-ZxfPx|uZ+mK9CL|+v19pcEgPp>eUNH(j0E`_U3z3*Cuo*!b=<8_!^x9SMvFPKGHQJc|r%VA( zzi+ZrK_b6P7;xpIfJ3G4#EgufQ?FWi7tX2S3E5tRql1lOQnIbV%Z|=5FlH6Aq(<&spIYPogRAx&c6s~eDU)D5;LlXMS2O~tk=DI{ZYV0pXb`K-wKGosf>4P zoD*~%LGUkf+4he6FW~GY$fr&(?lay2ny89RM7{(O-rJ#KENkI*!8oqQh&z~fyNUnGdi`zSzLL0vo4u?HwufH%+z z^X%j0yL=hHo$(ZG)S+E^RJL}ln#dzsfWy8R1ufq33Q_^V+1A>w0kjG{w>qXV=GXQg zt$=?TB~iD_UV3J4^Qu4hAtT|^c1=U+9b^ilnBN?!L%?-ey;7gD^cs3XK*~#PJ&%qSW0&S zTtO6)g)Qp6Xm};u8Af3m9ea)aoXfohL+XJOMgT_lv1yA`5d3sX2}Do!Ukwn(5Jo2J zIT0&ndq*IJ?WBHV-q&{_Q8-CL9Q)i@WtTbb%UEE(&!{4M&4tW^ajE2KQ&)d?&aq(Q z;?<05^_a#an65zfXqEB#KE5lR@;MwbeTG(eLYQ@oAjfhAIW=ydYuscS1Lro1r=gB5h^>-?R5S-q zUyZevFN#){hk`t>qlYCs#r+IKoT4MjqVdjR5ZwicLLZ7w*sk|hw)^SO`T6tn8F?yoy$7j(@BG^2kQJJPItU;OqY#z7&!-hYR|wm zX;aR}$&zgx(+{hY-^z@8avF=sVUxyKWh*#NGDypcY$>gP;niIZ-C;08;rHXSj4StP*RH*Ms33M+KVE_CHBhV95rDsd!!Fkv@3>D}LDtpl zUn#WF@w0bbe_T0l9P0KBz4-Dz`HW*3Lm2ITUjTD~+d#ow#c$o~$OO`XavTK3^Na$7 zY54ZOFopY-u{f{vE+b@!e?VUe7kYI8en=e;u5ps<&wlu&KDR-JhdM>~^37%;sFAP0O=NI-#B_>?U47BYouLp4g; z0T}GD^*tne9?$QRLPF%V+^(%2F3+B|y<*6b{O~(0D%q#D8&;I9;5*V8`#)33?uG{IX&Zs?!wgT0~QaWh1K0l?g zanw5l(r`4dF;o5LMo<9p-t*mm63|~5CzxL%s)P&#=Gh52XG^W@8D?=yxu`qdhcD1_ z|CkiLQeZ#K9pH$f(OvpC@m@?PvM9RLCbZM%$}F9R>}iY0Am>SFP6>n<6zmQ-X<5nu z@CsPcabU<`#z-0K7~rW(#sx25yK*wd5AE)*90@nUn8aS6QlD@Now2(^;xWhMCGHXP z<=mv8qqPSGXcz!ufbuX3Mq0dZH5vyU>7wy18CgKHW(c%`48uT?0viO`=w`O4~6x=TswUi#TLgmU%#mYLsFY>s-2qh^6lZ_%NR4~#JQysuyZ0CWB~AKh>a~}RNypOy~v2S2~iFROJ5gQ!x7H_z-T~x|7l`<9PW$Epc-G(hJC7R)M)fEMYr(elk`wf4 zkPfhYQ)V}TyPT`LV*41YCK&L_F@9kEE_LD9WV@4a7;;X~?~38vn-jnzSy%MD zN(@kM*4x~%+q@qq@DzeXS^Sp$Q!$_?>p7g2p3f~wadwHl%Ox%Wz%CFDEke4*wm8`a zlVzT$yCo2uU^D7{VK>;?`r?jdlgxO03X+2%Qoc&tsgkuZZVD`J4T*#dX8x0HL1c+` z0VLH3&|bZE zx#QfC?>!w}c}I}!$8gvMEEi)9jrJC8JM(u$o#qa}>6{V_Cr~dbsjvtgKmU2*y*aKf z5jOJavKXr_*DQnGf%2Yhh?)Qp-C9XxX1!(_ayJa@9hZ^SBAU(uoY}5NM@sD9Y{>9B zyj&^-oH4Use)*L*SXdOE^rGSmbN*3#id2Cp83gX;c*2=60M%iSdMV=znAfmoY*Ua* z8;iq^bt!?@A(czE*&lzBS&n9%x5fD`&ypRf7u%)@vPV(z~#;`@%wVp9Hn- zC8$&|&HZP665uB4ZHwoHR4T9O7ibZQdj1!dIQ7N5wpM8%hg8Q|!%>%Pm02(8TOnNl z#4W*h57w$2$!IIpoN~h{@d##l^p@?GpjZr=JwQk6cU!}hQ)J# zjBSEK!0j|Zni({eFJn62Z7Vx&y5n?AY_(f~q)~UDAqS_keHeywqj$7Qi!Eco3T-is z8c`Kk@sO@>bL>3K%znH-+-Q6fsVDCTO`YxYdsGPFV4i8?d2Dm3hdmns5-J+k$j@h1 z>+VTQTvgz+v=W>&*-eP|Thz;CQET!&q*=2aE|r#i0&F9BFMe;@-z6o_xb{_BodX{p z-X;T_Y;VNBWq_&k78VE{f`b_Y0m}gyhvpAw&~iW38mogMpK0;Qb($gL4Cu4nV8t3W z!AiyW74EB+K`s7(M-a30>CKE&QawAxoMt%*W4KTNqC( z8tp;Z<&<6NGbw21b2%S?bvhTfqaewF9AL-+YhiP#UoU671nY2+h0R-~?DiTtmM8#} z5WBYmy{$|MbgBtpdtX5L3-hO!iy~l!?dY)>BGoPpz#Q$isnIgV(x&XJo}yUzJ^&U4bv&@Kt%A!FU=r)LN>#yr#4pSPtf1yBbIPwZnm_8j#bjq%0qLq&^n zImpQ9RF}Op)aZY$t|ke62*ZW@(!H%o#?NT~EhLobNQs}&^VL53m_Pw7{li?pT+)bA z3OvR9D4!T+O>*?uq) zJCcz5kbT&9kJ8yz|Cy5VxgNj&d%yR*{r+d|FaF{$+O6Emt=!6Ar`Y?;WM1ZkYhgHv z@lH_?te@$>1GY&Jso*n9f?zrJct~5d!%f&_Wt;h4nY%7m>=CAn@2P8U|MzuETmiF! zNx{4D;4G6r?It1Sa?u~P^*lk}R?dFtJ1ebrdFhV^5Irp{ zF3&y|hTR`#h?Afi8tzyY5j*7EXteBybQ+T=9R*UgUme7?I0rxvW8B*6cj6KZGSSMo z=vAi)^a41-`1)}rN6Bg=p$;%D$14YvKBCjlXDgqUC&`j(?VkQY_^5;j{eIHqNG+^)=M^hvO=acV=COIxbcbp)H6p=2+Y)VCwSATF^zo(43iafY146Ut01 zCx#rY@lHTHzGcjb%ack#Jlpe^Uw!Gj9#Lmwk@vl_9#-&y)+))F zhs-^NbeMJ}TE+-@g&A=@BsV0Ivx@Nkcomrdt$wdxz0N2j%wvdSq*3hDnUv)PaQ^D~ zLF{DHlBffp4K6~box}>W;^Eey=1XjCUW|U+o}t%3^XQW+WQ$u4u+0o`Bp1XWK88I* z+hc#*LS^66X~z2KcFVj+WV^!}|GnS;-S(3&zPN$rTe+26`A&;TIDY%Lf7_jCOn#O? zRKW284EHNP^H@25IsPh`E?~NC*PwKP*ZjM8$%?0-8Ah??mTLkz>IeG-NNxuMq4&HN zVEUQ?5fyRPsuxI3ZE^gbPGWs!h}9`Lje!7HnfRr(1aPEso}tCIilF27D@QSH;_YBq zoZ`Hc4y3U#q<%w;4&Mn)jdm*reKMxv+?*K*1GFhK4b1as39-#g`r%$7>ADy(%8sXF zBpnvTHN6hVVEFv}*pV1w5cL*Lb$dh%2^MrjY}^2tu%c;%jp_sSbF#X>dS2%#7m*GO z0qKA>m}SNZfZO^~lUvco3W_Nj!6NG-T5`QUI|3CBa3tfu1%o|x%exyFJsSvM1+w7OX|igl#JW zaT+Lxc1T016|0P#0al)z6DM)@r;Y9TO&bnl4D0L9<{75l7%HY639*iqik5W_Cf*%Y z?OtzF*4rYXo5x>PT{9Z(eN=QZ2lD=WWEuu%wgA=VV;tuZ4iT`tNHB=7L2hsUrV@5x zXM-zSlHJ&VEKD;MLvsv^Y(G78*g5ZwMIj5{$ab7Te+26`7R6Zzd!hc-)}$p>Caw#e*~`YDn~GV?f3qU6R({c zm6PN8!qm;Lx$d?tl8fyKmIDy8C}udiF;d5PsM3pjur=>syw#_1D&Pe$GlB44fDT|< zzaO8qz*8!**6v1eN`v8^S`ZHuucFj*Poo{T2I z%)6$q{S@^}Ccd=*imS7rM#sQm5aT1`aL4hppPXaNy3V-B0nYcaI+^A3w4Q7480Az& zC!Z70d)+fqL@<>zX-{9?uNq%x7Q=VT}cfw)M*Iw6*07Li$HB_v;{OX zz=?Bfz;%kNkzG(P z+Zs)aUGz`ZD0UBH$n86GYW&fU{xV}d-^#7r%B_5t#okF~p!53?@G9fl55KoD7FPFK z;Tl)Jh!RUog5Z=6@K1p8!iod#^s>UX_V&VEFrT5eg5w@-y)I=F=Q_WiZ>ulBGTE&{ zy9E^2c>Y~j+0-ZZAz;Mob4qDROW@|`OBTT<%yIyFs-7Ua;k33#e{B_kqN|47>ol3G za0o;*ya|Jxy9C0ds-e=8kt}u_qlZWsx$w7ZMY#a_P+0v4j!6&SDA1Sr-(IL#SI#md3i4vUbEvC7!w z!sBoP=15X;3HI0i{pd$OYMN}~GW9GE4ISG@&&T5#X#m~9Yyn>jEr<9WCWnDQLJb=D z{{AlOjr4=iBRq?By0Oha{_&67t=!73+{*hZfA(j8Hsf<&1HVV$`2wWMG1ma}kn7}6 zVbH9&pOyf)Jb5f&xhW{_#4XPK@wNcT*4mKT)@Lml?2PX|TnbT4&LPsqkf$Cn%4>@1 zd^YNO0D(=e#{&Gab;>bv=h|{DbkX%pdL3tz0ko~J&s{Q?y}k~>0Fa&_x3y$c7ZBP# zR`rY?6^tT`t4kk7^hfD)6AT3-M@;?Gwk4>%9KaX=8KTR(H5gWNxXbLR{yotdkYAQ| zd$!1w000PmS9lM5%=N(z#45a6Wu6-|+}FHz@ZDQzbhlu0Pr+0&9{pNjjI?5lQ{UX2 z9R+w_gpdO)!(sxYk-E$r4U!d)wsb=(q!1*IY0lE$M~djvwq-&N2ao66wQ$)?&6Q(> zhF6g(xs8$%VT>{NaEj#mo?Y4d;GEGsE~&}Y9h!W`Fj9>&s&y(ibN=7{E+Y(0^ z%x3*zK=<|Q4?GfDFtELsZk@ayOd!|kSAryK&$rLm?h-M&Jt0cTiJZ}mkcf=Wxb}>; z)?2drgc`JGv*XG)ZqMfhe0!$hlCn^zGR}5SFw>m*hqR#W?;`SBZ?Xf{q!6;lt&a*` zjy`!mglo~Pet=m6y;wgg%YY@OA<)y1_{Q&=9W1ZY0^EkvUa^LU*6S-1 zN3C5Z*qWwSuIDWcwq7qmX@J(rOt*66f@$u=yKS{?4oh6}fxa-uX*hJY_-p$e1|86+ zVZqp`MPm$jY0@YA8 zZLApqGZl4Z%igP)J!kxZ%Uc=v1mtlA;n1EU-t!1u^JPhl#T@fYbPn`;Ce`pX*u{D-Mrn5< za}Oh8+X&-(NhuDFlFT)pot=&;xe>+{i41jA^3pz^_c?7cm#Y2kIj!9-*T&o(=pI6D z0{FXgN_6cy7A?a;W;iB}7BZEml%t#^_BP|&vmg8Sp0wmK-xEgUP6qtIiUXt#)R(Nc zf==+y?$5Oz1+dfRgex|N*`z3^jr)F>xVQD~9l*JjSf7;9Y0>qvd{j{G0QoV|JsRUh zpB$4@W9Shh+Guu5rOmaur#IX~GRO1!&*uZaon5|9`k(q(vAEJSl35Y}f21A6sJ@k3 zxs_XapM@9q-TD0DyU|uQd10LAf0AF6|F#uG_X7htaM}r=IP{tYWar;oKLE^DfVz#U z*Qmuj4_mHUvWl!HAi4LK{I8?i1cymdwE%0q*ytW0dNQzaUK5Z}H7$TdI~1s24G(a0 z0qu}VYzjhJf~3W?86{x^sN{15OO5qzfjC5jYcMn@@0Dq5E&S04-v*<0f z$==2|Sr*%05kop-((uKUg`ydUq4z9=GlZM;9}z2HglBthm8Knr7W@Txn~bmoMIeT> zokQdhzvekuY;ORP(ClPOY&DN&XuZgue2KWq0Pu;$W(Mf{82*mq0Kl|?)s>X;kC7yg zquY!UGYswg%33)p^j(v}&Do}bZKm_kBxl^j=8P^{6!MH?fun);>pkRz(Mf9n zR=r>G1hs227Hk5Y9r0eUaML0Z8%l z_mm8@GCJa?gUU-@n>5dQ+_sVKuHrpAD?JK$uI5lY?=A*Jt((&*3h5!F(2#6%3wtT; z4`82>A4chAw^P;c5}E#-9duAdCB1+A&`X5!I`*6EOq~rhAZJ?F5dfC{D>m8_O}ND2 zJ|&==#2Ut_>@h->0SqzLl3m?>iyjA3j0hh;rzvYl>^>?J+TToZic@ znf=)nFw*_ zL;^CSumr2$TT7kuhaY`7aWIavL+-mc2fls#CXqaY1Ms{C*1qJVWpEp?wQzRUp;(T* zOaQ6GJp_0Yp~E#O^%Av41H5xzt_g!pRzR#zqJO*%M?pS!=fTIA49<$12HP6&mLc#~ zZsk_qcQNN^^V1;xs}+SwM?kzVg`=DV_1LzY-OB*lQ z!d7b?3+mibAIeJCJ<{+Auy~X*>hqT-x4^%KVV%cp<*can=@HKvP@-in@Tb!fmpAJc zB>{UAEiln6q94zZ%)OU%(d6aTeWcMFXj4!{~u^X4e3dMx_gr-94Rho~5&5 zjNO(-S}bBV{(rHDcdxN_KQ@_B(>;xfZBQ~ymIFWm^j z`LpCeXx?FR)xj`#b)ucN*iD$%8AvBa(@cA`Q3Co-6c2ySr@(Y}Jy$Qpn1~q9N^mkB}S1_#lu4?SlUu;N9wJEVSR_2Km$E-vIAD$XJ6ZUSJpkx!BBy|{EeS{Jh^2)tdoikPI9NkXBycan0XF9HF&ghO}*M)6v;L&|gfM(?sPIWw(vyWRckSY!E^G7>a_EYRAJRNq%%h#*U z_t@K>EQUFq+G`mLYB*7uDXobxb$jeKWO%&ZGkHquC0}Y{aHDIVj(*Wz^Y38qP5+Gk z-Q^jllo}Z@J;e@%8lEYK5XZtaZX#5mg%(zW^0ZYVq&9=%A-1;o@458I+uFv! z+ z*ceJ27f_J%`r+?ur7JTUK#=Rdc$uyzuJ6WJB#ZGDKp4#EVib(=P9vcKOyk}d07K3N zU|j>)Fy@JJTU)?#p5IE}3ur(qOJa%yhH?B{>-RNH_VljrdK|~Jg%$Pm$(N-KwCz}+ zX~)y4o}mXIQOCb6KoBhLmY`u1$w*(@yj8pBSlT`2EbY()2#)Bx)+;-sGQyJqj|4Cy zSj5tYUQ)XZ#J4u!#<0%U#@7}JQdH*A^VzoqwmggP7+j{)pGM_sqa5)d>&RM1NL!v$ zS!}!KW5}jx8vtAnCVk3FMLTPsUj&@t&y_mn<~sv0l^#u`oJeVyOJXYGPmAH%TmBA^ z-^bBltCZjNnQDSFQb?DW=aDUMgjV?!&WUcUqPri(u*!_2P7@3h?IRd*QgYAdyXY^eY=oWBRqnpJDXc&R~C z>*1EbJ!2w|eL1evZu_b^oknZ`4Qc>ByosIxEf-1 z?p?@or_5n{>6~cSc|swud#1<9T4yLhbm-I-*+$R#G&S_}bMFy}?GpZV9v>PQD{~)^jYPlBQSFHfef2*x6Rb1^^9Kc0|Mg zK!A|Y0`gjdIHEofezgZ64eBiyOALp}PVQ23421x;bKAf71?=Ecvn5#V2`H8>3Xta8 z(!r$0Zmu1-WvcFAOl=(<)v-xrMcmsx*TD#T77e`xNGoT;kq%~0;n3E)haGFd#u;7hAyvffXZNIFwmXMKk4bjsfK{;&4gLploUJppn&+hr%@Z**2G z#=Qm5JO`oJT8$q<0h62qMik(yb(>L1hHIBKu?U)L<`a??w97aXTIOXyCHJ<xJ1gN$bLui;( zQbN|4X_=agR^KTP`3}q9`dfdi{lkCw58L1V+kbohZqNC% zpZ)BYz1+Ok@BGg1w7>kzzihvXV(s(y|Nh^f6aMC)c`JX@%MX6=gZZwUaaS9Tc&m0< z8CXDSUqFa_r$74vIv1#1Q{ZUR*E`gu;>p}=ZO zCMfG3*KB&te4KLjYrRF5x_a7jV(axRP1)0suH^SU7hnK701S|x;4dgMH8SQsi54|P z2GK?t3|X%|QiscPMBHd6oK7$5mc{{X7S39%ZC$`K>^m`|J?(JzQ~=kWj%7(?ZCirq zAx4#*w?*7&n0lf|07zi@iHyK=XKM!tAwdk`<~(zshQJdi(Wt93p#%h|fC8@^RE}x` z-J!_Kv_5sVRuqfy{3#=dWG7p%l;jg@gxq0^6zsN}PP}8T=QdPDKp{%WegM}wCOdM0 zt(BAC$X)ew7zTvKa|XH`2V2>`iLub5lR8>=1h&(bZIx{lMx{j?L9%gwcbB{TdpM=y z80Wg{Q`3kRo9wR8+KfeuY(}48Y!Slmd_FBGh=aijTdEp#r2U%1KlQkFsCVOCQ88}5w zs5m}BE z6!smW+w99VS^^GrRMUtNY%&uQUn;&VAoonR%~+vM1+?xuSl#$kx<@Mi#(d)j& zuVZH)C8bfeGC^%f6+FS2Ct90fW}n;3fM0Lrz#u1oO3VZWJk#3=lWXu>~n-8G(+OkPe0AP8&eVzPJH)~VG)wlz%ML2 zss?sw0K_B5)*c~?%Q@7qRpA>6t!JeiFP*_Rtor87*P*3urL}H4fS)g70QE7#yjda< zCJ;A-O*Y3o4QQ=f0}TAT$nXbP&aDwa_QY}4@F5Ixm}RT9rPiJe5RJ(T7w`Fxb;d!FLXsh(&eHLSGZGwN-G7ST`fA{bH-S+2y{^#w#{FncdF|_~1zxWpu6#no3 z{lAxf_;oEdcK+?Z{kOl;SlYG&@IDNgTe+2QEB3A;0#JeizKfp=XqNAr9H*?ST)f!h zZ7YqaFu274!U(sQcSv+x%|_7EA%)-e!2($2>nnq_vh& zFkqr#lP9o}#4e0eV*3*2FL$w@0n_XA>%=#cT@4+$2Rx|3jK22cNZhuLvnIY+Wk9;l z`q3HT{gRCR1jV~#S`1^v!EB88=kGuH%h&5kpM_VT1L#Ye_vcaXUW zb1QMI1DtvrZ63qB*So|3?$iT^2HV(v97Kt-^5I9XB~$b^T}Z#oJ$h4>JWN2lf}>$pU$1?F5~GOh67>koZ0reJq1qk9i45~*|JO9F8vls zV_rX##K@6tyb{&L`t>f94W@Bs_hJFg$O_mNsgNFJ_0C56@WYf**f9oB?L0gsySyN+ z5O3Kk&(=JE7i-Tgk8=9+4)(?~pk>9ZG-FupT)W>Eo|lu=em-~VVPeqOb?ja+({@ce zciziBd;5Ms8_`1EM=?2tmH+%aZC|2Ch;u5V1cU4!SedfRg|HaO;3XS*Kf7S<(WbEdg)*PU!-KkHFKf<=+4{7O4iT(q2&|<5>WEV>v#q92YMMOKT;?2qv|c41wz<&=>`X1?^A9 z@N_vXfSzY*Lqm)e>kXral)#F;zX(m|4rq57@c_2Br!H~?2zN)d^xfGn2XNj}rf`2( zX|ju{KMBAbC0pq$8=Fq|5l48ghwWVP!UY7|F}CRMkz+!I*! zNVvkTHqSR@2xASY>xPeEfLF6$te;5wW@E*Gp6?z!gYMmBCB>SL1ax=jVx;j4Gaa<& zpg>AfSt6|;Y%I-dk5j8C8D<1{)C+I}4tnQvXzjz8GlxHR(P4%$GOP~Ma0nb_Wj@zr zTO)(vbKR^hC*gLA5O8y6=9D`Mwi{qZK5~z9U^1Um&)|QwjC$5W-e7H(PNq4xi6G)q z4FLAjzD7Yi1-WYK26M(cpZ$gK%4ENf54lU?fVHQtTeCr@Z(Gc8#_LS56IyE5@z?nL z^5&@YaWy(NAj$i-zmCCR%WCTRPaNaWeNnN)mC3My#F7+9h6>@&cS0o~WH zKbW9)rpJDM_^-b%fXX!(@cKEOLmF+LJa@@d+kLHZ--cM5tc2A0tLHkg5NdzhH36HP|Ih#VKcC?8KmN!6 zm>?Q3s>MFH^9|ry``X{uFaPzw{?}o@ zTWbsJ+l8&3;B%|`Ydw#^Tmh&u$eRFNjyc@9!JxMT7$>w@GPIMSyd+pA%7Sm#mr((e z44aw`foy$?rnuUqXEcZz)k)X3A7G$5;4NhkJQ+sw98x(rR-ufKi>efAc9ZELtdj664*JQ~HUlb!#} zU|%BfiQ!E9Zeqr>%TDaNUw{2oBWV!w3&_tO{piQpZiW~ATsJ%jDq+{1M6lpOBQM@Q zul+<9c^kyAJ&)tcryNJLkIRRRy!-h1X9cfVfHPXHw9cZ@*ygd%49sX2Kl^FO-Pm0N z&DJ)~5O}#92YYyi?WFrhdfHM=1`(V*sV^#j96a#=( z3~<86S|1p2H2@21Z2*(+|JA?xS9!hxQfoT{$<|)R{K5zyfpcz!1UR*Os#L`K&sb)T zF`#O70i+*`)d?_d*Z!U7duj+l1L*(jfBmodyWI~~oOJ8PKvQSaY+Jqm-M{;Hv))KG z>=-Nd9mTF?_r8@|d0(X;eor9Pu7KwQ;M4*m=!XI9`f{!w*9BB32=50b8qggeN*P`1 zTj@I50;c<+ZYNte0tjvj{`H+Z>gg&yw_kzh&`1r+!uJCpD&1{M&~Onc9$xs3Yqkn) zmfG81PHGxf3&26$h!dA$j~>zq=D{Bg?a;2CTQN%h0&Sa z#yFXDUOvmXRH}3U@d6a(8RoN(J|z$r+ftue>ygnSE|Hd)WGFkSm{X6T29N!@We7Xi zXN|COL5k3PyPo4r5^xIUv*P2H0mfJvov~F3VD2K7H%5{-v1H#frucN8GKz^+7^`7W z*#7`#oO3tX=f^M{TaK-h?9?!HlU;8Wg#}}W^xaksyCxEb$1t2dIY|p*uY9vSd5Y?r z{kfCvZ{@c|Ieg2PqrHQhC9~TF)s0W`|x(+ zIlta1!Lyz3Eb=}bQulCjw06ch52MgP>J~H}8T_2o zrE|>|;jCI;z+)V^fH%E|0)LL*1P~?r-B)&d4@pWH8@7*}=0UQEX%=*87XkFUNI5cz z#8ysh3C70AxWN~k%>uk;gox8=k#Yp4t`KHzgf6+(F$L#Sm)o`9+cbV0qjCz?aH^r)zB1+ro#nmN9-AQzH=ZWM$hf7FUz8l}FdOiF%Se28S&Sf*gaR zEyNjzOxDndmxwfSj?l3HAvC+-1lZ`-*(G^yyK^PrcnTTHh%w%c1hmX>y$3^Stn4Y< z#bN^Y0LrsU5d(R@=*X=2*{2u>=!i|KFrzp;Jq4(=XZ3Y&ZvRJJU7}-};)ldQ$a1Vs z?(}D2@?viE5fY21cGM_4sEp8o)A-mX0}oiu_|ub_Kb59GKym_c(! zwLP`cB_(PJS^>|7vz&$A8rc+ayfZBJ#(?PNiCpY+h)%-FIe>Np$hG|YBxeEJNI2*_ z+7ae?XHJR%j=aR$qVUcRWoE;7j(8}6P$U>Gvm&-NG`C_?n2*$1ESs69SQH+htHtu z=MhgDP`~TS@I5QWoEjti_x|4BTL7Lhxdwafa|f`NSWs2bya5I z0B&DEIIOS&`SmFsWSBN}$o+~5UGMFHr!U~tuDz#o*qCim&)S#g$m_K((u`-Iw9D>g zb07?u-KpzV@{0tMfX*cX$KKFf1ElA5h1q5SPg#XnLm5Sa^Zn$e@()7HIj{~kw71px zXf1Yn9e~UbY5Pb+1TgIY9453C!x(IL%fJ{t!sAtaaWI{k_?oc#9LMv9^xzz!!H60X zqKAzC>wWFFOy}59kxNQeu+5+ZQ=4u;=FvZE`%@W5QEg-sV3Kq;>@C8^`7XjaWT&p{ zer}hi$21TebUW*Moegr^_zm#dl%= z$m}L)hDrZd$^_HGxNs$uuA`*ZEHI5_+=#T*7rW`X9}o<*e}RxeV!TN_xN ztvw7Z+jmwUtFuZ|)Txn>dtZF<#XN>cBzC?%=Zv-cD~$AUE58}#+78zdFe_`^gsseD zhiGL-Ir9pIrLEjSK4!Jh>#6R^&r+vS`Q;HZyQb?7}=x4G~Jv(|%d^?Irk z-+{$$SHOM%xP@iT*654D(1o#{^$yV2^7>Q;b0AE)gaKec^4M#qTr(Bhv&=ZhPnU=n{M1xl zG#Sw6Yt1NSTcn&$ISC0vS{Q2;=NRe7CUOHimgFmY)UkHrM~1fJaUUZA$kdT{?|%o3 z4rmF_#&s|f*g-(HGNaRsr!-btD?N2a9C^OuLq;@diFr<^GQ2Sg9Mn2^h3Tzb<&l8g z+2ZHtJ#Atvw#bP=ehzm$^(>nazAknHNTzp+F;*F@d$90(8VOw(XP&RgE|4h|z^#dG z?LQT5AZEJtqHA$*s^|fpL>7V}TyoX)i0IY#lz`fnyVmVqL zTb=D%I0Tq6U?A7Nw_|_ulb^Kz^q>AyT7h;hb>@5p&1O{C=QiH#`R#dZjB$>AuTeT~ z@O z0X=1>sh5V9(|R_ks~QGfpDF&Sj3hbcIRBIe!xdvBnckiZYg4W=R_|hu`vQ>XV~kZI z)8jbU*5#SwB+r)DBuYmycdd<#EPyP9&|f&LWi~z}1-*c;nk**^>lT34!|ky~7l_xG z$n&{KqaDD!i=*7Ah6|t?;5^0&=K*3hu5nL|Y_wZn$1F_fbl4jjHtd{z>_FYGvB?}5 z(q5T5`S~ylHUJntMO1|z5f-LQp?h?SOc#zpC9FJ}XpgI0Mjy#T=8kr--C&AYHw=Kp z8CwF#J=%lqea9~Wf&=(9F(Q2&ZP{8Gsx8K={Up2^(ht2h=K&6#tkg8zBXCt21VrHA zIII6T(py{GL3-i1YV9+bZgw~3eF*s*$>gRM{@gU9Gdm2-N5&LW{EVR?V;v_-!v}^t z9Yea-oc7vf7sR8Sw9;nB^C6Y;*T@!O@m%lCxIsVezlSk1DiKc0dsgy1VvplTcX#*7 zhr|Et|NZ~@|2@~}|NHp(CKHjUWyK2v(4p}U0l*A$UOIqlDr~^X&NpC^$eou@tA>Ul zMtY%agIe5Lr~4Vbqu9c8hI2WmPG`%3eR&4XpU$5K5O3xG`C`nk{j&%e*JKg~ZjB)~ z=R>3#w{k1rm+}w(!9Qq!`uwgTs)m&#z&(B@aPLLAcAS=@1Y|VChs> z+zwz_B^L_L_1&+aKkGeUjvc}kKy6JRRQ}8u)q=~Dx$H?LRy^QCd(1DMS{wM$4-`Z6dN<1T>WMV#-&{>djM9Z;^=*na6e#J@Z~+ z*k+ipy@ul#4A!zahLMSq?kXiV3Jp7!obI0vRY<+;x0182-{4<_G1>^{%8QtWNLBepcmda}xZZyYFB z2i83e2*$@HSY{%4_mAaJd=FTczE^qC$`T z^Phhi1L3^LLy$4VyCFLDwiSOXw{k1Lx{`~16oqH}J`M=Dzr4shzk2~p$5@U_VAxi6 znVatki0e29bNhNtVFl40DhQ>X6HM;q1c)R7wsOe*0jRR=pPfIV&Rea`ZH#b`lr_6K5Vmv6K_B9DbH}}2kr6WPa)8vn zt&Ul#Uyb@3lc~`bFwhJ%pJ(?jIM0m&#}zWJiDR1UadE0+$m}~&Iqvcq zIY0ZY*$%P?L?Dt3?6Y0Nj?HX)!4&f@K)X#dlK%S?Sj_%*?YWNz3>gFDp846MUBG5f zkU2HNj}k}#=07t0#drqb0a29G#o$+`uWrxcn@sv!p>w8W$Fh$u{9?tN zIZZn8E~h+VNR#UQR&M3{R7|R2PRg2USix^UesCygIS)kY!WvE^QM4S9etN5~;^i&y}#HdNet ztzX=ZFm)MyMA~4B2oD^*NB~+BMi|LPE!5dQ!(&Nv4#&ch5u#0d2Ol1;}L8Pb<9?X6eOsU(49X;vI;wi&0{SxaI}SJuUJmW=DCET;F819g(r+$A9hBOHgy z4nxbaJhLqBqph~^@H(X76^@DLb4Ht3+9~_4Kzxf4at?>Y5gpDm!df?x8PqPzo^4b8 z*9EM*;dBWFLEaD08~Sx;?>D)}DYV3=h#ccaqA}r>yrq)C@Gq0q#4{5#BInX}lJIi7 z7`!9LK4ZiCLHy}r8rc|p3g^NyY_=RvR(GU8T+c8i(%%BpB^k25diCmqm2u`k9%B9- z7lFFI563|Rzv!IF-ZuwLG|2oe5>TLBHtHX1go%Y^gXF_2<|!TD27OPKKdhuBMj4R<4(o&7~;zcmZ~YF31aM znCC2PXJSji?dM{O%Ev z!6TGR<6*0)8USk|S*V<$b`*$=QJ@6YlJ!|7l+%%L)KvC6;_`G_|~nV z8P-Mw^B;cr!Q9%om0P)$Tltli@$%Px`1%D~++RTH2G^PV%Q*5{Eu{l}j2EBPfh(I= zpYL_9GQo#ya$d62U6||1f{vERRPMWnK6f6M8r8nU=v4qoWCy)|ErJyZgu3p+_A0|Z zL5tKk_0pa8(KV~8J=xoBTav0YYyn%w2FH*50&Q|S(^2O*Im3Kq^YqMGmpiNIiMbEY zA5T46rl-Fk|+Fu}+%%B=>ebm9?Jy);wvmHo{1srC_vn9>PF*e|B?zh{Ak^KfSC$9k zZL+uMjA!iWSr2Ou2mXWuwn89;Y=bEixtkHs>>1TTv<#haT5J_%1Qi0I`cysO{o{t} z{^%1GeKc{KEr>)HU3Tquw2TQ&+rw&8w%9FU$h)-nl3*QB{zBtyPoPxw?AGW2(hmZX zP4jUdvI#=iah|ci22}6v&IzV@(E@<66bLwO_viZPbKX7!U19?q53 zcP*1K*AYt^QT=ff=%VxZR%~Top0^i!8u)t;U^<3k)Cy_Wo3Q7-oE^tl zqd~MJbw*x4@15;76tm8C#6J?2esg_lF|ifBK-*ryv9sQ#g@&=^niJ#>jchRzq{FM}5t-=vnua;Qb)aW#-egj{u-O9#M+_I2QQSr33!Z|V1CNN&@|+%xG&QCHlxRa| zO`Q?kbxcIR(GOi@BRMYix(3W2eLV5Pj8R;XK}L>YkIfADoqB2kNq{My4c#p)C--@@ zBqaTm5xw|sf_4et20Lx{0{^hPQNY%pjhN`_s0iRE0f^V5m~;oy-fSKp`QCNJmc&Iy zm`eyA9oXI9P2g*Q&v4agGOnkbr$j?>cDBZgjSsuNJ)Z$%ABR001fN{v`;5b8l9-4H z0%2)&vmJlP$`-`YxQDaDwX zbG9vY(Ys_wGB(?^$`%IAG_8wfYkQd%8^QfKoB-`!c1<4i6r%jrDpfe&p=q`bV&KA} z&u6>3blu9W+{&%Iry}6c%*ytlTi|>YlK{O#X#+5oNdpiUS z18B#UdMC@w!qo!&0q*)yzg(cSwt`CoJtYd8>lr8b+9M_QXbWqWjAHY}QUTYz&vwep zedQd~ll|nGk-%)C^LA}$7nZ)K!~ka6)eb#@AwE8=IY0mu*i&<&tM=Yz$xQ$Ca~%4VCb}b4%^nhi?u)F8OOCABaGPu^R0Bses7ni;Lz7Y zg7Op*L(U;XaKmK}z*t7cj4JkgZ(}@XB#Y=DVj>g$VYXYO-bMm50<3Pr_7kn59Qs!9 zcnOA;wwb&3oYOP9bt74c0Y}?W|N85%a^4`7&FB=Jb4q#u!#gD%V#xUJe1v@4SEoe# zu?4eizdPP@nF@7eXk%m`i!ktQk`7XdTip%pC(AzN7Weaf_q+28&A8G?Ju=z_xOL0G z5fG`&V|4KN6u`E_mODOta?Nw>F8RG5V?K<)k|i}+oCEj05{@7?2f2?pnVZz0xn#xJ z(mhD_yR`an$wIy$jdh zmvf*Q2qrr*0|Kk{=G1m8xAL1=ES#c6{!s?R%8@k=9Fo7o?Aq_|0@iunm1AFAuL(QX z1Z4I@_$(;}L_3vkLqWG(+sY<@*ddy3VV9F!6YzX&6J?~kWVX8wg!7>$yOsvUyhbbe zz;fM+d7Ovl{e+DN#HtY>b<1at6w?KQxiuQ;l5fC_D$w_9YyvvB%xb7@2UrKJ!XOs@ z2h@98y=3o4JVRUB2Id_GwsBa5vCBBP@j2o4R%4|v*HdN{V}f|Sjj`5R0#bfoneZBu zY`Yt<+0seRi>|Hd*ca_NS?_pmXZW3^BvWJVu*lCz__bEUQ9##HN}dp;+S zr@qQ87aQC?opk8e3F3gkM%~HmM{ou-$EGgm;ec9<_!dOwC7El+4gnhYevaW83;8_% zhFPw}DSOC)T7c=1ZB&G-&v83$i$D{!QIENJ4rci&6bDoLjDZz8=yd9wiE-A*G;Xxr z`%Z*vphr0#dN#^E=OXxVaSo)?Ys}`h1dsLz7O$t=V#f3PbiLPM3qou|QFi`4&x9f%SD3i`TO}(SL8t3N=Yt`0k^uAtCe&#gX@8UUoPsiB{H6 z^6Q*4{cnJR#_@YPMm8}tX0(g=uGZUU!fOxhCal~T8Bs)cksk#loyGsi&t0RIuwDZ+ zVCZm^1k6o+>NHwBV#kwgquZUyL~IUaH5|u_engV9$4_tvT51FPE*ELJb8*>=IiCG# z?cH2nVh(Oi#v1X0C#a3*RNtsQQiOXwp6kDjND_jhAiCq)38)AgBaM%3t1NtgFb8B_ zkBY!z-+KfPfPQPm&el4~NjmF2v617Yhs@5W z{%(YHBP-&4?EJe-qrw4ulaCC<;IWa*aN1(*o&xi2n*-&U>O259k`0?C`{i+-2ZnO? z+Z|7>`A#twJXJeVClc{_f)|s$FlOxdSFc}9|G7&T+s>Rz{Q2I+XU-XIFzuX6?NFFV zI$^M2+_HL{V9>T6>~~9OFL8f7iYROIvc-#GO2n4KpeVs+WyhquDfo3h6=(oR%V#b5%#IG@0xAHf$*!Z`x ze@h4c{VoNNo9>q9cL{lWUykE(?6Gg1X5l)2nL5>Xo+)2ZmNhm-7{-f)S4F#oBWh-EQiU0!! zzM%-J@3wFR97*P#Bo6et6aL)JgOG5SYzI=APlMskQ);`DU_=SqLO$eF=434&V+VZ* zLvFV;5a$}~V#@)c#7EvEI)s7Zii14TSR+viyD8?7r-@0}T_;ps$|=SrqmNiIX4s>i zI1vZ{);P?_V<0GD+Z|UuC6S2s*zSY00%p179u5~>`+a$CN6$9s+T(Kr{CWg7#sfGq z#wIdd8-t++P_{QFV*1<7Ox2lQ9t8v$8VgKM1M=-tvgQ~VF!qcaI|td!W#2O=2u4Yb zCmmm{At_=FUZfhPBe9#=!;qQJ5%+27R2Oz%CV;bI$NubRKhNuELX-^6v#(-xtLV>v z{<8(u)3F@GOUUnC+cNrs-^04FN%h4SUt|Q1ec#19bqgTf^1NSF`RudLrlIj&0B2+N z%{aJ$=HIMh^T>=$qS4&S_pKBV=C1-eZ2_PC#aUI7<<-yluYhd@h$@}nngH1@$Fw+a z697~d5zs94hSklV@ikE_TJOufQ(C85Z$LZO8;WUr6IwU!6$@c7s+U;s65#eaXEKvX z0JTh2jpJNBS6?I`u(}olIOAlGlFcml33hVCHakv>O^uNe8cFGAWGLQe)t;FNafnSc zcw}#b4V`bRzY%3{+mGXQvfcZhl2SKH;=E{Y#R^CzvRz_lVrQozb_-gz zn~xjh894L3x__0x7d8^GyhWU6WrtG}9P`1ov|B!p?Eb2u$ zZiB>1+XR&8m6=7zP3-;#w2836oM|De@E!Q>&#`;%3&VM?hmMeRmwo!N**Tt`d!z(q zUgOCFG!P`Bi%GaL`+KyThdU(oHNgDo;?HCt70C$zJI6+M*4fx`t2ZI(>>2Yq5&zoi z3!XI4|Mk~zo-x_i^Vp}S%I#s#Sq_sPBm?%_u3`5`r^6-%?Tc-3kl3UGm7ntF)_8U? zQgm~yKm1)bQU0Z$4^tQc~9nSPa^ZS17>Ip12 zAr=%ISK(d-u3*~$9tt>`)HQz%t*Oc{nlQ0E$Ji^&U2E;YUQ+q0CF!c00P+NFdF)6a zlK?wGaJAFaj>gt?JFv(^S>QQ)TeYyheh{`Rm}P0Blwx>w(pgS5ty=*6t3=NNQd^Qc z8ppb4hp(CB03P$$*7I3X#sP3Ym{*3K?Yz6=VY%)Ea6!TiRsojp7HWIN|693277 zMC5=J?b5EyKa4_1Q3s}{BsKRSO`j%!ehM6Sp9T)?i<6+sJRGMQ?u226H8=SMDuoI< zfgu#_cu3z3IqbUVE$i?7lbJzn%-9DXyv`^W zSh`tyU$$FHnBJCSJvh6cZ(w}}tG-+^TaPx5=DoN3?qN0g^PE#CPF>$;u{xMTpbhlD z_=~^zPVR?OW8^?0a)>jbKhAwGU zAAyKUbPB)>kiV}QVttmZs?=c@&G7=j^KY1Rx!#ayOMP`@)U13w3&1kJiwD^HfvFtD z@;dt$Td}Po8Vs0h*11#3Hs&Il4(}~lSTw3G!`O2hT%Q$?=S;DGzR{la)mCwpA(t-u zCBbciiLJuialM`_aj?U&Mvm+Y6g4JtHr8a)wy5H=YZA<2xtbUi2 zZ?pxdY8FTsS!*Yp(9RK``E)KUkYi+wg%mrbHoWi$0Q_{`q(93)3!QBn<@BhLALeei z$w4~pL-yo7!KPoTSoM)?W*7m{nDg&b#cn1!334Ngd+cC*&zXjl2h21cvb-J#$dyU&)tHEpAC@C>oqBKn8rNL5FrQ9Y)r2@yZM%c>y+OkjIDB{ftY0}NK3Ey(-USpD$UR zMERYv%TiyxhsrdnV#QWweLLFNzJPv=2i71WX!tz~umO}((mbJd8cLKFZzfz3I{_fL-LFvpnrnCSUZ<@!WfI8MC1yZ z_OxwBlc@oSG}%Y8`XW0y4qTiVlPTR}EbSV5yU4XPq=NZ%aCypXZbURlLhZ6kCOikr zPq8bGqhFV?1VBaRkYjh01gFIgL1!#&<;2L?D|u?L$-O7|%XaNOb-W|4>oSj)M#{R| z;Ib14MiPVM&UuI71i}qBzJ7bp}jR2YZC0KNqVeETpbsY!24Zs%;bw*ZZ2)ZrX z(Tb6!cDx;D7|w{wN-nZ5yD79!CAK5^O-!3XAD1+T@kP5H@ucSpsfcN`VMPErEny4& z87~3w`{6xP$xQg}B-oSjVIY}ohddur4SRmxjhpy8B*EKs`iwOdBg`(7glHLvq@CS; zm6Nxuu+|=@9>g2hAAX;i1nDdT-mR4tM8=m(fLptcSp(>YE_=m=CbXQNe@Ot1rFGOt z-^aa>k-SeQD`VTahcVvvH=q4=$}O_OtzZn^%J-|(cC{?#y}w|a7chLKDD&(ej0M0h z$Bvg*QOSUUiUc46j)nl_BaqJpB>{WahpqDjWVVCB$2D3qijhF1jRpKCu+PPGRGr&_ zy&f%DRCoTWwT$P$F>N~7CD5t5ry(%vKE!f{;XT3rwyLUcC0G3A$$||54%?OtDb8xX zV>%L;<~4fHV_@D|u*|G+39^NWrHz!4ug|@|CL7%QvSyFgb71cK$maqS`C1zQwr_|2 zi{JN=zn=hpFv5Z%wqC$}M>GF%@0;tX#wpc>2|?-zP-OBX#^%6p`w zXoxQXrhmaoj6XjVXUxY1I~oWk$_A{r8k6-N#6TX>uFm)a z%Izopy@_neh*p*9{+s zT;^7Oa|>hsR=!{58i-xKZ*5_fTWc$m8($^H6PDJ0^kO`Fe{nqpctE;0CnQek&7dS03a{Zg=<5| zE#shMD6?&PF=+-0N!oCHCKzYV0Ys3j0Z_;@oFbMjEVW%n8SX?t-P!n*I)p>~%orH= z86@q9DxJ2fI|fC8lIj~Zx{zU%gIP-lt^}tNiY=3wWE&Qs_Z{SOW(h=(oz8wuLa@cP zb&WhlQW*^nKqJ$SPm$_-uK59`nmp538>Sw>7f{C}GK&V}eG4PY?lv_P-LxSWd-gNv3fNZ6vzK`C7QN{;tpT2T9^&v9>Y_nU# zTyi6DUw0^Cq?}LgKj#E&OF|c1Hw}r9ZqN^aaVu^p4Y{vJ)}W0UFZL`JSp=m*4!Bl^ zB)bd?4GQzyd*v~wv8{sU*>4ddEHsuTCZTc`^}!tBuwIBiXvO6hBgNJvIU&)BZWZCZ z2zCAxo|i{JJjLJBIZs|5f(0bUaTG_D}RF;=<8D6pdJlOMjav}>REz_C^eiGoMbad+KmP+>HRH52=f`-|Z(- zTLZ%*#wEL-bBwl@282ho@OC4X^L(z;IT>e9ZSCz*nFU>LYpl7A69BCBjVTx`HuoOS zf_|H*A#W$+{wO4Gy*C(dmNEJyTJ}R0C-|-wo{$Ph-0nQqQf`NiW!{Rhg z;dp$npt!8|7IdIm1lp^$-R;DD_TvkKh1(>2c-5WRb+;Z^C^ zs1SJQVrU>_9huanziYYr^)D7T8^h&R{^l2A!rrv<-|u41()SWAAi=AE*d_pU`JL~s zFvC}m)#Jxl0s7(iWas!gPZu!EXRR&QSK!)4g@Ys0mX#&`v)p4y{b0iZ#}1Gp*+SnI z_9)q?UJ(~Y+fvL5UrQH01XygKs!u#96RqDK$mrv`l)1xb>wcpOXAD{c7XW(l2JW8 z+?=7PX8_#qqW_#NzgVP$=70k>*6w%KdP^GuLSPx&sL*o;v@iQ5LHg6d(eiY8||;%7g@`Uot#==2eYTxao~Ai*NJvw<)e>Y&v0-y}`$nauE8mCWVDj@H{4lq%t&o(1MJJ;p zv^MpamvH=P@tuMq2R=Pm8wVJ^o$gz@m)LrS$$VwH$8h>?qvQZ{!Hv|$Xeq6nL&M2- zsxOcpFV(?fc;jCpi&&3zx;?VWjbIXcg?^7VOh|W4cukko~!q|7w=~ilKk0tEm`I5jMEC7jT&!`Nv0jY}N`xL<1>S93Y<5r13 zdbW9^_uWE!?&}YqvCL_LNJzX17%xvDEA6FUkHWZdOmmSiZzZMLg7mvTMVjp~q92`r zGz|4NSzedFS|8cx4>8U?@`LxaeSVI9MFIiC&MuVssJR5RSo6C`V{KTDHg975+CBFe zb7cR60L5UObv(t6K`3xa%5!O-fA(4X@)-ku^t^li@c1zMrT15}|L;OsK)p##?z=DN z`P14F>FSx#c6(*Ibcrtba(nLESIHO5`4tgM+<1+wo%UYa`_eB~td0=KDgS6vuvU~w z25~c?EjIC+H(%!#z!zWqBr~yCF-8=N(gv<)6MRb0`q^inPN1y8GE}q+j;Awas7t z=5Gwi`wL8=KkcFkGd`jng!cFa$I`m>x9fGEbt&wpOBANmY=sMp~x z!L9FF7X~5Xf{}^G-9XyZu5IH2aL3#+$z3JZ7+K#5JR|F|@0Q<%^V?J6Bs<5)qPG#d z3I8X?F>~8KH?k08iJkXrbK8z%Zga1{%G}0q;F)!9KfitEGhUn9R_ya1KaWFt8+p_*VvSnXE4U_B7iJ(vPBnJ;ilZY6<%hm8DZl2)}If#l*VL!AdAO&D?^O zhwg-zj;DOw;{_wJ`hs?cL9zN9z-BUH!QIb^w9i3vE4OkhxAH!V0i&NkFS5LY0Fx6G z#-hU(w}BRzD&LMSK=K&xNPC$l%O#5;EF+5y5rWzWr8M?6~E&x*=00I_6sQ$TS9B}Axl+2JYM4G^XY z#uP9Xpt?)O?_KNmo420SjI3((3;kGvpnv=aO5JFby`AJ|SoU_j?uKundfIjy1b4*hI&ajc3?vkKR=v@uLqvTH1&H z!&Bn>)YnG%Ee3`vH)jufq*?8qK~36tODNomnqbKhziXM3r)_$ zV|B7+)Z(Shz=uuX1*TgH%62f(mMw>HMzpOY1H!y`TwH!Xw=SQg(W#eN|95jz-GKA0 z+{&%I|6;(|oL2yS%BE0w=bE9fT16Huyx29IraIl(dzM9*cO>Vs@K2|py|QTmx>cHI z?_z<9RSFz4gFYQyFoqknt$hxh&0KWVCI`cKK zW5II)bQB=jedmtxo3~2{Fa!1z15B`4Ebv^r$H-8&U;(@4os5Ay0c2LEJ28A{E9L_D z#D03thdukiG0v+rCLJ(&=(}Q6PZiz5`q&JdxR(OJ5!!*PIp)9O6Vmxm`lc^wnu z2Apr@R&M2e7X!|0>*}tYGBj2o8w@1yB8O>VaU;B@Zm+XI0!ooNSg~udVC(&OPvX4} zh*4mq3jhg0_P!D<($u|1LaC$f4@MpRG7FE@*|t!V0sZL1Mw(uL58#4@jO$!P20+-Y z)+?;2vPQlxJ>@-dKrf)ulXZshd5Q&}#ozm9Oa1Dj015gI1`h&9*C*Q0@3&<*vjxaL ze`aeDhLrBc&b2R&9l}WJG4^Z#0l*&X_B==G%V&%qo^f^VcUF+y1-{=Ci1lTs#0o&3 zaq>EzSi9^EMAE zOI}Za&vn%JW7k5HwlU|JH){N8QDEHPF}DGB)P?8$rn${-0NQi={9SXKoq5Peo!fRF zWKL<|#@t5t&gT_LqAzoM3&VAUL4z#Bj`O*_FW9i;Wi{?*>g>lgDx25;l+v|pbDRDm z$=xmn26JKV)R?q5-X}J$F#@d(d5=6k)eZ>l$1Z^ySI4<+2FC)NA0FN$c%3I~TRN5G zcEEwn;4>PE7t)*@Q89`GSAVJMR*Hu(xyuJvE0G7_+WHbuW*f`K?rW2W@AajeTB*3s z4LIM*t=!7{E(V-Uie zx-dp8?)+}|fW@?;fSbd*Q9t;BOW34;Po*Fe=mvN-)wd$eipSL0DP*BLa&3RVR*)7&>0Ee=>N06z2m3rB8 zU_{uut=R+Db^9p+c0P+4h_7E|{Y%dCcoo!Yj9;z+KG43T9XQ6LW85d6nV*}6JjNDA zmxpz`{FUZ5pVNjq-+3O|11G}c+y+Q9x7FYRXK_Ds!hF}dR{)8%Z+p(YXGC@u1qFF_Sn+l#=h@`r3pwsb5Ej9C;oMev|%8R^8c38hrMmDd640r$LMd}5R| zLv>-=Aakqjd8_O)BZYkTz}f0$i-!H=A9cHxTe+3ryz+w|{BUZVc_-OA#x}DR-C=|A zbZ~KAm_HT^NCE}HyyNU#k^)%a9c_ih#|m1?P1r>Hj^s@RYCXQJFX&H;gai`hgNUhb zh3Ex1r>PU4vPQhC30>B=ZF$dASJgPH&U1aA_FSjf^#s@{qwndRFS#SC?SVrX&#tnK z-n|{zQnq{B+Qd4^aU~->HIij0D-ZKky9Xc4`T!~bML23&0ZajY01eJKez-_Ea(7}| zQ$w?ZP-E+qV~q1nf@z;=+GYEP#KXoSZIp&cY^k$u^N+SriOhWfa|e+gdlz8OPj(vs zH1wSV<8wYg{iWH2*=0d4lAtX?>&mz@-W60TQ1!82EG|Ze?lb^ei$y)<+@_sqt1^Dq z@p+uvN?daP9RCr@?yoYp)kw850K0C5_fO63{TG_sj58v8siC8DJEa)$zS6o9`i}dZ zM8mEI4A%kZ@*X(OZQc#cZQeh#-Z6%*&22Y!YVPUWW}G;w>%MxPFy_?}I6vmWrx=JT ztX69iaLP-J7l!9Y-(PHPd3Y|E%+&H%!4(rql5>|{y8 z+S=cfR0D?<3fnL5J7eLk+{&%|dX^vj;PV-JNdY8_j(UCrQede7HfD(PUIbiFl5t7x zu`l{ZgPjEcb}j*IycdcgnNHcx8wU4$L}fUi09<}oglYY zZ0D3!$XcQd_>2XdY%tH(UR)ES18E=&B4!b?BFT29zaOmFjkx^5G(3h4yE^xC?u zW6Z`fI&v65cA*)gUaPEDLkqp@5LJVL<>)IHA& z?XI#C`{zNt`(o`_IF5RW3Rf%SCWcYucz-xfRBP(^btk5RY#)LiNs!Ir)fH6^R?7`J+?M=jVEK(BxdFjt@iCa@g90LNA!WBA<){WgZL zjh01Mb(UPij&txiUJyI9HQ}%TPXHV38^E3>CDZ5S7(%xl*H;+9qjM+MSjW^k*KOMD zUF$Y&VMP;O=(?@oo3MaKndi}|i?(Ckp7ECt>$YnBJ^BZJRu?fq`-|h%5HWuzJI~t9 zq#-K{+83b5SoP0++^N(^v<2NbkN_FqqL1{BZXmZ^FE|~x!>t@cP(?^$gnXq3^D%H@lGF38`UKWdv$;eN4 zj(9yCW~^{cvobveWJT8CWoz-FkFiEK*^*-G2uq3qX;v~Z{OoUQlwSpe{p_>PW*z?g z&;PuAmj%XLS?yc7mEYuI^BU*iU)S>b)qQ3`#X$wY>yZXt&+p4=$zSZY&|BPmwh94c zM;V&3m(z3J7L@1f6L!stzhhr7TFU#_uCztY-m|=ud6!!8dRl~suQEvo^&ouJPk;K; zd~YjQ1wdJuJ8#d-ChuQ+*XvqgW#89OSCwpGZ=?oR-7Mq^I%?JucUt=D1&hWS2H@fO zygm=vRZN!(Bx9n2A}oZDHB~ znylLxJ2)``*m!2ffEC@2-y=I9ec|nTmmm);;EsBC32M29t=nY7bD-y;=P={Dx=Rf~40X@4OoDV4FUOYq1ZFXcv_NlVsM`qsU>_a$&>X(^8=k~+fchBuq3p&i5CEYt*znr%ewXTT^4&5vu5o%E%3Z8D#xw1 zU-r7jUa19mE4OkhZ5qfn&onB~uT%Nz>o=)M_4jOP3N=10+m~c@GvL8{(FzMIyKneW z*m<@%=k{^z)bTfqi!L5!&av+6nA+~``qew&c)M{I*?k}0Mpl!(8Y?q zk8Sa@YuNi7@M2&@tCKWpnKw>!N7)BExKfCkF|-J!~Mw#)n0mxQm#-fRd8A zc&g(rad2&|<2YOYSobt8H2{pTR@B|D!2lfJh?_&^PLYjs?9p$~C<0d-Fi zHjp-^&l!LA-PbXn3p=Y)#%}V$GHt?{6*%r z*Z-3D<=L%$m9$iX)NmE=pyS-uIL*ho&9m6tR_T|BTX8sMddb&RL4YE1lE zua_;gvcNx>4}F@s%I{`}>kCk~g>>@y^*u$V)ss4yRpGjq3PwJy>HYo1akjcxJHdhw zj_I#ke(Se>>js){^7pxYGzAxS(nH!!Y;q{DoVE61LM|kqs zsw73ISh=3c8?9xvL2Zq*2rJV#nI>ac4{RF?v$FZRZGO~m(ymI%D0}Q{*!Cjw0l%}2 zOWUf07vm9Gg|h1qJ}lm|uQrcnWuW#=uy_zk)DejzTja<(47^xj*Vy~m*KK3G|Z;T2k1w@C~ZkyX^U%f+X~mQ zpE|cSJQ}+I$GNR-`d69T4!|#0=Qi!mHR*#EzcaUCy8XK46nLE5?)3V>GI!oJw^e$i zV;cgNxdWSDyN%c9_E9pWbDO^Mx&63|N9y%*Zh!C+IPxCC2@2OvxV!KYZwW!;gyk{%g!6_Hb(hwqVJ1>B- z1zfS^h|gGnY#nBC!m;eQU{hEKSfDlj@O*#C7N~BA+B?-2L3@v`i{sI8spkR(cz+uU z;5FHw0SRBk$I=!6lB44eb+UWFX3cddp83N_aG-3F0v$jyYmjR!y}-;84T1$(b=1g2 zXfKT`%=5B7!Zva(tA^k6EZf*44S^HdxO#ie z!0V?|Zo5p2DlOVmZj%uA5G#gCy?AVhx z@UJ3{GmHn@R)3xAsH4xV+{&%IEcV{`b&FtQhO=!i@?PWJh2yd=xJF7S=>Q8^N zHn+Y5l(4uuFsrR!-GZ+O3)}MU)UayYOGDl9j)rL?ZY#i;_p=pWNGst2?|8PGl|5t| zcV?jtX&v`tar74r2%%uVnj$v)rvCG(=?I`Oue>)L07AMPnRP+k(5BF2D^N<_pn68-C#3_DS z!qOQ4CzB$E4J4Zx5dbHE9BoCL=Wa+}9a1p_m}k24pj-U3tBnQbw%7HPSc~~by7OtI z#I*r#%t6kl|8)HPB6FLF65lqr*%49+t+ge)BPE@9m2E)3R#>^Q$Y$+2%x!$vw0)V| z%uRKkreD}mJkISIJ6p8pI=4LvTS=OT_R_-$Wvn6tW-dVntFyB|^Xu#3=$1f&)W zE;>v__g3MV0(A}`4;w?JYa&z%L##R~W&_xCNW`!_iu>*5gVceSCKJFX&d3Ml#Y^WR zaJS#lM)`nxKjG-?Inb-wGuW1s)r}YCFI(8MxRqPEm3J4LYrk%cvq?36KC^3$O!ff7 z1c`t~(zd%_#d{VltvYfUU}MYC-nG6>>N1HQz9z=507TiIR(6+nr`5%F!T>O1l&3ii zBMg&$j#di4cHbo?LGh&^>7eWETC?s!uTSOVDZ;z7YeBDIqlvKR0*x- zi#GBGE4r<%G6mKS2PzkdgmKPi;Cu`c^v)1XFlh#W%}`=7R!6J~iFZ!jrDh_e-O=P0 z5ZxA;g2sd{E%{xJmE*dN#+qYUx3^^{qvR6+E&w6`Q@5_|Z`N&NPLU=8oDJ}zcc*TE zEiwiIbm()|?HOq+)_J=I;6?$tkBhdjivVslt`yYU@m5c}rryuvl~)>hH2{th0ouRV zX%B;_hAxq0uFY)>soLcrE%Z9Kjp);z29H7hs#Uz@zVsFSM;-~A+a#}HZZjsnZEiEx z8Dnm!ym~RW84s_-nRq1wbZ+}@2Jb*5w9GH&HqTV;@8kKiXT#&?f!U68JDK!%%x(Gv z84^2rdd_ift1*p%?1`lM%LFJ^coC@c9^SzE!gPS$rw$9Yv8N*2U1No$N zkMoC|;2KyQ&s=NuJJCHW#lKpe6@OG&1lWo937l~Z#A(MGe>$a%zn<<=x3zBNR&M2b z`E?BaIDzxezgid*Ws2=R3R?+Sfeo_HltJg^ZUE8V1oqw}g|EI7bvIAhMF15cGXZy2 z$4aJg$?RY-d$xGN(9Lb%R#^slC-LsJXHlTzVZSajmF_Ww7KJv^?OE6+o~>kjebFZZ z1guTI_~MIs{wJS&Ji)8BnT`w9ECRTQfMEp&AF$}z;0mDq?(hE2^LzbgOS{@)YikNy zzxsSIc{t_4dTo8n_0GOG&~s$vJ(O1IKZQ>h39+Hu`x8=m{qSDee=^i_d;56K8)no%cukKOR~ zJdB?LRs{x+?Sa(7b>w~G6?R^bpK`3n3V)bD*XDy6DXsSfi!guQHMcGHJAJ55c+}6p z`n9=j?M_=8Q2g}M&lcd1ljJwe?S7cs)J@-0%*Gz2D8bO&jUlo?3i65#apz_%;WVKjc1B z#j16|mX}XFxA^Qrs`JqhDKw51Du?y1fSQ3oMHvv4BR%2|KG)}7wg)(dYaL&Vs$Ich z!y55@We&7D8PMmS>T|w}Yok@Vm0P)$wb*?Ab&_c?PYslQEeR$x4yqLvPv$o73>>I= z7ZOSeUElDVB)~)>r$FMgZ3|1N;9C7tVDMmxc+XQWU7(ReC^)vlyO#BV1<68g89QW) zAMBSNui(UrzW3Q71X$U1N=NyW_u>7|+TvdRAHHx(V@+sdjX7+EV`&@P)@GZZ_T^a# zjmCnHFAY)Swcm;+3SHO%^TTsxJVvUY+oKd#%1Hy=+=xo#`y zV10hMZad(Fd1I~Db(=l`G_%&u``MQIsCAq6{HArAu?Krj{j7ZqIMq%=>5ct3cl08y zy-7|iqIAm_4U1x6J%iKQh2)t`%gac)B-I|h5bhNDvl04BldOn_>4 z*rT)TlM>iJECWxisN8aSau4C$wz$0XTx38X^q(DIFXHEOcv1C@fa{fYM)S%8x^XJe ziB4S2UpGeT7cKUj7Guy}rZq8cb|t zKprQng>xBeqOE^Kxlq9K^<>j4ZMPClQ!hM0)Z=_cqAb~cZCztq-#%mg<=N>=b%J8O zba1vOD+g$^cG2|6bL?3E2hiYHTemp|=Pt(ThX!b(?X1m>31|E;o;2df(fC7RX*)ot zU|W5hR0hLq>oz)Dp5OjiKYkdgpRKKl;Y**=X7~&s1(-Tm8#}|Vg;tw+sq@dr-M;u@ zsb-nq^|>)biO-5_u_7u~TMKU!B|T>|Aqz-7()eIpy58vH)jwxKNFo6`T?f*&DmVLm+Ce0a)8^H2l}`pbS>d zx2=qc@SpGT#wLwjv$aJB`1J5Lb=NhyeH#J|O zAb;1}Vri_>*Iz&SV*j*;;)6Ycs4-w@AXWja85BgJ&|T1C6;D||`t)erIOBOY*E?8W z+DrAFJma+;N_DK_+B$}KF4|R{0%`lXZrgVA^RpF$dusSK9U1Jm0br-hAnJ@9foLu4 z*xE6^ZjUAG>(^g-!Way9Je|qj*K$69f#?tI7sdWru$7`R54$ z(9XK^+n#ZO&+-1RUCsRf5>LpyP(0x^A;BUIYkmtdUUkrH%!TrG0Vu z<5`ZttlE5A*6n1VgZ)1GB3-K=fC>YS^_($ZJJcSLg0ai9IWT^F(Vn^U5&#;&27?bs zoMX+#s>o4PDq%@;KAz5wrSZkErC+!ob6X>3(0<3cO<${gLi*WvO)Q^%sifGlm=?0oVTV;OyH`I$w$!t@Mks!^daTxeajR zzSrjV7?m-QdC+8TFt=wP|AKQ{fw|7@F^+S)jApPIQDW#@$V+l%1eVu?ptu> zkmiHI8v30E%R&eNA7dqc#B!=o- ztYS^#+EyfTegk8o%aRI^E>}&2i6+nOoQVgHO@p~Li?($7+c@0cR1gv23L2y_j{M8t*qbxAl9U3)kniMzXlOuWX^TJ#!nDo_gxsJ{n^B zp47R`JIAwL`*Sk4RceC~N?mogpq?jog6uyq&b|AjGC?(408DbifC7ug zA^~&B_qy$Eh4j0e$9F2zV3G4CDdHlf5!qaI3=1jRLY_e*5U?Jp7ST%Gn@oE>9o2nt zb+(VNSFBUE_IdJ;kq&LOWn7UIsHaLPRPMkUiGvY<6WzG|ZS7{@SmP`k%eG(KFoK0N z(4&Bh``TKop~|f8Cbz7RUaywL9?7JFMB5U-mk@Fe#wu~xlYmZirV5M}c23r9m(R?W z$+4`uQSZx&&7FWoQl~TSN`5gGc@gtqW`T>kdE59{ev-Osf6#hgwdTnkiU|pH!iV4mq3V?NPYa$<>J;$fWL6~FU$J*7hnAacYvvg4!F!q?+ z{wy`Oi%hMtswDBXx&4B1rgJS`UTq&V$p!9>K{67KL94>c+KR`c9H~F+y_{UgU_|FJ zX>uD-=zibsDuCSLC1eka)#9CSnVy~K$*j(F1dW@6etbWpYTU}L+{*W?jN0mTho%C{ z%0#g>$?v@XNKbt9jK|SgnN6e|1x)Jw$3ktO!jn|B$h39I1=<%W90lwB>i~oMJ}n>x zogoV}tm>3~1akvGVH;E#T1uDa;JRdZqm8(SuN%b_PawheZU72n%kHMpP+`hoMP1{2 ziaywL@kBHFFx$0QCUZpczS?u0QlQTIH{}?~0PYEXEZ#4Rt`%#;xvsr^SPZBH5v?Qx z$WQ<`Y8a70(ubL^+k_>v;*qGTJt2x<*Ct2}Cp+rq;KJicd;eG5-=oHvF|FW^HJx>v z=L4|LfB>0|&F6!GecBbqUlV~)Kb-b32JL%76=IaY+;UFsemgD!?0Mfji6f!U4^QaQ z7VI-|$0*Vb;HgZux6i{e*8!`HFMbDyd@y$eMn-Z_zpiq+YdM##i&WJ07h(Ge?^bm-VKBiIsJw%YVX)f^)~p3Wx-c=lQ%gI9mX56r4LM`qmlkNXPHJ#f z_#pT6egBNJO+x7ZTe+26`OPdp{NWF00u?Gl^`;gwZwTcA5 zS^>~ga1GevI_}(biMq8JE7i|GO@PG$rmUrFH+>O&lk3b=E&8(EN}JnH+ghH$%ofaG z`vIT@%6u{P_AdrXwX85zu(h_Z_N{c6>eL1h)ZK(G@6X(y0I8li^bloO-$#LDLEiovF%Aj%qc8@uabsez&=53|UHh>PmS=Vhh z8dPe+S`XIn@$AVmNCE_CWegOE>jBt4Sd!e(eq2{&BYci-+0VH&Vu{y+etM-R+$e! z{Ah+SQcFdxGW%x$)CP(t1entHSw{wl#`n~P$s4Kkc4p-$d;UI)b%dqc{?kAG({?Mj zax1^Ng&nWc>1BpMwsULS@tgn(ume+Si61OQ*QpnS^v;B3ZuLw5MK1eW35Z_gfb5xf7>B1xcK zp3k$zH$iOO8)i7SU~P5S`m&qZ5{LkZsK=$@D3!o8wzr$eY5=(->RoJF>?Vws+tG~; z%`sx3z0CE>>f|h4wds^K2mq#E08XEN`iUp*i1EVl=uBo`4v!OklBfZFUOOEAHg_nq z^vzK{2PC5+5|E?8!g_5Xsj*L|GiRLT?XqXPPY0_B96!uDSv~CWW<&&Imkn4w_seI` zV~cig(!T%j0%Ow+HUtchY?_>kUL`53w?3i(=spG@rE;e2fo+X%;6bxCHmDI z_x1p?cV|y3V#n^6%OWS(1;AQy#<2nv%y}1Vu6_3?EH@yUu`+~xCYp}559cu7XHt%* zr<5Duu>177GH$vy*BRH#Qzhn5X~u~0H+NWGhaTRd@jN~HcnlQ)GA7ywW8B-|Ji)pr zz`2{}`#Wn7;?(1vQ_iPzg76v2@NI=@{NWFNI1ND$|MxKKZ=e6*^Ur2IGm4IprP0@? z=X%|L{E>tpZn=}?^TNlEji-l42irFGd<=ik(9C;W=*N^3J-6zjnV)sp*PXQq%KP2y zpAUjCc81#x&ld?$=p4-yqe#59+EOwQs-C_Y#zVI%c(M6){a9ie5-6N)4h6MX3jlEj zv014P&tThMe5J$gGI?20U|q0A)OvrP#e%;Rc>7jvk8$$A-m#}V zM!nQYGpkY#E4J9;2#90=fIHvS&!3U#z<1|fPmpB`)aM_6*#6-6e{XJ=8-V`eiyuz_ z@!}0R1Ox}La!j&%oa^(f?^ys^9b3l2%T&*Dp)1n5^;*inJ1L_8yUs!HJc0E-^78Q* zFHSk$T93s*=+u3b1VWt^c}9KS768!}{jIN23XaFo_WbT^oIiu=ZIxBmKGSgm_;*l< zY|#OHwoN>=0m8AX17R6!4*r5UzZ6SKnTaGU;f0)Me;7#BBrAZt+26f1xiuEH7vn2s z8K(kJL}gf5>5vn^q7E@QylKKYFRsmTCjses?N%WqZ648N0DPCRuwC$3OOV)b9(oiVYSF|T7!t+29Kw~`V z&WM%VMZk!(W;Ndo1K6=kfRS)-x@nWKym>pv*k2kcYh&%QFKls+-&5t};F^%EW^nxU zr(foI)@~!n*!yRI|Mk}%qx|tJ4`GaNoV^b?hdD~=Kz01B1o- z`s0u9SK!QxmxpdL5bWZqagr^L?XWea>;^YlJ&~dGA0!LR!;3*{DBlu&0Ekr|L_FuI zbqQdfP9_`7ge*qZP>*Yx+xJ;~8|%aO$~Lp*cPqE@>sW3EV-?)s##@&DibR{F}+ZU7vAh{A8e z;_5Rdp#BC>>}{bK#sLh7)z=PZn>G4?v)F(R42CVY&6DMhMSKCotr&ByFP}}2vO9oD z=2?Eu#oV@;w=S$El9|$z=fZyh(8jZFu#PJT^@nh6DbX41SoEn@-6MOM{r~*G$qHXq z2RP>4P{usKEo|=5&@u4-bn*V302EeN)_RvKJfC|Bo$BMB4Eh$Vwq4fR&ZwDBpvH)E4Iq4E)o&t;z4_~<=jMJwjHJk*M%$Za4;cp+_CeSqS zHx2NRVC3%qZ1=srk#}&9XQTaa!kl{hR@p62VT_ywXg|&KdV+cDM+4-xi(xX5XY(Uv z8~9OVvY=-J>i=%lI+wxGApYJ-^PqI!RhIdUUG>Qh1=P2N8W%vHz9Apxxrk4 zCtxqh6~P;TB3wWkWH*2YP*s`XZVdfA)o11&RauzsA!eo=f{KiAcl)UQo~k`lRp2h& zL!WD2`tH-ar+Ikx{^8z@w!Qk~&7CU zl{eXjx0UBbYaU?+=5IV-i-`MNR-v&Kn@?Y&@M_k72+aUtL2>X9ozEJ6Edl9sx;^mf)t_!* zXKOP%*#2W&Du0zFFIw-ech^tta)tP%(YyXweg7ZlRaW8qd*AWGX?z$7_@qB3XoPLn z3qUvz<%one>efIo=1Ga)na8T>>%8k0sPeGzSHJv)e0?!YeD&L}a#x#<^Tc-lXl`v( zqi$QCGI+yCkS$>?l#SY+&AFYdwxeYiw3eQrODvtyQZ0Gkf%cl9f82)NCRz*oVlI%r z1)$*rd~Sqs-~_;%pS^%NtjAfmpp^h57LaddJu6Fh8$N9<46EZqfF=XxIC!}fH(I6q zkXz)g;AH(XT?wn9TYCX)7WlqxuuiVo_$}HEN>JY-sv35pReokwT(j*4%jH(Sj%5ou zEez&^BWv8%I#{QG>ilpXINPpMxm6KdRy?0nPO|DVuNd_MO%t?H3Cry%tc%;?01)8a z!jvn=R_nL1q9%h935o^$44XxEg|F=3%AyZVI|66gg-5$X$;G&U#n!mKk#>`!@}M6$ zE_=xS4Ga9OQE^J{b}z~TIhheuysuh%t@_at036SHem!^i&GSoyt@ftgoEj8kNm|ui zLBA>mX61c#pCD8X16lvY$3<_T)NmO2bGF;k>d+wW+X22i_v&-Hso;922%U~VF4%GN z-HIiBsbh}hb7(kZt=CN|!*H!=H*eRUdTVMYlNXXA7HN0IS7ZEYq4K# z-m5w5#-g%*_ucoo@ax4^9S6bXTND#NyNSZwZ9G(|t>M4?#b4ODlK=D7SDvR7@CE1` zYSAlD0fT2rYw$#+Xaywaxe9g6?Q>~qc{T{zMmg5^HvE}v}evUz$)i&pg9yV z?7l42VclcIt#E)h#wXq%Zfa+swd9)Lkn2BK&F`L+JH;*9!)YvDYk*e<-DopY2DT_) zw4v`b`3?`pHWUjeyA{yn6moT{5)76mtBr%J5LGD;7~W)`Mn5)-v;UL%nss}vT^*yS zgjb9n%99%$T;WLzbub=Eu{-7Yg=AKo+%NX+O~nB@h3xbI;CVd{yFHjIZg1~KcXXJf z0d~z^pny$V^G2ruGbh^vqdP#irYXF2V%EY)xObmdXk+m_+z*~g^8w}-#q@a#X-bu7c8C; z&qX>9sy|h@w2Bg>g-?@4dU~zvI`~-Cv|xSv^FRMHbKCh9Ky%yAe^^`!)Q)^*{K<74 z9>%)V{W*zZuG>mrJ;1}}LeO#b((g3 z)AAm948T`t%(hY%3RuS(p#+HKt2*CpVL|VGDF*m2pJc%7C_%GLXQLqgqL_(%+ zbw?z@Ee=Q4p~fxfwA$G2ouU*&0D8!`Z*{mceSu3Us4lC;#uVd5jGL7XT4MO34NWFX z&7Z)U31~y+;Jo|TDvLdgz@BJ%SwVl)baZZ1%F6@ACDC#`oF5VkV;*+biJs;z$_~D0U9o9TSt$-VxYuC{NjZ0+(ms0!p-?G4>bCwT++6LYtyM00$ zsDpd#I0;(;F-LN!WSxKi?314vr+HnA{@`x#j`|HzFXG?2Uly_E!ieo`db$;cwlyHY zVxTXm7ejvFJ3HtI(1>z&3Y{&POqIKF9hm1_99WYV^4J0Vo|bED*R}-r&a(yTZve|_ z0N8dweu*t;c+_wOqB$_9ezU|Orn206o8llN7SsP%6%d`-S@m&dEwxuPIMqf+`wu$1?ax);nl9vW<0(1L2EUDmzGY6W- zt%QODd;l(Xi*ofy12V*WOVAw{B*W706o7`-M`Kd|b4Lc?4WE|rkffFW zz+lbjsCs}69>4}}azO(>K~v%xF?hH zl?|FtYt)WVa>P092$++~(N{$70b4Go!4ExKcA@B@p0?|=_*pf0??KyYd)om* zSix^^2F!?yea#QSV=n)h7onU}mjug2pDU*qTGzX~XL~=+ep>T(;N0oOkpu12C{5sK z7&HnBs23<0b^wO_MKaMETaQ`^a97y8&(`l@Ac+k5@^}1()2CQSYypXAIB)C6`7xjZ zyv}dG{noZa6-58`x4+#1hk4&Jk=pW^lQ_4w1&`^U;t$Dz8U z{HJ~aNY1}0aQ^1&Z)^cPg|~vVlq@*tb3bg?dZfXg^Czsw#xEr9Zf(KRLKA7i_bz-V zzi&QsAMDVz7qboEHhG*0Mwg@*w6pv|)_07tu0q;#PC0GoP&Mj})fAz)|0Eu`MH zr=kqlNvRS;0h!teWhO~ydhwZtHDRl_WZ%Hf4a!Unlk^NBAa`1d6K&og0?;ye?IH=T z^_dpRAr2wl#CvWvb!rPPJfpd-+sM)1dBTXYz>^7M8kcD=r7C1+7%AEuRM*o|UPa9P z9UX{+G7U?;bB!NT;HF?-EU=)&^iXo)1`;6CUDvhDTQAHpm@}{w!58l!%on_Dv@ifz zpWaHX)_e>vQvd9voMER(=SDsAVRenT9ktt1^8w3ZUejPS=9nVtB2*-RzeSVW0cW>} zxQn=FL+C|zJEwwDACnLWF9N&;!Jyg;-4po(^~3FlUJv1r9U9n^h+*!UQX3p~TZbdd z3TrMW(#q7@%bJb;uRLeH|5)JsW{V{5@1FxFe13lJSciGECcJ%yHrr`-4rh9lbn(z;PujKY^ zdaZrq7ZKq)h`dfd|HoX%R!`upVFXdy#8 z>;YFdj`NF`uhQ4BN(yrx=12sBdKumT+}Pj;rS(D^6vz3N@|M8`8bV9s@HRMtpM0Wc zFaB>X+zeJ4^&`*@P=f-k1+rS>J|#mx20&@U{8jgSJ*eLRxcnWCmKNLH3xj5%G?&c7 z!QLshmHi&_C}T>aw)5`>=oddYnEes1!3glOMU2OUbBqh7svH#t3jp-;kER zg-vlG;JdKW(qsol^6x%^P?bRfWGT0E_P6#M^+OBHk!@V#(2PtgJYBSGGcG^Y^HW&m z`&NFE0sIyKsmM1u$})~Q07HRd6<3{kYS}j!)MBm2CxFpHv<+CAEuU62pC0+zp*#4O z7WYiSbU-nI50^1{{k?Zs_B^b?stbINiA&5agw zexGH}<>c>Fgt2c@U58J~kJGL;&uUgX$q4Ri;f;TXc4;~J;-oYBGRq&9og;a(+>gd; zy+`l!7@XSVTKlHpUi17Q_v}lZ$|nc?sALVt`G{Z&4?#7d-`Fk{3=?`OXvRXzyL5U&O+$Cul>RY{4~%u0KwOKtXdCI}FbPz*I!PW~zqEQljL^-mL)A(ZGiS`8D!17j)2tmuVd-@FR zCYaJlV-!|?l^qTQqCNE)b7dCofM6w{Kr~v@;O0(JK9b4}<}x@716O zdwJg6JxT#jrnwl9-PZJCQvKLD+4??0Oxs*a^)5QBQ-_R75}fDNf~=GRqWPR3Jj^*d zEHGEDM?nWlFx%lqFcig;j{$w=98vWetk7JqkU#EQT0!A38HM{f$nQ2nciWkQ&GSPr zo+Tm`^3DSy3j%!OEC`fo!L!Rc);?>LO+cj^cawT+Wqwt|N zeGncrU_sVHDzhe`zkx=;CUAczT-s1rM!gUX3l?V#9JXK^2QVg#SF!k_ET}x*fe%wy ztJQ)4b31~dyceg-`D*g|tMS4pBg|+AY0dZA(LDkjSZMg(Zn2I}rGCJd>rkF1WH}ns z&(GGTdR3iv_2lvuPVi59PNwp=UHY*&OoAHgJC=jXa&+;%S$1;;hjPoo-?A^;(ba|J zTJ;~5owjRht|Q7`?J2`z%Vp)Z9m>6H!xG#qv$_9qJvt}Vrt-=DdzMSa{=xa~+fdAR z`qy87Jx-=m8F#-O^xbRyp&JXEr>l!V9Y?aLc-lVY>A#b0^0x_{72Z62Oj?TFxV>Dh2{^KyiFle|!4uY0l#{ z)_a0k=iryp=KZawMHm&gxknA74`Dzh8WDC~^nQB5kUmVTnV!n}yk>v2F%*UZO&1>7 zto?AVt#2_mZt0~6Mu(MnopJK@dmSP~U$yiJ|H8u?=3ccxKaB{EgCA!!IEc~4 z`!PUVg>LOh`b`GqLH+rmkrAIDja%@6u=l@Q%m!(W1I5 z+vUF(Km3q@7r+^F6TT}KT<2T?_#g-07#8$`l~gBfwL;&=Vdn%l?fz?R#v1sLA|bj5-Fa4<3Z5?jyfK-n66P0%eICSREj;@Rs)|F46%kl8tXEqmSyNbjTFtbGEg4iOZ)TWp2K`?HHNPI1agSOY*5 zKrTW1!#Tr{Z&NUwCkW&gW8M^yNCS9BLAH)TJFF%J^7Oy-AKm-VCoQeuJLA5dWlM@j zD4rR;FzV_~74BuZ3Chaahl7f6(Wq@@^x9AeUcJ1hU55*Jm5MrTTx>89wjK(R43sFP ztSOFLw{2*D7*jFtpq`qyQ_>_Uu?&1$D?{uYi51`)hF4ZBF_*#Fh4sCQtnOc^FY4zb zaJGiQc7TMX_fi<&KJZS9LoA5@%@a5>0O-cn0-X6{a@WEm>R(Olw?hT>J{Ax-`4$>% ztS!LWjC_k45};f)N0H>+@D>zbGf1tgtZK6*=lFR!0KEkgnj9_M+u?gWyO%X#9XyT< z3pXwP`-Q&hKm{GZ!u;Ip%CoPp3}ro1EckDJ=XK8?Ut>8~iFlntQ|Y$7ERJ$Hkny!N z=Q2FLPFTc`-$8nhE$8)qaNKs+(vk!YlMK8-yL_+J{d(K?*Y?GId1UBgd>yy(@PHh@ zN%{68%TnJJ>1b@@_wn5-n}Vr4wXO^9vuEik!xpLl&X~+~&cvY~IPq66L74k6r|LWE z$)^HFo%4iy`F&O^%#w9&RA~RZKp@uS|RYCD^ zIrId`*Tw-X((o>DG{*oiqb$QjCj*Q4dwL7xR6$wPg~m##Jj4Phm)=2#+JvqhgeEu)t$$jI9= zXq)=?HidCsmf<@r$|$FeKch@t(hK0O7Y8u0gK?mmm=e;5_SB#rsldj0Fn9?8Ma|kV z%DYiLRSA8#_kb+u1NMB%Y>~SN+y-oQ|4`BY;4|8S5uIZWSz6K>wl#qJvJ3$}coIxL zwm2o@&cLMt_=g%7;cY_erS%0(=llRmy^pc=?9l;r{H!qtL2>NVKT=8FO3|`imGhco z2lv!y3VMpkQJgXaOR@)2sS4qsw6E_y1C}64p;O(Sn@djKwPQmDWE~?u59hiJT_)J4 z`9l9ibUiGZe9#Vb3UqMzwgZsWi4}troMM}FV-P6-#{Zc3QPG9W^0>DIF9=#2G)92o z?6`3N2HrT}eh%7+3F`SXOYdht`^2dy(htB1QzZC*?`fF0YjKu*hoARk3q(}9nABx= zk3Z){xbR5b>+~Jqvky0$FGgL)bX%pJb?tLKJdv@kZK%h-ZmdX5G!tGxr+Z%J2{=U> z_0v8rEV$fWGq~SBUowMbrFWUy{6Ic(AmgE|Rktfx&B4l4ma*Rew2gBc&AeUbKd!6huLogWQJk zG+I33=^8v-(BY$)hmAkE05JPm8cRFoNi3Yc=u`h7S6iLtE)EwB z;GX7@#Q^y0)?C~5+aR<@vaFc425 zCJvysE_Ap|!iRQQ#sS*6A9)aslPQFXH2{$39Wnz{G3MB#1GfI%KtX*sKG#r)@%x$D ztpJ#0)JC|J!vJF!fb5Hy-KaUOq9>>~MQ<&o8D2H?nI+^4A!#!2M7+}szp zmdm0|o3c~1TyA3+MW5)QzQ_;JqS2l<_Co%^i7wM6+aLW2<>y_53?ifdeEKi`>f?(_ z^lJ^C2tRp^2Sr#xz@_s{y^(aVDIy1O)r4n?1}0}d0Kggu0Iu;!)NNg)#aoc*@K_Yk z0r|ip{O=*HTEHEcLx2kM^_dqhexPT3I;wI@E++FcjQ}WqpZ||1gx8`0e5AwwR!-ZS z3=1*8SLwC@E|t%+9F%(p9!Ks~r9A^3iB8vcbsWkQe5^4Y*_EBk#p%`W75Jb@8`5A0 z^hafsHp-3DMT#;2VoI9>E(pu+7;x9UMT9^ezlS__=~XTV^%=k8w>m>G*Xii*FqXpX77R#9Yb<0>m0K&-P zT@6R8J@IhM}P}kcOyFD5^E$5 zF+zcmR&{dO(9VvOG3bVP(H&rIp&&n*UrzwiqwKI6mk_I`K_Noj@{nW{uM^1hgK&FS zgYK2f!85(2`JC;3daGjfXGgbU8Ql6@)5xdBgQ(k3NKRZhCop zb=Y=ujA&9i=e!DqU*{x*lRrhIP0%$^Pvqf#p6P%oDZ|oxMyB?0STr`^y&Oj^JPGxn zX>DT^L7sy%6#Y_uoIyKt-{`elp=oJELB+da;(Gb{<)5$B0IliiWQj}Nxq&yN1qT&F zqSIH+EZzyEy#J8b=88{A4o7Gql=Qi)iG`e4TqpxG98jln0^-7U}C1h8X!9j@J$ z0?la8Q+OLlPY|a%K+kf;+T=0~H>(fl1chiMSXR^eb#lJ6TIjILE4>eH&Df0@0zsrz zS0r4L^#H=B!Rohe6u>2b5Gw&#ck%Z;max^2gOct>thmA=y~2t|U5$cqa!zY>kCY`q zHUa}lEB9stSd4aZj_^4_D9U$hAlU&OjB1%ithrAw*Z?jZvtCw?n>=)i=bh_1S|yoM z!-@s^Fw#ga_fjFVdyILBJbl+@m5ixz>+Wpzd_?(w-)aoSSOx9I93fofrxs$fEE~RZ z#SJ?LSo4*NgEGN4GZd4%r*}DSBKJeQz_EG&E?T_*~b>mr%!J8X+-#J}m zcxUpxjo>nB$;M?P?aME}eEI3W{L6oPnbdxzR#Gj@+NBdPUIOQSoi02B3b3M4uZ%Si$kMhN~X3Q1&+YC}) zSD!usV@@0CzOI}+L0-$V_kH>Hz_=ZkjVm|jyDUSRxc0K{k1jjccW1?z%O(W|=Hl<_ z8$a^zkGWV*$Sdv~$h^b_ize6Qs1Mb>*PxQYmVIH*^Bvtdduzs#63 zQMPT%vSeM;2XZJDt)&GFzJK9E84_+JQ>>%R8DFQUylz!&35-umag!l0O_zD0GS6Qj zYXmt_fCFrR`r+UwerHNdf*Q2nMiKIYcbxf(_r)bFjV~|jIu6)@w+o-t1|mT>3A&K; zbe$Lc5TMB@0C!IaTzN-JARPS?fkgn|p(LXH{douLC^HO!XbWk@2Zt3|TG4Aja{=`N zKE9JP-s+I8_lerQfLtxOPV8Rbz^R>8>!my{tqzaA|H1nKh@EeY=#{FNgV&t95#nv6 z&lv#ToO*=ufc^u^_OjFgUGHno>pq#YhBkP+KptkKJv%)FhbnOZ(`8WZDdEcQd|n4& z%=~4ouVO#|Zk<)c>2?|zdi>ZhOn@_$`!{Msgn7~jyy z*kuRYbEqX62mFk@-b&NQJI8VY$|H zG)kA9a$U>GwM`V^nnd$>Zf;?=@U1voqP!uNW#kZ}w=g)w!dwffe}3@6hgN_5?qD;>B_Sfc?NsqB!KrjrO`5-`F*4zX^N`%_~Jb1 zSCY+`{;+t851ig*C==3!08!uJcfoHn$oD#8dwz-M=Q701PU#(6c&m&^fb*51>|EbD zjb4Q#E7tg)klai01N<1Dm)&<-`1(=bk2WOv)|e>@#SB#E@o}s)wyTQ3-0nM|Me<^} zQ1#l6ZEM$Mq56&B5#_zspKH90V^4;$jkJ7A*{B-deLsLMERYVO%konPp6_ijGf)tR z0|8zz4+BtR(au0pur^Z&V}1YG#e(zgx8KA(BAH&w6Te?R)e4tUyoR}9%lbp?4MQ9< zURt`wn%f@pMh5#>YQ95cL0CGgozch8PaOc})~w9)NX+4_!VKF&C_N8=x%Fxcg^Y5} z3O&lww{c!vCT?-oPs)F7jzOY86iuZ#&nQz3wE~zzeHex(0DqJXU`zyEu{jk1@(;QJ zKn`5*q0B=Wq=2jf3i$P9Wv!FtwnwHpAGB5;AV7&|<$;A|fHhqy2H-femj&Pnv>^r_ z^IM^yn1wn3mSKzV&H=Y&E&LqAqs1+GqQH*I1LzdHv0t25z1WKdTfVc;MxQi#LUTpQ z-WRthW8AN#Ok+I2;D|bUe=E-toF|NtyvvevMOgpQCfc{)@~w=RTT)qGh4B#!L2~42 zP4WOBWjqDI)z6!V{tQbp_ZRc2918Z6IDlw=r^7Yh0zc%@mU=GD4yL9r=hMJ8z&ShK z33>kfJ)Nx#FS_@Ub2_MiY${MxahEj@U`Vtx+}A;UU(9CS)X@%dm`K*fYws(9aVnV)C51qBY48tjqRoyihI6P`(17 z3%@+H8AtK5Nn2`>#J!vhD`lz+TYmPkK|QEKnSTP9kXPOtU!wX|I}eIUtAm61mF0}` zz^an@4}46Pv8T~O9_UY%Rsn^+lc$WJrp-!&jPFomFH`@T>pJkeN7O^fw4uK;426vCM7wj^9x3Mqm^2IBIv)V|OpcXDJHRCs`)k_p>dAdQu+}>Lg*R;|)b)!ON^Enbe%u-SQitcvG16KvsFhAqcIr4b`Yb-F&p52)* z_+dWjpf^;7G+h8^>%U7IEO6O&AtU~tR--{78ON(Y@r*Vyt8#z}j5-Izl7o|hXaU&l zF#cFh-aK*ueoq74MIS~4Kjv#^Uq?SAx$q9qtXvf}vB`Y7r4rU+NwAFf6Etl51AawS z2}4l;kdmbgo<36fXe7-Z?)ySCzT@E5L$#=rZQj?_u-IBz2*l2uUPPB#lH9t-F$?a{psl|@L&EQ^a3+w!#xZ9S0 zxk_u{DF(ib(GFS8KFMeqqd{gnx1#S@yM;Uq>*#pa^h2I}*c0vpdH#gFQb7x>;XZ|* zkX3yx{&nH+(TWWkt6;TaHP4MWjh=BMiI4_tm z!K==+S{s2vYMxjGBqyU<{)THhKb!*4^ELLK%eQx z11LUtDy^1DZAdqF=8r2)` zjaJ4iUn~T3zOiZ(h?4zcnv3=*L%-Eiez-r%Y;MEKuVIlxnoS1zcg{EZ9``9&JzA3? z@39T}eY9aO<&Ekv)T1?8(rE#qG?%%rq+~kve+H3LU1DO-^0s|`1)x$WgPgbzkM*E_ zHK&F5sO_$eZJEY4>Ya5%-J6X4gyea2@!00H+Ay|T&W{NcTFb>k%czRKT9WmeE!6dn z{{}#e?MnnrQR9FuFqi+HfxDUF?n8MXpKW91DQFjDMSvw}p+4t}Zy!80fa|OOCshHQ z;8vbbETBS{v{E9-hb>sWc6(s`vVUP+jJ)7ROTVsUmE33ncSR-^=-5ieaGAl6_g_g1 zYg#|UT6|v5wOt)@14wW~kR@|Irh|!9$RvU0y5_u@Yji8%jygh#S;H%dm3KWS*tfM7;23~A<_H`Z z1AkPg4bI@vs*DVisU&sdQqO#2iD!nTPdU^czq? z^spentjj|NxjO#4&)q-(W$?@ay7jsXt}()ebKpLv0%3gGuK!XLGbk)@F5$fFSILEM zZOKTlz_HJtf1tmAAzS-TmNz$^ah*T?<$t+6@$YYLZa+3nHLSkolzJ^6jW`g9&TC;U z*W&r0v+#tWodb@z{h7s`ag((Lizxh*!bkI(r1qAy47g!Ilt45V$_7vlYq$IHTWvAX zv^9`OUetg`R}PT22QdNJ- zi_I(D7K(@Tao=KL(o3Tbe*e828GIXfBTqulES+z^{eyj9rh_xX#L>kL!sHyzw*tua z1h-Lr7&ZDR3-g_iJ_!IUJt-8}4#t9v1Up&%Se`ysu{Aw1?6Tou>`i^bKM>(ALU6$6K z6eK_3ra*Dwot2QGkU`BY%l;GB6M$-7ADc*8Y&-tGJm*HfEv=&SZUf2)09x(n_fN5d zV!JoA^X_%31CEH2hqGYdDeHWJI%%q)H%PR%xt@!0?>q9fz79Ucdnr~>)F3lhdL@9W zHpzyu5XvqN<8EPbhIKyYrBk^~)b}k?bVO=|(r{-S^Ex8{g%T7GbmZl<U6$c6^h{+_!0k#z;T~sAcu&?g_cA!0$IE|nG4j5zJ62yvZ-4#y z=l|^sO?wD{qL<$I?6ZIK*Ov$X>$7Lie|0{qHRC=r0q0n)s5r34Tw?&-w5~1V>G6fO zCVkXgiN3;m$BS*7 zzSY5$vW^^FeL6&U`CGZxSXkBStQKfqo$$PG-BKj1z$CFgNm^Ta@tSY~7#9QNS{U$s z4?ud9Io=iqR`WvDsSN!4UIdk2$+axpoZnG|M9ymlyPS4@&orz2LwgEiJJkQ6o-ql! z#jVmC7Q0BJwWB)wJ!!K{WhgJ_TYwDT$214IlkDbp9AvypyGuWi&$V=fi%)X6ez7u? z2}wJ6axNEsoAdU+d$w<*_mL+9K72YTy&u{OUBv$`7iC`eZP&*z4$)U2BaD@jHRRL? zxXtz5%lLdQs}8%R!Xok_<|Zipco){`+u+<`-ol)S!&-VzqYi@J0idE6^6X)uG_XKT z%<}c|+S3|?lj#739Jr*$HuW7AMh^zE9d27QMD_swntRGvwk6vhmTZiX!HQ>TZUHnw z7tjL0dh0+D_m;(@*G2UN^n}@GYm0I+HxvCM`&Apa*9Cw!<}W`K=(LOE@Pg767GgV~ z)r;RO=vUyV2B=T^A^=Q)H;Wv2QJna|C6AXycVZ(@L$0|2{1M#6s2D_3=)DgIRT)$> zC^4`Id8INEKys<`OC zKo-*XvsG&~syd57x4(MH!Jn0oe7q`{=*s8DsH7d~mA>3Js_q59>qrOYT?3%kHc9 z?brbU{>*-~ZfQ{1wk_vN>kDyKa<0aSsaFM{T0CbTVcq$mU6+*H&xoF&SH&i@5UX*cIkWbeaxLR_tOpVGWrL`uL z6P(`1iQtp_7~Hm=KpdeQ^?LvP_bk63f&zl&JhgRc6J+Sw@z4pQaIrYlb28dZF52c( z>!9CXtlLO8!DXh&B`8Ztr@V*sPN%ETrVXVI@X%$lnQ>|HT;(~IW=w~_r>-$wdVguh z*88LKj&O6laa8VW^&84GC7d|6)CFmQ-gPt|i-5dwR-?=C}i0allt z%5moEq=GRO9tyfjW@9CTL0$kSoYG?wr|I}Y>P)OnC*D!kGLnO7%>XQ13yoB0*E<3LQ14lZPE>?nPt}wRx=l+K_ z;)%t8b}9{$_s4!z<)rM4dUyTP rxxTod=HFbl7yhTnv%i}GGp_#!PtUc)pQ&dd00000NkvXXu0mjfMbJ}Y diff --git a/fern/products/docs/pages/getting-started/images/visual-editor-dark.png b/fern/products/docs/pages/getting-started/images/visual-editor-dark.png index ba5f75763ad2b94f1ce51901a790a20b1bb977d2..fcd8ad1c0bbce782669cb2ff060969da786c0d44 100644 GIT binary patch literal 294834 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

    XQ;Ie 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

    0)Q>qObE|?E(1@zOQ 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≻RQPyY8$iNl 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 G6Zv0ou#(jP literal 243439 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 aM*aujGLjV{tLM!C0000

    @@ -108,8 +108,8 @@ description: Meet documentation that is stunning by default, AI-ready, and desig
    - Visual Editor - + Visual Editor +
    Ask Fern diff --git a/footer/check_urls_output.txt b/footer/check_urls_output.txt index ade437da7..3fbbded63 100644 --- a/footer/check_urls_output.txt +++ b/footer/check_urls_output.txt @@ -5,1354 +5,1355 @@ ⚙️ Using 10 workers with 0.1s delay 🔄 Following up to 10 redirects per URL ============================================================ -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview +🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → HOME (step 1) + Chain: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse -🏠 HOME REDIRECT: https://fern-api.docs.buildwithfern.com/learn → HOME (step 1) - Chain: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http -🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview - Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview + Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 Progress: 50/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 -Progress: 100/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 +Progress: 100/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 -Progress: 150/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 +Progress: 150/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 Progress: 200/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 Progress: 250/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 -Progress: 300/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 +Progress: 300/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 Progress: 350/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 Progress: 400/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 -Progress: 450/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 +Progress: 450/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 -Progress: 500/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 +Progress: 500/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 Progress: 550/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 +❌ ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) + Chain: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 Progress: 600/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/quickstart +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/overview Progress: 650/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module -🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase - Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs +🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase + Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/7/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/1/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac Progress: 700/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-api-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/sdk-snippets ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/auto-populate-api-keys -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/http-snippets ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/customize-api-reference-layout ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/write-markdown-in-api-reference -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-webhook-reference -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/audiences +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-websocket-ref -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/server-urls +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/google -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/generate-openrpc-ref ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/fullstory ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/segment ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/support/intercom -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/mixpanel ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/postman ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/cursor +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/analytics/posthog ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/integrations/feature-flags -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab ✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/llms-txt -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/view-markdown 🔄 REDIRECT (2 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/gitlab Progress: 750/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/api-references/endpoint-errors 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview -✅ OK: https://fern-api.docs.buildwithfern.com/learn/docs/developer-tools/vale -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 -Progress: 800/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 +Progress: 800/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/14 -Progress: 850/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 +Progress: 850/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 -Progress: 900/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 +Progress: 900/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 Progress: 950/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/29 -Progress: 1000/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 +Progress: 1000/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 Progress: 1050/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 Progress: 1100/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/22 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 -Progress: 1150/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 +Progress: 1150/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 -Progress: 1200/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/8 +Progress: 1200/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/27 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/1 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/29 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/26 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 Progress: 1250/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/11 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/10 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/16 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/9 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/29 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/20 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/18 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/6 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 Progress: 1300/1308 URLs checked -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/13 -🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate -Progress: 1308/1308 URLs checked 🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke +Progress: 1308/1308 URLs checked +🔄 REDIRECT (1 steps): https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 ============================================================ 📊 SUMMARY ============================================================ Total URLs checked: 1308 -✅ Successful (200): 1307 -🔄 Redirects (working): 1279 +✅ Successful (200): 1304 +🔄 Redirects (working): 1276 🏠 Home page redirects (ERROR): 1 -❌ Failed/Errors: 0 +❌ Failed/Errors: 3 🏠 HOME PAGE REDIRECTS - FLAGGED AS ERRORS (1): ---------------------------------------- @@ -1360,1291 +1361,1295 @@ Total URLs checked: 1308 https://fern-api.docs.buildwithfern.com/learn (step 1) Chain: https://fern-api.docs.buildwithfern.com/learn → https://fern-api.docs.buildwithfern.com/learn/home -🔄 WORKING REDIRECTED URLS (1279): +❌ FAILED URLS (3): +---------------------------------------- +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) +ERROR: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 - HTTPSConnectionPool(host='fern-api.docs.buildwithfern.com', port=443): Read timed out. (read timeout=30) + Chain: https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 + +🔄 WORKING REDIRECTED URLS (1276): ---------------------------------------- -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-an-api-definition → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overview → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/introduction/what-is-the-fern-folder → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/set-up-the-fern-folder (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/multipart (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/http (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/authentication → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/authentication (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/endpoints/sse (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/servers → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/servers (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/parameter-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/parameter-names (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/method-names → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/overlay-customizations → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/overlay-customizations (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/authentication → https://fern-api.docs.buildwithfern.com/learn/fern-definition/authentication (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview (2 steps) - Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/bytes → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/bytes (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/multipart → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/multipart (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/frameworks/fastapi → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/server-frameworks/fastapi (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/extensions/others → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/extensions/others (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/types → https://fern-api.docs.buildwithfern.com/learn/fern-definition/types (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview (2 steps) + Chain: https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/overview https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/webhooks → https://fern-api.docs.buildwithfern.com/learn/fern-definition/webhooks (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/sse → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/sse (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/audiences → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/audiences (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/endpoints/http → https://fern-api.docs.buildwithfern.com/learn/fern-definition/endpoints/http (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/audiences → https://fern-api.docs.buildwithfern.com/learn/fern-definition/audiences (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/sync-specification → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/sync-specification (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/availability → https://fern-api.docs.buildwithfern.com/learn/fern-definition/availability (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/errors (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/openapi/webhooks → https://fern-api.docs.buildwithfern.com/learn/openapi-definition/webhooks (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/examples → https://fern-api.docs.buildwithfern.com/learn/fern-definition/examples (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/websockets → https://fern-api.docs.buildwithfern.com/learn/fern-definition/websockets (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/overview → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/overview (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/imports → https://fern-api.docs.buildwithfern.com/learn/fern-definition/imports (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/packages → https://fern-api.docs.buildwithfern.com/learn/fern-definition/packages (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/errors → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/errors (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/global-headers → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/global-headers (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/overview → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/api-yml/environments → https://fern-api.docs.buildwithfern.com/learn/fern-definition/api-yml/environments (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/language-support → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/depending-on-other-ap-is → https://fern-api.docs.buildwithfern.com/learn/fern-definition/depending-on-other-ap-is (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/customer-showcase → https://fern-api.docs.buildwithfern.com/learn/sdks/customer-showcase (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-definition/fern/export-openapi → https://fern-api.docs.buildwithfern.com/learn/fern-definition/export-openapi (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2025/1/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/12/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/11/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/11/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/10/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/9/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/8/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/5/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/4/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ts/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/changelog/2024/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/6/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/2/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/12/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/12/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2025/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/11/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/9/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/9/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/10/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/7/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/4/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/3/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/2/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/python/2024/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/changelog/2024/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/6/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/5/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/2/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/10/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/11/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/9/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/8/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/5/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/7/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/4/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/12/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/10/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/10/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2024/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/go/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/changelog/2023/11/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/5/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/5/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/4/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/3/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/2/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2025/1/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/11/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/11/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/10/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/10/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/8/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/6/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/csharp/2024/5/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/csharp/changelog/2024/5/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/6/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/5/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/1/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/12/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/12/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2025/2/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/9/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/23 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/java/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/changelog/2024/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/3/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/12/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2025/2/11 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2025/2/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/8/5 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/8/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/9/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/php/2024/10/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/changelog/2024/10/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/7/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/9 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/12 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/5/27 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/5/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/20 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/4/8 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/4/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/1/30 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/1/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/strongly-typed (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/introduction/changelog/ruby/2024/2/15 → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/changelog/2024/2/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/discriminated-unions (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/forward-compatibility (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/registry-publishing (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/multipart-form-data (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/schema-validation (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/method-names → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/customize-method-names (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/schema-validation → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/forward-compatibility → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/discriminated-unions → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/registry-publishing → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/multipart-form-data → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/strongly-typed → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/idempotency-headers → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/configure-idempotency (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/webhook-signature-verification → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/webhook-signature-verification (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/oauth → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/oauth (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/code-snippets (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/custom-code (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/retries (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/server-sent-events (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/merging-apis (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/retries → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/server-sent-events → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/code-snippets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/generate-your-first-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/websockets (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/mcp (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/integration-tests → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/capabilities/integration-tests (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/auto-pagination → https://fern-api.docs.buildwithfern.com/learn/v2/sdks/deep-dives/configure-auto-pagination (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/custom-code → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/merging-apis → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/mcp → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/preview-your-sdk-locally → https://fern-api.docs.buildwithfern.com/learn/sdks/deep-dives/setup-local-sdk-previews (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi (1 steps) -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/capabilities/websockets → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/reference/configuration → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/reference/configuration (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pkgsite → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/go/publishing-as-a-go-module (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase (2 steps) - Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/maven-central → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/java/publishing-to-maven-central (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/pypi → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/python/publishing-to-py-pi (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/rubygems → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/ruby/publishing-to-rubygems (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/npm-type-script → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/typescript/publishing-to-npm (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-a-public-facing-sdk → https://fern-api.docs.buildwithfern.com/learn/sdks/overview/introduction (1 steps) https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/packagist → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/php/publishing-to-packagist (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/project-structure → https://fern-api.docs.buildwithfern.com/learn/docs/customization/project-structure (1 steps) +https://fern-api.docs.buildwithfern.com/learn/sdks/guides/publish-to-package-managers/nuget → https://fern-api.docs.buildwithfern.com/learn/sdks/generators/net/publishing-to-nu-get (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/development → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-locally (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/showcase (2 steps) + Chain: https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/global-configuration → https://fern-api.docs.buildwithfern.com/learn/docs/customization/what-is-docs-yml (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/publish-your-docs → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/publishing-your-docs (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/changelog (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/2/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/4/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2025/1/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/12/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/7/30 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/7/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/10/31 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/10/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/6/25 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/4/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/4/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/product-switching → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/products (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/8/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/2/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/1/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/1/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/11/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/navigation → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/announcements → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/announcement-banner (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/changelog/2024/3/24 → https://fern-api.docs.buildwithfern.com/learn/docs/changelog/2024/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/links-and-redirects → https://fern-api.docs.buildwithfern.com/learn/docs/seo/redirects (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/customizing-slugs → https://fern-api.docs.buildwithfern.com/learn/docs/seo/configuring-slugs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/hiding-content → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/hiding-content (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/pull-request-preview → https://fern-api.docs.buildwithfern.com/learn/docs/preview-publish/previewing-changes-in-a-pr (1 steps) https://fern-api.docs.buildwithfern.com/learn/user-feedback → https://fern-api.docs.buildwithfern.com/learn/docs/user-feedback (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-css-global-js → https://fern-api.docs.buildwithfern.com/learn/docs/customization/custom-css-js (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordions → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordions (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/write-markdown → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/markdown (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/accordion-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/accordion-groups (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/button → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/button (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/search → https://fern-api.docs.buildwithfern.com/learn/docs/customization/search (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/aside → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/aside (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/rbac → https://fern-api.docs.buildwithfern.com/learn/docs/authentication/rbac (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/callouts → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/callouts (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/custom-domain → https://fern-api.docs.buildwithfern.com/learn/docs/getting-started/setting-up-your-domain (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/code-blocks → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/code-blocks (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/embed → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/embed (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/request-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/request-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/overview → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/overview (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/response-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/response-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/card-groups → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/card-groups (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/schema-snippet → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/schema-snippet (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/cards → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/cards (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/frames → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/frames (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/building-and-customizing-your-docs/versioning → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/versions (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/icons → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/icons (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/paramfield → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/paramfield (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/components/steps → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/steps (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/reusable-snippets → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/reusable-markdown (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/frontmatter → https://fern-api.docs.buildwithfern.com/learn/docs/customization/frontmatter (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tooltips → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tooltips (1 steps) -https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/visual-editor → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/visual-editor (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/components/tabs → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/components/tabs (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/content/changelog → https://fern-api.docs.buildwithfern.com/learn/docs/navigation/changelogs (1 steps) https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer → https://fern-api.docs.buildwithfern.com/learn/docs/api-references/api-explorer/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern (1 steps) +https://fern-api.docs.buildwithfern.com/learn/docs/content/custom-react-components → https://fern-api.docs.buildwithfern.com/learn/docs/writing-content/custom-react-components (1 steps) https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/showcase (2 steps) Chain: https://fern-api.docs.buildwithfern.com/learn/ask-fern/customer-showcase → https://buildwithfern.com/customers → https://buildwithfern.com/showcase -https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting (1 steps) -https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/commands → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/commands (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/options → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/options (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/citations → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/citations (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/overview → https://fern-api.docs.buildwithfern.com/learn/ask-fern/getting-started/what-is-ask-fern (1 steps) +https://fern-api.docs.buildwithfern.com/learn/ask-fern/custom-prompting → https://fern-api.docs.buildwithfern.com/learn/ask-fern/configuration/custom-prompting (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/7/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/7/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/6/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/5/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/2/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/2/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2025/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2025/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/12/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/12/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/11/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/10/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/9/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/9/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/8/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/7/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/6/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/6/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/5/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/4/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/3/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/2/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/2/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2024/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2024/1/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/22 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/12/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/12/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/11/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/11/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/19 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/26 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/10/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/10/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/9/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/9/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/8/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/8/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/26 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/18 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/10 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/22 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/7/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/7/5 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/14 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/27 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/6/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/6/15 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/25 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/29 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/11 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/13 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/6 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/10 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/4 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/5/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/5/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/1 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/31 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/4/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/4/3 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/29 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/26 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/26 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/11 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/30 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/10 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/10 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/20 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/7 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/8 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/3 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/3 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/25 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/25 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/1 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/23 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/9 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/3/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/3/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/7 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/7 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/6 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/5 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/5 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/21 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/29 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/29 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/30 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/30 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/12 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/1 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/1 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/31 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/31 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/24 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/4 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/4 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/22 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/22 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/21 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/21 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/20 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/20 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/2/2 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/2/2 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/27 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/27 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/18 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/18 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/19 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/19 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/11 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/11 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/12 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/12 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/17 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/17 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/15 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/28 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/28 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/6 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/6 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/15 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/15 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/24 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/24 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/16 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/16 (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/get → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/get (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/9 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/9 (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-reference/overview → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/overview (1 steps) -https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/8 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/8 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/14 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/14 (1 steps) +https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-reference/snippets/load → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/snippets/load (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2023/1/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2023/1/13 (1 steps) https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/13 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/13 (1 steps) -https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/generate → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/generate (1 steps) https://fern-api.docs.buildwithfern.com/learn/api-reference/tokens/revoke → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/api-reference/tokens/revoke (1 steps) +https://fern-api.docs.buildwithfern.com/learn/cli-reference/changelog/2022/12/23 → https://fern-api.docs.buildwithfern.com/learn/cli-api-reference/cli-reference/changelog/2022/12/23 (1 steps) 📁 Results saved to: check_urls_output.txt -❌ Found 1 issues (including home redirects) +❌ Found 4 issues (including home redirects) From 975fffc23b5fefe4395b1361fefa048921c55e3b Mon Sep 17 00:00:00 2001 From: Kapil Gowru Date: Wed, 23 Jul 2025 14:21:09 -0400 Subject: [PATCH 34/34] fix: added new imagery for docs --- fern/products/docs/pages/getting-started/overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/products/docs/pages/getting-started/overview.mdx b/fern/products/docs/pages/getting-started/overview.mdx index 9e4bd60bc..6ee316059 100644 --- a/fern/products/docs/pages/getting-started/overview.mdx +++ b/fern/products/docs/pages/getting-started/overview.mdx @@ -108,7 +108,7 @@ description: Meet documentation that is stunning by default, AI-ready, and desig
    - Visual Editor + Visual Editor

    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 BJ?8)b literal 0 HcmV?d00001 diff --git a/fern/products/docs/pages/getting-started/images/ask-fern-light.png b/fern/products/docs/pages/getting-started/images/ask-fern-light.png new file mode 100644 index 0000000000000000000000000000000000000000..0f828f84ec7661d6869611593f24a02a749c9746 GIT binary patch literal 322231 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 z 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�LI_An(lR;Z}E(0HXS1sxKtOx^Hi(ejcJa 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%0A}02Q2m?Xq%g5Btm!;bSaF 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%0D6&UN1IQlBx3=ySav&O?wF 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