ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.615.2

This commit is contained in:
speakeasybot
2025-09-16 00:04:22 +00:00
parent dda385c4f3
commit de330d5951
103 changed files with 721 additions and 358 deletions

View File

@@ -10,12 +10,17 @@ try:
GITHUB_URL = (
GITHUB_URL[: -len(".git")] if GITHUB_URL.endswith(".git") else GITHUB_URL
)
REPO_SUBDIR = "."
# Ensure the subdirectory has a trailing slash
if not REPO_SUBDIR.endswith("/"):
REPO_SUBDIR += "/"
# links on PyPI should have absolute URLs
readme_contents = re.sub(
r"(\[[^\]]+\]\()((?!https?:)[^\)]+)(\))",
lambda m: m.group(1)
+ GITHUB_URL
+ "/blob/master/"
+ REPO_SUBDIR
+ m.group(2)
+ m.group(3),
readme_contents,