├── .env.example ├── .github └── workflows │ └── backup.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.ts ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/backup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/.github/workflows/backup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/richartkeil/notion-guardian/HEAD/tsconfig.json --------------------------------------------------------------------------------