├── .devcontainer └── devcontainer.json ├── .env ├── LICENSE ├── README.md ├── clear-execution-history └── Clear_execution_history.json ├── docker-compose.yaml ├── notion-gcal-2-way-sync ├── .gitignore ├── Notion__Calendar_Sync.json ├── README.md ├── actionMaker.js ├── add-event-id-in-page.js ├── add-notino-id-in-evnet.js ├── loop.js ├── package-lock.json ├── package.json ├── src │ ├── configure.ts │ ├── google-calendar.ts │ ├── index.ts │ ├── notion.ts │ ├── time.ts │ └── utils.ts ├── test.js ├── tsconfig.json └── webpack.config.js ├── notion-mindmap ├── .gitignore ├── Notion_mindmap.json ├── actionMaker.js ├── mindmap.html ├── package-lock.json ├── package.json ├── src │ └── index.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock └── resource ├── notion-connection.png ├── notion-gcal.png ├── notion-mind-map-example.png └── notion-mind-map.png /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/README.md -------------------------------------------------------------------------------- /clear-execution-history/Clear_execution_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/clear-execution-history/Clear_execution_history.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/.gitignore -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/Notion__Calendar_Sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/Notion__Calendar_Sync.json -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/README.md -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/actionMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/actionMaker.js -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/add-event-id-in-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/add-event-id-in-page.js -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/add-notino-id-in-evnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/add-notino-id-in-evnet.js -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/loop.js -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/package-lock.json -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/package.json -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/src/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/src/configure.ts -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/src/google-calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/src/google-calendar.ts -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/src/index.ts -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/src/notion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/src/notion.ts -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/src/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/src/time.ts -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/src/utils.ts -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/test.js -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/tsconfig.json -------------------------------------------------------------------------------- /notion-gcal-2-way-sync/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-gcal-2-way-sync/webpack.config.js -------------------------------------------------------------------------------- /notion-mindmap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/.gitignore -------------------------------------------------------------------------------- /notion-mindmap/Notion_mindmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/Notion_mindmap.json -------------------------------------------------------------------------------- /notion-mindmap/actionMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/actionMaker.js -------------------------------------------------------------------------------- /notion-mindmap/mindmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/mindmap.html -------------------------------------------------------------------------------- /notion-mindmap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/package-lock.json -------------------------------------------------------------------------------- /notion-mindmap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/package.json -------------------------------------------------------------------------------- /notion-mindmap/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/src/index.ts -------------------------------------------------------------------------------- /notion-mindmap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/tsconfig.json -------------------------------------------------------------------------------- /notion-mindmap/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/webpack.config.js -------------------------------------------------------------------------------- /notion-mindmap/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/notion-mindmap/yarn.lock -------------------------------------------------------------------------------- /resource/notion-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/resource/notion-connection.png -------------------------------------------------------------------------------- /resource/notion-gcal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/resource/notion-gcal.png -------------------------------------------------------------------------------- /resource/notion-mind-map-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/resource/notion-mind-map-example.png -------------------------------------------------------------------------------- /resource/notion-mind-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5pecia1/n8n-workflow/HEAD/resource/notion-mind-map.png --------------------------------------------------------------------------------