Commits
Click on a commit to change the comparison rangeAdd Data Fetching & Generator for Custom Deployment SDK (Phase 4)
Implements the API integration and orchestration layer for SDK generation:
- Add fetcher module with authentication checking, deployment listing with
pagination, parallel work pool fetching, and flow name resolution
- Add generator module to orchestrate fetch → render → write pipeline
- Update renderer with _make_optional helper to avoid duplicate | None types
- Add _sync=True to generated run() method for proper sync dispatch behavior
- Add comprehensive tests for fetcher (46 tests) and generator (26 tests)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> Remove dead code handling impossible duplicate flow names
Flow names have a unique constraint at the database level, so two
flows with the same name but different IDs cannot exist.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>3 hours ago
by desertaxle Add pagination to flow fetching in SDK fetcher
The _fetch_flows_for_deployments function now paginates through results
to ensure all flows are fetched when there are more than 200.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>33 minutes ago
by desertaxle