Comparing version 0.6.3 to 0.6.4
@@ -0,0 +0,0 @@ { |
{ | ||
"name": "notabase", | ||
"version": "0.6.3", | ||
"version": "0.6.4", | ||
"description": "API Wrapper For Notion's Database", | ||
@@ -5,0 +5,0 @@ "main": "src/notabase.js", |
@@ -0,0 +0,0 @@ # Notabase (WIP) |
@@ -0,0 +0,0 @@ // just for code block |
@@ -0,0 +0,0 @@ const token_v2 = undefined |
@@ -40,4 +40,3 @@ import { isPageId } from './utils' | ||
makeRow(rowBlockId, schema) { | ||
let rowData = this.client.blockStore[rowBlockId].value | ||
let rowData = rowBlockId in this.client.blockStore ? this.client.blockStore[rowBlockId].value : undefined | ||
let props = Object.entries(schema).map(item => { | ||
@@ -44,0 +43,0 @@ let [key, v] = item |
@@ -0,0 +0,0 @@ import Collection from './collection' |
@@ -0,0 +0,0 @@ // just for collection row page |
@@ -0,0 +0,0 @@ const NOTION_BASE_URL = "https://www.notion.so" |
@@ -0,0 +0,0 @@ const Notabase = require('./src/notabase') |
Sorry, the diff of this file is not supported yet
26713