-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Quickbooks - Purchase created/Purchase updated #17890
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎ |
WalkthroughThis change introduces two new QuickBooks Online event source components: one for detecting when a new purchase is created and another for when a purchase is updated. Each source includes its own test event data and supporting logic. The package version is incremented to reflect these new features. Changes
Sequence Diagram(s)sequenceDiagram
participant QBO as QuickBooks Online
participant Source as QuickBooks Source Component
participant User as User Workflow
QBO->>Source: POST Purchase.create or Purchase.update event
Source->>Source: Parse event, deduplicate, generate summary
Source->>User: Emit event with purchase data and summary
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Assessment against linked issues
Poem
Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. 📜 Recent review detailsConfiguration used: CodeRabbit UI ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (5)
🧰 Additional context used🧠 Learnings (6)📓 Common learnings📚 Learning: when developing pipedream components, do not add built-in node.js modules like `fs` to `package.json...Applied to files:
📚 Learning: in `components/the_magic_drip/sources/common.mjs`, when processing items in `getandprocessdata`, `sa...Applied to files:
📚 Learning: the `processtimerevent` method in the `components/salesforce_rest_api/sources/common.mjs` file is in...Applied to files:
📚 Learning: source names in monday.com components don't need to start with "new" if they emit events for updated...Applied to files:
📚 Learning: the `common-webhook-methods.mjs` object is designed to be extended, similar to an abstract class, an...Applied to files:
🔇 Additional comments (11)
✨ Finishing Touches
🧪 Generate unit tests
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
CodeRabbit Configuration File (
|
Resolves #17625
Note: Will create follow-up PR for Quickbooks Sandbox after this is published.
Summary by CodeRabbit
New Features
Chores