Conversation
|
WalkthroughUpdated export service to call a different bulk export endpoint and adjusted the request payload structure by moving accountId after options. No exported signatures changed. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant C as Client
participant ES as ExportService
participant API as AI API
C->>ES: exportTasks(briefId, source, options, tasks, accountId)
note over ES: Prepare request payload<br/>- source, options, tasks<br/>- accountId (moved after options)
ES->>API: POST /ai/api/v1/briefs/{briefId}/tasks<br/>Body: { source, options, accountId, tasks }
API-->>ES: 200 OK / Error
ES-->>C: Result/Exception
rect rgba(230,245,255,0.5)
note right of ES: Changed endpoint path (removed /bulk)
end
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Suggested reviewers
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro 📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
🔇 Additional comments (2)
Comment |
What type of PR is this?
Description
Related Issues
How to Test This
# Example commands or stepsExpected result:
Contributor Checklist
npm run changesetnpm testnpm run format-check(ornpm run formatto fix)Changelog Entry
For Maintainers
Summary by CodeRabbit