diff --git a/typescript/examples/vite_basic/.gitignore b/typescript/examples/vite_basic/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/typescript/examples/vite_basic/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/typescript/examples/vite_basic/README.md b/typescript/examples/vite_basic/README.md new file mode 100644 index 0000000..da98444 --- /dev/null +++ b/typescript/examples/vite_basic/README.md @@ -0,0 +1,54 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: + +```js +export default tseslint.config({ + extends: [ + // Remove ...tseslint.configs.recommended and replace with this + ...tseslint.configs.recommendedTypeChecked, + // Alternatively, use this for stricter rules + ...tseslint.configs.strictTypeChecked, + // Optionally, add this for stylistic rules + ...tseslint.configs.stylisticTypeChecked, + ], + languageOptions: { + // other options... + parserOptions: { + project: ['./tsconfig.node.json', './tsconfig.app.json'], + tsconfigRootDir: import.meta.dirname, + }, + }, +}) +``` + +You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: + +```js +// eslint.config.js +import reactX from 'eslint-plugin-react-x' +import reactDom from 'eslint-plugin-react-dom' + +export default tseslint.config({ + plugins: { + // Add the react-x and react-dom plugins + 'react-x': reactX, + 'react-dom': reactDom, + }, + rules: { + // other rules... + // Enable its recommended typescript rules + ...reactX.configs['recommended-typescript'].rules, + ...reactDom.configs.recommended.rules, + }, +}) +``` diff --git a/typescript/examples/vite_basic/eslint.config.js b/typescript/examples/vite_basic/eslint.config.js new file mode 100644 index 0000000..092408a --- /dev/null +++ b/typescript/examples/vite_basic/eslint.config.js @@ -0,0 +1,28 @@ +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' + +export default tseslint.config( + { ignores: ['dist'] }, + { + extends: [js.configs.recommended, ...tseslint.configs.recommended], + files: ['**/*.{ts,tsx}'], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + 'react-hooks': reactHooks, + 'react-refresh': reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, + }, +) diff --git a/typescript/src/examples/index.html b/typescript/examples/vite_basic/index.html similarity index 65% rename from typescript/src/examples/index.html rename to typescript/examples/vite_basic/index.html index 6bc7918..c1435c0 100644 --- a/typescript/src/examples/index.html +++ b/typescript/examples/vite_basic/index.html @@ -4,10 +4,10 @@ - JSON-DOC Renderer + Vite + React + TS -
- +
+ diff --git a/typescript/examples/vite_basic/package.json b/typescript/examples/vite_basic/package.json new file mode 100644 index 0000000..3ccda49 --- /dev/null +++ b/typescript/examples/vite_basic/package.json @@ -0,0 +1,31 @@ +{ + "name": "vite_basic", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview", + "preinstall": "npx only-allow pnpm" + }, + "dependencies": { + "@textcortex/jsondoc": "0.2.0-alpha.1", + "react": "^19.1.0", + "react-dom": "^19.1.0" + }, + "devDependencies": { + "@eslint/js": "^9.25.0", + "@types/react": "^19.1.2", + "@types/react-dom": "^19.1.2", + "@vitejs/plugin-react": "^4.4.1", + "eslint": "^9.25.0", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.19", + "globals": "^16.0.0", + "typescript": "~5.8.3", + "typescript-eslint": "^8.30.1", + "vite": "^6.3.5" + } +} diff --git a/typescript/examples/vite_basic/pnpm-lock.yaml b/typescript/examples/vite_basic/pnpm-lock.yaml new file mode 100644 index 0000000..8c1ff2c --- /dev/null +++ b/typescript/examples/vite_basic/pnpm-lock.yaml @@ -0,0 +1,2861 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + dependencies: + '@textcortex/jsondoc': + specifier: 0.2.0-alpha.1 + version: 0.2.0-alpha.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3) + react: + specifier: ^19.1.0 + version: 19.1.0 + react-dom: + specifier: ^19.1.0 + version: 19.1.0(react@19.1.0) + devDependencies: + '@eslint/js': + specifier: ^9.25.0 + version: 9.28.0 + '@types/react': + specifier: ^19.1.2 + version: 19.1.8 + '@types/react-dom': + specifier: ^19.1.2 + version: 19.1.6(@types/react@19.1.8) + '@vitejs/plugin-react': + specifier: ^4.4.1 + version: 4.5.2(vite@6.3.5(@types/node@24.0.1)) + eslint: + specifier: ^9.25.0 + version: 9.28.0 + eslint-plugin-react-hooks: + specifier: ^5.2.0 + version: 5.2.0(eslint@9.28.0) + eslint-plugin-react-refresh: + specifier: ^0.4.19 + version: 0.4.20(eslint@9.28.0) + globals: + specifier: ^16.0.0 + version: 16.2.0 + typescript: + specifier: ~5.8.3 + version: 5.8.3 + typescript-eslint: + specifier: ^8.30.1 + version: 8.34.0(eslint@9.28.0)(typescript@5.8.3) + vite: + specifier: ^6.3.5 + version: 6.3.5(@types/node@24.0.1) + +packages: + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.27.5': + resolution: {integrity: sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.27.4': + resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.27.5': + resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.27.3': + resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-plugin-utils@7.27.1': + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.27.6': + resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.27.5': + resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-transform-react-jsx-self@7.27.1': + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.27.1': + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.27.4': + resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.27.6': + resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==} + engines: {node: '>=6.9.0'} + + '@esbuild/aix-ppc64@0.25.5': + resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.5': + resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.5': + resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.5': + resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.5': + resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.5': + resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.5': + resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.5': + resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.5': + resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.5': + resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.5': + resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.5': + resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.5': + resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.5': + resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.5': + resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.5': + resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.5': + resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.5': + resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.5': + resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.5': + resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.5': + resolution: {integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.25.5': + resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.5': + resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.5': + resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.5': + resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.7.0': + resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/config-array@0.20.1': + resolution: {integrity: sha512-OL0RJzC/CBzli0DrrR31qzj6d6i6Mm3HByuhflhl4LOBiWxN+3i6/t/ZQQNii4tjksXi8r2CRW1wMpWA2ULUEw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.2.3': + resolution: {integrity: sha512-u180qk2Um1le4yf0ruXH3PYFeEZeYC3p/4wCTKrr2U1CmGdzGi3KtY0nuPDH48UJxlKCC5RDzbcbh4X0XlqgHg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.14.0': + resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.15.0': + resolution: {integrity: sha512-b7ePw78tEWWkpgZCDYkbqDOP8dmM6qe+AOC6iuJqlq1R/0ahMAeH3qynpnqKFGkMltrp44ohV4ubGyvLX28tzw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.28.0': + resolution: {integrity: sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.3.2': + resolution: {integrity: sha512-4SaFZCNfJqvk/kenHpI8xvN42DMaoycy4PzKc5otHxRswww1kAt82OlBuwRVLofCACCTZEcla2Ydxv8scMXaTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@puppeteer/browsers@2.10.5': + resolution: {integrity: sha512-eifa0o+i8dERnngJwKrfp3dEq7ia5XFyoqB17S4gK8GhsQE4/P8nxOfQSE0zQHxzzLo/cmF+7+ywEQ7wK7Fb+w==} + engines: {node: '>=18'} + hasBin: true + + '@rolldown/pluginutils@1.0.0-beta.11': + resolution: {integrity: sha512-L/gAA/hyCSuzTF1ftlzUSI/IKr2POHsv1Dd78GfqkR83KMNuswWD61JxGV2L7nRwBBBSDr6R1gCkdTmoN7W4ag==} + + '@rollup/rollup-android-arm-eabi@4.43.0': + resolution: {integrity: sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.43.0': + resolution: {integrity: sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.43.0': + resolution: {integrity: sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.43.0': + resolution: {integrity: sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.43.0': + resolution: {integrity: sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.43.0': + resolution: {integrity: sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.43.0': + resolution: {integrity: sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.43.0': + resolution: {integrity: sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.43.0': + resolution: {integrity: sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.43.0': + resolution: {integrity: sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.43.0': + resolution: {integrity: sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.43.0': + resolution: {integrity: sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.43.0': + resolution: {integrity: sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.43.0': + resolution: {integrity: sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.43.0': + resolution: {integrity: sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.43.0': + resolution: {integrity: sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.43.0': + resolution: {integrity: sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.43.0': + resolution: {integrity: sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.43.0': + resolution: {integrity: sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.43.0': + resolution: {integrity: sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==} + cpu: [x64] + os: [win32] + + '@textcortex/jsondoc@0.2.0-alpha.1': + resolution: {integrity: sha512-9aCEiIYMxU9QbCV8GXbUxUuhI75CKNGBng9I/FPnLMgHEvSCOhv+yA1eDhEy0L9AXLfgmyAGi1wpSAfbiJ0y7g==} + engines: {node: '>=16.0.0'} + peerDependencies: + react: ^18.2.0 + react-dom: ^18.2.0 + + '@tootallnate/quickjs-emscripten@0.23.0': + resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.27.0': + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.7': + resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==} + + '@types/estree@1.0.7': + resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/node@24.0.1': + resolution: {integrity: sha512-MX4Zioh39chHlDJbKmEgydJDS3tspMP/lnQC67G3SWsTnb9NeYVWOjkxpOSy4oMfPs4StcWHwBrvUb4ybfnuaw==} + + '@types/react-dom@19.1.6': + resolution: {integrity: sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==} + peerDependencies: + '@types/react': ^19.0.0 + + '@types/react@19.1.8': + resolution: {integrity: sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==} + + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + + '@typescript-eslint/eslint-plugin@8.34.0': + resolution: {integrity: sha512-QXwAlHlbcAwNlEEMKQS2RCgJsgXrTJdjXT08xEgbPFa2yYQgVjBymxP5DrfrE7X7iodSzd9qBUHUycdyVJTW1w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.34.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/parser@8.34.0': + resolution: {integrity: sha512-vxXJV1hVFx3IXz/oy2sICsJukaBrtDEQSBiV48/YIV5KWjX1dO+bcIr/kCPrW6weKXvsaGKFNlwH0v2eYdRRbA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/project-service@8.34.0': + resolution: {integrity: sha512-iEgDALRf970/B2YExmtPMPF54NenZUf4xpL3wsCRx/lgjz6ul/l13R81ozP/ZNuXfnLCS+oPmG7JIxfdNYKELw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/scope-manager@8.34.0': + resolution: {integrity: sha512-9Ac0X8WiLykl0aj1oYQNcLZjHgBojT6cW68yAgZ19letYu+Hxd0rE0veI1XznSSst1X5lwnxhPbVdwjDRIomRw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.34.0': + resolution: {integrity: sha512-+W9VYHKFIzA5cBeooqQxqNriAP0QeQ7xTiDuIOr71hzgffm3EL2hxwWBIIj4GuofIbKxGNarpKqIq6Q6YrShOA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/type-utils@8.34.0': + resolution: {integrity: sha512-n7zSmOcUVhcRYC75W2pnPpbO1iwhJY3NLoHEtbJwJSNlVAZuwqu05zY3f3s2SDWWDSo9FdN5szqc73DCtDObAg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/types@8.34.0': + resolution: {integrity: sha512-9V24k/paICYPniajHfJ4cuAWETnt7Ssy+R0Rbcqo5sSFr3QEZ/8TSoUi9XeXVBGXCaLtwTOKSLGcInCAvyZeMA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.34.0': + resolution: {integrity: sha512-rOi4KZxI7E0+BMqG7emPSK1bB4RICCpF7QD3KCLXn9ZvWoESsOMlHyZPAHyG04ujVplPaHbmEvs34m+wjgtVtg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/utils@8.34.0': + resolution: {integrity: sha512-8L4tWatGchV9A1cKbjaavS6mwYwp39jql8xUmIIKJdm+qiaeHy5KMKlBrf30akXAWBzn2SqKsNOtSENWUwg7XQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/visitor-keys@8.34.0': + resolution: {integrity: sha512-qHV7pW7E85A0x6qyrFn+O+q1k1p3tQCsqIZ1KZ5ESLXY57aTvUd3/a4rdPTeXisvhXn2VQG0VSKUqs8KHF2zcA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@vitejs/plugin-react@4.5.2': + resolution: {integrity: sha512-QNVT3/Lxx99nMQWJWF7K4N6apUEuT0KlZA3mx/mVaoGj3smm/8rc8ezz15J1pcbcjDK0V15rpHetVfya08r76Q==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + engines: {node: '>= 14'} + + ajv-formats@3.0.1: + resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + ast-types@0.13.4: + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} + + b4a@1.6.7: + resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + bare-events@2.5.4: + resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==} + + bare-fs@4.1.5: + resolution: {integrity: sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==} + engines: {bare: '>=1.16.0'} + peerDependencies: + bare-buffer: '*' + peerDependenciesMeta: + bare-buffer: + optional: true + + bare-os@3.6.1: + resolution: {integrity: sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==} + engines: {bare: '>=1.14.0'} + + bare-path@3.0.0: + resolution: {integrity: sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==} + + bare-stream@2.6.5: + resolution: {integrity: sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==} + peerDependencies: + bare-buffer: '*' + bare-events: '*' + peerDependenciesMeta: + bare-buffer: + optional: true + bare-events: + optional: true + + basic-ftp@5.0.5: + resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} + engines: {node: '>=10.0.0'} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.25.0: + resolution: {integrity: sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + caniuse-lite@1.0.30001722: + resolution: {integrity: sha512-DCQHBBZtiK6JVkAGw7drvAMK0Q0POD/xZvEmDp6baiMMP6QXXk9HpD6mNYBZWhOPG6LvIDb82ITqtWjhDckHCA==} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chromium-bidi@5.1.0: + resolution: {integrity: sha512-9MSRhWRVoRPDG0TgzkHrshFSJJNZzfY5UFqUMuksg7zL1yoZIZ3jLB0YAgHclbiAxPI86pBnwDX1tbzoiV8aFw==} + peerDependencies: + devtools-protocol: '*' + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + data-uri-to-buffer@6.0.2: + resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} + engines: {node: '>= 14'} + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + degenerator@5.0.1: + resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + engines: {node: '>= 14'} + + devtools-protocol@0.0.1452169: + resolution: {integrity: sha512-FOFDVMGrAUNp0dDKsAU1TorWJUx2JOU1k9xdgBKKJF3IBh/Uhl2yswG5r3TEAOrCiGY2QRp1e6LVDQrCsTKO4g==} + + electron-to-chromium@1.5.166: + resolution: {integrity: sha512-QPWqHL0BglzPYyJJ1zSSmwFFL6MFXhbACOCcsCdUMCkzPdS9/OIBVxg516X/Ado2qwAq8k0nJJ7phQPCqiaFAw==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + esbuild@0.25.5: + resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-plugin-react-hooks@5.2.0: + resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 + + eslint-plugin-react-refresh@0.4.20: + resolution: {integrity: sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA==} + peerDependencies: + eslint: '>=8.40' + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.28.0: + resolution: {integrity: sha512-ocgh41VhRlf9+fVpe7QKzwLj9c92fDiqOj8Y3Sd4/ZmVA4Btx4PlUYPq4pp9JDyupkf1upbEXecxL2mwNV7jPQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + extract-zip@2.0.1: + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-uri@3.0.6: + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + fdir@6.4.6: + resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + get-uri@6.0.4: + resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==} + engines: {node: '>= 14'} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@16.2.0: + resolution: {integrity: sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg==} + engines: {node: '>=18'} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + katex@0.16.22: + resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==} + hasBin: true + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + netmask@2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + pac-proxy-agent@7.2.0: + resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} + engines: {node: '>= 14'} + + pac-resolver@7.0.1: + resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} + engines: {node: '>= 14'} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + postcss@8.5.5: + resolution: {integrity: sha512-d/jtm+rdNT8tpXuHY5MMtcbJFBkhXE6593XVR9UoGCH8jSFGci7jGvMGH5RYd5PBJW+00NZQt6gf7CbagJCrhg==} + engines: {node: ^10 || ^12 || >=14} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + + proxy-agent@6.5.0: + resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} + engines: {node: '>= 14'} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + puppeteer-core@24.10.0: + resolution: {integrity: sha512-xX0QJRc8t19iAwRDsAOR38Q/Zx/W6WVzJCEhKCAwp2XMsaWqfNtQ+rBfQW9PlF+Op24d7c8Zlgq9YNmbnA7hdQ==} + engines: {node: '>=18'} + + puppeteer@24.10.0: + resolution: {integrity: sha512-Oua9VkGpj0S2psYu5e6mCer6W9AU9POEQh22wRgSXnLXASGH+MwLUVWgLCLeP9QPHHcJ7tySUlg4Sa9OJmaLpw==} + engines: {node: '>=18'} + hasBin: true + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + react-dom@19.1.0: + resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==} + peerDependencies: + react: ^19.1.0 + + react-intersection-observer@9.16.0: + resolution: {integrity: sha512-w9nJSEp+DrW9KmQmeWHQyfaP6b03v+TdXynaoA964Wxt7mdR3An11z4NNCQgL4gKSK7y1ver2Fq+JKH6CWEzUA==} + peerDependencies: + react: ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + react-dom: + optional: true + + react-refresh@0.17.0: + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} + engines: {node: '>=0.10.0'} + + react@19.1.0: + resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} + engines: {node: '>=0.10.0'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rollup@4.43.0: + resolution: {integrity: sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + scheduler@0.26.0: + resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + socks-proxy-agent@8.0.5: + resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} + engines: {node: '>= 14'} + + socks@2.8.5: + resolution: {integrity: sha512-iF+tNDQla22geJdTyJB1wM/qrX9DMRwWrciEPwWLPRWAUEM8sQiyxgckLxWT1f7+9VabJS0jTGGr4QgBuvi6Ww==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + streamx@2.22.1: + resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-json-comments@5.0.2: + resolution: {integrity: sha512-4X2FR3UwhNUE9G49aIsJW5hRRR3GXGTBTZRMfv568O60ojM8HcWjV/VxAxCDW3SUND33O6ZY66ZuRcdkj73q2g==} + engines: {node: '>=14.16'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + tar-fs@3.0.9: + resolution: {integrity: sha512-XF4w9Xp+ZQgifKakjZYmFdkLoSWd34VGKcsTCwlNWM7QG3ZbaxnTsaBwnjFZqHRf/rROxaR8rXnbtwdvaDI+lA==} + + tar-stream@3.1.7: + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} + + text-decoder@1.2.3: + resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + typed-query-selector@2.12.0: + resolution: {integrity: sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==} + + typescript-eslint@8.34.0: + resolution: {integrity: sha512-MRpfN7uYjTrTGigFCt8sRyNqJFhjN0WwZecldaqhWm+wy0gaRt8Edb/3cuUy0zdq2opJWT6iXINKAtewnDOltQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + undici-types@7.8.0: + resolution: {integrity: sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==} + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + vite@6.3.5: + resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + ws@8.18.2: + resolution: {integrity: sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zod@3.25.63: + resolution: {integrity: sha512-3ttCkqhtpncYXfP0f6dsyabbYV/nEUW+Xlu89jiXbTBifUfjaSqXOG6JnQPLtqt87n7KAmnMqcjay6c0Wq0Vbw==} + +snapshots: + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.27.5': {} + + '@babel/core@7.27.4': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.5 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) + '@babel/helpers': 7.27.6 + '@babel/parser': 7.27.5 + '@babel/template': 7.27.2 + '@babel/traverse': 7.27.4 + '@babel/types': 7.27.6 + convert-source-map: 2.0.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.27.5': + dependencies: + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.27.5 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.25.0 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.27.4 + '@babel/types': 7.27.6 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.27.4 + transitivePeerDependencies: + - supports-color + + '@babel/helper-plugin-utils@7.27.1': {} + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helpers@7.27.6': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.27.6 + + '@babel/parser@7.27.5': + dependencies: + '@babel/types': 7.27.6 + + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.4)': + dependencies: + '@babel/core': 7.27.4 + '@babel/helper-plugin-utils': 7.27.1 + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + + '@babel/traverse@7.27.4': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.27.5 + '@babel/parser': 7.27.5 + '@babel/template': 7.27.2 + '@babel/types': 7.27.6 + debug: 4.4.1 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.27.6': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@esbuild/aix-ppc64@0.25.5': + optional: true + + '@esbuild/android-arm64@0.25.5': + optional: true + + '@esbuild/android-arm@0.25.5': + optional: true + + '@esbuild/android-x64@0.25.5': + optional: true + + '@esbuild/darwin-arm64@0.25.5': + optional: true + + '@esbuild/darwin-x64@0.25.5': + optional: true + + '@esbuild/freebsd-arm64@0.25.5': + optional: true + + '@esbuild/freebsd-x64@0.25.5': + optional: true + + '@esbuild/linux-arm64@0.25.5': + optional: true + + '@esbuild/linux-arm@0.25.5': + optional: true + + '@esbuild/linux-ia32@0.25.5': + optional: true + + '@esbuild/linux-loong64@0.25.5': + optional: true + + '@esbuild/linux-mips64el@0.25.5': + optional: true + + '@esbuild/linux-ppc64@0.25.5': + optional: true + + '@esbuild/linux-riscv64@0.25.5': + optional: true + + '@esbuild/linux-s390x@0.25.5': + optional: true + + '@esbuild/linux-x64@0.25.5': + optional: true + + '@esbuild/netbsd-arm64@0.25.5': + optional: true + + '@esbuild/netbsd-x64@0.25.5': + optional: true + + '@esbuild/openbsd-arm64@0.25.5': + optional: true + + '@esbuild/openbsd-x64@0.25.5': + optional: true + + '@esbuild/sunos-x64@0.25.5': + optional: true + + '@esbuild/win32-arm64@0.25.5': + optional: true + + '@esbuild/win32-ia32@0.25.5': + optional: true + + '@esbuild/win32-x64@0.25.5': + optional: true + + '@eslint-community/eslint-utils@4.7.0(eslint@9.28.0)': + dependencies: + eslint: 9.28.0 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/config-array@0.20.1': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.2.3': {} + + '@eslint/core@0.14.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/core@0.15.0': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.28.0': {} + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.3.2': + dependencies: + '@eslint/core': 0.15.0 + levn: 0.4.1 + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@puppeteer/browsers@2.10.5': + dependencies: + debug: 4.4.1 + extract-zip: 2.0.1 + progress: 2.0.3 + proxy-agent: 6.5.0 + semver: 7.7.2 + tar-fs: 3.0.9 + yargs: 17.7.2 + transitivePeerDependencies: + - bare-buffer + - supports-color + + '@rolldown/pluginutils@1.0.0-beta.11': {} + + '@rollup/rollup-android-arm-eabi@4.43.0': + optional: true + + '@rollup/rollup-android-arm64@4.43.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.43.0': + optional: true + + '@rollup/rollup-darwin-x64@4.43.0': + optional: true + + '@rollup/rollup-freebsd-arm64@4.43.0': + optional: true + + '@rollup/rollup-freebsd-x64@4.43.0': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.43.0': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.43.0': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.43.0': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.43.0': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.43.0': + optional: true + + '@rollup/rollup-linux-x64-musl@4.43.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.43.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.43.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.43.0': + optional: true + + '@textcortex/jsondoc@0.2.0-alpha.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)': + dependencies: + ajv: 8.17.1 + ajv-formats: 3.0.1(ajv@8.17.1) + json5: 2.2.3 + katex: 0.16.22 + puppeteer: 24.10.0(typescript@5.8.3) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-intersection-observer: 9.16.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + strip-json-comments: 5.0.2 + transitivePeerDependencies: + - bare-buffer + - bufferutil + - supports-color + - typescript + - utf-8-validate + + '@tootallnate/quickjs-emscripten@0.23.0': {} + + '@types/babel__core@7.20.5': + dependencies: + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + '@types/babel__generator': 7.27.0 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.7 + + '@types/babel__generator@7.27.0': + dependencies: + '@babel/types': 7.27.6 + + '@types/babel__template@7.4.4': + dependencies: + '@babel/parser': 7.27.5 + '@babel/types': 7.27.6 + + '@types/babel__traverse@7.20.7': + dependencies: + '@babel/types': 7.27.6 + + '@types/estree@1.0.7': {} + + '@types/estree@1.0.8': {} + + '@types/json-schema@7.0.15': {} + + '@types/node@24.0.1': + dependencies: + undici-types: 7.8.0 + optional: true + + '@types/react-dom@19.1.6(@types/react@19.1.8)': + dependencies: + '@types/react': 19.1.8 + + '@types/react@19.1.8': + dependencies: + csstype: 3.1.3 + + '@types/yauzl@2.10.3': + dependencies: + '@types/node': 24.0.1 + optional: true + + '@typescript-eslint/eslint-plugin@8.34.0(@typescript-eslint/parser@8.34.0(eslint@9.28.0)(typescript@5.8.3))(eslint@9.28.0)(typescript@5.8.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.34.0(eslint@9.28.0)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/type-utils': 8.34.0(eslint@9.28.0)(typescript@5.8.3) + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0)(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.34.0 + eslint: 9.28.0 + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.34.0(eslint@9.28.0)(typescript@5.8.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/typescript-estree': 8.34.0(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.34.0 + debug: 4.4.1 + eslint: 9.28.0 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.34.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.34.0(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + debug: 4.4.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.34.0': + dependencies: + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/visitor-keys': 8.34.0 + + '@typescript-eslint/tsconfig-utils@8.34.0(typescript@5.8.3)': + dependencies: + typescript: 5.8.3 + + '@typescript-eslint/type-utils@8.34.0(eslint@9.28.0)(typescript@5.8.3)': + dependencies: + '@typescript-eslint/typescript-estree': 8.34.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0)(typescript@5.8.3) + debug: 4.4.1 + eslint: 9.28.0 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.34.0': {} + + '@typescript-eslint/typescript-estree@8.34.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/project-service': 8.34.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.34.0(typescript@5.8.3) + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/visitor-keys': 8.34.0 + debug: 4.4.1 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.34.0(eslint@9.28.0)(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0) + '@typescript-eslint/scope-manager': 8.34.0 + '@typescript-eslint/types': 8.34.0 + '@typescript-eslint/typescript-estree': 8.34.0(typescript@5.8.3) + eslint: 9.28.0 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.34.0': + dependencies: + '@typescript-eslint/types': 8.34.0 + eslint-visitor-keys: 4.2.1 + + '@vitejs/plugin-react@4.5.2(vite@6.3.5(@types/node@24.0.1))': + dependencies: + '@babel/core': 7.27.4 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.4) + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.4) + '@rolldown/pluginutils': 1.0.0-beta.11 + '@types/babel__core': 7.20.5 + react-refresh: 0.17.0 + vite: 6.3.5(@types/node@24.0.1) + transitivePeerDependencies: + - supports-color + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn@8.15.0: {} + + agent-base@7.1.3: {} + + ajv-formats@3.0.1(ajv@8.17.1): + optionalDependencies: + ajv: 8.17.1 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.6 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + ansi-regex@5.0.1: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + argparse@2.0.1: {} + + ast-types@0.13.4: + dependencies: + tslib: 2.8.1 + + b4a@1.6.7: {} + + balanced-match@1.0.2: {} + + bare-events@2.5.4: + optional: true + + bare-fs@4.1.5: + dependencies: + bare-events: 2.5.4 + bare-path: 3.0.0 + bare-stream: 2.6.5(bare-events@2.5.4) + optional: true + + bare-os@3.6.1: + optional: true + + bare-path@3.0.0: + dependencies: + bare-os: 3.6.1 + optional: true + + bare-stream@2.6.5(bare-events@2.5.4): + dependencies: + streamx: 2.22.1 + optionalDependencies: + bare-events: 2.5.4 + optional: true + + basic-ftp@5.0.5: {} + + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.2: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.25.0: + dependencies: + caniuse-lite: 1.0.30001722 + electron-to-chromium: 1.5.166 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.25.0) + + buffer-crc32@0.2.13: {} + + callsites@3.1.0: {} + + caniuse-lite@1.0.30001722: {} + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chromium-bidi@5.1.0(devtools-protocol@0.0.1452169): + dependencies: + devtools-protocol: 0.0.1452169 + mitt: 3.0.1 + zod: 3.25.63 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + commander@8.3.0: {} + + concat-map@0.0.1: {} + + convert-source-map@2.0.0: {} + + cosmiconfig@9.0.0(typescript@5.8.3): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.8.3 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + csstype@3.1.3: {} + + data-uri-to-buffer@6.0.2: {} + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + deep-is@0.1.4: {} + + degenerator@5.0.1: + dependencies: + ast-types: 0.13.4 + escodegen: 2.1.0 + esprima: 4.0.1 + + devtools-protocol@0.0.1452169: {} + + electron-to-chromium@1.5.166: {} + + emoji-regex@8.0.0: {} + + end-of-stream@1.4.4: + dependencies: + once: 1.4.0 + + env-paths@2.2.1: {} + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + esbuild@0.25.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.5 + '@esbuild/android-arm': 0.25.5 + '@esbuild/android-arm64': 0.25.5 + '@esbuild/android-x64': 0.25.5 + '@esbuild/darwin-arm64': 0.25.5 + '@esbuild/darwin-x64': 0.25.5 + '@esbuild/freebsd-arm64': 0.25.5 + '@esbuild/freebsd-x64': 0.25.5 + '@esbuild/linux-arm': 0.25.5 + '@esbuild/linux-arm64': 0.25.5 + '@esbuild/linux-ia32': 0.25.5 + '@esbuild/linux-loong64': 0.25.5 + '@esbuild/linux-mips64el': 0.25.5 + '@esbuild/linux-ppc64': 0.25.5 + '@esbuild/linux-riscv64': 0.25.5 + '@esbuild/linux-s390x': 0.25.5 + '@esbuild/linux-x64': 0.25.5 + '@esbuild/netbsd-arm64': 0.25.5 + '@esbuild/netbsd-x64': 0.25.5 + '@esbuild/openbsd-arm64': 0.25.5 + '@esbuild/openbsd-x64': 0.25.5 + '@esbuild/sunos-x64': 0.25.5 + '@esbuild/win32-arm64': 0.25.5 + '@esbuild/win32-ia32': 0.25.5 + '@esbuild/win32-x64': 0.25.5 + + escalade@3.2.0: {} + + escape-string-regexp@4.0.0: {} + + escodegen@2.1.0: + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + + eslint-plugin-react-hooks@5.2.0(eslint@9.28.0): + dependencies: + eslint: 9.28.0 + + eslint-plugin-react-refresh@0.4.20(eslint@9.28.0): + dependencies: + eslint: 9.28.0 + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint@9.28.0: + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.20.1 + '@eslint/config-helpers': 0.2.3 + '@eslint/core': 0.14.0 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.28.0 + '@eslint/plugin-kit': 0.3.2 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + transitivePeerDependencies: + - supports-color + + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + + esprima@4.0.1: {} + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + esutils@2.0.3: {} + + extract-zip@2.0.1: + dependencies: + debug: 4.4.1 + get-stream: 5.2.0 + yauzl: 2.10.0 + optionalDependencies: + '@types/yauzl': 2.10.3 + transitivePeerDependencies: + - supports-color + + fast-deep-equal@3.1.3: {} + + fast-fifo@1.3.2: {} + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-uri@3.0.6: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fd-slicer@1.1.0: + dependencies: + pend: 1.2.0 + + fdir@6.4.6(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + + flatted@3.3.3: {} + + fsevents@2.3.3: + optional: true + + gensync@1.0.0-beta.2: {} + + get-caller-file@2.0.5: {} + + get-stream@5.2.0: + dependencies: + pump: 3.0.2 + + get-uri@6.0.4: + dependencies: + basic-ftp: 5.0.5 + data-uri-to-buffer: 6.0.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + globals@11.12.0: {} + + globals@14.0.0: {} + + globals@16.2.0: {} + + graphemer@1.4.0: {} + + has-flag@4.0.0: {} + + http-proxy-agent@7.0.2: + dependencies: + agent-base: 7.1.3 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@7.0.6: + dependencies: + agent-base: 7.1.3 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 + + is-arrayish@0.2.1: {} + + is-extglob@2.1.1: {} + + is-fullwidth-code-point@3.0.0: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-number@7.0.0: {} + + isexe@2.0.0: {} + + js-tokens@4.0.0: {} + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsbn@1.1.0: {} + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-parse-even-better-errors@2.3.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json5@2.2.3: {} + + katex@0.16.22: + dependencies: + commander: 8.3.0 + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lines-and-columns@1.2.4: {} + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash.merge@4.6.2: {} + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lru-cache@7.18.3: {} + + merge2@1.4.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.2 + + mitt@3.0.1: {} + + ms@2.1.3: {} + + nanoid@3.3.11: {} + + natural-compare@1.4.0: {} + + netmask@2.0.2: {} + + node-releases@2.0.19: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + pac-proxy-agent@7.2.0: + dependencies: + '@tootallnate/quickjs-emscripten': 0.23.0 + agent-base: 7.1.3 + debug: 4.4.1 + get-uri: 6.0.4 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + pac-resolver: 7.0.1 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + + pac-resolver@7.0.1: + dependencies: + degenerator: 5.0.1 + netmask: 2.0.2 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.27.1 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + path-exists@4.0.0: {} + + path-key@3.1.1: {} + + pend@1.2.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + postcss@8.5.5: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prelude-ls@1.2.1: {} + + progress@2.0.3: {} + + proxy-agent@6.5.0: + dependencies: + agent-base: 7.1.3 + debug: 4.4.1 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + lru-cache: 7.18.3 + pac-proxy-agent: 7.2.0 + proxy-from-env: 1.1.0 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + + proxy-from-env@1.1.0: {} + + pump@3.0.2: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + + punycode@2.3.1: {} + + puppeteer-core@24.10.0: + dependencies: + '@puppeteer/browsers': 2.10.5 + chromium-bidi: 5.1.0(devtools-protocol@0.0.1452169) + debug: 4.4.1 + devtools-protocol: 0.0.1452169 + typed-query-selector: 2.12.0 + ws: 8.18.2 + transitivePeerDependencies: + - bare-buffer + - bufferutil + - supports-color + - utf-8-validate + + puppeteer@24.10.0(typescript@5.8.3): + dependencies: + '@puppeteer/browsers': 2.10.5 + chromium-bidi: 5.1.0(devtools-protocol@0.0.1452169) + cosmiconfig: 9.0.0(typescript@5.8.3) + devtools-protocol: 0.0.1452169 + puppeteer-core: 24.10.0 + typed-query-selector: 2.12.0 + transitivePeerDependencies: + - bare-buffer + - bufferutil + - supports-color + - typescript + - utf-8-validate + + queue-microtask@1.2.3: {} + + react-dom@19.1.0(react@19.1.0): + dependencies: + react: 19.1.0 + scheduler: 0.26.0 + + react-intersection-observer@9.16.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0): + dependencies: + react: 19.1.0 + optionalDependencies: + react-dom: 19.1.0(react@19.1.0) + + react-refresh@0.17.0: {} + + react@19.1.0: {} + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + resolve-from@4.0.0: {} + + reusify@1.1.0: {} + + rollup@4.43.0: + dependencies: + '@types/estree': 1.0.7 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.43.0 + '@rollup/rollup-android-arm64': 4.43.0 + '@rollup/rollup-darwin-arm64': 4.43.0 + '@rollup/rollup-darwin-x64': 4.43.0 + '@rollup/rollup-freebsd-arm64': 4.43.0 + '@rollup/rollup-freebsd-x64': 4.43.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.43.0 + '@rollup/rollup-linux-arm-musleabihf': 4.43.0 + '@rollup/rollup-linux-arm64-gnu': 4.43.0 + '@rollup/rollup-linux-arm64-musl': 4.43.0 + '@rollup/rollup-linux-loongarch64-gnu': 4.43.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.43.0 + '@rollup/rollup-linux-riscv64-gnu': 4.43.0 + '@rollup/rollup-linux-riscv64-musl': 4.43.0 + '@rollup/rollup-linux-s390x-gnu': 4.43.0 + '@rollup/rollup-linux-x64-gnu': 4.43.0 + '@rollup/rollup-linux-x64-musl': 4.43.0 + '@rollup/rollup-win32-arm64-msvc': 4.43.0 + '@rollup/rollup-win32-ia32-msvc': 4.43.0 + '@rollup/rollup-win32-x64-msvc': 4.43.0 + fsevents: 2.3.3 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + scheduler@0.26.0: {} + + semver@6.3.1: {} + + semver@7.7.2: {} + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + smart-buffer@4.2.0: {} + + socks-proxy-agent@8.0.5: + dependencies: + agent-base: 7.1.3 + debug: 4.4.1 + socks: 2.8.5 + transitivePeerDependencies: + - supports-color + + socks@2.8.5: + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + + source-map-js@1.2.1: {} + + source-map@0.6.1: + optional: true + + sprintf-js@1.1.3: {} + + streamx@2.22.1: + dependencies: + fast-fifo: 1.3.2 + text-decoder: 1.2.3 + optionalDependencies: + bare-events: 2.5.4 + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-json-comments@3.1.1: {} + + strip-json-comments@5.0.2: {} + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + tar-fs@3.0.9: + dependencies: + pump: 3.0.2 + tar-stream: 3.1.7 + optionalDependencies: + bare-fs: 4.1.5 + bare-path: 3.0.0 + transitivePeerDependencies: + - bare-buffer + + tar-stream@3.1.7: + dependencies: + b4a: 1.6.7 + fast-fifo: 1.3.2 + streamx: 2.22.1 + + text-decoder@1.2.3: + dependencies: + b4a: 1.6.7 + + tinyglobby@0.2.14: + dependencies: + fdir: 6.4.6(picomatch@4.0.2) + picomatch: 4.0.2 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + ts-api-utils@2.1.0(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + + tslib@2.8.1: {} + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + typed-query-selector@2.12.0: {} + + typescript-eslint@8.34.0(eslint@9.28.0)(typescript@5.8.3): + dependencies: + '@typescript-eslint/eslint-plugin': 8.34.0(@typescript-eslint/parser@8.34.0(eslint@9.28.0)(typescript@5.8.3))(eslint@9.28.0)(typescript@5.8.3) + '@typescript-eslint/parser': 8.34.0(eslint@9.28.0)(typescript@5.8.3) + '@typescript-eslint/utils': 8.34.0(eslint@9.28.0)(typescript@5.8.3) + eslint: 9.28.0 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + typescript@5.8.3: {} + + undici-types@7.8.0: + optional: true + + update-browserslist-db@1.1.3(browserslist@4.25.0): + dependencies: + browserslist: 4.25.0 + escalade: 3.2.0 + picocolors: 1.1.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + vite@6.3.5(@types/node@24.0.1): + dependencies: + esbuild: 0.25.5 + fdir: 6.4.6(picomatch@4.0.2) + picomatch: 4.0.2 + postcss: 8.5.5 + rollup: 4.43.0 + tinyglobby: 0.2.14 + optionalDependencies: + '@types/node': 24.0.1 + fsevents: 2.3.3 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + word-wrap@1.2.5: {} + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrappy@1.0.2: {} + + ws@8.18.2: {} + + y18n@5.0.8: {} + + yallist@3.1.1: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yauzl@2.10.0: + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + + yocto-queue@0.1.0: {} + + zod@3.25.63: {} diff --git a/typescript/src/examples/testJsonDocs/test_document.json b/typescript/examples/vite_basic/public/test_document.json similarity index 100% rename from typescript/src/examples/testJsonDocs/test_document.json rename to typescript/examples/vite_basic/public/test_document.json diff --git a/typescript/examples/vite_basic/public/vite.svg b/typescript/examples/vite_basic/public/vite.svg new file mode 100644 index 0000000..e7b8dfb --- /dev/null +++ b/typescript/examples/vite_basic/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/typescript/examples/vite_basic/src/App.css b/typescript/examples/vite_basic/src/App.css new file mode 100644 index 0000000..e69de29 diff --git a/typescript/examples/vite_basic/src/App.tsx b/typescript/examples/vite_basic/src/App.tsx new file mode 100644 index 0000000..001bf12 --- /dev/null +++ b/typescript/examples/vite_basic/src/App.tsx @@ -0,0 +1,46 @@ +import { JsonDocRenderer } from "@textcortex/jsondoc"; +import "@textcortex/jsondoc/dist/index.css"; +import { useState, useEffect } from "react"; + +const App = () => { + const [testPage, setTestPage] = useState(null); + + useEffect(() => { + const loadData = async () => { + try { + const response = await fetch("/test_document.json"); + const data = await response.json(); + setTestPage(data); + } catch (error) { + console.error("Error loading JSON:", error); + } + }; + loadData(); + }, []); + + if (!testPage) { + return
Loading...
; + } + + return ( +
+
+

JSON-DOC Renderer Development

+ +
+
+ ); +}; + +export default App; diff --git a/typescript/examples/vite_basic/src/assets/react.svg b/typescript/examples/vite_basic/src/assets/react.svg new file mode 100644 index 0000000..6c87de9 --- /dev/null +++ b/typescript/examples/vite_basic/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/typescript/examples/vite_basic/src/index.css b/typescript/examples/vite_basic/src/index.css new file mode 100644 index 0000000..012c8e9 --- /dev/null +++ b/typescript/examples/vite_basic/src/index.css @@ -0,0 +1,71 @@ +.root { + width: 100%; +} + +:root { + font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/typescript/examples/vite_basic/src/main.tsx b/typescript/examples/vite_basic/src/main.tsx new file mode 100644 index 0000000..10ed13e --- /dev/null +++ b/typescript/examples/vite_basic/src/main.tsx @@ -0,0 +1,10 @@ +import { StrictMode } from "react"; +import { createRoot } from "react-dom/client"; +import "./index.css"; +import App from "./App.tsx"; + +createRoot(document.getElementById("root")!).render( + + + +); diff --git a/typescript/examples/vite_basic/src/vite-env.d.ts b/typescript/examples/vite_basic/src/vite-env.d.ts new file mode 100644 index 0000000..11f02fe --- /dev/null +++ b/typescript/examples/vite_basic/src/vite-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/typescript/examples/vite_basic/tsconfig.app.json b/typescript/examples/vite_basic/tsconfig.app.json new file mode 100644 index 0000000..c9ccbd4 --- /dev/null +++ b/typescript/examples/vite_basic/tsconfig.app.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2020", + "useDefineForClassFields": true, + "lib": ["ES2020", "DOM", "DOM.Iterable"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src"] +} diff --git a/typescript/examples/vite_basic/tsconfig.json b/typescript/examples/vite_basic/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/typescript/examples/vite_basic/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/typescript/examples/vite_basic/tsconfig.node.json b/typescript/examples/vite_basic/tsconfig.node.json new file mode 100644 index 0000000..9728af2 --- /dev/null +++ b/typescript/examples/vite_basic/tsconfig.node.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2022", + "lib": ["ES2023"], + "module": "ESNext", + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/typescript/examples/vite_basic/vite.config.ts b/typescript/examples/vite_basic/vite.config.ts new file mode 100644 index 0000000..8b0f57b --- /dev/null +++ b/typescript/examples/vite_basic/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], +}) diff --git a/typescript/package-lock.json b/typescript/package-lock.json index 353549d..243525c 100644 --- a/typescript/package-lock.json +++ b/typescript/package-lock.json @@ -1,12 +1,12 @@ { "name": "@textcortex/jsondoc", - "version": "0.2.0-alpha.1", + "version": "0.2.0-alpha.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@textcortex/jsondoc", - "version": "0.2.0-alpha.1", + "version": "0.2.0-alpha.2", "license": "MIT", "dependencies": { "ajv": "^8.17.1", @@ -25,7 +25,6 @@ "@types/react-dom": "^19.1.5", "@typescript-eslint/eslint-plugin": "^8.33.1", "@typescript-eslint/parser": "^8.33.1", - "@vitejs/plugin-react": "^4.5.0", "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "bumpp": "^10.1.1", @@ -45,8 +44,7 @@ "ts-jest": "^29.3.4", "ts-node": "^10.9.2", "tsup": "^8.5.0", - "typescript": "^5.8.3", - "vite": "^6.3.5" + "typescript": "^5.8.3" }, "engines": { "node": ">=16.0.0" @@ -537,36 +535,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", - "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", - "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/template": { "version": "7.27.2", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", @@ -1895,12 +1863,6 @@ "node": ">=10" } }, - "node_modules/@rolldown/pluginutils": { - "version": "1.0.0-beta.9", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.9.tgz", - "integrity": "sha512-e9MeMtVWo186sgvFFJOPGy7/d2j2mZhLJIdVW0C/xDluuOvymEATqz6zKsP0ZmXGzQtqlyjz5sC1sYQUoJG98w==", - "dev": true - }, "node_modules/@rollup/rollup-android-arm-eabi": { "version": "4.41.1", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.41.1.tgz", @@ -2902,26 +2864,6 @@ "win32" ] }, - "node_modules/@vitejs/plugin-react": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.5.0.tgz", - "integrity": "sha512-JuLWaEqypaJmOJPLWwO335Ig6jSgC1FTONCWAxnqcQthLTK/Yc9aH6hr9z/87xciejbQcnP3GnA1FWUSWeXaeg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.26.10", - "@babel/plugin-transform-react-jsx-self": "^7.25.9", - "@babel/plugin-transform-react-jsx-source": "^7.25.9", - "@rolldown/pluginutils": "1.0.0-beta.9", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.17.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0 || ^6.0.0" - } - }, "node_modules/acorn": { "version": "8.14.1", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", @@ -8415,6 +8357,8 @@ "url": "https://github.com/sponsors/ai" } ], + "optional": true, + "peer": true, "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -9012,6 +8956,8 @@ "url": "https://github.com/sponsors/ai" } ], + "optional": true, + "peer": true, "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", @@ -9340,15 +9286,6 @@ "dev": true, "license": "MIT" }, - "node_modules/react-refresh": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", - "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/readdirp": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", @@ -9964,6 +9901,8 @@ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, + "optional": true, + "peer": true, "engines": { "node": ">=0.10.0" } @@ -11002,106 +10941,6 @@ "node": ">=10.12.0" } }, - "node_modules/vite": { - "version": "6.3.5", - "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", - "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", - "dev": true, - "dependencies": { - "esbuild": "^0.25.0", - "fdir": "^6.4.4", - "picomatch": "^4.0.2", - "postcss": "^8.5.3", - "rollup": "^4.34.9", - "tinyglobby": "^0.2.13" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || ^20.0.0 || >=22.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", - "jiti": ">=1.21.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "sass-embedded": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.16.0", - "tsx": "^4.8.1", - "yaml": "^2.4.2" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "jiti": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - }, - "tsx": { - "optional": true - }, - "yaml": { - "optional": true - } - } - }, - "node_modules/vite/node_modules/fdir": { - "version": "6.4.5", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.5.tgz", - "integrity": "sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==", - "dev": true, - "peerDependencies": { - "picomatch": "^3 || ^4" - }, - "peerDependenciesMeta": { - "picomatch": { - "optional": true - } - } - }, - "node_modules/vite/node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", diff --git a/typescript/package.json b/typescript/package.json index 1c7a874..3171ac8 100644 --- a/typescript/package.json +++ b/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@textcortex/jsondoc", - "version": "0.2.0-alpha.1", + "version": "0.2.0-alpha.2", "description": "JSON-DOC TypeScript implementation", "main": "dist/index.js", "module": "dist/index.mjs", @@ -12,7 +12,6 @@ "dev": "concurrently \"npm run build:watch\" \"npm run lint:watch\" \"npm run type-check:watch\"", "type-check:watch": "tsc --noEmit --watch --pretty", "lint:watch": "eslint src --ext .ts,.tsx --cache", - "dev:example": "vite --config vite.dev.config.ts", "generate-types": "ts-node scripts/generate-types.ts", "test": "jest", "screenshot": "node scripts/screenshot.js", @@ -39,7 +38,6 @@ "@types/react-dom": "^19.1.5", "@typescript-eslint/eslint-plugin": "^8.33.1", "@typescript-eslint/parser": "^8.33.1", - "@vitejs/plugin-react": "^4.5.0", "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "bumpp": "^10.1.1", @@ -59,8 +57,7 @@ "ts-jest": "^29.3.4", "ts-node": "^10.9.2", "tsup": "^8.5.0", - "typescript": "^5.8.3", - "vite": "^6.3.5" + "typescript": "^5.8.3" }, "dependencies": { "ajv": "^8.17.1", diff --git a/typescript/src/examples/index.tsx b/typescript/src/examples/index.tsx deleted file mode 100644 index b0c3f00..0000000 --- a/typescript/src/examples/index.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import React from "react"; -import ReactDOM from "react-dom/client"; - -import { ParagraphBlockRenderer } from "@/renderer/components/blocks/ParagraphBlockRenderer"; -import { HeadingBlockRenderer } from "@/renderer/components/blocks/HeadingBlockRenderer"; - -import { JsonDocRenderer } from "../renderer/JsonDocRenderer"; - -import testPage from "./testJsonDocs/test_document.json"; - -const App = () => { - return ( -
-

JSON-DOC Renderer Development

- { - return ; - }, - paragraph: (props) => , - }} - /> -
- ); -}; - -ReactDOM.createRoot(document.getElementById("root")!).render( - - - -); diff --git a/typescript/src/examples/testJsonDocs/ex1_success.json b/typescript/src/examples/testJsonDocs/ex1_success.json deleted file mode 100644 index 3daf6cc..0000000 --- a/typescript/src/examples/testJsonDocs/ex1_success.json +++ /dev/null @@ -1,6454 +0,0 @@ -{ - "object": "page", - "id": "be633bf1-dfa0-436d-b259-571129a590e5", - "created_time": "2022-10-24T22:54:00Z", - "last_edited_time": "2023-03-08T18:25:00Z", - "created_by": { - "object": "user", - "id": "c2f20311-9e54-4d11-8c79-7398424ae41e" - }, - "last_edited_by": { - "object": "user", - "id": "9188c6a5-7381-452f-b3dc-d4865aa89bdf" - }, - "icon": { - "type": "emoji", - "emoji": "🐞" - }, - "archived": false, - "in_trash": false, - "properties": { - "title": { - "id": "title", - "type": "title", - "title": [ - { - "type": "text", - "text": { - "content": "Test document", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Test document", - "href": null - } - ] - } - }, - "children": [ - { - "object": "block", - "id": "7bebf9ce-b1ee-4415-b01b-83fe0abce4e4", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_1", - "heading_1": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is heading 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is heading 1", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "7ad2c4a1-a9f7-4fe9-87dd-dede0dddf1ae", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Lorem ipsum dolor sit amet", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Lorem ipsum dolor sit amet", - "href": null - } - ], - "color": "default" - } - }, - - { - "object": "block", - "id": "c4c4d5cf-7358-4f1e-a8d5-0b433b1cce35", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-09-03T16:20:00Z", - "last_edited_time": "2024-09-03T16:20:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Top level paragraph", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Top level paragraph", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "91044001-e5e3-4165-bca0-90eae8eedd5e", - "parent": { - "type": "block_id", - "block_id": "c4c4d5cf-7358-4f1e-a8d5-0b433b1cce35" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:20:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 1", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "c0302421-6a1f-461d-8a56-91e585fb5e54", - "parent": { - "type": "block_id", - "block_id": "91044001-e5e3-4165-bca0-90eae8eedd5e" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 2", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "37113c94-4284-470c-8177-c1ed49dff264", - "parent": { - "type": "block_id", - "block_id": "c0302421-6a1f-461d-8a56-91e585fb5e54" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 3", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "87c5c1bb-de05-495c-8e97-86a17906b87d", - "parent": { - "type": "block_id", - "block_id": "37113c94-4284-470c-8177-c1ed49dff264" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 4", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "42adb363-d88f-4b51-b611-47a2b99157cd", - "parent": { - "type": "block_id", - "block_id": "87c5c1bb-de05-495c-8e97-86a17906b87d" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 5", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 5", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "58acde88-f2ab-400c-8d01-0f24b588b027", - "parent": { - "type": "block_id", - "block_id": "42adb363-d88f-4b51-b611-47a2b99157cd" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 6", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 6", - "href": null - } - ], - "color": "default" - } - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "object": "block", - "id": "b7ada960-5e53-408f-93cc-c7444dc90ce0", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is heading 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is heading 2", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "01c48f37-f565-4966-a801-b9269e6a18ae", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-08-09T10:29:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "table", - "table": { - "table_width": 2, - "has_column_header": true, - "has_row_header": true - }, - "children": [ - { - "object": "block", - "id": "36a7fd6c-9e14-43f9-b265-7b21cf958668", - "parent": { - "type": "block_id", - "block_id": "01c48f37-f565-4966-a801-b9269e6a18ae" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-08-09T10:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "Col1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Col1", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "Col2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Col2", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "afa18f11-719f-4dcd-bfe0-c45a871a7309", - "parent": { - "type": "block_id", - "block_id": "01c48f37-f565-4966-a801-b9269e6a18ae" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-08-09T10:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "1", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "3", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "7e257aaf-24e6-4506-a8f4-1ecd7299a8f5", - "parent": { - "type": "block_id", - "block_id": "01c48f37-f565-4966-a801-b9269e6a18ae" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "2", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "4", - "href": null - } - ] - ] - } - } - ] - }, - { - "object": "block", - "id": "e63fbc82-db45-4a17-b788-8ec343f7e898", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:29:00Z", - "last_edited_time": "2024-05-28T20:29:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "New line", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "New line", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "9b45ebeb-cb04-4eb8-a0b6-8ba8a03e31d8", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:29:00Z", - "last_edited_time": "2024-05-28T20:29:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "code", - "code": { - "caption": [], - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is a code block", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a code block", - "href": null - } - ], - "language": "javascript" - } - }, - { - "object": "block", - "id": "cce2750e-836c-4358-ada9-abffedf7108a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-30T13:20:00Z", - "last_edited_time": "2024-07-31T16:03:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Intersecting blocks example", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Intersecting blocks example", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "5b9377ac-5964-4b1c-84a5-a8bc1e1bf197", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-07-31T16:03:00Z", - "last_edited_time": "2024-07-31T16:17:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This paragraph", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This paragraph", - "href": null - }, - { - "type": "text", - "text": { - "content": " has so", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " has so", - "href": null - }, - { - "type": "text", - "text": { - "content": "me bold ite", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "me bold ite", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "ms and lin", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "ms and lin", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "ks at the same time.", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "ks at the same time.", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "1bd0a650-72a2-4754-be95-c3fe163ca348", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-07-31T16:04:00Z", - "last_edited_time": "2024-07-31T16:04:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [], - "color": "default" - } - }, - { - "object": "block", - "id": "1d266695-2fde-48db-ba15-cb73813f6bdd", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-07-31T16:04:00Z", - "last_edited_time": "2024-07-31T16:16:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here ar", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here ar", - "href": null - }, - { - "type": "text", - "text": { - "content": "e", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "e", - "href": null - }, - { - "type": "text", - "text": { - "content": " ", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": " ", - "href": null - }, - { - "type": "text", - "text": { - "content": "t", - "link": null - }, - "annotations": { - "bold": true, - "italic": true, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "t", - "href": null - }, - { - "type": "text", - "text": { - "content": "w", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "w", - "href": null - }, - { - "type": "text", - "text": { - "content": "o", - "link": null - }, - "annotations": { - "bold": false, - "italic": true, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "o", - "href": null - }, - { - "type": "text", - "text": { - "content": " ", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": " ", - "href": null - }, - { - "type": "text", - "text": { - "content": "p", - "link": null - }, - "annotations": { - "bold": true, - "italic": true, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "p", - "href": null - }, - { - "type": "text", - "text": { - "content": "ar", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "ar", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "agra", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "agra", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "phs tha", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "phs tha", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "t are ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "t are ", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "95d6cf78-e826-4954-9329-a4431f553aaf", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:26:00Z", - "last_edited_time": "2024-08-01T15:26:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Bulleted list examples", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Bulleted list examples", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "bd15c375-417f-4849-a76d-711b3af6d26b", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:26:00Z", - "last_edited_time": "2024-08-01T15:26:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a bulleted list", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a bulleted list", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "665fd9b7-5297-4194-b582-07a986150358", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:26:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 1", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "8429547f-873d-4bae-ab3e-d25d0e469f62", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 2", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "b620e239-45f3-4936-a40c-44adaca8a1cb", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I break the list here", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I break the list here", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "a8f0a0ec-becc-48bc-ada1-62a32ff7f5ff", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "112acb8f-4506-4ef0-b401-90f759a7dc84", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Enumerated list examples", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Enumerated list examples", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "88d00178-8baa-48a0-9345-cb39ef8f4ca5", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is an enumerated list", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is an enumerated list", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "caeecb54-2078-46cb-bee2-0db61ad2a2c5", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 1 (1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 1 (1", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "7f62eca2-65f6-4e90-ba41-9df1d0bed101", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 2 (2)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 2 (2)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "f6ccb48d-72b2-4194-b8f4-807647a52089", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I break the list here", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I break the list here", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "e2a8e977-4ba8-4484-8fe1-62eaa172155f", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "The index continues from the previous (4)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "The index continues from the previous (4)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "1981c9ec-75c5-405d-a4b4-c4db8fc705af", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:28:00Z", - "last_edited_time": "2024-08-01T15:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "6. I can\u2019t set (6) as the item label", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "6. I can\u2019t set (6) as the item label", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "2768f917-08f4-4e7d-83d0-61844dc8a40e", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:36:00Z", - "last_edited_time": "2024-08-09T09:36:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "TODO examples", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "TODO examples", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Beautiful, free images and photos that you can download and use for any project. Better than any royalty free or stock photos.", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "eb921750-d7ec-42e5-96b2-c65ca88d6776", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:36:00Z", - "last_edited_time": "2024-08-09T09:36:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "to_do", - "to_do": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is an unchecked todo item", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is an unchecked todo item", - "href": null - } - ], - "checked": false, - "color": "default" - } - }, - { - "object": "block", - "id": "b694c88f-688f-4a45-b64b-61d65b29e8b0", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:36:00Z", - "last_edited_time": "2024-08-09T09:36:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "to_do", - "to_do": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a checked todo item", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a checked todo item", - "href": null - } - ], - "checked": true, - "color": "default" - } - }, - { - "object": "block", - "id": "8bb29a91-42ae-40a1-b696-1a71d699978f", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:38:00Z", - "last_edited_time": "2024-08-08T15:47:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Code blocks", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Code blocks", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "bbb22181-4e3d-4f49-956b-9b8d092d9199", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-08T15:47:00Z", - "last_edited_time": "2024-08-08T15:48:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "code", - "code": { - "caption": [ - { - "type": "text", - "text": { - "content": "This is a code ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a code ", - "href": null - }, - { - "type": "text", - "text": { - "content": "block", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "block", - "href": null - }, - { - "type": "text", - "text": { - "content": " caption", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " caption", - "href": null - } - ], - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is a code block\nThis is a new line", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a code block\nThis is a new line", - "href": null - } - ], - "language": "bash" - } - }, - { - "object": "block", - "id": "439e9657-0303-473c-8991-b2c837b1c3aa", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T07:33:00Z", - "last_edited_time": "2024-08-09T07:33:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Equations", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Equations", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "f0545305-a8ab-449a-aa23-e9617febf965", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T07:33:00Z", - "last_edited_time": "2024-08-09T07:34:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is an ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is an ", - "href": null - }, - { - "type": "equation", - "equation": { - "expression": "\\int_0^1\\sin(x)\\,dx" - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "\\int_0^1\\sin(x)\\,dx", - "href": null - }, - { - "type": "text", - "text": { - "content": " inline equation. Below is a block equation:", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " inline equation. Below is a block equation:", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "a0ea53e7-ca42-4d5d-8345-481bb74c8c2a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T07:34:00Z", - "last_edited_time": "2024-08-09T07:34:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "equation", - "equation": { - "expression": "\\int_0^1\\sin(x)\\,dx" - } - }, - { - "object": "block", - "id": "665dc9ee-ea74-46cf-9001-d07d4020b060", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T08:08:00Z", - "last_edited_time": "2024-08-09T08:08:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Image blocks did", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Image blocks", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "98c78199-ef1c-497a-8e44-e1f3b511c3a9", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T08:08:00Z", - "last_edited_time": "2024-08-09T08:11:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "image", - "image": { - "caption": [ - { - "type": "text", - "text": { - "content": "This is a caption for the image", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a caption for the image", - "href": null - } - ], - "type": "file", - "file": { - "url": "https://prod-files-secure.s3.us-west-2.amazonaws.com/d6000e68-0a06-463d-8914-d6dfe33f31b9/3141b657-2f3a-425a-9b44-d61df64d63e0/TextCortex_%282024-08-07_13_08_56%29_Create_a_drawing_of_a_scenic_v.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAT73L2G45HZZMZUHI%2F20240809%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240809T121557Z&X-Amz-Expires=3600&X-Amz-Signature=287d787db70873c68fd020453dffd592faa076352b40dabe5bb711e6b0ae5208&X-Amz-SignedHeaders=host&x-id=GetObject", - "expiry_time": "2024-08-09T13:15:57Z" - } - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "98c78199-ef1c-497a-8e44-e1f3b511c3a9", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T08:08:00Z", - "last_edited_time": "2024-08-09T08:11:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "image", - "image": { - "caption": [ - { - "type": "text", - "text": { - "content": "This is a caption for the image", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a caption for the image", - "href": null - } - ], - "type": "file", - "file": { - "url": "https://prod-files-secure.s3.us-west-2.amazonaws.com/d6000e68-0a06-463d-8914-d6dfe33f31b9/3141b657-2f3a-425a-9b44-d61df64d63e0/TextCortex_%282024-08-07_13_08_56%29_Create_a_drawing_of_a_scenic_v.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAT73L2G45HZZMZUHI%2F20240809%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240809T121557Z&X-Amz-Expires=3600&X-Amz-Signature=287d787db70873c68fd020453dffd592faa076352b40dabe5bb711e6b0ae5208&X-Amz-SignedHeaders=host&x-id=GetObject", - "expiry_time": "2024-08-09T13:15:57Z" - } - } - }, - { - "object": "block", - "id": "fdc1aa4c-b0d7-4636-bdee-0a56cfc7c54a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T10:09:00Z", - "last_edited_time": "2024-08-09T10:09:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Quotes", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Quotes", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "23d455c3-7469-4f02-97b8-e260bc02f940", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T10:09:00Z", - "last_edited_time": "2024-08-09T10:10:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "quote", - "quote": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a quote\nSome ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a quote\nSome ", - "href": null - }, - { - "type": "text", - "text": { - "content": "formatted text", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "formatted text", - "href": null - }, - { - "type": "text", - "text": { - "content": " inside the quote", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " inside the quote", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "f3308f29-797c-47f1-989c-ec823cfbda03", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:00:00Z", - "last_edited_time": "2024-08-09T11:05:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Divider", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Divider", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "f48c507b-46eb-4b92-a714-3cba4982fec2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:05:00Z", - "last_edited_time": "2024-08-09T11:05:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a divider:", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a divider:", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "df320310-a087-4039-b3ef-28d0460f8664", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:05:00Z", - "last_edited_time": "2024-08-09T11:05:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "divider", - "divider": {} - }, - { - "object": "block", - "id": "3378e979-29d3-4d53-b2dd-a4e2df80fef3", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:05:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Columns", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Columns", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "175e5d39-7d7c-4428-81a7-b16824a78f6b", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Below is a 2 column example", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Below is a 2 column example", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "32b17815-92d0-4fa3-8d72-ff65ca40c1dc", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column_list", - "column_list": {}, - "children": [ - { - "object": "block", - "id": "9f75c2d7-b90d-4b51-841d-47543b4a8097", - "parent": { - "type": "block_id", - "block_id": "32b17815-92d0-4fa3-8d72-ff65ca40c1dc" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "99dd06e9-8faf-46e2-a84f-5476a2e8fb72", - "parent": { - "type": "block_id", - "block_id": "9f75c2d7-b90d-4b51-841d-47543b4a8097" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "First column", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "First column", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "c50858c0-4722-4fdb-9f24-0cb83be4fc71", - "parent": { - "type": "block_id", - "block_id": "9f75c2d7-b90d-4b51-841d-47543b4a8097" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "to_do", - "to_do": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "something", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "something", - "href": null - } - ], - "checked": false, - "color": "default" - } - } - ] - }, - { - "object": "block", - "id": "ab7c74d6-e601-4627-9374-3a034d1389c2", - "parent": { - "type": "block_id", - "block_id": "32b17815-92d0-4fa3-8d72-ff65ca40c1dc" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "37c2f36a-8f95-46be-ae1e-190c3f98c559", - "parent": { - "type": "block_id", - "block_id": "ab7c74d6-e601-4627-9374-3a034d1389c2" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Second column", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Second column", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b", - "parent": { - "type": "block_id", - "block_id": "ab7c74d6-e601-4627-9374-3a034d1389c2" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "table", - "table": { - "table_width": 2, - "has_column_header": false, - "has_row_header": false - }, - "children": [ - { - "object": "block", - "id": "5cb7a042-70af-472b-b410-451afb723d2a", - "parent": { - "type": "block_id", - "block_id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "1", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "2", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "92e59441-bef1-46fa-8e1b-a807131695d3", - "parent": { - "type": "block_id", - "block_id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "3", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "4", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "bb47ea02-ea18-47d2-9432-0b4acc27538e", - "parent": { - "type": "block_id", - "block_id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "5", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "5", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "6", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "6", - "href": null - } - ] - ] - } - } - ] - } - ] - } - ] - }, - { - "object": "block", - "id": "65dde59c-db9c-46a2-9e98-4a1b99ba644f", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Below is a 4 column example", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Below is a 4 column example", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column_list", - "column_list": {}, - "children": [ - { - "object": "block", - "id": "46e295c3-cf75-4434-9947-8af0833bb1bb", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "9deb01c3-339f-44de-873d-4f51b97355e2", - "parent": { - "type": "block_id", - "block_id": "46e295c3-cf75-4434-9947-8af0833bb1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 1", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "bfcbb0ee-9a18-45ac-bfda-54f4c58f9f87", - "parent": { - "type": "block_id", - "block_id": "46e295c3-cf75-4434-9947-8af0833bb1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "A list", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "A list", - "href": null - } - ], - "color": "default" - } - } - ] - }, - { - "object": "block", - "id": "ac0925fe-2403-4482-8672-e816f49520b6", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "09ef16e6-6822-4487-81dd-6de5efb88725", - "parent": { - "type": "block_id", - "block_id": "ac0925fe-2403-4482-8672-e816f49520b6" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 2", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "da439007-8b00-49b6-866c-40db7bc79024", - "parent": { - "type": "block_id", - "block_id": "ac0925fe-2403-4482-8672-e816f49520b6" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "equation", - "equation": { - "expression": "a=b" - } - } - ] - }, - { - "object": "block", - "id": "30f487ba-df8e-483f-95e5-4362f59cd1bb", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "8f685774-d528-49c9-a4ed-f35f7e0c1e48", - "parent": { - "type": "block_id", - "block_id": "30f487ba-df8e-483f-95e5-4362f59cd1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 3", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "33a3dfd2-6172-4c12-a4c1-b43e6c22a16b", - "parent": { - "type": "block_id", - "block_id": "30f487ba-df8e-483f-95e5-4362f59cd1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "divider", - "divider": {} - }, - { - "object": "block", - "id": "cbcf740b-c1e0-4267-9f87-0553b02693f2", - "parent": { - "type": "block_id", - "block_id": "30f487ba-df8e-483f-95e5-4362f59cd1bb" - }, - "created_time": "2024-08-09T12:00:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "heading in column", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "heading in column", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - } - ] - }, - { - "object": "block", - "id": "8eb1b342-acf0-44be-b813-4f8348b385df", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "5b9f4e4b-e6d0-4f11-b4b9-2b6fa19e4c4f", - "parent": { - "type": "block_id", - "block_id": "8eb1b342-acf0-44be-b813-4f8348b385df" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 4", - "href": null - } - ], - "color": "default" - } - } - ] - } - ] - }, - { - "object": "block", - "id": "e208aed6-048e-4114-b645-50c0a5b394fb", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [], - "color": "default" - } - }, - { - "object": "block", - "id": "e4c47a53-eea7-42cd-b51a-16fcbbaf5572", - "parent": { - "type": "block_id", - "block_id": "8eb1b342-acf0-44be-b813-4f8348b385df" - }, - "created_time": "2024-08-09T12:00:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "toggle", - "toggle": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "toggle", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "toggle", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "f79d961f-7b00-464f-b3b2-a745041cea50", - "parent": { - "type": "block_id", - "block_id": "e4c47a53-eea7-42cd-b51a-16fcbbaf5572" - }, - "created_time": "2024-08-09T12:00:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "asdfasdfafd", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "asdfasdfafd", - "href": null - } - ], - "color": "default" - } - } - ] - } - ] -} diff --git a/typescript/src/examples/testJsonDocs/test_document_2.json b/typescript/src/examples/testJsonDocs/test_document_2.json deleted file mode 100644 index ef66185..0000000 --- a/typescript/src/examples/testJsonDocs/test_document_2.json +++ /dev/null @@ -1,3722 +0,0 @@ -{ - "object": "page", - "id": "be633bf1-dfa0-436d-b259-571129a590e5", - "created_time": "2022-10-24T22:54:00Z", - "last_edited_time": "2023-03-08T18:25:00Z", - "created_by": { - "object": "user", - "id": "c2f20311-9e54-4d11-8c79-7398424ae41e" - }, - "last_edited_by": { - "object": "user", - "id": "9188c6a5-7381-452f-b3dc-d4865aa89bdf" - }, - "icon": { - "type": "emoji", - "emoji": "🐞" - }, - "archived": false, - "in_trash": false, - "properties": { - "title": { - "id": "title", - "type": "title", - "title": [ - { - "type": "text", - "text": { - "content": "Test document", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Test document", - "href": null - } - ] - } - }, - "children": [ - { - "object": "block", - "id": "7bebf9ce-b1ee-4415-b01b-83fe0abce4e4", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_1", - "heading_1": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is heading 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is heading 1", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "7ad2c4a1-a9f7-4fe9-87dd-dede0dddf1ae", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Lorem ipsum dolor sit amet", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Lorem ipsum dolor sit amet", - "href": null - } - ], - "color": "default" - } - }, - - { - "object": "block", - "id": "c4c4d5cf-7358-4f1e-a8d5-0b433b1cce35", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-09-03T16:20:00Z", - "last_edited_time": "2024-09-03T16:20:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Top level paragraph", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Top level paragraph", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "91044001-e5e3-4165-bca0-90eae8eedd5e", - "parent": { - "type": "block_id", - "block_id": "c4c4d5cf-7358-4f1e-a8d5-0b433b1cce35" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:20:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 1", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "c0302421-6a1f-461d-8a56-91e585fb5e54", - "parent": { - "type": "block_id", - "block_id": "91044001-e5e3-4165-bca0-90eae8eedd5e" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 2", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "37113c94-4284-470c-8177-c1ed49dff264", - "parent": { - "type": "block_id", - "block_id": "c0302421-6a1f-461d-8a56-91e585fb5e54" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 3", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "87c5c1bb-de05-495c-8e97-86a17906b87d", - "parent": { - "type": "block_id", - "block_id": "37113c94-4284-470c-8177-c1ed49dff264" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 4", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "42adb363-d88f-4b51-b611-47a2b99157cd", - "parent": { - "type": "block_id", - "block_id": "87c5c1bb-de05-495c-8e97-86a17906b87d" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 5", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 5", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "58acde88-f2ab-400c-8d01-0f24b588b027", - "parent": { - "type": "block_id", - "block_id": "42adb363-d88f-4b51-b611-47a2b99157cd" - }, - "created_time": "2024-09-03T16:19:00Z", - "last_edited_time": "2024-09-03T16:19:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Subparagraph level 6", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Subparagraph level 6", - "href": null - } - ], - "color": "default" - } - } - ] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "object": "block", - "id": "b7ada960-5e53-408f-93cc-c7444dc90ce0", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is heading 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is heading 2", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "01c48f37-f565-4966-a801-b9269e6a18ae", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-08-09T10:29:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "table", - "table": { - "table_width": 2, - "has_column_header": true, - "has_row_header": true - }, - "children": [ - { - "object": "block", - "id": "36a7fd6c-9e14-43f9-b265-7b21cf958668", - "parent": { - "type": "block_id", - "block_id": "01c48f37-f565-4966-a801-b9269e6a18ae" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-08-09T10:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "Col1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Col1", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "Col2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Col2", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "afa18f11-719f-4dcd-bfe0-c45a871a7309", - "parent": { - "type": "block_id", - "block_id": "01c48f37-f565-4966-a801-b9269e6a18ae" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-08-09T10:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "1", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "3", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "7e257aaf-24e6-4506-a8f4-1ecd7299a8f5", - "parent": { - "type": "block_id", - "block_id": "01c48f37-f565-4966-a801-b9269e6a18ae" - }, - "created_time": "2024-05-28T20:27:00Z", - "last_edited_time": "2024-05-28T20:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "2", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "4", - "href": null - } - ] - ] - } - } - ] - }, - { - "object": "block", - "id": "e63fbc82-db45-4a17-b788-8ec343f7e898", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:29:00Z", - "last_edited_time": "2024-05-28T20:29:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "New line", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "New line", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "9b45ebeb-cb04-4eb8-a0b6-8ba8a03e31d8", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-28T20:29:00Z", - "last_edited_time": "2024-05-28T20:29:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "code", - "code": { - "caption": [], - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is a code block", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a code block", - "href": null - } - ], - "language": "javascript" - } - }, - { - "object": "block", - "id": "cce2750e-836c-4358-ada9-abffedf7108a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-05-30T13:20:00Z", - "last_edited_time": "2024-07-31T16:03:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Intersecting blocks example", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Intersecting blocks example", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "5b9377ac-5964-4b1c-84a5-a8bc1e1bf197", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-07-31T16:03:00Z", - "last_edited_time": "2024-07-31T16:17:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This paragraph", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This paragraph", - "href": null - }, - { - "type": "text", - "text": { - "content": " has so", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " has so", - "href": null - }, - { - "type": "text", - "text": { - "content": "me bold ite", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "me bold ite", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "ms and lin", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "ms and lin", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "ks at the same time.", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "ks at the same time.", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "1bd0a650-72a2-4754-be95-c3fe163ca348", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-07-31T16:04:00Z", - "last_edited_time": "2024-07-31T16:04:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [], - "color": "default" - } - }, - { - "object": "block", - "id": "1d266695-2fde-48db-ba15-cb73813f6bdd", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-07-31T16:04:00Z", - "last_edited_time": "2024-07-31T16:16:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here ar", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here ar", - "href": null - }, - { - "type": "text", - "text": { - "content": "e", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "e", - "href": null - }, - { - "type": "text", - "text": { - "content": " ", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": " ", - "href": null - }, - { - "type": "text", - "text": { - "content": "t", - "link": null - }, - "annotations": { - "bold": true, - "italic": true, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "t", - "href": null - }, - { - "type": "text", - "text": { - "content": "w", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "w", - "href": null - }, - { - "type": "text", - "text": { - "content": "o", - "link": null - }, - "annotations": { - "bold": false, - "italic": true, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "o", - "href": null - }, - { - "type": "text", - "text": { - "content": " ", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": " ", - "href": null - }, - { - "type": "text", - "text": { - "content": "p", - "link": null - }, - "annotations": { - "bold": true, - "italic": true, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "p", - "href": null - }, - { - "type": "text", - "text": { - "content": "ar", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": true, - "code": false, - "color": "default" - }, - "plain_text": "ar", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "agra", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "agra", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "phs tha", - "link": { - "url": "https://solmaz.io/" - } - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "phs tha", - "href": "https://solmaz.io/" - }, - { - "type": "text", - "text": { - "content": "t are ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "t are ", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "95d6cf78-e826-4954-9329-a4431f553aaf", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:26:00Z", - "last_edited_time": "2024-08-01T15:26:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Bulleted list examples", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Bulleted list examples", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "bd15c375-417f-4849-a76d-711b3af6d26b", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:26:00Z", - "last_edited_time": "2024-08-01T15:26:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a bulleted list", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a bulleted list", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "665fd9b7-5297-4194-b582-07a986150358", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:26:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 1", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "8429547f-873d-4bae-ab3e-d25d0e469f62", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 2", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "b620e239-45f3-4936-a40c-44adaca8a1cb", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I break the list here", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I break the list here", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "a8f0a0ec-becc-48bc-ada1-62a32ff7f5ff", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "112acb8f-4506-4ef0-b401-90f759a7dc84", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Enumerated list examples", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Enumerated list examples", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "88d00178-8baa-48a0-9345-cb39ef8f4ca5", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is an enumerated list", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is an enumerated list", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "caeecb54-2078-46cb-bee2-0db61ad2a2c5", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 1 (1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 1 (1", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "7f62eca2-65f6-4e90-ba41-9df1d0bed101", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Item 2 (2)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Item 2 (2)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "f6ccb48d-72b2-4194-b8f4-807647a52089", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I break the list here", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I break the list here", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "fb7bc77c-bd6f-4064-9c89-0d51d3fd35d2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:27:00Z", - "last_edited_time": "2024-08-09T09:27:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "I continue here (3)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "I continue here (3)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "e2a8e977-4ba8-4484-8fe1-62eaa172155f", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:27:00Z", - "last_edited_time": "2024-08-01T15:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "numbered_list_item", - "numbered_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "The index continues from the previous (4)", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "The index continues from the previous (4)", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "1981c9ec-75c5-405d-a4b4-c4db8fc705af", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:28:00Z", - "last_edited_time": "2024-08-01T15:28:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "6. I can\u2019t set (6) as the item label", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "6. I can\u2019t set (6) as the item label", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "2768f917-08f4-4e7d-83d0-61844dc8a40e", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:36:00Z", - "last_edited_time": "2024-08-09T09:36:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "TODO examples", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "TODO examples", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "eb921750-d7ec-42e5-96b2-c65ca88d6776", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:36:00Z", - "last_edited_time": "2024-08-09T09:36:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "to_do", - "to_do": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is an unchecked todo item", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is an unchecked todo item", - "href": null - } - ], - "checked": false, - "color": "default" - } - }, - { - "object": "block", - "id": "b694c88f-688f-4a45-b64b-61d65b29e8b0", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T09:36:00Z", - "last_edited_time": "2024-08-09T09:36:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "to_do", - "to_do": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a checked todo item", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a checked todo item", - "href": null - } - ], - "checked": true, - "color": "default" - } - }, - { - "object": "block", - "id": "8bb29a91-42ae-40a1-b696-1a71d699978f", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-01T15:38:00Z", - "last_edited_time": "2024-08-08T15:47:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Code blocks", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Code blocks", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "bbb22181-4e3d-4f49-956b-9b8d092d9199", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-08T15:47:00Z", - "last_edited_time": "2024-08-08T15:48:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "code", - "code": { - "caption": [ - { - "type": "text", - "text": { - "content": "This is a code ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a code ", - "href": null - }, - { - "type": "text", - "text": { - "content": "block", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "block", - "href": null - }, - { - "type": "text", - "text": { - "content": " caption", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " caption", - "href": null - } - ], - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is a code block\nThis is a new line", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a code block\nThis is a new line", - "href": null - } - ], - "language": "bash" - } - }, - { - "object": "block", - "id": "439e9657-0303-473c-8991-b2c837b1c3aa", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T07:33:00Z", - "last_edited_time": "2024-08-09T07:33:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Equations", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Equations", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "f0545305-a8ab-449a-aa23-e9617febf965", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T07:33:00Z", - "last_edited_time": "2024-08-09T07:34:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "This is an ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is an ", - "href": null - }, - { - "type": "equation", - "equation": { - "expression": "\\int_0^1\\sin(x)\\,dx" - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "\\int_0^1\\sin(x)\\,dx", - "href": null - }, - { - "type": "text", - "text": { - "content": " inline equation. Below is a block equation:", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " inline equation. Below is a block equation:", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "a0ea53e7-ca42-4d5d-8345-481bb74c8c2a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T07:34:00Z", - "last_edited_time": "2024-08-09T07:34:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "equation", - "equation": { - "expression": "\\int_0^1\\sin(x)\\,dx" - } - }, - { - "object": "block", - "id": "665dc9ee-ea74-46cf-9001-d07d4020b060", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T08:08:00Z", - "last_edited_time": "2024-08-09T08:08:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Image blocks", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Image blocks", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "98c78199-ef1c-497a-8e44-e1f3b511c3a9", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T08:08:00Z", - "last_edited_time": "2024-08-09T08:11:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "image", - "image": { - "caption": [ - { - "type": "text", - "text": { - "content": "This is a caption for the image", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "This is a caption for the image", - "href": null - } - ], - "type": "file", - "file": { - "url": "https://prod-files-secure.s3.us-west-2.amazonaws.com/d6000e68-0a06-463d-8914-d6dfe33f31b9/3141b657-2f3a-425a-9b44-d61df64d63e0/TextCortex_%282024-08-07_13_08_56%29_Create_a_drawing_of_a_scenic_v.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAT73L2G45HZZMZUHI%2F20240809%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240809T121557Z&X-Amz-Expires=3600&X-Amz-Signature=287d787db70873c68fd020453dffd592faa076352b40dabe5bb711e6b0ae5208&X-Amz-SignedHeaders=host&x-id=GetObject", - "expiry_time": "2024-08-09T13:15:57Z" - } - } - }, - { - "object": "block", - "id": "fdc1aa4c-b0d7-4636-bdee-0a56cfc7c54a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T10:09:00Z", - "last_edited_time": "2024-08-09T10:09:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Quotes", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Quotes", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "23d455c3-7469-4f02-97b8-e260bc02f940", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T10:09:00Z", - "last_edited_time": "2024-08-09T10:10:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "quote", - "quote": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a quote\nSome ", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a quote\nSome ", - "href": null - }, - { - "type": "text", - "text": { - "content": "formatted text", - "link": null - }, - "annotations": { - "bold": true, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "formatted text", - "href": null - }, - { - "type": "text", - "text": { - "content": " inside the quote", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": " inside the quote", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "f3308f29-797c-47f1-989c-ec823cfbda03", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:00:00Z", - "last_edited_time": "2024-08-09T11:05:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Divider", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Divider", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "f48c507b-46eb-4b92-a714-3cba4982fec2", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:05:00Z", - "last_edited_time": "2024-08-09T11:05:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Here is a divider:", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Here is a divider:", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "df320310-a087-4039-b3ef-28d0460f8664", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:05:00Z", - "last_edited_time": "2024-08-09T11:05:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "divider", - "divider": {} - }, - { - "object": "block", - "id": "3378e979-29d3-4d53-b2dd-a4e2df80fef3", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:05:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Columns", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Columns", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - }, - { - "object": "block", - "id": "175e5d39-7d7c-4428-81a7-b16824a78f6b", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Below is a 2 column example", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Below is a 2 column example", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "32b17815-92d0-4fa3-8d72-ff65ca40c1dc", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column_list", - "column_list": {}, - "children": [ - { - "object": "block", - "id": "9f75c2d7-b90d-4b51-841d-47543b4a8097", - "parent": { - "type": "block_id", - "block_id": "32b17815-92d0-4fa3-8d72-ff65ca40c1dc" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "99dd06e9-8faf-46e2-a84f-5476a2e8fb72", - "parent": { - "type": "block_id", - "block_id": "9f75c2d7-b90d-4b51-841d-47543b4a8097" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "First column", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "First column", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "c50858c0-4722-4fdb-9f24-0cb83be4fc71", - "parent": { - "type": "block_id", - "block_id": "9f75c2d7-b90d-4b51-841d-47543b4a8097" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "to_do", - "to_do": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "something", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "something", - "href": null - } - ], - "checked": false, - "color": "default" - } - } - ] - }, - { - "object": "block", - "id": "ab7c74d6-e601-4627-9374-3a034d1389c2", - "parent": { - "type": "block_id", - "block_id": "32b17815-92d0-4fa3-8d72-ff65ca40c1dc" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "37c2f36a-8f95-46be-ae1e-190c3f98c559", - "parent": { - "type": "block_id", - "block_id": "ab7c74d6-e601-4627-9374-3a034d1389c2" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Second column", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Second column", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b", - "parent": { - "type": "block_id", - "block_id": "ab7c74d6-e601-4627-9374-3a034d1389c2" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "table", - "table": { - "table_width": 2, - "has_column_header": false, - "has_row_header": false - }, - "children": [ - { - "object": "block", - "id": "5cb7a042-70af-472b-b410-451afb723d2a", - "parent": { - "type": "block_id", - "block_id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "1", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "2", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "92e59441-bef1-46fa-8e1b-a807131695d3", - "parent": { - "type": "block_id", - "block_id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "3", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "4", - "href": null - } - ] - ] - } - }, - { - "object": "block", - "id": "bb47ea02-ea18-47d2-9432-0b4acc27538e", - "parent": { - "type": "block_id", - "block_id": "7af2cdff-d4fc-44d2-ac60-e47f3da4761b" - }, - "created_time": "2024-08-09T11:58:00Z", - "last_edited_time": "2024-08-09T11:58:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "table_row", - "table_row": { - "cells": [ - [ - { - "type": "text", - "text": { - "content": "5", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "5", - "href": null - } - ], - [ - { - "type": "text", - "text": { - "content": "6", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "6", - "href": null - } - ] - ] - } - } - ] - } - ] - } - ] - }, - { - "object": "block", - "id": "65dde59c-db9c-46a2-9e98-4a1b99ba644f", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Below is a 4 column example", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Below is a 4 column example", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column_list", - "column_list": {}, - "children": [ - { - "object": "block", - "id": "46e295c3-cf75-4434-9947-8af0833bb1bb", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "9deb01c3-339f-44de-873d-4f51b97355e2", - "parent": { - "type": "block_id", - "block_id": "46e295c3-cf75-4434-9947-8af0833bb1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 1", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 1", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "bfcbb0ee-9a18-45ac-bfda-54f4c58f9f87", - "parent": { - "type": "block_id", - "block_id": "46e295c3-cf75-4434-9947-8af0833bb1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "bulleted_list_item", - "bulleted_list_item": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "A list", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "A list", - "href": null - } - ], - "color": "default" - } - } - ] - }, - { - "object": "block", - "id": "ac0925fe-2403-4482-8672-e816f49520b6", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "09ef16e6-6822-4487-81dd-6de5efb88725", - "parent": { - "type": "block_id", - "block_id": "ac0925fe-2403-4482-8672-e816f49520b6" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 2", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 2", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "da439007-8b00-49b6-866c-40db7bc79024", - "parent": { - "type": "block_id", - "block_id": "ac0925fe-2403-4482-8672-e816f49520b6" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "equation", - "equation": { - "expression": "a=b" - } - } - ] - }, - { - "object": "block", - "id": "30f487ba-df8e-483f-95e5-4362f59cd1bb", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "8f685774-d528-49c9-a4ed-f35f7e0c1e48", - "parent": { - "type": "block_id", - "block_id": "30f487ba-df8e-483f-95e5-4362f59cd1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 3", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 3", - "href": null - } - ], - "color": "default" - } - }, - { - "object": "block", - "id": "33a3dfd2-6172-4c12-a4c1-b43e6c22a16b", - "parent": { - "type": "block_id", - "block_id": "30f487ba-df8e-483f-95e5-4362f59cd1bb" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "divider", - "divider": {} - }, - { - "object": "block", - "id": "cbcf740b-c1e0-4267-9f87-0553b02693f2", - "parent": { - "type": "block_id", - "block_id": "30f487ba-df8e-483f-95e5-4362f59cd1bb" - }, - "created_time": "2024-08-09T12:00:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "heading_2", - "heading_2": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "heading in column", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "heading in column", - "href": null - } - ], - "is_toggleable": false, - "color": "default" - } - } - ] - }, - { - "object": "block", - "id": "8eb1b342-acf0-44be-b813-4f8348b385df", - "parent": { - "type": "block_id", - "block_id": "ba1c4998-31d2-4fc6-a6ec-f8101752e41a" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "column", - "column": {}, - "children": [ - { - "object": "block", - "id": "5b9f4e4b-e6d0-4f11-b4b9-2b6fa19e4c4f", - "parent": { - "type": "block_id", - "block_id": "8eb1b342-acf0-44be-b813-4f8348b385df" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "Column 4", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "Column 4", - "href": null - } - ], - "color": "default" - } - } - ] - } - ] - }, - { - "object": "block", - "id": "e208aed6-048e-4114-b645-50c0a5b394fb", - "parent": { - "type": "page_id", - "page_id": "8d7dbc6b-5c55-4589-826c-1352450db04e" - }, - "created_time": "2024-08-09T11:59:00Z", - "last_edited_time": "2024-08-09T11:59:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [], - "color": "default" - } - }, - { - "object": "block", - "id": "e4c47a53-eea7-42cd-b51a-16fcbbaf5572", - "parent": { - "type": "block_id", - "block_id": "8eb1b342-acf0-44be-b813-4f8348b385df" - }, - "created_time": "2024-08-09T12:00:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": true, - "archived": false, - "in_trash": false, - "type": "toggle", - "toggle": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "toggle", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "toggle", - "href": null - } - ], - "color": "default" - }, - "children": [ - { - "object": "block", - "id": "f79d961f-7b00-464f-b3b2-a745041cea50", - "parent": { - "type": "block_id", - "block_id": "e4c47a53-eea7-42cd-b51a-16fcbbaf5572" - }, - "created_time": "2024-08-09T12:00:00Z", - "last_edited_time": "2024-08-09T12:00:00Z", - "created_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "last_edited_by": { - "object": "user", - "id": "b9eb2a95-ab37-462d-b6ff-ff84080051f0" - }, - "has_children": false, - "archived": false, - "in_trash": false, - "type": "paragraph", - "paragraph": { - "rich_text": [ - { - "type": "text", - "text": { - "content": "asdfasdfafd", - "link": null - }, - "annotations": { - "bold": false, - "italic": false, - "strikethrough": false, - "underline": false, - "code": false, - "color": "default" - }, - "plain_text": "asdfasdfafd", - "href": null - } - ], - "color": "default" - } - } - ] - } - ] -}