Skip to content

Attio #17456 #17756

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

Merged
merged 10 commits into from
Jul 31, 2025
Merged

Attio #17456 #17756

merged 10 commits into from
Jul 31, 2025

Conversation

lcaresia
Copy link
Collaborator

@lcaresia lcaresia commented Jul 23, 2025

WHY

Summary by CodeRabbit

  • New Features

    • Added a new action to retrieve records by ID from Attio.
  • Improvements

    • Updated several action and source names for clarity (e.g., "Note Updated (Instant)" to "New Note Updated (Instant)").
    • Incremented version numbers for multiple actions and sources.
    • Updated dependency version for improved compatibility.

@lcaresia lcaresia self-assigned this Jul 23, 2025
Copy link

vercel bot commented Jul 23, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

3 Skipped Deployments
Name Status Preview Comments Updated (UTC)
docs-v2 ⬜️ Ignored (Inspect) Visit Preview Jul 30, 2025 3:14pm
pipedream-docs ⬜️ Ignored (Inspect) Jul 30, 2025 3:14pm
pipedream-docs-redirect-do-not-edit ⬜️ Ignored (Inspect) Jul 30, 2025 3:14pm

@lcaresia lcaresia linked an issue Jul 23, 2025 that may be closed by this pull request
Copy link
Contributor

coderabbitai bot commented Jul 23, 2025

Walkthrough

This update introduces a new "Get Record" action and adds a supporting getRecord method to the Attio app module. Several existing action and source modules have their version numbers incremented, and some source names are updated for clarity. The package dependency for "@pipedream/platform" is also updated.

Changes

Files/Groups Change Summary
Action version bumps
components/attio/actions/create-note/create-note.mjs, components/attio/actions/create-person/create-person.mjs, components/attio/actions/create-task/create-task.mjs, components/attio/actions/create-update-record/create-update-record.mjs, components/attio/actions/delete-list-entry/delete-list-entry.mjs, components/attio/actions/update-person/update-person.mjs
Incremented version numbers in action metadata; no logic changes.
Source version bumps and renames
components/attio/sources/list-entry-deleted-instant/list-entry-deleted-instant.mjs, components/attio/sources/list-entry-updated-instant/list-entry-updated-instant.mjs, components/attio/sources/new-activity-created-instant/new-activity-created-instant.mjs, components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs, components/attio/sources/new-note-instant/new-note-instant.mjs, components/attio/sources/new-object-attribute-instant/new-object-attribute-instant.mjs, components/attio/sources/new-record-created-instant/new-record-created-instant.mjs
Incremented version numbers in source metadata; some source names updated for clarity.
Source renames and version bumps
components/attio/sources/note-updated-instant/note-updated-instant.mjs, components/attio/sources/object-attribute-updated-instant/object-attribute-updated-instant.mjs, components/attio/sources/record-updated-instant/record-updated-instant.mjs
Updated source names to include "New" prefix and incremented version numbers.
New action module
components/attio/actions/get-record/get-record.mjs
Added new "Get Record" action module for retrieving records by ID.
App method addition
components/attio/attio.app.mjs
Added new getRecord method to the Attio app's exported methods object.
Package update
components/attio/package.json
Updated "@pipedream/platform" dependency from "^3.0.3" to "^3.1.0".

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant GetRecordAction
    participant AttioApp
    participant AttioAPI

    User->>GetRecordAction: Provide objectId and recordId
    GetRecordAction->>AttioApp: getRecord({objectId, recordId})
    AttioApp->>AttioAPI: GET /objects/{objectId}/records/{recordId}
    AttioAPI-->>AttioApp: Record data
    AttioApp-->>GetRecordAction: Record data
    GetRecordAction-->>User: Return record data and summary
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~15 minutes

Suggested reviewers

  • lcaresia
  • GTFalcao

Poem

In the meadow of code where the carrots grow high,
New records are fetched with a hop and a sigh.
Versions have blossomed, dependencies bloom,
Actions and sources all tidy their room.
With a whisk of my tail and a twitch of my nose—
This update is ready, as every bunny knows! 🥕

Note

⚡️ Unit Test Generation is now available in beta!

Learn more here, or try it out under "Finishing Touches" below.


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 52d5282 and 69f147d.

📒 Files selected for processing (2)
  • components/attio/actions/create-update-record/create-update-record.mjs (1 hunks)
  • components/attio/actions/get-record/get-record.mjs (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • components/attio/actions/create-update-record/create-update-record.mjs
🚧 Files skipped from review as they are similar to previous changes (1)
  • components/attio/actions/get-record/get-record.mjs
✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch issue-17456

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need 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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🧹 Nitpick comments (3)
components/attio/sources/list-entry-updated-instant/list-entry-updated-instant.mjs (1)

7-9: Re-evaluate “New” prefix and version bump

Guidelines note the “New” prefix is generally reserved for sources that emit only newly-created items, not updates. Renaming “List Entry Updated (Instant)” to “New List Entry Updated (Instant)” may confuse users.

Consider reverting the name while keeping the version bump, or provide rationale.

components/attio/actions/create-update-record/create-update-record.mjs (1)

9-9: Confirm skipped version 0.0.4

The change jumps from 0.0.3 to 0.0.5. If 0.0.4 was never published this is fine; otherwise consider consecutive numbering to avoid confusion in downstream tooling.

components/attio/sources/note-updated-instant/note-updated-instant.mjs (1)

7-9: Name now reads “New Note Updated” — verify phrasing

Adding the “New” prefix to an updated event may confuse users (“new updated”). Unless the Attio naming guidelines require this, reverting keeps it clear:

-  name: "New Note Updated (Instant)",
+  name: "Note Updated (Instant)",

Version bump is fine either way.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4a2b1bc and 5c3d6c3.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (19)
  • components/attio/actions/create-note/create-note.mjs (1 hunks)
  • components/attio/actions/create-person/create-person.mjs (1 hunks)
  • components/attio/actions/create-task/create-task.mjs (1 hunks)
  • components/attio/actions/create-update-record/create-update-record.mjs (1 hunks)
  • components/attio/actions/delete-list-entry/delete-list-entry.mjs (1 hunks)
  • components/attio/actions/get-record/get-record.mjs (1 hunks)
  • components/attio/actions/update-person/update-person.mjs (1 hunks)
  • components/attio/attio.app.mjs (1 hunks)
  • components/attio/package.json (1 hunks)
  • components/attio/sources/list-entry-deleted-instant/list-entry-deleted-instant.mjs (1 hunks)
  • components/attio/sources/list-entry-updated-instant/list-entry-updated-instant.mjs (1 hunks)
  • components/attio/sources/new-activity-created-instant/new-activity-created-instant.mjs (1 hunks)
  • components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs (1 hunks)
  • components/attio/sources/new-note-instant/new-note-instant.mjs (1 hunks)
  • components/attio/sources/new-object-attribute-instant/new-object-attribute-instant.mjs (1 hunks)
  • components/attio/sources/new-record-created-instant/new-record-created-instant.mjs (1 hunks)
  • components/attio/sources/note-updated-instant/note-updated-instant.mjs (1 hunks)
  • components/attio/sources/object-attribute-updated-instant/object-attribute-updated-instant.mjs (1 hunks)
  • components/attio/sources/record-updated-instant/record-updated-instant.mjs (1 hunks)
🧠 Learnings (17)
components/attio/actions/create-update-record/create-update-record.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/package.json (1)

Learnt from: jcortes
PR: #14935
File: components/sailpoint/package.json:15-18
Timestamp: 2024-12-12T19:23:09.039Z
Learning: When developing Pipedream components, do not add built-in Node.js modules like fs to package.json dependencies, as they are native modules provided by the Node.js runtime.

components/attio/sources/new-note-instant/new-note-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/sources/new-object-attribute-instant/new-object-attribute-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/actions/create-note/create-note.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

components/attio/actions/create-person/create-person.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/actions/update-person/update-person.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/new-activity-created-instant/new-activity-created-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/sources/list-entry-deleted-instant/list-entry-deleted-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

components/attio/actions/create-task/create-task.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/note-updated-instant/note-updated-instant.mjs (3)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-10-08T15:33:38.240Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-07-24T02:06:47.016Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

components/attio/sources/new-record-created-instant/new-record-created-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/sources/object-attribute-updated-instant/object-attribute-updated-instant.mjs (3)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-07-24T02:06:47.016Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-10-08T15:33:38.240Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

components/attio/actions/get-record/get-record.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/record-updated-instant/record-updated-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

components/attio/sources/list-entry-updated-instant/list-entry-updated-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

🧰 Additional context used
🧠 Learnings (17)
components/attio/actions/create-update-record/create-update-record.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/package.json (1)

Learnt from: jcortes
PR: #14935
File: components/sailpoint/package.json:15-18
Timestamp: 2024-12-12T19:23:09.039Z
Learning: When developing Pipedream components, do not add built-in Node.js modules like fs to package.json dependencies, as they are native modules provided by the Node.js runtime.

components/attio/sources/new-note-instant/new-note-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/sources/new-object-attribute-instant/new-object-attribute-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/actions/create-note/create-note.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

components/attio/actions/create-person/create-person.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/actions/update-person/update-person.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/new-activity-created-instant/new-activity-created-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/sources/list-entry-deleted-instant/list-entry-deleted-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

components/attio/actions/create-task/create-task.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/note-updated-instant/note-updated-instant.mjs (3)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-10-08T15:33:38.240Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-07-24T02:06:47.016Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

components/attio/sources/new-record-created-instant/new-record-created-instant.mjs (1)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

components/attio/sources/object-attribute-updated-instant/object-attribute-updated-instant.mjs (3)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-07-24T02:06:47.016Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

Learnt from: GTFalcao
PR: #12697
File: components/salesforce_rest_api/sources/common-webhook-methods.mjs:1-71
Timestamp: 2024-10-08T15:33:38.240Z
Learning: The common-webhook-methods.mjs object is designed to be extended, similar to an abstract class, and intentionally does not implement certain methods like generateWebhookMeta and getEventType to enforce implementation in subclasses.

components/attio/actions/get-record/get-record.mjs (1)

Learnt from: jcortes
PR: #14467
File: components/gainsight_px/actions/create-account/create-account.mjs:4-6
Timestamp: 2024-10-30T15:24:39.294Z
Learning: In components/gainsight_px/actions/create-account/create-account.mjs, the action name should be "Create Account" instead of "Create Memory".

components/attio/sources/record-updated-instant/record-updated-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

components/attio/sources/list-entry-updated-instant/list-entry-updated-instant.mjs (2)

Learnt from: GTFalcao
PR: #15376
File: components/monday/sources/name-updated/name-updated.mjs:6-6
Timestamp: 2025-01-23T03:55:15.166Z
Learning: Source names in Monday.com components don't need to start with "New" if they emit events for updated items (e.g., "Name Updated", "Column Value Updated") rather than new items. This follows the component guidelines exception where the "New" prefix is only required when emits are limited to new items.

Learnt from: GTFalcao
PR: #14265
File: components/the_magic_drip/sources/common.mjs:35-43
Timestamp: 2024-10-10T19:18:27.998Z
Learning: In components/the_magic_drip/sources/common.mjs, when processing items in getAndProcessData, savedIds is intentionally updated with IDs of both emitted and non-emitted items to avoid emitting retroactive events upon first deployment and ensure only new events are emitted as they occur.

⏰ 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). (3)
  • GitHub Check: Lint Code Base
  • GitHub Check: Verify TypeScript components
  • GitHub Check: Publish TypeScript components
🔇 Additional comments (18)
components/attio/attio.app.mjs (1)

305-312: LGTM! Well-implemented method following existing patterns.

The new getRecord method follows the established conventions in the codebase, properly uses parameter destructuring, and constructs the correct API endpoint path. The implementation is consistent with other CRUD methods in the class.

components/attio/sources/new-note-instant/new-note-instant.mjs (1)

9-9: Version increment looks good.

The version bump from "0.0.2" to "0.0.3" is appropriate and aligns with the coordinated update across the Attio component suite.

components/attio/sources/new-list-entry-instant/new-list-entry-instant.mjs (1)

9-9: Version increment is appropriate.

The version bump from "0.0.3" to "0.0.4" is consistent with the broader update pattern across Attio components.

components/attio/actions/create-note/create-note.mjs (1)

7-7: Version update is consistent with the broader component update.

The version increment from "0.0.3" to "0.0.4" aligns with the coordinated update across the Attio component suite.

components/attio/sources/new-record-created-instant/new-record-created-instant.mjs (1)

9-9: Final version increment completes the coordinated update.

The version bump from "0.0.3" to "0.0.4" is appropriate and completes the consistent versioning update across the Attio component suite.

components/attio/actions/create-task/create-task.mjs (1)

9-9: Version bump looks good

Nothing else changed in this file; version 0.0.2 aligns with the coordinated release.

components/attio/actions/create-person/create-person.mjs (1)

8-8: Version bump acknowledged

Consistent with other Attio actions. No further action required.

components/attio/package.json (1)

16-16: Confirm @pipedream/platform ^3.1.0 upgrade

Ensure none of the Attio components rely on APIs removed or changed between 3.0.3 and 3.1.0. A quick smoke test or unit run is recommended before publishing.

components/attio/sources/new-activity-created-instant/new-activity-created-instant.mjs (1)

9-9: Version bump only – OK

Increment to 0.0.2 is consistent with the broader release.

components/attio/actions/delete-list-entry/delete-list-entry.mjs (1)

7-7: Patch-level version bump looks fine

Nothing else changed – no concerns.

components/attio/actions/update-person/update-person.mjs (1)

8-8: Version increment only – LGTM

No functional changes detected.

components/attio/sources/new-object-attribute-instant/new-object-attribute-instant.mjs (1)

9-9: Minor version bump acknowledged

No further feedback.

components/attio/sources/record-updated-instant/record-updated-instant.mjs (2)

7-7: Reconsider the "New" prefix for this source name.

Based on component guidelines, the "New" prefix should only be used when emits are limited to new items. Since this source emits events for record updates (existing records being modified), the "New" prefix may be misleading to users.

Consider reverting to "Record Updated (Instant)" to better reflect the actual functionality.

Likely an incorrect or invalid review comment.


9-9: Version increment is appropriate.

The version increment from 0.0.3 to 0.0.4 is suitable for this metadata change.

components/attio/sources/object-attribute-updated-instant/object-attribute-updated-instant.mjs (2)

7-7: Reconsider the "New" prefix for this source name.

This source emits events for object attribute updates (e.g., renaming existing attributes), not for new attribute creation. The "New" prefix may confuse users about the actual functionality.

Consider reverting to "Object Attribute Updated (Instant)" to accurately represent the event type.

Likely an incorrect or invalid review comment.


9-9: Version increment is appropriate.

The version increment from 0.0.2 to 0.0.3 is suitable for this metadata change.

components/attio/sources/list-entry-deleted-instant/list-entry-deleted-instant.mjs (1)

9-9: Version increment is appropriate.

The version increment from 0.0.2 to 0.0.3 is suitable for this metadata change.

components/attio/actions/get-record/get-record.mjs (1)

37-46: Implementation looks correct.

The async run method properly calls the API, exports a summary, and returns the response. The implementation follows Pipedream action patterns correctly.

michelle0927 and others added 6 commits July 30, 2025 11:03
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link
Collaborator

@michelle0927 michelle0927 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Ready for QA!

@vunguyenhung vunguyenhung merged commit 3d80910 into master Jul 31, 2025
11 checks passed
@vunguyenhung vunguyenhung deleted the issue-17456 branch July 31, 2025 03:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Attio
3 participants