-
Couldn't load subscription status.
- Fork 5.5k
AccuRanker New Actions #18691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AccuRanker New Actions #18691
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 2 Skipped Deployments
|
WalkthroughAdds an authenticated HTTP client, paginated request helper, and propDefinitions for domain/keyword selectors and date/max parameters to the AccuRanker app; introduces three new actions (List Domains, List Keywords, List Brands); updates package version and platform dependency. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor User
participant Action as List Action
participant App as AccuRanker App
participant HTTP as _makeRequest
participant API as AccuRanker API
User->>Action: invoke (props: fields, periodFrom/To, max, domainId?)
Action->>App: paginate({ fn: list*, args, max })
loop pages (until exhausted or max reached)
App->>HTTP: _makeRequest(path, params, $)
HTTP->>API: GET /v4/... (Authorization: Bearer token)
API-->>HTTP: paged response (data, paging)
HTTP-->>App: data page
App-->>Action: yield items
end
Action->>User: return aggregated results + $summary
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (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). (4)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (5)
components/accuranker/accuranker.app.mjs(1 hunks)components/accuranker/actions/list-brands/list-brands.mjs(1 hunks)components/accuranker/actions/list-domains/list-domains.mjs(1 hunks)components/accuranker/actions/list-keywords/list-keywords.mjs(1 hunks)components/accuranker/package.json(2 hunks)
🧰 Additional context used
🧬 Code graph analysis (4)
components/accuranker/actions/list-domains/list-domains.mjs (1)
components/accuranker/accuranker.app.mjs (1)
domains(13-19)
components/accuranker/actions/list-brands/list-brands.mjs (2)
components/accuranker/actions/list-domains/list-domains.mjs (1)
results(63-63)components/accuranker/actions/list-keywords/list-keywords.mjs (1)
results(70-70)
components/accuranker/actions/list-keywords/list-keywords.mjs (1)
components/accuranker/accuranker.app.mjs (1)
keywords(33-40)
components/accuranker/accuranker.app.mjs (3)
components/accuranker/actions/list-domains/list-domains.mjs (2)
domains(50-61)results(63-63)components/accuranker/actions/list-keywords/list-keywords.mjs (2)
keywords(56-68)results(70-70)components/accuranker/actions/list-brands/list-brands.mjs (1)
results(66-66)
⏰ 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). (4)
- GitHub Check: pnpm publish
- GitHub Check: Lint Code Base
- GitHub Check: Publish TypeScript components
- GitHub Check: Verify TypeScript components
Resolves #9073
Summary by CodeRabbit
New Features
Chores