Skip to content
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

Add Zapier trigger that fires when Documents are updated #3

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

rossmeissl
Copy link

@tommoor I haven't tested this yet — just wondering if you'd be interested in a PR like this before I spend more time on it.

This is just a copy of the original document trigger with a synthetic compound id that includes the document's revision as a suffix. The Zapier docs on "update triggers" are a bit bare but I believe this is how it works.

My one concern is that if a single Document is updated multiple times (i.e. multiple Revisions are created) in quick succession (i.e. within the polling interval), the Zap will trigger once for each of them. I suppose this is intended behavior on the Zapier platform.

@tommoor
Copy link
Member

tommoor commented Jan 24, 2022

just wondering if you'd be interested in a PR like this before I spend more time on it.

Yep, not sure when I'll be able to test – but if it works then would happily accept the trigger

@rossmeissl
Copy link
Author

Thanks @tommoor !

@tommoor tommoor requested a review from Copilot March 23, 2025 19:58
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull Request Overview

This pull request adds a new Zapier trigger ("docUpdated") that fires when documents are updated, using a synthetic compound ID to differentiate revisions. Key changes include the addition of a new trigger in triggers/docUpdated.js, its registration in index.js, and minor adjustments to parameter handling for document listing.

Reviewed Changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
triggers/docUpdated.js Added a new trigger that maps document updates to a synthetic ID.
index.js Registered the new trigger alongside the existing document trigger.
Comments suppressed due to low confidence (2)

triggers/docUpdated.js:19

  • [nitpick] Consider using a more descriptive or contextual name for the intermediate 'documentId' property (or adding a clarifying comment) to avoid potential confusion with the original 'id' property.
item.documentId = item.id;

triggers/docUpdated.js:20

  • [nitpick] Review the compound ID construction to confirm that concatenating 'documentId' with 'revision' using a hyphen will reliably produce a unique identifier in all intended scenarios.
item.id = item.documentId + '-' + item.revision;

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.

2 participants