add get_scheduled_flow_runs endpoint with datetime standardization
worker polling endpoint:
- POST /work_pools/{name}/get_scheduled_flow_runs
- returns WorkerFlowRunResponse[] (work_pool_id, work_queue_id, flow_run)
- updates queue/pool/deployment status to READY on poll
- supports work_queue_names filter and scheduled_before time filter
datetime standardization:
- unified ISO 8601 format: 2025-01-21T12:34:56.123456Z
- updated sqlite schema defaults: strftime('%Y-%m-%dT%H:%M:%fZ', 'now')
- updated postgres schema defaults: TO_CHAR(NOW() AT TIME ZONE 'UTC', ...)
- added time utilities: parse(), lessOrEqual(), isPast(), formatMicros()
deployment work_queue_id resolution:
- resolve work_queue_id from work_pool_name on deployment create
- uses pool's default queue if work_queue_name not specified
- enables flow runs created from deployments to be found by worker polling
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>