@texonom/ncompat 1.1.2 → 1.1.3
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.
- package/package.json +5 -5
- package/readme.md +2 -2
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@texonom/ncompat",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Compatibility layer between the official Notion API and unofficial private API.",
|
|
6
|
-
"repository": "texonom/notion",
|
|
6
|
+
"repository": "texonom/notion-node",
|
|
7
7
|
"author": "Alan Jo <sungle3737@gmail.com>",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"main": "./build/index.js",
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"p-queue": "^7.3.4",
|
|
21
|
-
"@texonom/ntypes": "^1.1.
|
|
22
|
-
"@texonom/nutils": "^1.1.
|
|
21
|
+
"@texonom/ntypes": "^1.1.3",
|
|
22
|
+
"@texonom/nutils": "^1.1.3"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@notionhq/client": "^1.0.4",
|
|
26
|
-
"@texonom/nclient": "^1.1.
|
|
26
|
+
"@texonom/nclient": "^1.1.3"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"@notionhq/client": "^1.0.4"
|
package/readme.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img alt="React Notion X" src="https://raw.githubusercontent.com/texonom/notion/master/media/notion-ts.png" width="689">
|
|
2
|
+
<img alt="React Notion X" src="https://raw.githubusercontent.com/texonom/notion-node/master/media/notion-ts.png" width="689">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
# ncompat
|
|
@@ -34,7 +34,7 @@ Currently, ~20 blocks have full compatibility and 8 have partial compatibility (
|
|
|
34
34
|
|
|
35
35
|
I recommend checking out [the ncompat demo](https://nreact-official-api-demo.transitivebullsh.it/) side-by-side with the [normal nreact demo](https://nreact-demo.transitivebullsh.it/) (which uses the unofficial Notion API via `nclient`) and the [equivalent public notion page](https://transitive-bs.notion.site/Notion-Kit-Test-Suite-067dd719a912471ea9a3ac10710e7fdf).
|
|
36
36
|
|
|
37
|
-
Note that using the official API with `ncompat` is **significantly slower** than using the unofficial API via `nclient` because of [reasons](https://github.com/texonom/notion/issues/269#issuecomment-1100648873).
|
|
37
|
+
Note that using the official API with `ncompat` is **significantly slower** than using the unofficial API via `nclient` because of [reasons](https://github.com/texonom/notion-node/issues/269#issuecomment-1100648873).
|
|
38
38
|
|
|
39
39
|
The main feature missing from `ncompat` right now is collection (database) support. PRs welcome 😃
|
|
40
40
|
|