-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Hubspot - Create Communication (create a WhatsApp, LinkedIn, or SMS message) #12899
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ |
WalkthroughThe update introduces a new action for creating WhatsApp, LinkedIn, or SMS messages in HubSpot. A new file, Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Pipedream
participant HubSpot
User->>+Pipedream: Trigger create-communication action
Pipedream->>+HubSpot: Send request to create WhatsApp/LinkedIn/SMS message
HubSpot-->>-Pipedream: Response with communication ID
Pipedream-->>-User: Return created communication's ID
Assessment against linked issues
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
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 as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
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: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
pnpm-lock.yaml
is excluded by!**/pnpm-lock.yaml
Files selected for processing (3)
- components/hubspot/actions/create-communication/common-app-prop.mjs (1 hunks)
- components/hubspot/actions/create-communication/create-communication.mjs (1 hunks)
- components/hubspot/package.json (2 hunks)
Additional comments not posted (3)
components/hubspot/actions/create-communication/common-app-prop.mjs (1)
1-10
: Well-structured properties file for HubSpot app.The use of spread syntax to extend properties and the inclusion of
reloadProps: true
are appropriate for dynamic configurations.components/hubspot/package.json (1)
3-3
: Version and dependency updates inpackage.json
are appropriate.The version bump and major dependency upgrade are noted. Ensure compatibility with the new version of
@pipedream/platform
.Also applies to: 13-13
components/hubspot/actions/create-communication/create-communication.mjs (1)
6-98
: Comprehensive and well-structured action for creating communications in HubSpot.The dynamic properties and context-sensitive configurations are well-implemented. The error handling for
toObjectId
andassociationType
ensures robustness.
Resolves #12868
Summary by CodeRabbit
New Features
Chores
@pipedream/hubspot
package version to 0.9.0.@pipedream/platform
to version ^3.0.0.