From f22c244266b506063e32a64678e4156dd0f9112b Mon Sep 17 00:00:00 2001 From: kj-podonos Date: Fri, 19 Jun 2026 14:49:53 +0900 Subject: [PATCH] docs: point documentation links at canonical onepin.ai/docs Docs moved to a subpath; docs.onepin.ai now 301-redirects to onepin.ai/docs. Point the links straight at the canonical URL to drop the redirect hop and fix the PyPI sidebar "Documentation" link. - pyproject.toml: project.urls Documentation - README.md: install pointer + SDK-usage hosted-docs link - SUPPORT.md: Docs link The docs.onepin.ai -> /docs 301 stays in place so existing inbound links and citations keep resolving. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 4 ++-- SUPPORT.md | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6e2ac9c..ac2bd2c 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ pip install onepin Installs both the `onepin` Python SDK and the `onepin` command-line tool. -Full documentation: [docs.onepin.ai](https://docs.onepin.ai) +Full documentation: [onepin.ai/docs](https://onepin.ai/docs) ## Authentication @@ -439,7 +439,7 @@ onepin workflows create --name "My workflow" --definition @workflow.json The Python SDK is generated by [Fern](https://buildwithfern.com) from the OpenAPI spec. Full per-endpoint reference: [`src/onepin/reference.md`](src/onepin/reference.md) ยท -hosted docs at [docs.onepin.ai](https://docs.onepin.ai). Runnable scripts in [`examples/`](examples/). +hosted docs at [onepin.ai/docs](https://onepin.ai/docs). Runnable scripts in [`examples/`](examples/). ```python from onepin import OnePinClient diff --git a/SUPPORT.md b/SUPPORT.md index f685f52..5ef6ac9 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -2,7 +2,7 @@ Need help with the Onepin Python SDK or CLI? -- ๐Ÿ“– **Docs:** https://docs.onepin.ai +- ๐Ÿ“– **Docs:** https://onepin.ai/docs - ๐Ÿ’ฌ **Questions & bugs:** open an [issue](https://github.com/podonos/onepin-python/issues) using the bug-report or feature-request template - โœ‰๏ธ **Email:** support@onepin.ai - ๐Ÿ”‘ **API keys, account & billing:** https://app.onepin.ai diff --git a/pyproject.toml b/pyproject.toml index bb8a5de..2953360 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ onepin = "onepin._cli.main:app" [project.urls] Homepage = "https://onepin.ai" -Documentation = "https://docs.onepin.ai" +Documentation = "https://onepin.ai/docs" Source = "https://github.com/podonos/onepin-python" Issues = "https://github.com/podonos/onepin-python/issues" Changelog = "https://github.com/podonos/onepin-python/blob/main/CHANGELOG.md"