File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * The limits that the Notion API uses for property values.
3
+ * @see https://developers.notion.com/reference/request-limits#limits-for-property-values
4
+ */
5
+ export const LIMITS = {
6
+ /** @see https://developers.notion.com/reference/request-limits#size-limits */
7
+ PAYLOAD_BLOCKS : 1000 ,
8
+
9
+ RICH_TEXT_ARRAYS : 100 ,
10
+ RICH_TEXT : {
11
+ TEXT_CONTENT : 2000 ,
12
+ LINK_URL : 1000 ,
13
+ EQUATION_EXPRESSION : 1000 ,
14
+ } ,
15
+ URL : 1000 ,
16
+ EMAIL : 200 ,
17
+ PHONE : 200 ,
18
+ MULTI_SELECT : 100 ,
19
+ RELATION : 100 ,
20
+ PEOPLE : 100 ,
21
+ } ;
Original file line number Diff line number Diff line change 1
1
export * as Blocks from './builders' ;
2
+ export * as Constants from './constants' ;
2
3
export * as Types from './types' ;
3
4
export * as Utils from './utils' ;
You can’t perform that action at this time.
0 commit comments