Skip to content

Commit 350242a

Browse files
committed
Version bumps
1 parent 4613aca commit 350242a

File tree

25 files changed

+34
-34
lines changed

25 files changed

+34
-34
lines changed

components/notion/actions/append-block/append-block.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
name: "Append Block to Parent",
88
description:
99
"Append new and/or existing blocks to the specified parent. [See the documentation](https://developers.notion.com/reference/patch-block-children)",
10-
version: "0.3.7",
10+
version: "0.3.8",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/actions/complete-file-upload/complete-file-upload.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "notion-complete-file-upload",
77
name: "Complete File Upload",
88
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)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
type: "action",
1111
props: {
1212
notion,

components/notion/actions/create-comment/create-comment.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "notion-create-comment",
66
name: "Create Comment",
77
description: "Create a comment in a page or existing discussion thread. [See the documentation](https://developers.notion.com/reference/create-a-comment)",
8-
version: "0.0.7",
8+
version: "0.0.8",
99
type: "action",
1010
props: {
1111
notion,

components/notion/actions/create-file-upload/create-file-upload.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "notion-create-file-upload",
77
name: "Create File Upload",
88
description: "Create a file upload. [See the documentation](https://developers.notion.com/reference/create-a-file-upload)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
type: "action",
1111
props: {
1212
notion,
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
# Overview
22

3-
The Notion Create Page from Database action allows you to add pages to a Notion Database.
3+
The Notion Create Page from Data Source action allows you to add pages to a Notion Data Source.
44

5-
This action features easy to use dropdowns that automatically populate your databases as well as your database's properties, also known as columns.
5+
This action features easy to use dropdowns that automatically populate your data sources as well as your data sources's properties, also known as columns.
66

7-
This action interacts with the [Notion create a Page API endpoint](https://developers.notion.com/reference/post-page). The Database selected in the `Parent Database ID` is used as the `parent_id` parameter to that endpoint so the page is added to your databaset .
7+
This action interacts with the [Notion create a Page API endpoint](https://developers.notion.com/reference/post-page). The Data Source selected in the `Parent Data Source ID` is used as the `parent_id` parameter to that endpoint so the page is added to your data source.
88

99
# Getting Started
1010

1111
<iframe width="560" height="315" src="https://www.youtube.com/embed/wciWsu564_0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
1212

13-
[Follow this short 4 minute guide to connect your Notion account and add new Database pages](https://youtu.be/wciWsu564_0)
13+
[Follow this short 4 minute guide to connect your Notion account and add new Data Source pages](https://youtu.be/wciWsu564_0) (note: as of 2025-09-02, Databases are divided into multiple Data Sources, which are the entities that contain the pages)
1414

1515
### Props
1616

17-
When using the **Create Page from Database** action, there are several props to define:
17+
When using the **Create Page from Data Source** action, there are several props to define:
1818

1919
1. `Notion Account` - see the **Accounts** section below.
20-
2. `Parent Database ID` - the database to add a page to.
20+
2. `Parent Data Source ID` - the data source to add a page to.
2121
3. `Meta Types` - an icon or cover to add to the new page (optional).
22-
4. `Property Types` - one or more properties to add to the new page that correspond with columns in the database.
22+
4. `Property Types` - one or more properties to add to the new page that correspond with columns in the data source.
2323
5. `Page Content` - the content of the page that appears when it's opened in a side view.
2424

2525
Each selected `Property Type` will also add a new prop for that given column.
@@ -37,12 +37,12 @@ Each selected `Property Type` will also add a new prop for that given column.
3737
1. [Create a new workflow](https://pipedream.com/new).
3838
2. Select your trigger (HTTP, Cron, etc.).
3939
3. Click on the **+** button below the trigger step, and search for "Notion".
40-
4. Select the **Create Page from Database** action.
40+
4. Select the **Create Page from Data Source** action.
4141
5. Click the **Connect Account** button near the top of the step. This will prompt you to select any existing Notion accounts you've previously authenticated with Pipedream, or you can select a **New** account. Clicking **New** opens a new window asking you to allow Pipedream access to your Notion workspaces and pages. Choose the workspaces and pages where you'd like to install the app, then click **Allow**.
4242
6. That's it! You can now connect to the Notion API using any of the Slack actions within a Pipedream workflow.
4343

4444
# Troubleshooting
4545

46-
If your database doesn't appear under the options, try deleting your Notion account connection and reconnecting.
46+
If your data source doesn't appear under the options, try deleting your Notion account connection and reconnecting.
4747

48-
There's an issue with Notion Databases not appearing in the options if the Database was created _after_ you connected your Notion account to Pipedream.
48+
There's an issue with Notion Data Sources not appearing in the options if the Data Source was created _after_ you connected your Notion account to Pipedream.

components/notion/actions/create-page/create-page.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "notion-create-page",
88
name: "Create Page",
99
description: "Create a page from a parent page. [See the documentation](https://developers.notion.com/reference/post-page)",
10-
version: "0.2.20",
10+
version: "0.2.21",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/actions/delete-block/delete-block.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "notion-delete-block",
77
name: "Delete Block",
88
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)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
type: "action",
1111
props: {
1212
notion,

components/notion/actions/duplicate-page/duplicate-page.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "notion-duplicate-page",
88
name: "Duplicate Page",
99
description: "Create a new page copied from an existing page block. [See the documentation](https://developers.notion.com/reference/post-page)",
10-
version: "0.0.17",
10+
version: "0.0.18",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/actions/list-all-users/list-all-users.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "notion-list-all-users",
55
name: "List All Users",
66
description: "Returns all users in the workspace. [See the documentation](https://developers.notion.com/reference/get-users)",
7-
version: "0.0.2",
7+
version: "0.0.3",
88
type: "action",
99
props: {
1010
notion,

components/notion/actions/list-file-uploads/list-file-uploads.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "notion-list-file-uploads",
77
name: "List File Uploads",
88
description: "Use this action to list file uploads. [See the documentation](https://developers.notion.com/reference/list-file-uploads)",
9-
version: "0.0.2",
9+
version: "0.0.3",
1010
type: "action",
1111
props: {
1212
notion,

0 commit comments

Comments
 (0)