Skip to content

Commit 569d531

Browse files
[ACTIONS] Notion - notion-retrieve-block - Fix timeouts when fetching only page content when markdown is true (#18015)
* Fix ratelimits when fetching only page content when markdown is true * Accept code suggestion: * bump versions --------- Co-authored-by: Andrew Chuang <[email protected]>
1 parent 61746f4 commit 569d531

File tree

22 files changed

+22
-21
lines changed

22 files changed

+22
-21
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.4",
10+
version: "0.3.5",
1111
type: "action",
1212
props: {
1313
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.4",
8+
version: "0.0.5",
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.1",
11+
version: "0.2.2",
1212
type: "action",
1313
props: {
1414
notion,

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.17",
10+
version: "0.2.18",
1111
type: "action",
1212
props: {
1313
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.14",
10+
version: "0.0.15",
1111
type: "action",
1212
props: {
1313
notion,

components/notion/actions/query-database/query-database.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default {
55
key: "notion-query-database",
66
name: "Query Database",
77
description: "Query a database with a specified filter. [See the documentation](https://developers.notion.com/reference/post-database-query)",
8-
version: "0.0.12",
8+
version: "0.0.13",
99
type: "action",
1010
props: {
1111
notion,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "notion-retrieve-block",
55
name: "Retrieve Page Content",
66
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)",
7-
version: "0.2.2",
7+
version: "0.2.3",
88
type: "action",
99
props: {
1010
notion,

components/notion/actions/retrieve-database-content/retrieve-database-content.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "notion-retrieve-database-content",
55
name: "Retrieve Database Content",
66
description: "Get all content of a database. [See the documentation](https://developers.notion.com/reference/post-database-query)",
7-
version: "0.0.6",
7+
version: "0.0.7",
88
type: "action",
99
props: {
1010
notion,

components/notion/actions/retrieve-database-schema/retrieve-database-schema.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "notion-retrieve-database-schema",
55
name: "Retrieve Database Schema",
66
description: "Get the property schema of a database in Notion. [See the documentation](https://developers.notion.com/reference/retrieve-a-database)",
7-
version: "0.0.8",
7+
version: "0.0.9",
88
type: "action",
99
props: {
1010
notion,

components/notion/actions/retrieve-page-property-item/retrieve-page-property-item.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "notion-retrieve-page-property-item",
55
name: "Retrieve Page Property Item",
66
description: "Get a Property Item object for a selected page and property. [See the documentation](https://developers.notion.com/reference/retrieve-a-page-property)",
7-
version: "0.0.7",
7+
version: "0.0.8",
88
type: "action",
99
props: {
1010
notion,

0 commit comments

Comments
 (0)