This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const GMAIL_LABEL_NAME = 'NotionToSync'; | |
| const SYNCED_LABEL = 'SyncedToNotion'; | |
| const GDRIVE_FOLDER_ID = ''; // optional; leave empty to upload directly to Notion | |
| const NOTION_DATABASE_ID = ''; | |
| const NOTION_SECRET = ''; | |
| const NOTION_VERSION = '2022-06-28'; | |
| // Direct-upload cap per Notion guide (multi-part required >20MB). :contentReference[oaicite:1]{index=1} | |
| const MAX_DIRECT_UPLOAD_BYTES = 20 * 1024 * 1024; |