You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/notion/sources/page-or-subpage-updated/page-or-subpage-updated.mjs
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,17 @@ export default {
6
6
...base,
7
7
key: "notion-page-or-subpage-updated",
8
8
name: "Page or Subpage Updated",/* eslint-disable-line pipedream/source-name */
9
-
description: "Emit new event when a page or one of its sub-pages is updated.",
9
+
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
10
version: "0.0.6",
11
11
type: "source",
12
12
dedupe: "unique",
13
13
props: {
14
14
...base.props,
15
+
infoLabel: {
16
+
type: "alert",
17
+
alertType: "info",
18
+
content: "Ensure the selected page is shared with your Pipedream integration to receive events.",
Copy file name to clipboardExpand all lines: components/notion/sources/updated-page/updated-page.mjs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@ import zlib from "zlib";
7
7
exportdefault{
8
8
...base,
9
9
key: "notion-updated-page",
10
-
name: "Updated Page in Database",/* eslint-disable-line pipedream/source-name */
11
-
description: "Emit new event when a page in a database is updated. To select a specific page, use `Updated Page ID` instead",
10
+
name: "New or Updated Page in Database",/* eslint-disable-line pipedream/source-name */
11
+
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
12
version: "0.1.4",
13
13
type: "source",
14
14
dedupe: "unique",
@@ -23,7 +23,7 @@ export default {
23
23
includeNewPages: {
24
24
type: "boolean",
25
25
label: "Include New Pages",
26
-
description: "Set to `true` to emit events when pages are created. Set to `false` to ignore new pages.",
26
+
description: "Set to `false` to emit events only for updates, not for new pages.",
27
27
default: true,
28
28
},
29
29
properties: {
@@ -40,7 +40,7 @@ export default {
40
40
},
41
41
alert: {
42
42
type: "alert",
43
-
alertType: "info",
43
+
alertType: "warning",
44
44
content: "Source not saving? Your database might be too large. If deployment takes longer than one minute, an error will occur.",
0 commit comments