gatsby-source-notion-churnotion 1.1.25 → 1.1.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,6 +29,7 @@ exports.fetchAllBlocks = fetchAllBlocks;
29
29
  * Notion API에서 GET 요청을 수행하는 함수 (재시도 로직 포함)
30
30
  */
31
31
  const fetchGetWithRetry = async (url, options = {}, tryCount = 0, maxRetries = 5) => {
32
+ console.dir("get :" + url);
32
33
  try {
33
34
  const response = await connector_1.instance.get(url);
34
35
  let results = response.data.results;
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.25",
4
+ "version": "1.1.26",
5
5
  "skipLibCheck": true,
6
6
  "license": "0BSD",
7
7
  "main": "./dist/gatsby-node.js",