Skip to content

Commit 8aff361

Browse files
committed
versions
1 parent 92eadc8 commit 8aff361

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

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.5",
8+
version: "0.0.6",
99
type: "action",
1010
props: {
1111
notion,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "notion-create-page-from-database",
99
name: "Create Page from Database",
1010
description: "Create a page from a database. [See the documentation](https://developers.notion.com/reference/post-page)",
11-
version: "0.2.2",
11+
version: "0.2.3",
1212
type: "action",
1313
props: {
1414
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.15",
10+
version: "0.0.16",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/actions/update-page/update-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-update-page",
88
name: "Update Page",
99
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)",
10-
version: "1.1.8",
10+
version: "1.1.9",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/sources/new-database/new-database.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "notion-new-database",
88
name: "New Database Created",
99
description: "Emit new event when a database is created. [See the documentation](https://developers.notion.com/reference/database)",
10-
version: "0.0.12",
10+
version: "0.0.13",
1111
type: "source",
1212
props: {
1313
...base.props,

components/notion/sources/new-page/new-page.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "notion-new-page",
99
name: "New Page in Database",
1010
description: "Emit new event when a page is created in the selected database. [See the documentation](https://developers.notion.com/reference/page)",
11-
version: "0.0.14",
11+
version: "0.0.15",
1212
type: "source",
1313
props: {
1414
...base.props,

components/notion/sources/page-or-subpage-updated/page-or-subpage-updated.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default {
77
key: "notion-page-or-subpage-updated",
88
name: "Page or Subpage Updated", /* eslint-disable-line pipedream/source-name */
99
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)",
10-
version: "0.0.10",
10+
version: "0.0.11",
1111
type: "source",
1212
dedupe: "unique",
1313
props: {

components/notion/sources/updated-page/updated-page.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default {
99
key: "notion-updated-page",
1010
name: "New or Updated Page in Database (By Property)",
1111
description: "Emit new event when a page is created or updated in the selected database. [See the documentation](https://developers.notion.com/reference/page)",
12-
version: "0.1.9",
12+
version: "0.1.10",
1313
type: "source",
1414
dedupe: "unique",
1515
props: {

0 commit comments

Comments
 (0)