-
Notifications
You must be signed in to change notification settings - Fork 551
Subscribe: Add book_changes
#2980
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
base: main
Are you sure you want to change the base?
Conversation
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the WalkthroughThe change updates the Changes
Poem
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
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.
export type StreamType = | ||
| 'book_changes' |
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.
💡 Verification agent
🧩 Analysis chain
LGTM: 'book_changes' stream type has been added correctly.
The addition of 'book_changes' to the StreamType union type looks good. This change expands the available stream types that can be used with the XRPL library.
Consider adding appropriate documentation to explain what the 'book_changes' stream represents and how it should be used by consumers of the library.
🏁 Script executed:
#!/bin/bash
# Check if there are any references to 'book_changes' in the documentation or other files
echo "Searching for documentation or usage examples of 'book_changes' stream type..."
rg --type md --type ts 'book_changes' -A 2 -B 2
Length of output: 499
🏁 Script executed:
#!/bin/bash
# List markdown documentation files at top-level and in docs/ directory
fd -t f -e md -d 2
Length of output: 115
Add documentation for the new book_changes
stream type
I didn’t find any references to book_changes
in your markdown docs (e.g. README.md, MIGRATION.md, etc.), so please add a note about what the book_changes
stream represents and how consumers should use it. For example:
• In README.md (under “Streams” or “Websocket Subscriptions”), list book_changes
alongside the existing stream types with a brief description.
• In MIGRATION.md (if you document breaking changes or new features), mention that book_changes
was introduced in this release and point to any relevant examples.
Hi, if this PR is ready please add a description with context for the change and mark it as "ready" instead of draft. If you are still working on it, no worries. |
High Level Overview of Change
Context of Change
Type of Change
Did you update HISTORY.md?
Test Plan