gatsby-source-notion-churnotion 1.1.6 → 1.1.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -165,7 +165,7 @@ const getPages = async ({ databaseId, reporter, getCache, actions, createNode, c
165
165
  update_date: page.last_edited_time,
166
166
  version: page.properties?.version?.number || null,
167
167
  description: page.properties?.description?.rich_text?.[0]?.plain_text ||
168
- null,
168
+ rawText,
169
169
  slug: slug,
170
170
  category_list: categoryPath,
171
171
  children: [],
@@ -54,7 +54,7 @@ const getRelatedPosts = (id, bow_vectors) => {
54
54
  getMemorizedVectorSimilarity(vector_x, vector_node));
55
55
  })
56
56
  .map((x) => x[0])
57
- .slice(0, 5);
57
+ .slice(0, 6);
58
58
  };
59
59
  const getTextFromRawText = async (doc) => {
60
60
  return doc
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gatsby-source-notion-churnotion",
3
3
  "description": "Gatsby plugin that can connect with One Notion Database RECURSIVELY using official API",
4
- "version": "1.1.6",
4
+ "version": "1.1.8",
5
5
  "skipLibCheck": true,
6
6
  "license": "0BSD",
7
7
  "main": "./dist/gatsby-node.js",