Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/notion/actions/append-block/append-block.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
name: "Append Block to Parent",
description:
"Append new and/or existing blocks to the specified parent. [See the documentation](https://developers.notion.com/reference/patch-block-children)",
version: "0.3.6",
version: "0.3.7",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "notion-complete-file-upload",
name: "Complete File Upload",
description: "Use this action to finalize a `mode=multi_part` file upload after all of the parts have been sent successfully. [See the documentation](https://developers.notion.com/reference/complete-a-file-upload)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
key: "notion-create-comment",
name: "Create Comment",
description: "Create a comment in a page or existing discussion thread. [See the documentation](https://developers.notion.com/reference/create-a-comment)",
version: "0.0.6",
version: "0.0.7",
type: "action",
props: {
notion,
infoLabel: {

Check warning on line 12 in components/notion/actions/create-comment/create-comment.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 12 in components/notion/actions/create-comment/create-comment.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "info",
content: "Provide either a Page ID or a Discussion ID to create the comment under.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-create-database",
name: "Create Database",
description: "Create a database. [See the documentation](https://developers.notion.com/reference/create-a-database)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "notion-create-file-upload",
name: "Create File Upload",
description: "Create a file upload. [See the documentation](https://developers.notion.com/reference/create-a-file-upload)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
key: "notion-create-page-from-database",
name: "Create Page from Database",
description: "Create a page from a database. [See the documentation](https://developers.notion.com/reference/post-page)",
version: "0.2.3",
version: "0.2.4",
type: "action",
props: {
notion,
Expand Down Expand Up @@ -45,7 +45,7 @@
description: "Cover [External URL](https://developers.notion.com/reference/file-object#external-file-objects)",
optional: true,
},
alert: {

Check warning on line 48 in components/notion/actions/create-page-from-database/create-page-from-database.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 48 in components/notion/actions/create-page-from-database/create-page-from-database.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop alert must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "info",
content: "This action will create an empty page by default. To add content, use the `Page Content` prop below.",
Expand Down
2 changes: 1 addition & 1 deletion components/notion/actions/create-page/create-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-create-page",
name: "Create Page",
description: "Create a page from a parent page. [See the documentation](https://developers.notion.com/reference/post-page)",
version: "0.2.19",
version: "0.2.20",
type: "action",
props: {
notion,
Expand Down
2 changes: 1 addition & 1 deletion components/notion/actions/delete-block/delete-block.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
key: "notion-delete-block",
name: "Delete Block",
description: "Sets a Block object, including page blocks, to archived: true using the ID specified. [See the documentation](https://developers.notion.com/reference/delete-a-block)",
version: "0.0.1",
version: "0.0.2",
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Ensure the pin is enforced repo-wide (avoid accidental 5.x).

Add a repo-level override/resolution to force @notionhq/client@4.0.2 and verify no packages depend on ^5. Script below checks all package.jsons and the lockfile for stray 5.x.


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "Scanning package.json files for @notionhq/client..."
fd -t f package.json | xargs -I{} jq -r '[input_filename, (.dependencies["@notionhq/client"] // .devDependencies["@notionhq/client"] // empty)] | @tsv' {} \
  | awk 'NF==2 { print }' | column -t

echo
echo "Flagging any specs that are not exactly 4.0.2:"
fd -t f package.json | xargs -I{} jq -r '[(.name // input_filename), (.dependencies["@notionhq/client"] // .devDependencies["@notionhq/client"] // empty)] | @tsv' {} \
  | awk '$2 && $2 != "4.0.2" { print "Mismatch:", $0 }'

echo
echo "Checking lockfiles for resolved 5.x (may miss if tool differs):"
fd -a 'pnpm-lock.yaml|yarn.lock|package-lock.json' -E node_modules | while read -r lock; do
  echo "=> $lock"
  rg -n '(@notionhq/client).*5\.' "$lock" || echo "No 5.x found in $lock"
done

echo
echo "If your workspace uses npm, consider adding root-level overrides:"
echo '{ "overrides": { "@notionhq/client": "4.0.2" } }'

Length of output: 426


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "Scanning package.json files for @notionhq/client..."
fd -t f package.json | while read -r file; do
  version=$(jq -r '.dependencies["@notionhq/client"] // .devDependencies["@notionhq/client"] // empty' "$file")
  if [ -n "$version" ]; then
    printf "%-60s %s\n" "$file" "$version"
  fi
done

echo
echo "Flagging any specs that are not exactly 4.0.2:"
fd -t f package.json | while read -r file; do
  version=$(jq -r '.dependencies["@notionhq/client"] // .devDependencies["@notionhq/client"] // empty' "$file")
  if [ -n "$version" ] && [ "$version" != "4.0.2" ]; then
    printf "Mismatch: %-55s %s\n" "$file" "$version"
  fi
done

echo
echo "Checking lockfiles for @notionhq/client 5.x occurrences..."
grep -R -n '@notionhq/client.*5\.' --include="*.lock*" --include="*.yaml" .

echo
echo "If using npm, add this at root to pin 4.0.2:"
echo '{ "overrides": { "@notionhq/client": "4.0.2" } }'

Length of output: 262357


Pin @notionhq/client consistently at 4.0.2
components/notion_api_key/package.json currently specifies ^2.3.0—update it to 4.0.2 or add a root-level "overrides": { "@notionhq/client": "4.0.2" } (npm) / "resolutions": { "@notionhq/client": "4.0.2" } (Yarn) to enforce this repo-wide.

🤖 Prompt for AI Agents
In components/notion/actions/delete-block/delete-block.mjs around line 9, the
repo requires pinning @notionhq/client to 4.0.2 but
components/notion_api_key/package.json currently allows ^2.3.0; update that
package.json dependency to "4.0.2" (or add a root-level "overrides": {
"@notionhq/client": "4.0.2" } for npm / "resolutions": { "@notionhq/client":
"4.0.2" } for Yarn) to enforce repo-wide usage, then update the lockfile by
reinstalling dependencies (npm install or yarn install) so the lockfile reflects
the pinned version.

type: "action",
props: {
notion,
infoLabel: {

Check warning on line 13 in components/notion/actions/delete-block/delete-block.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 13 in components/notion/actions/delete-block/delete-block.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "info",
content: "**Note:** In the Notion UI application, this moves the block to the \"Trash\" where it can still be accessed and restored.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-duplicate-page",
name: "Duplicate Page",
description: "Create a new page copied from an existing page block. [See the documentation](https://developers.notion.com/reference/post-page)",
version: "0.0.16",
version: "0.0.17",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "notion-list-all-users",
name: "List All Users",
description: "Returns all users in the workspace. [See the documentation](https://developers.notion.com/reference/get-users)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "notion-list-file-uploads",
name: "List File Uploads",
description: "Use this action to list file uploads. [See the documentation](https://developers.notion.com/reference/list-file-uploads)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "notion-query-database",
name: "Query Database",
description: "Query a database with a specified filter. [See the documentation](https://developers.notion.com/reference/post-database-query)",
version: "0.1.0",
version: "0.1.1",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "notion-retrieve-block",
name: "Retrieve Page Content",
description: "Get page content as block objects or markdown. Blocks can be text, lists, media, a page, among others. [See the documentation](https://developers.notion.com/reference/retrieve-a-block)",
version: "0.2.4",
version: "0.2.5",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "notion-retrieve-database-content",
name: "Retrieve Database Content",
description: "Get all content of a database. [See the documentation](https://developers.notion.com/reference/post-database-query)",
version: "0.0.8",
version: "0.0.9",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "notion-retrieve-database-schema",
name: "Retrieve Database Schema",
description: "Get the property schema of a database in Notion. [See the documentation](https://developers.notion.com/reference/retrieve-a-database)",
version: "0.0.10",
version: "0.0.11",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "notion-retrieve-file-upload",
name: "Retrieve File Upload",
description: "Use this action to retrieve a file upload. [See the documentation](https://developers.notion.com/reference/retrieve-a-file-upload)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "notion-retrieve-page-property-item",
name: "Retrieve Page Property Item",
description: "Get a Property Item object for a selected page and property. [See the documentation](https://developers.notion.com/reference/retrieve-a-page-property)",
version: "0.0.9",
version: "0.0.10",
type: "action",
props: {
notion,
Expand Down
2 changes: 1 addition & 1 deletion components/notion/actions/retrieve-page/retrieve-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
key: "notion-retrieve-page",
name: "Retrieve Page Metadata",
description: "Get details of a page. [See the documentation](https://developers.notion.com/reference/retrieve-a-page)",
version: "0.0.10",
version: "0.0.11",
Copy link
Contributor

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 – metadata bump to trigger publish.

No functional changes. Given the PR intent (pinning @notionhq/client to 4.0.2), this version bump is appropriate to republish the action.

To ensure the pin is truly effective across the repo and CI images (no hoisted 5.x), run:

If any 5.x appears, add a root-level override/resolution to force 4.0.2 and update the lockfile.


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "1) List all declared versions of @notionhq/client across package.json files"
rg -nP '"@notionhq/client"\s*:\s*"[^\"]+"' -g '**/package.json' -S || true

echo
echo "2) Confirm no caret (^) ranges for @notionhq/client"
rg -nP '"@notionhq/client"\s*:\s*"\^' -g '**/package.json' -S || true

echo
echo "3) Check lockfiles for any 5.x resolution"
for f in pnpm-lock.yaml yarn.lock package-lock.json; do
  if [[ -f "$f" ]]; then
    echo "Scanning $f"
    rg -nP '@notionhq/client@?[^"\s]*5\.' "$f" || true
  fi
done

echo
echo "4) If using pnpm/yarn/npm, optionally verify the installed graph:"
command -v pnpm >/dev/null && pnpm why @notionhq/client || true
command -v yarn >/dev/null && yarn why @notionhq/client || true
command -v npm  >/dev/null && npm ls @notionhq/client || true

Length of output: 2851


Pin @notionhq/client in components/notion_api_key/package.json
components/notion_api_key/package.json:16 still uses ^2.3.0; update to "4.0.2" (or add a root-level override) and regenerate the lockfile.

🤖 Prompt for AI Agents
In components/notion/actions/retrieve-page/retrieve-page.mjs around line 7, the
project references a Notion client version but
components/notion_api_key/package.json still pins "@notionhq/client" as
"^2.3.0"; update that dependency entry to "4.0.2" (or add a root-level package
override to enforce 4.0.2), then reinstall (npm/yarn/pnpm) to regenerate the
lockfile and commit the updated lockfile so the dependency is actually pinned
across the repo.

type: "action",
props: {
notion,
infoLabel: {

Check warning on line 11 in components/notion/actions/retrieve-page/retrieve-page.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 11 in components/notion/actions/retrieve-page/retrieve-page.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "info",
content: "If you need to retrieve page content or block objects, use the **Retrieve Page Content** action instead.",
Expand Down
2 changes: 1 addition & 1 deletion components/notion/actions/retrieve-user/retrieve-user.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "notion-retrieve-user",
name: "Retrieve User",
description: "Returns a user using the ID specified. [See the documentation](https://developers.notion.com/reference/get-user)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
2 changes: 1 addition & 1 deletion components/notion/actions/search/search.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "notion-search",
name: "Find Pages or Databases",
description: "Searches for a page or database. [See the documentation](https://developers.notion.com/reference/post-search)",
version: "0.0.9",
version: "0.0.10",
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "notion-send-file-upload",
name: "Send File Upload",
description: "Send a file upload. [See the documentation](https://developers.notion.com/reference/send-a-file-upload)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
2 changes: 1 addition & 1 deletion components/notion/actions/update-block/update-block.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
key: "notion-update-block",
name: "Update Child Block",
description: "Updates a child block object. [See the documentation](https://developers.notion.com/reference/update-a-block)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand All @@ -16,7 +16,7 @@
label: "Block ID",
description: "Block ID retrieved from the **Retrieve Page Content** action",
},
infoLabel: {

Check warning on line 19 in components/notion/actions/update-block/update-block.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a description. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 19 in components/notion/actions/update-block/update-block.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop infoLabel must have a label. See https://pipedream.com/docs/components/guidelines/#props
type: "alert",
alertType: "info",
content: "**Note:** The update replaces the entire value for a given field. If a field is omitted (ex: omitting checked when updating a to_do block), the value will not be changed.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-update-database",
name: "Update Database",
description: "Update a database. [See the documentation](https://developers.notion.com/reference/update-a-database)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
notion,
Expand Down
2 changes: 1 addition & 1 deletion components/notion/actions/update-page/update-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-update-page",
name: "Update Page",
description: "Update a page's property values. To append page content, use the *Append Block* action instead. [See the documentation](https://developers.notion.com/reference/patch-page)",
version: "1.1.9",
version: "1.1.10",
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Verify pin consistency and guard against accidental 5.x upgrades.

Confirm every package.json pins @notionhq/client to an exact 4.x (no ^/~), and no 5.x sneaks in via workspaces/hoisting. Also ensure lockfiles are updated.

Run:

Optionally add a Renovate rule to block majors:

{
  "packageRules": [
    {
      "matchPackageNames": ["@notionhq/client"],
      "allowedVersions": "<5.0.0",
      "rangeStrategy": "pin"
    }
  ]
}

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "Occurrences of @notionhq/client versions:"
rg -nP --glob '**/package.json' -S '"@notionhq/client"\s*:\s*"[^"]+"' -C0 || true

echo
echo "Checking for non-pinned ranges (^ or ~):"
if rg -nP --glob '**/package.json' -S '"@notionhq/client"\s*:\s*"[~^]' ; then
  echo "Found non-pinned ranges above."
  exit 1
fi

echo
echo "Checking for any 5.x references:"
if rg -nP --glob '**/package.json' -S '"@notionhq/client"\s*:\s*"(5\.[^"]*)"' ; then
  echo "Found 5.x references above."
  exit 1
fi

echo
echo "Lockfiles present:"
fd -t f 'package-lock.json' 'yarn.lock' 'pnpm-lock.yaml' || true

Length of output: 656


Pin @notionhq/client to exact 4.x in all package.json

  • components/notion_api_key/package.json currently uses "@notionhq/client": "^2.3.0"—change to an exact 4.x version (e.g. "4.0.2") with no ^ or ~.
  • components/notion/package.json is already pinned to "4.0.2".
  • After updating, regenerate your lockfile (npm install/yarn install/pnpm install).
  • (Optional) Add a Renovate rule to block majors ≥ 5.0.0.
🤖 Prompt for AI Agents
components/notion/actions/update-page/update-page.mjs around lines 10-10: the
repo needs @notionhq/client pinned to an exact 4.x version across packages;
update components/notion_api_key/package.json to replace "@notionhq/client":
"^2.3.0" with an exact 4.x release (e.g. "4.0.2") matching
components/notion/package.json, then run your package manager (npm/yarn/pnpm
install) to regenerate the lockfile; optionally add a Renovate rule to block
major versions >=5.0.0.

type: "action",
props: {
notion,
Expand Down
4 changes: 2 additions & 2 deletions components/notion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/notion",
"version": "0.10.0",
"version": "0.10.1",
"description": "Pipedream Notion Components",
"main": "notion.app.mjs",
"keywords": [
Expand All @@ -10,7 +10,7 @@
"homepage": "https://pipedream.com/apps/notion",
"author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
"dependencies": {
"@notionhq/client": "^4.0.1",
"@notionhq/client": "4.0.2",
"@pipedream/platform": "^3.1.0",
"@tryfabric/martian": "^1.2.4",
"lodash-es": "^4.17.21",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "notion-new-comment-created",
name: "New Comment Created",
description: "Emit new event when a new comment is created in a page or block. [See the documentation](https://developers.notion.com/reference/retrieve-a-comment)",
version: "0.0.6",
version: "0.0.7",
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Verify the Notion SDK is truly pinned repo-wide to avoid accidental 5.x upgrades.

Run this to confirm exact pinning and absence of ranges elsewhere.


🏁 Script executed:

#!/bin/bash
set -euo pipefail

# 1) Confirm components/notion/package.json pins exactly 4.0.2
pkg="components/notion/package.json"
if [[ -f "$pkg" ]]; then
  ver=$(jq -r '.dependencies["@notionhq/client"] // empty' "$pkg")
  echo "@notionhq/client in $pkg => ${ver:-<missing>}"
  test "$ver" = "4.0.2" || { echo "ERROR: Not pinned to 4.0.2"; exit 1; }
else
  echo "ERROR: $pkg not found"; exit 1
fi

# 2) Search for any other version specs or ranges (caret/tilde) in the repo
echo
echo "All @notionhq/client specs:"
rg -nP '"@notionhq/client"\s*:\s*".+?"' -g '!**/node_modules/**' || true

echo
echo "Checking for range specifiers (^ or ~):"
if rg -nP '"@notionhq/client"\s*:\s*"[\^~]' -g '!**/node_modules/**'; then
  echo "ERROR: Found range specifiers for @notionhq/client"
  exit 1
else
  echo "OK: No range specifiers found."
fi

# 3) Optional: ensure no root overrides/resolutions contradict the pin
echo
echo "Overrides/resolutions referencing @notionhq/client (if any):"
rg -nP '"(overrides|resolutions)"\s*:\s*{[^}]*@notionhq/client' -g '!**/node_modules/**' || true

Length of output: 989


Pin @notionhq/client exact version repo-wide
In components/notion_api_key/package.json (line 16), replace "@notionhq/client": "^2.3.0" with "4.0.2" to match components/notion/package.json; then confirm no other caret/tilde ranges remain.

type: "source",
dedupe: "unique",
props: {
Expand Down
2 changes: 1 addition & 1 deletion components/notion/sources/new-database/new-database.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-new-database",
name: "New Database Created",
description: "Emit new event when a database is created. [See the documentation](https://developers.notion.com/reference/database)",
version: "0.0.13",
version: "0.0.14",
type: "source",
props: {
...base.props,
Expand Down
2 changes: 1 addition & 1 deletion components/notion/sources/new-page/new-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "notion-new-page",
name: "New Page in Database",
description: "Emit new event when a page is created in the selected database. [See the documentation](https://developers.notion.com/reference/page)",
version: "0.0.15",
version: "0.0.16",
type: "source",
props: {
...base.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "notion-new-webhook-event-instant",
name: "New Webhook Event (Instant)",
description: "Emit new event each time a webhook event is received. Webhook must be setup in Notion. [See the documentation](https://developers.notion.com/reference/webhooks#step-1-creating-a-webhook-subscription)",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
methods: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-page-or-subpage-updated",
name: "Page or Subpage Updated", /* eslint-disable-line pipedream/source-name */
description: "Emit new event when the selected page or one of its sub-pages is updated. [See the documentation](https://developers.notion.com/reference/page)",
version: "0.0.11",
version: "0.0.12",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "notion-page-properties-updated-instant",
name: "Page Properties Updated (Instant)",
description: "Emit new event each time a page property is updated in a database. For use with Page Properties Updated event type. Webhook must be set up in Notion. [See the documentation](https://developers.notion.com/reference/webhooks#step-1-creating-a-webhook-subscription)",
version: "0.0.1",
version: "0.0.2",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "notion-updated-page-by-timestamp",
name: "New or Updated Page in Database (By Timestamp)",
description: "Emit new event when a page is created or updated in the selected database. [See the documentation](https://developers.notion.com/reference/page)",
version: "0.0.3",
version: "0.0.4",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
key: "notion-updated-page-id",
name: "Page Updated", /* eslint-disable-line pipedream/source-name */
description: "Emit new event when a selected page is updated. [See the documentation](https://developers.notion.com/reference/page)",
version: "0.0.10",
version: "0.0.11",
type: "source",
dedupe: "unique",
props: {
Expand Down
2 changes: 1 addition & 1 deletion components/notion/sources/updated-page/updated-page.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default {
key: "notion-updated-page",
name: "New or Updated Page in Database (By Property)",
description: "Emit new event when a page is created or updated in the selected database. [See the documentation](https://developers.notion.com/reference/page)",
version: "0.1.11",
version: "0.1.12",
type: "source",
dedupe: "unique",
props: {
Expand Down
Loading
Loading