docs: remove Roadmap page; move Testing into the SDK repo
- delete Roadmap.md and strip all references (links, sidebar, index, prose)
- delete Testing.md; the testing guide now lives in the repo as TESTING.md.
Repoint every cross-reference to the repo file
(github.com/convertcom/python-sdk/blob/main/TESTING.md).
Fix Python-specific pages to match shipped SDK public API
The Python-specific pages were authored 2026-05-06, before the SDK's
public API was finalized, and referenced fabricated/stale symbols.
Regenerated against src/convert_sdk (__all__) and the current docs/:
- Remove fabricated TrackingConfig — queue settings are SDKConfig fields
(batch_size, auto_flush_interval_ms).
- Remove fabricated GoalNotFoundError — goals surface via
ConversionResult/ConversionStatus.GOAL_NOT_FOUND and GoalDiagnostic.
- Remove fabricated LifecycleEventPayload — real payloads are
ConversionEventPayload and QueueReleasedPayload.
- Fix top-level imports that aren't exported (TrackingError, EventBus,
Transport) to their real submodule paths.
- Correct method/field drift: config_data=->data=, release_queues()->
flush(), set_default_segments->set_segments, force_multiple_transactions
->force_multiple, snapshot->current_config, diagnose_config_entity->
diagnose_entity, DataStore protocol get/set/has/delete, RefreshConfig
4-field surface, ExperienceResult fields.
Shared lowercase-kebab docs (CI-synced from backend) left untouched.
Initial wiki: shared Fullstack docs + Python-specific pages
Mirrors the JS and PHP SDK wiki structure:
- 15 Python-specific CamelCase pages (Home, Quickstart, Installation,
Initialization, Configuration, CodeExamples, TypeHints, Diagnostics,
Extending, Testing, AsyncAndFrameworks, MigrationFromJavascript,
MigrationFromRest, Roadmap, ReleaseProcess)
- 20 shared lowercase-kebab pages copied verbatim from the backend
full-stack-docs source (concepts/, guides/, integrations/llm-testing).
These will become CI-synced once convertcom/python-sdk is added to
backend/.github/workflows/sync-to-wikis.yml.
- Wiki infra: _Sidebar, _Footer, AI_Index, CLAUDE, sdk-docs-config.json.