Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Deploy: Consolidated gold tables, fixed nginx docs routing
Browse files- api/main.py +14 -0
- api/routes/auth.py +17 -11
- api/static/communityone_logo.jpg +0 -0
- api/static/communityone_logo.svg +3 -22
- api/static/communityone_logo_64.png +0 -0
- api/static/favicon.ico +0 -0
- frontend/policy-dashboards/public/communityone_logo.jpg +0 -0
- frontend/policy-dashboards/public/communityone_logo.svg +3 -22
- frontend/public/communityone_logo.jpg +0 -0
- frontend/public/communityone_logo.svg +3 -22
- frontend/public/communityone_logo_64.png +0 -0
- frontend/public/favicon.ico +0 -0
- website/.docusaurus/client-modules.js +0 -1
- website/.docusaurus/docusaurus-plugin-debug/default/__plugin.json +4 -0
- website/.docusaurus/docusaurus-plugin-debug/default/p/docusaurus-debug-content-0d5.json +0 -0
- website/.docusaurus/docusaurus.config.mjs +11 -3
- website/.docusaurus/globalData.json +0 -9
- website/.docusaurus/registry.js +172 -164
- website/.docusaurus/routes.js +35 -0
- website/.docusaurus/routesChunkNames.json +381 -338
- website/.docusaurus/site-metadata.json +2 -7
- website/build/img/communityone_logo.jpg +0 -0
- website/build/img/communityone_logo.svg +3 -22
- website/build/img/communityone_logo_64.png +0 -0
- website/build/img/docusaurus-social-card.jpg +0 -0
- website/build/img/docusaurus.png +0 -0
- website/build/img/favicon.ico +0 -0
- website/build/img/logo.svg +3 -1
- website/build/img/undraw_docusaurus_mountain.svg +3 -171
- website/build/img/undraw_docusaurus_react.svg +3 -170
- website/build/img/undraw_docusaurus_tree.svg +3 -40
- website/static/img/communityone_logo.jpg +0 -0
- website/static/img/communityone_logo.svg +3 -22
- website/static/img/communityone_logo_64.png +0 -0
- website/static/img/docusaurus-social-card.jpg +0 -0
- website/static/img/docusaurus.png +0 -0
- website/static/img/favicon.ico +0 -0
- website/static/img/logo.svg +3 -1
- website/static/img/undraw_docusaurus_mountain.svg +3 -171
- website/static/img/undraw_docusaurus_react.svg +3 -170
- website/static/img/undraw_docusaurus_tree.svg +3 -40
api/main.py
CHANGED
|
@@ -174,6 +174,20 @@ if os.path.exists(static_dir):
|
|
| 174 |
else:
|
| 175 |
logger.warning(f"Static directory not found: {static_dir}")
|
| 176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 177 |
# Include authentication routes
|
| 178 |
from api.routes import auth as auth_routes
|
| 179 |
from api.routes import social as social_routes
|
|
|
|
| 174 |
else:
|
| 175 |
logger.warning(f"Static directory not found: {static_dir}")
|
| 176 |
|
| 177 |
+
# Serve favicon at root
|
| 178 |
+
@app.get("/favicon.ico", include_in_schema=False)
|
| 179 |
+
async def favicon():
|
| 180 |
+
"""Serve favicon"""
|
| 181 |
+
from fastapi.responses import FileResponse
|
| 182 |
+
api_static = Path(__file__).parent / "static" / "favicon.ico"
|
| 183 |
+
if api_static.exists():
|
| 184 |
+
return FileResponse(api_static)
|
| 185 |
+
# Fallback to frontend public
|
| 186 |
+
frontend_favicon = Path(static_dir) / "favicon.ico"
|
| 187 |
+
if frontend_favicon.exists():
|
| 188 |
+
return FileResponse(frontend_favicon)
|
| 189 |
+
raise HTTPException(status_code=404, detail="Favicon not found")
|
| 190 |
+
|
| 191 |
# Include authentication routes
|
| 192 |
from api.routes import auth as auth_routes
|
| 193 |
from api.routes import social as social_routes
|
api/routes/auth.py
CHANGED
|
@@ -153,17 +153,23 @@ async def oauth_login(
|
|
| 153 |
|
| 154 |
Supported providers: huggingface, google, facebook, github
|
| 155 |
"""
|
| 156 |
-
|
| 157 |
-
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
| 164 |
-
|
| 165 |
-
|
| 166 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 167 |
|
| 168 |
# Generate state token for CSRF protection
|
| 169 |
state = generate_state_token()
|
|
|
|
| 153 |
|
| 154 |
Supported providers: huggingface, google, facebook, github
|
| 155 |
"""
|
| 156 |
+
try:
|
| 157 |
+
if provider not in OAUTH_PROVIDERS:
|
| 158 |
+
raise HTTPException(status_code=400, detail=f"Unsupported provider: {provider}")
|
| 159 |
+
|
| 160 |
+
config = OAUTH_PROVIDERS[provider]
|
| 161 |
+
client_id = os.getenv(config['client_id_env'])
|
| 162 |
+
|
| 163 |
+
if not client_id:
|
| 164 |
+
raise HTTPException(
|
| 165 |
+
status_code=500,
|
| 166 |
+
detail=f"OAuth not configured for {provider}. Missing {config['client_id_env']}"
|
| 167 |
+
)
|
| 168 |
+
except Exception as e:
|
| 169 |
+
import traceback
|
| 170 |
+
print(f"ERROR in oauth_login: {e}")
|
| 171 |
+
print(traceback.format_exc())
|
| 172 |
+
raise HTTPException(status_code=500, detail=f"OAuth login error: {str(e)}")
|
| 173 |
|
| 174 |
# Generate state token for CSRF protection
|
| 175 |
state = generate_state_token()
|
api/static/communityone_logo.jpg
CHANGED
|
|
Git LFS Details
|
api/static/communityone_logo.svg
CHANGED
|
|
|
|
Git LFS Details
|
api/static/communityone_logo_64.png
CHANGED
|
|
Git LFS Details
|
api/static/favicon.ico
CHANGED
|
|
|
|
Git LFS Details
|
frontend/policy-dashboards/public/communityone_logo.jpg
CHANGED
|
|
Git LFS Details
|
frontend/policy-dashboards/public/communityone_logo.svg
CHANGED
|
|
|
|
Git LFS Details
|
frontend/public/communityone_logo.jpg
CHANGED
|
|
Git LFS Details
|
frontend/public/communityone_logo.svg
CHANGED
|
|
|
|
Git LFS Details
|
frontend/public/communityone_logo_64.png
CHANGED
|
|
Git LFS Details
|
frontend/public/favicon.ico
CHANGED
|
|
|
|
Git LFS Details
|
website/.docusaurus/client-modules.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
export default [
|
| 2 |
require("/home/developer/projects/open-navigator/website/.docusaurus/docusaurus-plugin-css-cascade-layers/default/layers.css"),
|
| 3 |
-
require("/home/developer/projects/open-navigator/website/node_modules/@docusaurus/plugin-google-gtag/lib/gtag"),
|
| 4 |
require("/home/developer/projects/open-navigator/website/node_modules/infima/dist/css/default/default.css"),
|
| 5 |
require("/home/developer/projects/open-navigator/website/node_modules/@docusaurus/theme-classic/lib/prism-include-languages"),
|
| 6 |
require("/home/developer/projects/open-navigator/website/node_modules/@docusaurus/theme-classic/lib/nprogress"),
|
|
|
|
| 1 |
export default [
|
| 2 |
require("/home/developer/projects/open-navigator/website/.docusaurus/docusaurus-plugin-css-cascade-layers/default/layers.css"),
|
|
|
|
| 3 |
require("/home/developer/projects/open-navigator/website/node_modules/infima/dist/css/default/default.css"),
|
| 4 |
require("/home/developer/projects/open-navigator/website/node_modules/@docusaurus/theme-classic/lib/prism-include-languages"),
|
| 5 |
require("/home/developer/projects/open-navigator/website/node_modules/@docusaurus/theme-classic/lib/nprogress"),
|
website/.docusaurus/docusaurus-plugin-debug/default/__plugin.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "docusaurus-plugin-debug",
|
| 3 |
+
"id": "default"
|
| 4 |
+
}
|
website/.docusaurus/docusaurus-plugin-debug/default/p/docusaurus-debug-content-0d5.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
website/.docusaurus/docusaurus.config.mjs
CHANGED
|
@@ -35,7 +35,7 @@ export default {
|
|
| 35 |
"projectName": "open-navigator",
|
| 36 |
"onBrokenLinks": "warn",
|
| 37 |
"customFields": {
|
| 38 |
-
"appUrl": "
|
| 39 |
},
|
| 40 |
"i18n": {
|
| 41 |
"defaultLocale": "en",
|
|
@@ -157,7 +157,7 @@ export default {
|
|
| 157 |
"logo": {
|
| 158 |
"alt": "CommunityOne Logo",
|
| 159 |
"src": "img/communityone_logo.svg",
|
| 160 |
-
"href": "
|
| 161 |
"target": "_self"
|
| 162 |
},
|
| 163 |
"items": [
|
|
@@ -232,7 +232,7 @@ export default {
|
|
| 232 |
"items": [
|
| 233 |
{
|
| 234 |
"label": "Launch Open Navigator",
|
| 235 |
-
"href": "
|
| 236 |
},
|
| 237 |
{
|
| 238 |
"label": "GitHub",
|
|
@@ -262,6 +262,14 @@ export default {
|
|
| 262 |
{
|
| 263 |
"label": "LinkedIn",
|
| 264 |
"href": "https://www.linkedin.com/company/getcommunityone"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 265 |
}
|
| 266 |
]
|
| 267 |
},
|
|
|
|
| 35 |
"projectName": "open-navigator",
|
| 36 |
"onBrokenLinks": "warn",
|
| 37 |
"customFields": {
|
| 38 |
+
"appUrl": "http://localhost:5173"
|
| 39 |
},
|
| 40 |
"i18n": {
|
| 41 |
"defaultLocale": "en",
|
|
|
|
| 157 |
"logo": {
|
| 158 |
"alt": "CommunityOne Logo",
|
| 159 |
"src": "img/communityone_logo.svg",
|
| 160 |
+
"href": "http://localhost:5173",
|
| 161 |
"target": "_self"
|
| 162 |
},
|
| 163 |
"items": [
|
|
|
|
| 232 |
"items": [
|
| 233 |
{
|
| 234 |
"label": "Launch Open Navigator",
|
| 235 |
+
"href": "http://localhost:5173"
|
| 236 |
},
|
| 237 |
{
|
| 238 |
"label": "GitHub",
|
|
|
|
| 262 |
{
|
| 263 |
"label": "LinkedIn",
|
| 264 |
"href": "https://www.linkedin.com/company/getcommunityone"
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"label": "YouTube",
|
| 268 |
+
"href": "https://www.youtube.com/@getcommunityone"
|
| 269 |
+
},
|
| 270 |
+
{
|
| 271 |
+
"label": "Discord",
|
| 272 |
+
"href": "https://discord.gg/uH6Dytek"
|
| 273 |
}
|
| 274 |
]
|
| 275 |
},
|
website/.docusaurus/globalData.json
CHANGED
|
@@ -658,14 +658,5 @@
|
|
| 658 |
],
|
| 659 |
"breadcrumbs": true
|
| 660 |
}
|
| 661 |
-
},
|
| 662 |
-
"docusaurus-plugin-google-gtag": {
|
| 663 |
-
"default": {
|
| 664 |
-
"trackingID": [
|
| 665 |
-
"G-5EQV815915"
|
| 666 |
-
],
|
| 667 |
-
"anonymizeIP": true,
|
| 668 |
-
"id": "default"
|
| 669 |
-
}
|
| 670 |
}
|
| 671 |
}
|
|
|
|
| 658 |
],
|
| 659 |
"breadcrumbs": true
|
| 660 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 661 |
}
|
| 662 |
}
|
website/.docusaurus/registry.js
CHANGED
|
@@ -1,165 +1,173 @@
|
|
| 1 |
export default {
|
| 2 |
-
"
|
| 3 |
-
"
|
| 4 |
-
"
|
| 5 |
-
"
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"
|
| 11 |
-
"
|
| 12 |
-
"
|
| 13 |
-
"
|
| 14 |
-
"
|
| 15 |
-
"
|
| 16 |
-
"
|
| 17 |
-
"
|
| 18 |
-
"
|
| 19 |
-
"
|
| 20 |
-
"
|
| 21 |
-
"
|
| 22 |
-
"
|
| 23 |
-
"
|
| 24 |
-
"
|
| 25 |
-
"
|
| 26 |
-
"
|
| 27 |
-
"
|
| 28 |
-
"
|
| 29 |
-
"
|
| 30 |
-
"
|
| 31 |
-
"
|
| 32 |
-
"
|
| 33 |
-
"
|
| 34 |
-
"
|
| 35 |
-
"
|
| 36 |
-
"
|
| 37 |
-
"
|
| 38 |
-
"
|
| 39 |
-
"
|
| 40 |
-
"
|
| 41 |
-
"
|
| 42 |
-
"
|
| 43 |
-
"
|
| 44 |
-
"
|
| 45 |
-
"
|
| 46 |
-
"
|
| 47 |
-
"
|
| 48 |
-
"
|
| 49 |
-
"
|
| 50 |
-
"
|
| 51 |
-
"
|
| 52 |
-
"
|
| 53 |
-
"
|
| 54 |
-
"
|
| 55 |
-
"
|
| 56 |
-
"
|
| 57 |
-
"
|
| 58 |
-
"
|
| 59 |
-
"
|
| 60 |
-
"
|
| 61 |
-
"
|
| 62 |
-
"
|
| 63 |
-
"
|
| 64 |
-
"
|
| 65 |
-
"
|
| 66 |
-
"
|
| 67 |
-
"
|
| 68 |
-
"
|
| 69 |
-
"
|
| 70 |
-
"
|
| 71 |
-
"
|
| 72 |
-
"
|
| 73 |
-
"
|
| 74 |
-
"
|
| 75 |
-
"
|
| 76 |
-
"
|
| 77 |
-
"
|
| 78 |
-
"
|
| 79 |
-
"
|
| 80 |
-
"
|
| 81 |
-
"
|
| 82 |
-
"
|
| 83 |
-
"
|
| 84 |
-
"
|
| 85 |
-
"
|
| 86 |
-
"
|
| 87 |
-
"
|
| 88 |
-
"
|
| 89 |
-
"
|
| 90 |
-
"
|
| 91 |
-
"
|
| 92 |
-
"
|
| 93 |
-
"
|
| 94 |
-
"
|
| 95 |
-
"
|
| 96 |
-
"
|
| 97 |
-
"
|
| 98 |
-
"
|
| 99 |
-
"
|
| 100 |
-
"
|
| 101 |
-
"
|
| 102 |
-
"
|
| 103 |
-
"
|
| 104 |
-
"
|
| 105 |
-
"
|
| 106 |
-
"
|
| 107 |
-
"
|
| 108 |
-
"
|
| 109 |
-
"
|
| 110 |
-
"
|
| 111 |
-
"
|
| 112 |
-
"
|
| 113 |
-
"
|
| 114 |
-
"
|
| 115 |
-
"
|
| 116 |
-
"
|
| 117 |
-
"
|
| 118 |
-
"
|
| 119 |
-
"
|
| 120 |
-
"
|
| 121 |
-
"
|
| 122 |
-
"
|
| 123 |
-
"
|
| 124 |
-
"
|
| 125 |
-
"
|
| 126 |
-
"
|
| 127 |
-
"
|
| 128 |
-
"
|
| 129 |
-
"
|
| 130 |
-
"
|
| 131 |
-
"
|
| 132 |
-
"
|
| 133 |
-
"
|
| 134 |
-
"
|
| 135 |
-
"
|
| 136 |
-
"
|
| 137 |
-
"
|
| 138 |
-
"
|
| 139 |
-
"
|
| 140 |
-
"
|
| 141 |
-
"
|
| 142 |
-
"
|
| 143 |
-
"
|
| 144 |
-
"
|
| 145 |
-
"
|
| 146 |
-
"
|
| 147 |
-
"
|
| 148 |
-
"
|
| 149 |
-
"
|
| 150 |
-
"
|
| 151 |
-
"
|
| 152 |
-
"
|
| 153 |
-
"
|
| 154 |
-
"
|
| 155 |
-
"
|
| 156 |
-
"
|
| 157 |
-
"
|
| 158 |
-
"
|
| 159 |
-
"
|
| 160 |
-
"
|
| 161 |
-
"
|
| 162 |
-
"
|
| 163 |
-
"
|
| 164 |
-
"
|
| 165 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
export default {
|
| 2 |
+
"__comp---site-src-pages-dashboard-tsx-00-e-459": [() => import(/* webpackChunkName: "__comp---site-src-pages-dashboard-tsx-00-e-459" */ "@site/src/pages/dashboard.tsx"), "@site/src/pages/dashboard.tsx", require.resolveWeak("@site/src/pages/dashboard.tsx")],
|
| 3 |
+
"__comp---site-src-pages-index-tsx-1-df-d3e": [() => import(/* webpackChunkName: "__comp---site-src-pages-index-tsx-1-df-d3e" */ "@site/src/pages/index.tsx"), "@site/src/pages/index.tsx", require.resolveWeak("@site/src/pages/index.tsx")],
|
| 4 |
+
"__comp---theme-blog-archive-page-9-e-4-1d8": [() => import(/* webpackChunkName: "__comp---theme-blog-archive-page-9-e-4-1d8" */ "@theme/BlogArchivePage"), "@theme/BlogArchivePage", require.resolveWeak("@theme/BlogArchivePage")],
|
| 5 |
+
"__comp---theme-blog-list-pagea-6-a-7ba": [() => import(/* webpackChunkName: "__comp---theme-blog-list-pagea-6-a-7ba" */ "@theme/BlogListPage"), "@theme/BlogListPage", require.resolveWeak("@theme/BlogListPage")],
|
| 6 |
+
"__comp---theme-blog-pages-blog-authors-list-page-621-70c": [() => import(/* webpackChunkName: "__comp---theme-blog-pages-blog-authors-list-page-621-70c" */ "@theme/Blog/Pages/BlogAuthorsListPage"), "@theme/Blog/Pages/BlogAuthorsListPage", require.resolveWeak("@theme/Blog/Pages/BlogAuthorsListPage")],
|
| 7 |
+
"__comp---theme-blog-pages-blog-authors-posts-page-33-f-bd5": [() => import(/* webpackChunkName: "__comp---theme-blog-pages-blog-authors-posts-page-33-f-bd5" */ "@theme/Blog/Pages/BlogAuthorsPostsPage"), "@theme/Blog/Pages/BlogAuthorsPostsPage", require.resolveWeak("@theme/Blog/Pages/BlogAuthorsPostsPage")],
|
| 8 |
+
"__comp---theme-blog-post-pageccc-cab": [() => import(/* webpackChunkName: "__comp---theme-blog-post-pageccc-cab" */ "@theme/BlogPostPage"), "@theme/BlogPostPage", require.resolveWeak("@theme/BlogPostPage")],
|
| 9 |
+
"__comp---theme-blog-tags-list-page-01-a-d0b": [() => import(/* webpackChunkName: "__comp---theme-blog-tags-list-page-01-a-d0b" */ "@theme/BlogTagsListPage"), "@theme/BlogTagsListPage", require.resolveWeak("@theme/BlogTagsListPage")],
|
| 10 |
+
"__comp---theme-blog-tags-posts-page-687-b6c": [() => import(/* webpackChunkName: "__comp---theme-blog-tags-posts-page-687-b6c" */ "@theme/BlogTagsPostsPage"), "@theme/BlogTagsPostsPage", require.resolveWeak("@theme/BlogTagsPostsPage")],
|
| 11 |
+
"__comp---theme-debug-config-23-a-2ff": [() => import(/* webpackChunkName: "__comp---theme-debug-config-23-a-2ff" */ "@theme/DebugConfig"), "@theme/DebugConfig", require.resolveWeak("@theme/DebugConfig")],
|
| 12 |
+
"__comp---theme-debug-contentba-8-ce7": [() => import(/* webpackChunkName: "__comp---theme-debug-contentba-8-ce7" */ "@theme/DebugContent"), "@theme/DebugContent", require.resolveWeak("@theme/DebugContent")],
|
| 13 |
+
"__comp---theme-debug-global-dataede-0fa": [() => import(/* webpackChunkName: "__comp---theme-debug-global-dataede-0fa" */ "@theme/DebugGlobalData"), "@theme/DebugGlobalData", require.resolveWeak("@theme/DebugGlobalData")],
|
| 14 |
+
"__comp---theme-debug-registry-679-501": [() => import(/* webpackChunkName: "__comp---theme-debug-registry-679-501" */ "@theme/DebugRegistry"), "@theme/DebugRegistry", require.resolveWeak("@theme/DebugRegistry")],
|
| 15 |
+
"__comp---theme-debug-routes-946-699": [() => import(/* webpackChunkName: "__comp---theme-debug-routes-946-699" */ "@theme/DebugRoutes"), "@theme/DebugRoutes", require.resolveWeak("@theme/DebugRoutes")],
|
| 16 |
+
"__comp---theme-debug-site-metadata-68-e-3d4": [() => import(/* webpackChunkName: "__comp---theme-debug-site-metadata-68-e-3d4" */ "@theme/DebugSiteMetadata"), "@theme/DebugSiteMetadata", require.resolveWeak("@theme/DebugSiteMetadata")],
|
| 17 |
+
"__comp---theme-doc-item-178-a40": [() => import(/* webpackChunkName: "__comp---theme-doc-item-178-a40" */ "@theme/DocItem"), "@theme/DocItem", require.resolveWeak("@theme/DocItem")],
|
| 18 |
+
"__comp---theme-doc-roota-94-67a": [() => import(/* webpackChunkName: "__comp---theme-doc-roota-94-67a" */ "@theme/DocRoot"), "@theme/DocRoot", require.resolveWeak("@theme/DocRoot")],
|
| 19 |
+
"__comp---theme-doc-version-roota-7-b-5de": [() => import(/* webpackChunkName: "__comp---theme-doc-version-roota-7-b-5de" */ "@theme/DocVersionRoot"), "@theme/DocVersionRoot", require.resolveWeak("@theme/DocVersionRoot")],
|
| 20 |
+
"__comp---theme-docs-root-5-e-9-0b6": [() => import(/* webpackChunkName: "__comp---theme-docs-root-5-e-9-0b6" */ "@theme/DocsRoot"), "@theme/DocsRoot", require.resolveWeak("@theme/DocsRoot")],
|
| 21 |
+
"__comp---theme-mdx-page-1-f-3-b90": [() => import(/* webpackChunkName: "__comp---theme-mdx-page-1-f-3-b90" */ "@theme/MDXPage"), "@theme/MDXPage", require.resolveWeak("@theme/MDXPage")],
|
| 22 |
+
"__props---blog-archivef-81-229": [() => import(/* webpackChunkName: "__props---blog-archivef-81-229" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-archive-f05.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-archive-f05.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-archive-f05.json")],
|
| 23 |
+
"__props---blog-authors-communityoned-7-a-8fc": [() => import(/* webpackChunkName: "__props---blog-authors-communityoned-7-a-8fc" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-authors-communityone-ddd.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-authors-communityone-ddd.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-authors-communityone-ddd.json")],
|
| 24 |
+
"__props---blog-authorsef-8-44f": [() => import(/* webpackChunkName: "__props---blog-authorsef-8-44f" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-authors-790.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-authors-790.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-authors-790.json")],
|
| 25 |
+
"__props---blog-tags-3-a-2-fa2": [() => import(/* webpackChunkName: "__props---blog-tags-3-a-2-fa2" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-df9.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-df9.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-tags-df9.json")],
|
| 26 |
+
"__props---blog-tags-citationsee-0-d4e": [() => import(/* webpackChunkName: "__props---blog-tags-citationsee-0-d4e" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-citations-6d7.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-citations-6d7.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-tags-citations-6d7.json")],
|
| 27 |
+
"__props---blog-tags-civic-techeaa-486": [() => import(/* webpackChunkName: "__props---blog-tags-civic-techeaa-486" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-civic-tech-cc9.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-civic-tech-cc9.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-tags-civic-tech-cc9.json")],
|
| 28 |
+
"__props---blog-tags-communitydc-8-7d6": [() => import(/* webpackChunkName: "__props---blog-tags-communitydc-8-7d6" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-community-623.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-community-623.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-tags-community-623.json")],
|
| 29 |
+
"__props---blog-tags-data-modela-3-c-9de": [() => import(/* webpackChunkName: "__props---blog-tags-data-modela-3-c-9de" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-data-model-be1.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-data-model-be1.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-tags-data-model-be1.json")],
|
| 30 |
+
"__props---blog-tags-deploymentc-6-b-56c": [() => import(/* webpackChunkName: "__props---blog-tags-deploymentc-6-b-56c" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-deployment-a54.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-deployment-a54.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-tags-deployment-a54.json")],
|
| 31 |
+
"__props---blog-tags-documentationaf-8-3c5": [() => import(/* webpackChunkName: "__props---blog-tags-documentationaf-8-3c5" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-documentation-453.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-tags-documentation-453.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-tags-documentation-453.json")],
|
| 32 |
+
"__props---blogc-15-573": [() => import(/* webpackChunkName: "__props---blogc-15-573" */ "@generated/docusaurus-plugin-content-blog/default/p/blog-bd9.json"), "@generated/docusaurus-plugin-content-blog/default/p/blog-bd9.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/p/blog-bd9.json")],
|
| 33 |
+
"__props---docs-005-788": [() => import(/* webpackChunkName: "__props---docs-005-788" */ "@generated/docusaurus-plugin-content-docs/default/p/docs-175.json"), "@generated/docusaurus-plugin-content-docs/default/p/docs-175.json", require.resolveWeak("@generated/docusaurus-plugin-content-docs/default/p/docs-175.json")],
|
| 34 |
+
"__props---docusaurus-debug-content-3-c-0-be2": [() => import(/* webpackChunkName: "__props---docusaurus-debug-content-3-c-0-be2" */ "@generated/docusaurus-plugin-debug/default/p/docusaurus-debug-content-0d5.json"), "@generated/docusaurus-plugin-debug/default/p/docusaurus-debug-content-0d5.json", require.resolveWeak("@generated/docusaurus-plugin-debug/default/p/docusaurus-debug-content-0d5.json")],
|
| 35 |
+
"blogMetadata---blog-authorsace-e7d": [() => import(/* webpackChunkName: "blogMetadata---blog-authorsace-e7d" */ "~blog/default/blogMetadata-default.json"), "~blog/default/blogMetadata-default.json", require.resolveWeak("~blog/default/blogMetadata-default.json")],
|
| 36 |
+
"config---dashboard-5-e-9-f57": [() => import(/* webpackChunkName: "config---dashboard-5-e-9-f57" */ "@generated/docusaurus.config"), "@generated/docusaurus.config", require.resolveWeak("@generated/docusaurus.config")],
|
| 37 |
+
"content---blog-371-018": [() => import(/* webpackChunkName: "content---blog-371-018" */ "@site/blog/2026-04-13-citations-migration.md?truncated=true"), "@site/blog/2026-04-13-citations-migration.md?truncated=true", require.resolveWeak("@site/blog/2026-04-13-citations-migration.md?truncated=true")],
|
| 38 |
+
"content---blog-6-bd-db5": [() => import(/* webpackChunkName: "content---blog-6-bd-db5" */ "@site/blog/2026-04-20-homepage-navigation-fixes.md?truncated=true"), "@site/blog/2026-04-20-homepage-navigation-fixes.md?truncated=true", require.resolveWeak("@site/blog/2026-04-20-homepage-navigation-fixes.md?truncated=true")],
|
| 39 |
+
"content---blog-week-1-civic-tech-tracking-2-dc-c85": [() => import(/* webpackChunkName: "content---blog-week-1-civic-tech-tracking-2-dc-c85" */ "@site/blog/2026-04-06-data-model-expansion.md"), "@site/blog/2026-04-06-data-model-expansion.md", require.resolveWeak("@site/blog/2026-04-06-data-model-expansion.md")],
|
| 40 |
+
"content---blog-week-2-building-trust-transparencydeb-240": [() => import(/* webpackChunkName: "content---blog-week-2-building-trust-transparencydeb-240" */ "@site/blog/2026-04-13-citations-migration.md"), "@site/blog/2026-04-13-citations-migration.md", require.resolveWeak("@site/blog/2026-04-13-citations-migration.md")],
|
| 41 |
+
"content---blog-week-3-easier-access-civic-data-4-dd-7c5": [() => import(/* webpackChunkName: "content---blog-week-3-easier-access-civic-data-4-dd-7c5" */ "@site/blog/2026-04-20-homepage-navigation-fixes.md"), "@site/blog/2026-04-20-homepage-navigation-fixes.md", require.resolveWeak("@site/blog/2026-04-20-homepage-navigation-fixes.md")],
|
| 42 |
+
"content---bloge-1-a-bd7": [() => import(/* webpackChunkName: "content---bloge-1-a-bd7" */ "@site/blog/2026-04-06-data-model-expansion.md?truncated=true"), "@site/blog/2026-04-06-data-model-expansion.md?truncated=true", require.resolveWeak("@site/blog/2026-04-06-data-model-expansion.md?truncated=true")],
|
| 43 |
+
"content---docs-architecture-528-86f": [() => import(/* webpackChunkName: "content---docs-architecture-528-86f" */ "@site/docs/architecture.md"), "@site/docs/architecture.md", require.resolveWeak("@site/docs/architecture.md")],
|
| 44 |
+
"content---docs-case-studies-tuscaloosa-completefd-1-af9": [() => import(/* webpackChunkName: "content---docs-case-studies-tuscaloosa-completefd-1-af9" */ "@site/docs/case-studies/tuscaloosa-complete.md"), "@site/docs/case-studies/tuscaloosa-complete.md", require.resolveWeak("@site/docs/case-studies/tuscaloosa-complete.md")],
|
| 45 |
+
"content---docs-case-studies-tuscaloosa-discoveryfc-1-5ec": [() => import(/* webpackChunkName: "content---docs-case-studies-tuscaloosa-discoveryfc-1-5ec" */ "@site/docs/case-studies/tuscaloosa-discovery.md"), "@site/docs/case-studies/tuscaloosa-discovery.md", require.resolveWeak("@site/docs/case-studies/tuscaloosa-discovery.md")],
|
| 46 |
+
"content---docs-case-studies-tuscaloosa-pipeline-122-c0e": [() => import(/* webpackChunkName: "content---docs-case-studies-tuscaloosa-pipeline-122-c0e" */ "@site/docs/case-studies/tuscaloosa-pipeline.md"), "@site/docs/case-studies/tuscaloosa-pipeline.md", require.resolveWeak("@site/docs/case-studies/tuscaloosa-pipeline.md")],
|
| 47 |
+
"content---docs-data-sources-ballot-election-sources-86-c-b33": [() => import(/* webpackChunkName: "content---docs-data-sources-ballot-election-sources-86-c-b33" */ "@site/docs/data-sources/ballot-election-sources.md"), "@site/docs/data-sources/ballot-election-sources.md", require.resolveWeak("@site/docs/data-sources/ballot-election-sources.md")],
|
| 48 |
+
"content---docs-data-sources-census-acs-892-ced": [() => import(/* webpackChunkName: "content---docs-data-sources-census-acs-892-ced" */ "@site/docs/data-sources/census-acs.md"), "@site/docs/data-sources/census-acs.md", require.resolveWeak("@site/docs/data-sources/census-acs.md")],
|
| 49 |
+
"content---docs-data-sources-census-data-185-ea3": [() => import(/* webpackChunkName: "content---docs-data-sources-census-data-185-ea3" */ "@site/docs/data-sources/census-data.md"), "@site/docs/data-sources/census-data.md", require.resolveWeak("@site/docs/data-sources/census-data.md")],
|
| 50 |
+
"content---docs-data-sources-charity-navigatorf-47-3e6": [() => import(/* webpackChunkName: "content---docs-data-sources-charity-navigatorf-47-3e6" */ "@site/docs/data-sources/charity-navigator.md"), "@site/docs/data-sources/charity-navigator.md", require.resolveWeak("@site/docs/data-sources/charity-navigator.md")],
|
| 51 |
+
"content---docs-data-sources-citationscc-5-09f": [() => import(/* webpackChunkName: "content---docs-data-sources-citationscc-5-09f" */ "@site/docs/data-sources/citations.md"), "@site/docs/data-sources/citations.md", require.resolveWeak("@site/docs/data-sources/citations.md")],
|
| 52 |
+
"content---docs-data-sources-data-model-erdf-89-b95": [() => import(/* webpackChunkName: "content---docs-data-sources-data-model-erdf-89-b95" */ "@site/docs/data-sources/data-model-erd.md"), "@site/docs/data-sources/data-model-erd.md", require.resolveWeak("@site/docs/data-sources/data-model-erd.md")],
|
| 53 |
+
"content---docs-data-sources-factcheck-sources-264-750": [() => import(/* webpackChunkName: "content---docs-data-sources-factcheck-sources-264-750" */ "@site/docs/data-sources/factcheck-sources.md"), "@site/docs/data-sources/factcheck-sources.md", require.resolveWeak("@site/docs/data-sources/factcheck-sources.md")],
|
| 54 |
+
"content---docs-data-sources-form-990-xml-035-fa2": [() => import(/* webpackChunkName: "content---docs-data-sources-form-990-xml-035-fa2" */ "@site/docs/data-sources/form-990-xml.md"), "@site/docs/data-sources/form-990-xml.md", require.resolveWeak("@site/docs/data-sources/form-990-xml.md")],
|
| 55 |
+
"content---docs-data-sources-huggingface-datasets-297-32d": [() => import(/* webpackChunkName: "content---docs-data-sources-huggingface-datasets-297-32d" */ "@site/docs/data-sources/huggingface-datasets.md"), "@site/docs/data-sources/huggingface-datasets.md", require.resolveWeak("@site/docs/data-sources/huggingface-datasets.md")],
|
| 56 |
+
"content---docs-data-sources-irs-bulk-data-42-b-0a2": [() => import(/* webpackChunkName: "content---docs-data-sources-irs-bulk-data-42-b-0a2" */ "@site/docs/data-sources/irs-bulk-data.md"), "@site/docs/data-sources/irs-bulk-data.md", require.resolveWeak("@site/docs/data-sources/irs-bulk-data.md")],
|
| 57 |
+
"content---docs-data-sources-jurisdiction-discovery-52-c-d52": [() => import(/* webpackChunkName: "content---docs-data-sources-jurisdiction-discovery-52-c-d52" */ "@site/docs/data-sources/jurisdiction-discovery.md"), "@site/docs/data-sources/jurisdiction-discovery.md", require.resolveWeak("@site/docs/data-sources/jurisdiction-discovery.md")],
|
| 58 |
+
"content---docs-data-sources-nonprofit-sources-2-df-537": [() => import(/* webpackChunkName: "content---docs-data-sources-nonprofit-sources-2-df-537" */ "@site/docs/data-sources/nonprofit-sources.md"), "@site/docs/data-sources/nonprofit-sources.md", require.resolveWeak("@site/docs/data-sources/nonprofit-sources.md")],
|
| 59 |
+
"content---docs-data-sources-open-source-repositories-0-af-e9a": [() => import(/* webpackChunkName: "content---docs-data-sources-open-source-repositories-0-af-e9a" */ "@site/docs/data-sources/open-source-repositories.md"), "@site/docs/data-sources/open-source-repositories.md", require.resolveWeak("@site/docs/data-sources/open-source-repositories.md")],
|
| 60 |
+
"content---docs-data-sources-overviewf-9-c-36d": [() => import(/* webpackChunkName: "content---docs-data-sources-overviewf-9-c-36d" */ "@site/docs/data-sources/overview.md"), "@site/docs/data-sources/overview.md", require.resolveWeak("@site/docs/data-sources/overview.md")],
|
| 61 |
+
"content---docs-data-sources-polling-survey-sourcesc-95-59a": [() => import(/* webpackChunkName: "content---docs-data-sources-polling-survey-sourcesc-95-59a" */ "@site/docs/data-sources/polling-survey-sources.md"), "@site/docs/data-sources/polling-survey-sources.md", require.resolveWeak("@site/docs/data-sources/polling-survey-sources.md")],
|
| 62 |
+
"content---docs-data-sources-url-datasets-74-e-591": [() => import(/* webpackChunkName: "content---docs-data-sources-url-datasets-74-e-591" */ "@site/docs/data-sources/url-datasets.md"), "@site/docs/data-sources/url-datasets.md", require.resolveWeak("@site/docs/data-sources/url-datasets.md")],
|
| 63 |
+
"content---docs-data-sources-video-channels-95-b-06c": [() => import(/* webpackChunkName: "content---docs-data-sources-video-channels-95-b-06c" */ "@site/docs/data-sources/video-channels.md"), "@site/docs/data-sources/video-channels.md", require.resolveWeak("@site/docs/data-sources/video-channels.md")],
|
| 64 |
+
"content---docs-data-sources-video-sourcesd-0-f-535": [() => import(/* webpackChunkName: "content---docs-data-sources-video-sourcesd-0-f-535" */ "@site/docs/data-sources/video-sources.md"), "@site/docs/data-sources/video-sources.md", require.resolveWeak("@site/docs/data-sources/video-sources.md")],
|
| 65 |
+
"content---docs-data-sources-youtube-discovery-7-bd-305": [() => import(/* webpackChunkName: "content---docs-data-sources-youtube-discovery-7-bd-305" */ "@site/docs/data-sources/youtube-discovery.md"), "@site/docs/data-sources/youtube-discovery.md", require.resolveWeak("@site/docs/data-sources/youtube-discovery.md")],
|
| 66 |
+
"content---docs-deployment-authentication-setup-06-f-fdd": [() => import(/* webpackChunkName: "content---docs-deployment-authentication-setup-06-f-fdd" */ "@site/docs/deployment/authentication-setup.md"), "@site/docs/deployment/authentication-setup.md", require.resolveWeak("@site/docs/deployment/authentication-setup.md")],
|
| 67 |
+
"content---docs-deployment-build-protection-071-bd6": [() => import(/* webpackChunkName: "content---docs-deployment-build-protection-071-bd6" */ "@site/docs/deployment/build-protection.md"), "@site/docs/deployment/build-protection.md", require.resolveWeak("@site/docs/deployment/build-protection.md")],
|
| 68 |
+
"content---docs-deployment-build-verification-731-0a1": [() => import(/* webpackChunkName: "content---docs-deployment-build-verification-731-0a1" */ "@site/docs/deployment/build-verification.md"), "@site/docs/deployment/build-verification.md", require.resolveWeak("@site/docs/deployment/build-verification.md")],
|
| 69 |
+
"content---docs-deployment-costs-7-b-6-70b": [() => import(/* webpackChunkName: "content---docs-deployment-costs-7-b-6-70b" */ "@site/docs/deployment/costs.md"), "@site/docs/deployment/costs.md", require.resolveWeak("@site/docs/deployment/costs.md")],
|
| 70 |
+
"content---docs-deployment-d-drive-configuration-224-189": [() => import(/* webpackChunkName: "content---docs-deployment-d-drive-configuration-224-189" */ "@site/docs/deployment/d-drive-configuration.md"), "@site/docs/deployment/d-drive-configuration.md", require.resolveWeak("@site/docs/deployment/d-drive-configuration.md")],
|
| 71 |
+
"content---docs-deployment-databricks-apps-41-d-185": [() => import(/* webpackChunkName: "content---docs-deployment-databricks-apps-41-d-185" */ "@site/docs/deployment/databricks-apps.md"), "@site/docs/deployment/databricks-apps.md", require.resolveWeak("@site/docs/deployment/databricks-apps.md")],
|
| 72 |
+
"content---docs-deployment-databricks-migration-670-d42": [() => import(/* webpackChunkName: "content---docs-deployment-databricks-migration-670-d42" */ "@site/docs/deployment/databricks-migration.md"), "@site/docs/deployment/databricks-migration.md", require.resolveWeak("@site/docs/deployment/databricks-migration.md")],
|
| 73 |
+
"content---docs-deployment-docker-troubleshooting-938-867": [() => import(/* webpackChunkName: "content---docs-deployment-docker-troubleshooting-938-867" */ "@site/docs/deployment/docker-troubleshooting.md"), "@site/docs/deployment/docker-troubleshooting.md", require.resolveWeak("@site/docs/deployment/docker-troubleshooting.md")],
|
| 74 |
+
"content---docs-deployment-huggingface-spacesb-13-c8e": [() => import(/* webpackChunkName: "content---docs-deployment-huggingface-spacesb-13-c8e" */ "@site/docs/deployment/huggingface-spaces.md"), "@site/docs/deployment/huggingface-spaces.md", require.resolveWeak("@site/docs/deployment/huggingface-spaces.md")],
|
| 75 |
+
"content---docs-deployment-jurisdiction-discovery-359-3e8": [() => import(/* webpackChunkName: "content---docs-deployment-jurisdiction-discovery-359-3e8" */ "@site/docs/deployment/jurisdiction-discovery.md"), "@site/docs/deployment/jurisdiction-discovery.md", require.resolveWeak("@site/docs/deployment/jurisdiction-discovery.md")],
|
| 76 |
+
"content---docs-deployment-oauth-providers-setup-7-cc-992": [() => import(/* webpackChunkName: "content---docs-deployment-oauth-providers-setup-7-cc-992" */ "@site/docs/deployment/oauth-providers-setup.md"), "@site/docs/deployment/oauth-providers-setup.md", require.resolveWeak("@site/docs/deployment/oauth-providers-setup.md")],
|
| 77 |
+
"content---docs-deployment-quickstart-databricks-2-a-8-894": [() => import(/* webpackChunkName: "content---docs-deployment-quickstart-databricks-2-a-8-894" */ "@site/docs/deployment/quickstart-databricks.md"), "@site/docs/deployment/quickstart-databricks.md", require.resolveWeak("@site/docs/deployment/quickstart-databricks.md")],
|
| 78 |
+
"content---docs-deployment-rename-repository-22-d-4d5": [() => import(/* webpackChunkName: "content---docs-deployment-rename-repository-22-d-4d5" */ "@site/docs/deployment/rename-repository.md"), "@site/docs/deployment/rename-repository.md", require.resolveWeak("@site/docs/deployment/rename-repository.md")],
|
| 79 |
+
"content---docs-deployment-scale-27-d-e60": [() => import(/* webpackChunkName: "content---docs-deployment-scale-27-d-e60" */ "@site/docs/deployment/scale.md"), "@site/docs/deployment/scale.md", require.resolveWeak("@site/docs/deployment/scale.md")],
|
| 80 |
+
"content---docs-deployment-schema-migrationc-2-e-233": [() => import(/* webpackChunkName: "content---docs-deployment-schema-migrationc-2-e-233" */ "@site/docs/deployment/schema-migration.md"), "@site/docs/deployment/schema-migration.md", require.resolveWeak("@site/docs/deployment/schema-migration.md")],
|
| 81 |
+
"content---docs-deployment-storage-2-d-0-f7f": [() => import(/* webpackChunkName: "content---docs-deployment-storage-2-d-0-f7f" */ "@site/docs/deployment/storage.md"), "@site/docs/deployment/storage.md", require.resolveWeak("@site/docs/deployment/storage.md")],
|
| 82 |
+
"content---docs-deployment-variable-migrationd-11-4c9": [() => import(/* webpackChunkName: "content---docs-deployment-variable-migrationd-11-4c9" */ "@site/docs/deployment/variable-migration.md"), "@site/docs/deployment/variable-migration.md", require.resolveWeak("@site/docs/deployment/variable-migration.md")],
|
| 83 |
+
"content---docs-development-adding-data-sources-3-df-e92": [() => import(/* webpackChunkName: "content---docs-development-adding-data-sources-3-df-e92" */ "@site/docs/development/adding-data-sources.md"), "@site/docs/development/adding-data-sources.md", require.resolveWeak("@site/docs/development/adding-data-sources.md")],
|
| 84 |
+
"content---docs-development-api-logging-errorsc-63-92a": [() => import(/* webpackChunkName: "content---docs-development-api-logging-errorsc-63-92a" */ "@site/docs/development/api-logging-errors.md"), "@site/docs/development/api-logging-errors.md", require.resolveWeak("@site/docs/development/api-logging-errors.md")],
|
| 85 |
+
"content---docs-development-changelogc-99-cdf": [() => import(/* webpackChunkName: "content---docs-development-changelogc-99-cdf" */ "@site/docs/development/changelog.md"), "@site/docs/development/changelog.md", require.resolveWeak("@site/docs/development/changelog.md")],
|
| 86 |
+
"content---docs-development-county-data-statuse-19-222": [() => import(/* webpackChunkName: "content---docs-development-county-data-statuse-19-222" */ "@site/docs/development/county-data-status.md"), "@site/docs/development/county-data-status.md", require.resolveWeak("@site/docs/development/county-data-status.md")],
|
| 87 |
+
"content---docs-development-dashboard-redesign-7-df-28b": [() => import(/* webpackChunkName: "content---docs-development-dashboard-redesign-7-df-28b" */ "@site/docs/development/dashboard-redesign.md"), "@site/docs/development/dashboard-redesign.md", require.resolveWeak("@site/docs/development/dashboard-redesign.md")],
|
| 88 |
+
"content---docs-development-database-setup-6-c-0-8da": [() => import(/* webpackChunkName: "content---docs-development-database-setup-6-c-0-8da" */ "@site/docs/development/database-setup.md"), "@site/docs/development/database-setup.md", require.resolveWeak("@site/docs/development/database-setup.md")],
|
| 89 |
+
"content---docs-development-docs-migrationf-2-e-8b7": [() => import(/* webpackChunkName: "content---docs-development-docs-migrationf-2-e-8b7" */ "@site/docs/development/docs-migration.md"), "@site/docs/development/docs-migration.md", require.resolveWeak("@site/docs/development/docs-migration.md")],
|
| 90 |
+
"content---docs-development-enhancements-864-f41": [() => import(/* webpackChunkName: "content---docs-development-enhancements-864-f41" */ "@site/docs/development/enhancements.md"), "@site/docs/development/enhancements.md", require.resolveWeak("@site/docs/development/enhancements.md")],
|
| 91 |
+
"content---docs-development-events-naming-migration-6-db-3cf": [() => import(/* webpackChunkName: "content---docs-development-events-naming-migration-6-db-3cf" */ "@site/docs/development/events-naming-migration.md"), "@site/docs/development/events-naming-migration.md", require.resolveWeak("@site/docs/development/events-naming-migration.md")],
|
| 92 |
+
"content---docs-development-integration-status-0-f-8-30d": [() => import(/* webpackChunkName: "content---docs-development-integration-status-0-f-8-30d" */ "@site/docs/development/integration-status.md"), "@site/docs/development/integration-status.md", require.resolveWeak("@site/docs/development/integration-status.md")],
|
| 93 |
+
"content---docs-development-intel-optimization-20-f-b5c": [() => import(/* webpackChunkName: "content---docs-development-intel-optimization-20-f-b5c" */ "@site/docs/development/intel-optimization.md"), "@site/docs/development/intel-optimization.md", require.resolveWeak("@site/docs/development/intel-optimization.md")],
|
| 94 |
+
"content---docs-development-migration-v-2-f-35-314": [() => import(/* webpackChunkName: "content---docs-development-migration-v-2-f-35-314" */ "@site/docs/development/migration-v2.md"), "@site/docs/development/migration-v2.md", require.resolveWeak("@site/docs/development/migration-v2.md")],
|
| 95 |
+
"content---docs-development-new-capabilities-249-959": [() => import(/* webpackChunkName: "content---docs-development-new-capabilities-249-959" */ "@site/docs/development/new-capabilities.md"), "@site/docs/development/new-capabilities.md", require.resolveWeak("@site/docs/development/new-capabilities.md")],
|
| 96 |
+
"content---docs-development-openstates-integration-05-d-c77": [() => import(/* webpackChunkName: "content---docs-development-openstates-integration-05-d-c77" */ "@site/docs/development/openstates-integration.md"), "@site/docs/development/openstates-integration.md", require.resolveWeak("@site/docs/development/openstates-integration.md")],
|
| 97 |
+
"content---docs-development-port-guideca-5-d86": [() => import(/* webpackChunkName: "content---docs-development-port-guideca-5-d86" */ "@site/docs/development/port-guide.md"), "@site/docs/development/port-guide.md", require.resolveWeak("@site/docs/development/port-guide.md")],
|
| 98 |
+
"content---docs-development-react-refactoring-698-00f": [() => import(/* webpackChunkName: "content---docs-development-react-refactoring-698-00f" */ "@site/docs/development/react-refactoring.md"), "@site/docs/development/react-refactoring.md", require.resolveWeak("@site/docs/development/react-refactoring.md")],
|
| 99 |
+
"content---docs-development-readme-migrationcb-2-69d": [() => import(/* webpackChunkName: "content---docs-development-readme-migrationcb-2-69d" */ "@site/docs/development/readme-migration.md"), "@site/docs/development/readme-migration.md", require.resolveWeak("@site/docs/development/readme-migration.md")],
|
| 100 |
+
"content---docs-development-real-time-statistics-011-fcd": [() => import(/* webpackChunkName: "content---docs-development-real-time-statistics-011-fcd" */ "@site/docs/development/real-time-statistics.md"), "@site/docs/development/real-time-statistics.md", require.resolveWeak("@site/docs/development/real-time-statistics.md")],
|
| 101 |
+
"content---docs-development-refactoring-summary-3-d-7-e87": [() => import(/* webpackChunkName: "content---docs-development-refactoring-summary-3-d-7-e87" */ "@site/docs/development/refactoring-summary.md"), "@site/docs/development/refactoring-summary.md", require.resolveWeak("@site/docs/development/refactoring-summary.md")],
|
| 102 |
+
"content---docs-development-schema-migration-summarya-6-e-b3e": [() => import(/* webpackChunkName: "content---docs-development-schema-migration-summarya-6-e-b3e" */ "@site/docs/development/schema-migration-summary.md"), "@site/docs/development/schema-migration-summary.md", require.resolveWeak("@site/docs/development/schema-migration-summary.md")],
|
| 103 |
+
"content---docs-development-terminal-corruption-prevention-16-e-abe": [() => import(/* webpackChunkName: "content---docs-development-terminal-corruption-prevention-16-e-abe" */ "@site/docs/development/terminal-corruption-prevention.md"), "@site/docs/development/terminal-corruption-prevention.md", require.resolveWeak("@site/docs/development/terminal-corruption-prevention.md")],
|
| 104 |
+
"content---docs-families-community-events-828-910": [() => import(/* webpackChunkName: "content---docs-families-community-events-828-910" */ "@site/docs/families/community-events.md"), "@site/docs/families/community-events.md", require.resolveWeak("@site/docs/families/community-events.md")],
|
| 105 |
+
"content---docs-families-community-resourcese-48-84b": [() => import(/* webpackChunkName: "content---docs-families-community-resourcese-48-84b" */ "@site/docs/families/community-resources.md"), "@site/docs/families/community-resources.md", require.resolveWeak("@site/docs/families/community-resources.md")],
|
| 106 |
+
"content---docs-families-service-requests-90-a-24b": [() => import(/* webpackChunkName: "content---docs-families-service-requests-90-a-24b" */ "@site/docs/families/service-requests.md"), "@site/docs/families/service-requests.md", require.resolveWeak("@site/docs/families/service-requests.md")],
|
| 107 |
+
"content---docs-families-training-educationef-8-55d": [() => import(/* webpackChunkName: "content---docs-families-training-educationef-8-55d" */ "@site/docs/families/training-education.md"), "@site/docs/families/training-education.md", require.resolveWeak("@site/docs/families/training-education.md")],
|
| 108 |
+
"content---docs-families-voter-registration-927-847": [() => import(/* webpackChunkName: "content---docs-families-voter-registration-927-847" */ "@site/docs/families/voter-registration.md"), "@site/docs/families/voter-registration.md", require.resolveWeak("@site/docs/families/voter-registration.md")],
|
| 109 |
+
"content---docs-for-advocates-6-c-8-2df": [() => import(/* webpackChunkName: "content---docs-for-advocates-6-c-8-2df" */ "@site/docs/for-advocates.md"), "@site/docs/for-advocates.md", require.resolveWeak("@site/docs/for-advocates.md")],
|
| 110 |
+
"content---docs-for-developersb-31-32a": [() => import(/* webpackChunkName: "content---docs-for-developersb-31-32a" */ "@site/docs/for-developers.md"), "@site/docs/for-developers.md", require.resolveWeak("@site/docs/for-developers.md")],
|
| 111 |
+
"content---docs-for-families-22-d-199": [() => import(/* webpackChunkName: "content---docs-for-families-22-d-199" */ "@site/docs/for-families.md"), "@site/docs/for-families.md", require.resolveWeak("@site/docs/for-families.md")],
|
| 112 |
+
"content---docs-guides-accountability-strategy-70-e-54e": [() => import(/* webpackChunkName: "content---docs-guides-accountability-strategy-70-e-54e" */ "@site/docs/guides/accountability-strategy.md"), "@site/docs/guides/accountability-strategy.md", require.resolveWeak("@site/docs/guides/accountability-strategy.md")],
|
| 113 |
+
"content---docs-guides-api-troubleshooting-692-00a": [() => import(/* webpackChunkName: "content---docs-guides-api-troubleshooting-692-00a" */ "@site/docs/guides/api-troubleshooting.md"), "@site/docs/guides/api-troubleshooting.md", require.resolveWeak("@site/docs/guides/api-troubleshooting.md")],
|
| 114 |
+
"content---docs-guides-contacts-officials-4-f-1-a5b": [() => import(/* webpackChunkName: "content---docs-guides-contacts-officials-4-f-1-a5b" */ "@site/docs/guides/contacts-officials.md"), "@site/docs/guides/contacts-officials.md", require.resolveWeak("@site/docs/guides/contacts-officials.md")],
|
| 115 |
+
"content---docs-guides-county-aggregation-215-bcf": [() => import(/* webpackChunkName: "content---docs-guides-county-aggregation-215-bcf" */ "@site/docs/guides/county-aggregation.md"), "@site/docs/guides/county-aggregation.md", require.resolveWeak("@site/docs/guides/county-aggregation.md")],
|
| 116 |
+
"content---docs-guides-document-libraries-8-d-6-f24": [() => import(/* webpackChunkName: "content---docs-guides-document-libraries-8-d-6-f24" */ "@site/docs/guides/document-libraries.md"), "@site/docs/guides/document-libraries.md", require.resolveWeak("@site/docs/guides/document-libraries.md")],
|
| 117 |
+
"content---docs-guides-enterprise-tech-integrationdd-5-16d": [() => import(/* webpackChunkName: "content---docs-guides-enterprise-tech-integrationdd-5-16d" */ "@site/docs/guides/enterprise-tech-integration.md"), "@site/docs/guides/enterprise-tech-integration.md", require.resolveWeak("@site/docs/guides/enterprise-tech-integration.md")],
|
| 118 |
+
"content---docs-guides-form-990-enrichmentcc-4-0b0": [() => import(/* webpackChunkName: "content---docs-guides-form-990-enrichmentcc-4-0b0" */ "@site/docs/guides/form-990-enrichment.md"), "@site/docs/guides/form-990-enrichment.md", require.resolveWeak("@site/docs/guides/form-990-enrichment.md")],
|
| 119 |
+
"content---docs-guides-gold-table-pipeline-170-d73": [() => import(/* webpackChunkName: "content---docs-guides-gold-table-pipeline-170-d73" */ "@site/docs/guides/gold-table-pipeline.md"), "@site/docs/guides/gold-table-pipeline.md", require.resolveWeak("@site/docs/guides/gold-table-pipeline.md")],
|
| 120 |
+
"content---docs-guides-handling-formatse-28-590": [() => import(/* webpackChunkName: "content---docs-guides-handling-formatse-28-590" */ "@site/docs/guides/handling-formats.md"), "@site/docs/guides/handling-formats.md", require.resolveWeak("@site/docs/guides/handling-formats.md")],
|
| 121 |
+
"content---docs-guides-huggingface-datasets-24-e-7a0": [() => import(/* webpackChunkName: "content---docs-guides-huggingface-datasets-24-e-7a0" */ "@site/docs/guides/huggingface-datasets.md"), "@site/docs/guides/huggingface-datasets.md", require.resolveWeak("@site/docs/guides/huggingface-datasets.md")],
|
| 122 |
+
"content---docs-guides-huggingface-features-6-f-2-039": [() => import(/* webpackChunkName: "content---docs-guides-huggingface-features-6-f-2-039" */ "@site/docs/guides/huggingface-features.md"), "@site/docs/guides/huggingface-features.md", require.resolveWeak("@site/docs/guides/huggingface-features.md")],
|
| 123 |
+
"content---docs-guides-huggingface-integration-9-b-5-80f": [() => import(/* webpackChunkName: "content---docs-guides-huggingface-integration-9-b-5-80f" */ "@site/docs/guides/huggingface-integration.md"), "@site/docs/guides/huggingface-integration.md", require.resolveWeak("@site/docs/guides/huggingface-integration.md")],
|
| 124 |
+
"content---docs-guides-huggingface-limits-46-d-95a": [() => import(/* webpackChunkName: "content---docs-guides-huggingface-limits-46-d-95a" */ "@site/docs/guides/huggingface-limits.md"), "@site/docs/guides/huggingface-limits.md", require.resolveWeak("@site/docs/guides/huggingface-limits.md")],
|
| 125 |
+
"content---docs-guides-huggingface-publishingda-5-330": [() => import(/* webpackChunkName: "content---docs-guides-huggingface-publishingda-5-330" */ "@site/docs/guides/huggingface-publishing.md"), "@site/docs/guides/huggingface-publishing.md", require.resolveWeak("@site/docs/guides/huggingface-publishing.md")],
|
| 126 |
+
"content---docs-guides-huggingface-quickstartd-7-b-54e": [() => import(/* webpackChunkName: "content---docs-guides-huggingface-quickstartd-7-b-54e" */ "@site/docs/guides/huggingface-quickstart.md"), "@site/docs/guides/huggingface-quickstart.md", require.resolveWeak("@site/docs/guides/huggingface-quickstart.md")],
|
| 127 |
+
"content---docs-guides-impact-navigatione-75-b18": [() => import(/* webpackChunkName: "content---docs-guides-impact-navigatione-75-b18" */ "@site/docs/guides/impact-navigation.md"), "@site/docs/guides/impact-navigation.md", require.resolveWeak("@site/docs/guides/impact-navigation.md")],
|
| 128 |
+
"content---docs-guides-intel-arc-optimizationc-1-a-1d7": [() => import(/* webpackChunkName: "content---docs-guides-intel-arc-optimizationc-1-a-1d7" */ "@site/docs/guides/intel-arc-optimization.md"), "@site/docs/guides/intel-arc-optimization.md", require.resolveWeak("@site/docs/guides/intel-arc-optimization.md")],
|
| 129 |
+
"content---docs-guides-jurisdiction-setup-73-e-7ee": [() => import(/* webpackChunkName: "content---docs-guides-jurisdiction-setup-73-e-7ee" */ "@site/docs/guides/jurisdiction-setup.md"), "@site/docs/guides/jurisdiction-setup.md", require.resolveWeak("@site/docs/guides/jurisdiction-setup.md")],
|
| 130 |
+
"content---docs-guides-legislative-tracking-184-9c2": [() => import(/* webpackChunkName: "content---docs-guides-legislative-tracking-184-9c2" */ "@site/docs/guides/legislative-tracking.md"), "@site/docs/guides/legislative-tracking.md", require.resolveWeak("@site/docs/guides/legislative-tracking.md")],
|
| 131 |
+
"content---docs-guides-legislative-tracking-maps-7-ce-fee": [() => import(/* webpackChunkName: "content---docs-guides-legislative-tracking-maps-7-ce-fee" */ "@site/docs/guides/legislative-tracking-maps.md"), "@site/docs/guides/legislative-tracking-maps.md", require.resolveWeak("@site/docs/guides/legislative-tracking-maps.md")],
|
| 132 |
+
"content---docs-guides-logo-enrichment-6-fa-08d": [() => import(/* webpackChunkName: "content---docs-guides-logo-enrichment-6-fa-08d" */ "@site/docs/guides/logo-enrichment.md"), "@site/docs/guides/logo-enrichment.md", require.resolveWeak("@site/docs/guides/logo-enrichment.md")],
|
| 133 |
+
"content---docs-guides-nonprofit-officers-contacts-426-39b": [() => import(/* webpackChunkName: "content---docs-guides-nonprofit-officers-contacts-426-39b" */ "@site/docs/guides/nonprofit-officers-contacts.md"), "@site/docs/guides/nonprofit-officers-contacts.md", require.resolveWeak("@site/docs/guides/nonprofit-officers-contacts.md")],
|
| 134 |
+
"content---docs-guides-open-states-legislative-datab-2-e-3f8": [() => import(/* webpackChunkName: "content---docs-guides-open-states-legislative-datab-2-e-3f8" */ "@site/docs/guides/open-states-legislative-data.md"), "@site/docs/guides/open-states-legislative-data.md", require.resolveWeak("@site/docs/guides/open-states-legislative-data.md")],
|
| 135 |
+
"content---docs-guides-partitioned-datasetsfdc-324": [() => import(/* webpackChunkName: "content---docs-guides-partitioned-datasetsfdc-324" */ "@site/docs/guides/partitioned-datasets.md"), "@site/docs/guides/partitioned-datasets.md", require.resolveWeak("@site/docs/guides/partitioned-datasets.md")],
|
| 136 |
+
"content---docs-guides-political-economy-481-476": [() => import(/* webpackChunkName: "content---docs-guides-political-economy-481-476" */ "@site/docs/guides/political-economy.md"), "@site/docs/guides/political-economy.md", require.resolveWeak("@site/docs/guides/political-economy.md")],
|
| 137 |
+
"content---docs-guides-scraper-improvements-959-f55": [() => import(/* webpackChunkName: "content---docs-guides-scraper-improvements-959-f55" */ "@site/docs/guides/scraper-improvements.md"), "@site/docs/guides/scraper-improvements.md", require.resolveWeak("@site/docs/guides/scraper-improvements.md")],
|
| 138 |
+
"content---docs-guides-search-patternsf-55-4fb": [() => import(/* webpackChunkName: "content---docs-guides-search-patternsf-55-4fb" */ "@site/docs/guides/search-patterns.md"), "@site/docs/guides/search-patterns.md", require.resolveWeak("@site/docs/guides/search-patterns.md")],
|
| 139 |
+
"content---docs-guides-seo-optimization-77-a-4bd": [() => import(/* webpackChunkName: "content---docs-guides-seo-optimization-77-a-4bd" */ "@site/docs/guides/seo-optimization.md"), "@site/docs/guides/seo-optimization.md", require.resolveWeak("@site/docs/guides/seo-optimization.md")],
|
| 140 |
+
"content---docs-guides-specialized-ai-models-2-f-5-162": [() => import(/* webpackChunkName: "content---docs-guides-specialized-ai-models-2-f-5-162" */ "@site/docs/guides/specialized-ai-models.md"), "@site/docs/guides/specialized-ai-models.md", require.resolveWeak("@site/docs/guides/specialized-ai-models.md")],
|
| 141 |
+
"content---docs-guides-split-screenf-65-772": [() => import(/* webpackChunkName: "content---docs-guides-split-screenf-65-772" */ "@site/docs/guides/split-screen.md"), "@site/docs/guides/split-screen.md", require.resolveWeak("@site/docs/guides/split-screen.md")],
|
| 142 |
+
"content---docs-guides-state-split-data-2-ac-493": [() => import(/* webpackChunkName: "content---docs-guides-state-split-data-2-ac-493" */ "@site/docs/guides/state-split-data.md"), "@site/docs/guides/state-split-data.md", require.resolveWeak("@site/docs/guides/state-split-data.md")],
|
| 143 |
+
"content---docs-guides-unified-searchec-0-0bc": [() => import(/* webpackChunkName: "content---docs-guides-unified-searchec-0-0bc" */ "@site/docs/guides/unified-search.md"), "@site/docs/guides/unified-search.md", require.resolveWeak("@site/docs/guides/unified-search.md")],
|
| 144 |
+
"content---docs-integrations-dataverse-23-a-36f": [() => import(/* webpackChunkName: "content---docs-integrations-dataverse-23-a-36f" */ "@site/docs/integrations/dataverse.md"), "@site/docs/integrations/dataverse.md", require.resolveWeak("@site/docs/integrations/dataverse.md")],
|
| 145 |
+
"content---docs-integrations-dataverse-summarydf-7-357": [() => import(/* webpackChunkName: "content---docs-integrations-dataverse-summarydf-7-357" */ "@site/docs/integrations/dataverse-summary.md"), "@site/docs/integrations/dataverse-summary.md", require.resolveWeak("@site/docs/integrations/dataverse-summary.md")],
|
| 146 |
+
"content---docs-integrations-eboard-automatedd-3-c-6db": [() => import(/* webpackChunkName: "content---docs-integrations-eboard-automatedd-3-c-6db" */ "@site/docs/integrations/eboard-automated.md"), "@site/docs/integrations/eboard-automated.md", require.resolveWeak("@site/docs/integrations/eboard-automated.md")],
|
| 147 |
+
"content---docs-integrations-eboard-cookiesa-85-260": [() => import(/* webpackChunkName: "content---docs-integrations-eboard-cookiesa-85-260" */ "@site/docs/integrations/eboard-cookies.md"), "@site/docs/integrations/eboard-cookies.md", require.resolveWeak("@site/docs/integrations/eboard-cookies.md")],
|
| 148 |
+
"content---docs-integrations-eboard-manual-874-681": [() => import(/* webpackChunkName: "content---docs-integrations-eboard-manual-874-681" */ "@site/docs/integrations/eboard-manual.md"), "@site/docs/integrations/eboard-manual.md", require.resolveWeak("@site/docs/integrations/eboard-manual.md")],
|
| 149 |
+
"content---docs-integrations-fec-campaign-financebff-ed2": [() => import(/* webpackChunkName: "content---docs-integrations-fec-campaign-financebff-ed2" */ "@site/docs/integrations/fec-campaign-finance.md"), "@site/docs/integrations/fec-campaign-finance.md", require.resolveWeak("@site/docs/integrations/fec-campaign-finance.md")],
|
| 150 |
+
"content---docs-integrations-fec-integration-summary-530-3ee": [() => import(/* webpackChunkName: "content---docs-integrations-fec-integration-summary-530-3ee" */ "@site/docs/integrations/fec-integration-summary.md"), "@site/docs/integrations/fec-integration-summary.md", require.resolveWeak("@site/docs/integrations/fec-integration-summary.md")],
|
| 151 |
+
"content---docs-integrations-fec-political-contributionsff-0-23a": [() => import(/* webpackChunkName: "content---docs-integrations-fec-political-contributionsff-0-23a" */ "@site/docs/integrations/fec-political-contributions.md"), "@site/docs/integrations/fec-political-contributions.md", require.resolveWeak("@site/docs/integrations/fec-political-contributions.md")],
|
| 152 |
+
"content---docs-integrations-frontenddbd-72c": [() => import(/* webpackChunkName: "content---docs-integrations-frontenddbd-72c" */ "@site/docs/integrations/frontend.md"), "@site/docs/integrations/frontend.md", require.resolveWeak("@site/docs/integrations/frontend.md")],
|
| 153 |
+
"content---docs-integrations-grants-gov-api-91-c-94b": [() => import(/* webpackChunkName: "content---docs-integrations-grants-gov-api-91-c-94b" */ "@site/docs/integrations/grants-gov-api.md"), "@site/docs/integrations/grants-gov-api.md", require.resolveWeak("@site/docs/integrations/grants-gov-api.md")],
|
| 154 |
+
"content---docs-integrations-localviewa-17-c3f": [() => import(/* webpackChunkName: "content---docs-integrations-localviewa-17-c3f" */ "@site/docs/integrations/localview.md"), "@site/docs/integrations/localview.md", require.resolveWeak("@site/docs/integrations/localview.md")],
|
| 155 |
+
"content---docs-integrations-mcp-servera-95-951": [() => import(/* webpackChunkName: "content---docs-integrations-mcp-servera-95-951" */ "@site/docs/integrations/mcp-server.md"), "@site/docs/integrations/mcp-server.md", require.resolveWeak("@site/docs/integrations/mcp-server.md")],
|
| 156 |
+
"content---docs-integrations-overviewfbb-8a4": [() => import(/* webpackChunkName: "content---docs-integrations-overviewfbb-8a4" */ "@site/docs/integrations/overview.md"), "@site/docs/integrations/overview.md", require.resolveWeak("@site/docs/integrations/overview.md")],
|
| 157 |
+
"content---docs-intro-0-e-3-be1": [() => import(/* webpackChunkName: "content---docs-intro-0-e-3-be1" */ "@site/docs/intro.md"), "@site/docs/intro.md", require.resolveWeak("@site/docs/intro.md")],
|
| 158 |
+
"content---docs-legal-compliancea-57-580": [() => import(/* webpackChunkName: "content---docs-legal-compliancea-57-580" */ "@site/docs/legal-compliance.md"), "@site/docs/legal-compliance.md", require.resolveWeak("@site/docs/legal-compliance.md")],
|
| 159 |
+
"content---docs-legal-d-4-d-89f": [() => import(/* webpackChunkName: "content---docs-legal-d-4-d-89f" */ "@site/docs/legal/index.md"), "@site/docs/legal/index.md", require.resolveWeak("@site/docs/legal/index.md")],
|
| 160 |
+
"content---docs-legal-data-provider-termsea-5-f46": [() => import(/* webpackChunkName: "content---docs-legal-data-provider-termsea-5-f46" */ "@site/docs/legal/data-provider-terms.md"), "@site/docs/legal/data-provider-terms.md", require.resolveWeak("@site/docs/legal/data-provider-terms.md")],
|
| 161 |
+
"content---docs-legal-legal-documentation-complete-020-ff9": [() => import(/* webpackChunkName: "content---docs-legal-legal-documentation-complete-020-ff9" */ "@site/docs/legal/legal-documentation-complete.md"), "@site/docs/legal/legal-documentation-complete.md", require.resolveWeak("@site/docs/legal/legal-documentation-complete.md")],
|
| 162 |
+
"content---docs-legal-legal-documentation-summaryb-6-c-7ff": [() => import(/* webpackChunkName: "content---docs-legal-legal-documentation-summaryb-6-c-7ff" */ "@site/docs/legal/legal-documentation-summary.md"), "@site/docs/legal/legal-documentation-summary.md", require.resolveWeak("@site/docs/legal/legal-documentation-summary.md")],
|
| 163 |
+
"content---docs-legal-privacy-policy-72-a-0cd": [() => import(/* webpackChunkName: "content---docs-legal-privacy-policy-72-a-0cd" */ "@site/docs/legal/privacy-policy.md"), "@site/docs/legal/privacy-policy.md", require.resolveWeak("@site/docs/legal/privacy-policy.md")],
|
| 164 |
+
"content---docs-legal-terms-of-service-608-300": [() => import(/* webpackChunkName: "content---docs-legal-terms-of-service-608-300" */ "@site/docs/legal/terms-of-service.md"), "@site/docs/legal/terms-of-service.md", require.resolveWeak("@site/docs/legal/terms-of-service.md")],
|
| 165 |
+
"content---docs-open-navigator-47-d-bd0": [() => import(/* webpackChunkName: "content---docs-open-navigator-47-d-bd0" */ "@site/docs/open-navigator.md"), "@site/docs/open-navigator.md", require.resolveWeak("@site/docs/open-navigator.md")],
|
| 166 |
+
"content---docs-quick-reference-43-b-463": [() => import(/* webpackChunkName: "content---docs-quick-reference-43-b-463" */ "@site/docs/quick-reference.md"), "@site/docs/quick-reference.md", require.resolveWeak("@site/docs/quick-reference.md")],
|
| 167 |
+
"content---docs-quickstart-807-6cd": [() => import(/* webpackChunkName: "content---docs-quickstart-807-6cd" */ "@site/docs/quickstart.md"), "@site/docs/quickstart.md", require.resolveWeak("@site/docs/quickstart.md")],
|
| 168 |
+
"content---markdown-page-4-c-6-c89": [() => import(/* webpackChunkName: "content---markdown-page-4-c-6-c89" */ "@site/src/pages/markdown-page.mdx"), "@site/src/pages/markdown-page.mdx", require.resolveWeak("@site/src/pages/markdown-page.mdx")],
|
| 169 |
+
"plugin---blog-369-22e": [() => import(/* webpackChunkName: "plugin---blog-369-22e" */ "@generated/docusaurus-plugin-content-blog/default/__plugin.json"), "@generated/docusaurus-plugin-content-blog/default/__plugin.json", require.resolveWeak("@generated/docusaurus-plugin-content-blog/default/__plugin.json")],
|
| 170 |
+
"plugin---dashboarda-74-0f3": [() => import(/* webpackChunkName: "plugin---dashboarda-74-0f3" */ "@generated/docusaurus-plugin-content-pages/default/__plugin.json"), "@generated/docusaurus-plugin-content-pages/default/__plugin.json", require.resolveWeak("@generated/docusaurus-plugin-content-pages/default/__plugin.json")],
|
| 171 |
+
"plugin---docsaba-d7c": [() => import(/* webpackChunkName: "plugin---docsaba-d7c" */ "@generated/docusaurus-plugin-content-docs/default/__plugin.json"), "@generated/docusaurus-plugin-content-docs/default/__plugin.json", require.resolveWeak("@generated/docusaurus-plugin-content-docs/default/__plugin.json")],
|
| 172 |
+
"plugin---docusaurus-debugb-38-ad3": [() => import(/* webpackChunkName: "plugin---docusaurus-debugb-38-ad3" */ "@generated/docusaurus-plugin-debug/default/__plugin.json"), "@generated/docusaurus-plugin-debug/default/__plugin.json", require.resolveWeak("@generated/docusaurus-plugin-debug/default/__plugin.json")],
|
| 173 |
+
"sidebar---blog-814-8ac": [() => import(/* webpackChunkName: "sidebar---blog-814-8ac" */ "~blog/default/blog-post-list-prop-default.json"), "~blog/default/blog-post-list-prop-default.json", require.resolveWeak("~blog/default/blog-post-list-prop-default.json")],};
|
website/.docusaurus/routes.js
CHANGED
|
@@ -2,6 +2,41 @@ import React from 'react';
|
|
| 2 |
import ComponentCreator from '@docusaurus/ComponentCreator';
|
| 3 |
|
| 4 |
export default [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
{
|
| 6 |
path: '/blog',
|
| 7 |
component: ComponentCreator('/blog', '86b'),
|
|
|
|
| 2 |
import ComponentCreator from '@docusaurus/ComponentCreator';
|
| 3 |
|
| 4 |
export default [
|
| 5 |
+
{
|
| 6 |
+
path: '/__docusaurus/debug',
|
| 7 |
+
component: ComponentCreator('/__docusaurus/debug', '5ff'),
|
| 8 |
+
exact: true
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
path: '/__docusaurus/debug/config',
|
| 12 |
+
component: ComponentCreator('/__docusaurus/debug/config', '5ba'),
|
| 13 |
+
exact: true
|
| 14 |
+
},
|
| 15 |
+
{
|
| 16 |
+
path: '/__docusaurus/debug/content',
|
| 17 |
+
component: ComponentCreator('/__docusaurus/debug/content', 'a2b'),
|
| 18 |
+
exact: true
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
path: '/__docusaurus/debug/globalData',
|
| 22 |
+
component: ComponentCreator('/__docusaurus/debug/globalData', 'c3c'),
|
| 23 |
+
exact: true
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
path: '/__docusaurus/debug/metadata',
|
| 27 |
+
component: ComponentCreator('/__docusaurus/debug/metadata', '156'),
|
| 28 |
+
exact: true
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
path: '/__docusaurus/debug/registry',
|
| 32 |
+
component: ComponentCreator('/__docusaurus/debug/registry', '88c'),
|
| 33 |
+
exact: true
|
| 34 |
+
},
|
| 35 |
+
{
|
| 36 |
+
path: '/__docusaurus/debug/routes',
|
| 37 |
+
component: ComponentCreator('/__docusaurus/debug/routes', '000'),
|
| 38 |
+
exact: true
|
| 39 |
+
},
|
| 40 |
{
|
| 41 |
path: '/blog',
|
| 42 |
component: ComponentCreator('/blog', '86b'),
|
website/.docusaurus/routesChunkNames.json
CHANGED
|
@@ -1,720 +1,763 @@
|
|
| 1 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
"/blog-86b": {
|
| 3 |
-
"__comp": "
|
| 4 |
"__context": {
|
| 5 |
-
"plugin": "
|
| 6 |
},
|
| 7 |
-
"sidebar": "
|
| 8 |
"items": [
|
| 9 |
{
|
| 10 |
-
"content": "
|
| 11 |
},
|
| 12 |
{
|
| 13 |
-
"content": "
|
| 14 |
},
|
| 15 |
{
|
| 16 |
-
"content": "
|
| 17 |
}
|
| 18 |
],
|
| 19 |
-
"__props": "
|
| 20 |
},
|
| 21 |
"/blog/archive-182": {
|
| 22 |
-
"__comp": "
|
| 23 |
"__context": {
|
| 24 |
-
"plugin": "
|
| 25 |
},
|
| 26 |
-
"__props": "
|
| 27 |
},
|
| 28 |
"/blog/authors-0b7": {
|
| 29 |
-
"__comp": "
|
| 30 |
"__context": {
|
| 31 |
"data": {
|
| 32 |
-
"blogMetadata": "
|
| 33 |
},
|
| 34 |
-
"plugin": "
|
| 35 |
},
|
| 36 |
-
"sidebar": "
|
| 37 |
-
"__props": "
|
| 38 |
},
|
| 39 |
"/blog/authors/communityone-631": {
|
| 40 |
-
"__comp": "
|
| 41 |
"__context": {
|
| 42 |
"data": {
|
| 43 |
-
"blogMetadata": "
|
| 44 |
},
|
| 45 |
-
"plugin": "
|
| 46 |
},
|
| 47 |
"items": [
|
| 48 |
{
|
| 49 |
-
"content": "
|
| 50 |
},
|
| 51 |
{
|
| 52 |
-
"content": "
|
| 53 |
},
|
| 54 |
{
|
| 55 |
-
"content": "
|
| 56 |
}
|
| 57 |
],
|
| 58 |
-
"sidebar": "
|
| 59 |
-
"__props": "
|
| 60 |
},
|
| 61 |
"/blog/tags-287": {
|
| 62 |
-
"__comp": "
|
| 63 |
"__context": {
|
| 64 |
-
"plugin": "
|
| 65 |
},
|
| 66 |
-
"sidebar": "
|
| 67 |
-
"__props": "
|
| 68 |
},
|
| 69 |
"/blog/tags/citations-bdc": {
|
| 70 |
-
"__comp": "
|
| 71 |
"__context": {
|
| 72 |
-
"plugin": "
|
| 73 |
},
|
| 74 |
-
"sidebar": "
|
| 75 |
"items": [
|
| 76 |
{
|
| 77 |
-
"content": "
|
| 78 |
}
|
| 79 |
],
|
| 80 |
-
"__props": "
|
| 81 |
},
|
| 82 |
"/blog/tags/civic-tech-1de": {
|
| 83 |
-
"__comp": "
|
| 84 |
"__context": {
|
| 85 |
-
"plugin": "
|
| 86 |
},
|
| 87 |
-
"sidebar": "
|
| 88 |
"items": [
|
| 89 |
{
|
| 90 |
-
"content": "
|
| 91 |
}
|
| 92 |
],
|
| 93 |
-
"__props": "
|
| 94 |
},
|
| 95 |
"/blog/tags/community-1d3": {
|
| 96 |
-
"__comp": "
|
| 97 |
"__context": {
|
| 98 |
-
"plugin": "
|
| 99 |
},
|
| 100 |
-
"sidebar": "
|
| 101 |
"items": [
|
| 102 |
{
|
| 103 |
-
"content": "
|
| 104 |
}
|
| 105 |
],
|
| 106 |
-
"__props": "
|
| 107 |
},
|
| 108 |
"/blog/tags/data-model-426": {
|
| 109 |
-
"__comp": "
|
| 110 |
"__context": {
|
| 111 |
-
"plugin": "
|
| 112 |
},
|
| 113 |
-
"sidebar": "
|
| 114 |
"items": [
|
| 115 |
{
|
| 116 |
-
"content": "
|
| 117 |
},
|
| 118 |
{
|
| 119 |
-
"content": "
|
| 120 |
}
|
| 121 |
],
|
| 122 |
-
"__props": "
|
| 123 |
},
|
| 124 |
"/blog/tags/deployment-0a8": {
|
| 125 |
-
"__comp": "
|
| 126 |
"__context": {
|
| 127 |
-
"plugin": "
|
| 128 |
},
|
| 129 |
-
"sidebar": "
|
| 130 |
"items": [
|
| 131 |
{
|
| 132 |
-
"content": "
|
| 133 |
}
|
| 134 |
],
|
| 135 |
-
"__props": "
|
| 136 |
},
|
| 137 |
"/blog/tags/documentation-6a3": {
|
| 138 |
-
"__comp": "
|
| 139 |
"__context": {
|
| 140 |
-
"plugin": "
|
| 141 |
},
|
| 142 |
-
"sidebar": "
|
| 143 |
"items": [
|
| 144 |
{
|
| 145 |
-
"content": "
|
| 146 |
},
|
| 147 |
{
|
| 148 |
-
"content": "
|
| 149 |
}
|
| 150 |
],
|
| 151 |
-
"__props": "
|
| 152 |
},
|
| 153 |
"/blog/week-1-civic-tech-tracking-4b5": {
|
| 154 |
-
"__comp": "
|
| 155 |
"__context": {
|
| 156 |
"data": {
|
| 157 |
-
"blogMetadata": "
|
| 158 |
},
|
| 159 |
-
"plugin": "
|
| 160 |
},
|
| 161 |
-
"sidebar": "
|
| 162 |
-
"content": "
|
| 163 |
},
|
| 164 |
"/blog/week-2-building-trust-transparency-c1f": {
|
| 165 |
-
"__comp": "
|
| 166 |
"__context": {
|
| 167 |
"data": {
|
| 168 |
-
"blogMetadata": "
|
| 169 |
},
|
| 170 |
-
"plugin": "
|
| 171 |
},
|
| 172 |
-
"sidebar": "
|
| 173 |
-
"content": "
|
| 174 |
},
|
| 175 |
"/blog/week-3-easier-access-civic-data-37e": {
|
| 176 |
-
"__comp": "
|
| 177 |
"__context": {
|
| 178 |
"data": {
|
| 179 |
-
"blogMetadata": "
|
| 180 |
},
|
| 181 |
-
"plugin": "
|
| 182 |
},
|
| 183 |
-
"sidebar": "
|
| 184 |
-
"content": "
|
| 185 |
},
|
| 186 |
"/dashboard-d63": {
|
| 187 |
-
"__comp": "
|
| 188 |
"__context": {
|
| 189 |
-
"plugin": "
|
| 190 |
},
|
| 191 |
-
"config": "
|
| 192 |
},
|
| 193 |
"/markdown-page-53a": {
|
| 194 |
-
"__comp": "
|
| 195 |
"__context": {
|
| 196 |
-
"plugin": "
|
| 197 |
},
|
| 198 |
-
"content": "
|
| 199 |
},
|
| 200 |
"/docs-3f2": {
|
| 201 |
-
"__comp": "
|
| 202 |
"__context": {
|
| 203 |
-
"plugin": "
|
| 204 |
}
|
| 205 |
},
|
| 206 |
"/docs-21c": {
|
| 207 |
-
"__comp": "
|
| 208 |
-
"__props": "
|
| 209 |
},
|
| 210 |
"/docs-788": {
|
| 211 |
-
"__comp": "
|
| 212 |
},
|
| 213 |
"/docs/architecture-2ab": {
|
| 214 |
-
"__comp": "
|
| 215 |
-
"content": "
|
| 216 |
},
|
| 217 |
"/docs/case-studies/tuscaloosa-complete-2bf": {
|
| 218 |
-
"__comp": "
|
| 219 |
-
"content": "
|
| 220 |
},
|
| 221 |
"/docs/case-studies/tuscaloosa-discovery-5a5": {
|
| 222 |
-
"__comp": "
|
| 223 |
-
"content": "
|
| 224 |
},
|
| 225 |
"/docs/case-studies/tuscaloosa-pipeline-cb3": {
|
| 226 |
-
"__comp": "
|
| 227 |
-
"content": "
|
| 228 |
},
|
| 229 |
"/docs/data-sources/ballot-election-sources-a3d": {
|
| 230 |
-
"__comp": "
|
| 231 |
-
"content": "
|
| 232 |
},
|
| 233 |
"/docs/data-sources/census-acs-9f7": {
|
| 234 |
-
"__comp": "
|
| 235 |
-
"content": "
|
| 236 |
},
|
| 237 |
"/docs/data-sources/census-data-9e5": {
|
| 238 |
-
"__comp": "
|
| 239 |
-
"content": "
|
| 240 |
},
|
| 241 |
"/docs/data-sources/charity-navigator-be7": {
|
| 242 |
-
"__comp": "
|
| 243 |
-
"content": "
|
| 244 |
},
|
| 245 |
"/docs/data-sources/citations-e6d": {
|
| 246 |
-
"__comp": "
|
| 247 |
-
"content": "
|
| 248 |
},
|
| 249 |
"/docs/data-sources/data-model-erd-cf2": {
|
| 250 |
-
"__comp": "
|
| 251 |
-
"content": "
|
| 252 |
},
|
| 253 |
"/docs/data-sources/factcheck-sources-d7f": {
|
| 254 |
-
"__comp": "
|
| 255 |
-
"content": "
|
| 256 |
},
|
| 257 |
"/docs/data-sources/form-990-xml-3e7": {
|
| 258 |
-
"__comp": "
|
| 259 |
-
"content": "
|
| 260 |
},
|
| 261 |
"/docs/data-sources/huggingface-datasets-3b1": {
|
| 262 |
-
"__comp": "
|
| 263 |
-
"content": "
|
| 264 |
},
|
| 265 |
"/docs/data-sources/irs-bulk-data-3c4": {
|
| 266 |
-
"__comp": "
|
| 267 |
-
"content": "
|
| 268 |
},
|
| 269 |
"/docs/data-sources/jurisdiction-discovery-606": {
|
| 270 |
-
"__comp": "
|
| 271 |
-
"content": "
|
| 272 |
},
|
| 273 |
"/docs/data-sources/nonprofit-sources-198": {
|
| 274 |
-
"__comp": "
|
| 275 |
-
"content": "
|
| 276 |
},
|
| 277 |
"/docs/data-sources/open-source-repositories-526": {
|
| 278 |
-
"__comp": "
|
| 279 |
-
"content": "
|
| 280 |
},
|
| 281 |
"/docs/data-sources/overview-666": {
|
| 282 |
-
"__comp": "
|
| 283 |
-
"content": "
|
| 284 |
},
|
| 285 |
"/docs/data-sources/polling-survey-sources-ec9": {
|
| 286 |
-
"__comp": "
|
| 287 |
-
"content": "
|
| 288 |
},
|
| 289 |
"/docs/data-sources/url-datasets-16b": {
|
| 290 |
-
"__comp": "
|
| 291 |
-
"content": "
|
| 292 |
},
|
| 293 |
"/docs/data-sources/video-channels-d72": {
|
| 294 |
-
"__comp": "
|
| 295 |
-
"content": "
|
| 296 |
},
|
| 297 |
"/docs/data-sources/video-sources-1d5": {
|
| 298 |
-
"__comp": "
|
| 299 |
-
"content": "
|
| 300 |
},
|
| 301 |
"/docs/data-sources/youtube-discovery-fb2": {
|
| 302 |
-
"__comp": "
|
| 303 |
-
"content": "
|
| 304 |
},
|
| 305 |
"/docs/deployment/authentication-setup-8cd": {
|
| 306 |
-
"__comp": "
|
| 307 |
-
"content": "
|
| 308 |
},
|
| 309 |
"/docs/deployment/build-protection-109": {
|
| 310 |
-
"__comp": "
|
| 311 |
-
"content": "
|
| 312 |
},
|
| 313 |
"/docs/deployment/build-verification-6a6": {
|
| 314 |
-
"__comp": "
|
| 315 |
-
"content": "
|
| 316 |
},
|
| 317 |
"/docs/deployment/costs-2fc": {
|
| 318 |
-
"__comp": "
|
| 319 |
-
"content": "
|
| 320 |
},
|
| 321 |
"/docs/deployment/d-drive-configuration-aaf": {
|
| 322 |
-
"__comp": "
|
| 323 |
-
"content": "
|
| 324 |
},
|
| 325 |
"/docs/deployment/databricks-apps-c4c": {
|
| 326 |
-
"__comp": "
|
| 327 |
-
"content": "
|
| 328 |
},
|
| 329 |
"/docs/deployment/databricks-migration-0f8": {
|
| 330 |
-
"__comp": "
|
| 331 |
-
"content": "
|
| 332 |
},
|
| 333 |
"/docs/deployment/docker-troubleshooting-ab3": {
|
| 334 |
-
"__comp": "
|
| 335 |
-
"content": "
|
| 336 |
},
|
| 337 |
"/docs/deployment/huggingface-spaces-2b6": {
|
| 338 |
-
"__comp": "
|
| 339 |
-
"content": "
|
| 340 |
},
|
| 341 |
"/docs/deployment/jurisdiction-discovery-478": {
|
| 342 |
-
"__comp": "
|
| 343 |
-
"content": "
|
| 344 |
},
|
| 345 |
"/docs/deployment/oauth-providers-setup-d04": {
|
| 346 |
-
"__comp": "
|
| 347 |
-
"content": "
|
| 348 |
},
|
| 349 |
"/docs/deployment/quickstart-databricks-b50": {
|
| 350 |
-
"__comp": "
|
| 351 |
-
"content": "
|
| 352 |
},
|
| 353 |
"/docs/deployment/rename-repository-be1": {
|
| 354 |
-
"__comp": "
|
| 355 |
-
"content": "
|
| 356 |
},
|
| 357 |
"/docs/deployment/scale-55d": {
|
| 358 |
-
"__comp": "
|
| 359 |
-
"content": "
|
| 360 |
},
|
| 361 |
"/docs/deployment/schema-migration-191": {
|
| 362 |
-
"__comp": "
|
| 363 |
-
"content": "
|
| 364 |
},
|
| 365 |
"/docs/deployment/storage-140": {
|
| 366 |
-
"__comp": "
|
| 367 |
-
"content": "
|
| 368 |
},
|
| 369 |
"/docs/deployment/variable-migration-f59": {
|
| 370 |
-
"__comp": "
|
| 371 |
-
"content": "
|
| 372 |
},
|
| 373 |
"/docs/development/adding-data-sources-071": {
|
| 374 |
-
"__comp": "
|
| 375 |
-
"content": "
|
| 376 |
},
|
| 377 |
"/docs/development/api-logging-errors-4ad": {
|
| 378 |
-
"__comp": "
|
| 379 |
-
"content": "
|
| 380 |
},
|
| 381 |
"/docs/development/changelog-eb9": {
|
| 382 |
-
"__comp": "
|
| 383 |
-
"content": "
|
| 384 |
},
|
| 385 |
"/docs/development/county-data-status-c5f": {
|
| 386 |
-
"__comp": "
|
| 387 |
-
"content": "
|
| 388 |
},
|
| 389 |
"/docs/development/dashboard-redesign-2e7": {
|
| 390 |
-
"__comp": "
|
| 391 |
-
"content": "
|
| 392 |
},
|
| 393 |
"/docs/development/database-setup-66f": {
|
| 394 |
-
"__comp": "
|
| 395 |
-
"content": "
|
| 396 |
},
|
| 397 |
"/docs/development/docs-migration-4e9": {
|
| 398 |
-
"__comp": "
|
| 399 |
-
"content": "
|
| 400 |
},
|
| 401 |
"/docs/development/enhancements-6be": {
|
| 402 |
-
"__comp": "
|
| 403 |
-
"content": "
|
| 404 |
},
|
| 405 |
"/docs/development/events-naming-migration-717": {
|
| 406 |
-
"__comp": "
|
| 407 |
-
"content": "
|
| 408 |
},
|
| 409 |
"/docs/development/integration-status-c3e": {
|
| 410 |
-
"__comp": "
|
| 411 |
-
"content": "
|
| 412 |
},
|
| 413 |
"/docs/development/intel-optimization-4c4": {
|
| 414 |
-
"__comp": "
|
| 415 |
-
"content": "
|
| 416 |
},
|
| 417 |
"/docs/development/migration-v2-91d": {
|
| 418 |
-
"__comp": "
|
| 419 |
-
"content": "
|
| 420 |
},
|
| 421 |
"/docs/development/new-capabilities-84d": {
|
| 422 |
-
"__comp": "
|
| 423 |
-
"content": "
|
| 424 |
},
|
| 425 |
"/docs/development/openstates-integration-47a": {
|
| 426 |
-
"__comp": "
|
| 427 |
-
"content": "
|
| 428 |
},
|
| 429 |
"/docs/development/port-guide-c1d": {
|
| 430 |
-
"__comp": "
|
| 431 |
-
"content": "
|
| 432 |
},
|
| 433 |
"/docs/development/react-refactoring-3ae": {
|
| 434 |
-
"__comp": "
|
| 435 |
-
"content": "
|
| 436 |
},
|
| 437 |
"/docs/development/readme-migration-38b": {
|
| 438 |
-
"__comp": "
|
| 439 |
-
"content": "
|
| 440 |
},
|
| 441 |
"/docs/development/real-time-statistics-1d7": {
|
| 442 |
-
"__comp": "
|
| 443 |
-
"content": "
|
| 444 |
},
|
| 445 |
"/docs/development/refactoring-summary-972": {
|
| 446 |
-
"__comp": "
|
| 447 |
-
"content": "
|
| 448 |
},
|
| 449 |
"/docs/development/schema-migration-summary-029": {
|
| 450 |
-
"__comp": "
|
| 451 |
-
"content": "
|
| 452 |
},
|
| 453 |
"/docs/development/terminal-corruption-prevention-ff7": {
|
| 454 |
-
"__comp": "
|
| 455 |
-
"content": "
|
| 456 |
},
|
| 457 |
"/docs/families/community-events-d26": {
|
| 458 |
-
"__comp": "
|
| 459 |
-
"content": "
|
| 460 |
},
|
| 461 |
"/docs/families/community-resources-1e1": {
|
| 462 |
-
"__comp": "
|
| 463 |
-
"content": "
|
| 464 |
},
|
| 465 |
"/docs/families/service-requests-142": {
|
| 466 |
-
"__comp": "
|
| 467 |
-
"content": "
|
| 468 |
},
|
| 469 |
"/docs/families/training-education-f12": {
|
| 470 |
-
"__comp": "
|
| 471 |
-
"content": "
|
| 472 |
},
|
| 473 |
"/docs/families/voter-registration-34a": {
|
| 474 |
-
"__comp": "
|
| 475 |
-
"content": "
|
| 476 |
},
|
| 477 |
"/docs/for-advocates-736": {
|
| 478 |
-
"__comp": "
|
| 479 |
-
"content": "
|
| 480 |
},
|
| 481 |
"/docs/for-developers-347": {
|
| 482 |
-
"__comp": "
|
| 483 |
-
"content": "
|
| 484 |
},
|
| 485 |
"/docs/for-families-6d7": {
|
| 486 |
-
"__comp": "
|
| 487 |
-
"content": "
|
| 488 |
},
|
| 489 |
"/docs/guides/accountability-strategy-69b": {
|
| 490 |
-
"__comp": "
|
| 491 |
-
"content": "
|
| 492 |
},
|
| 493 |
"/docs/guides/api-troubleshooting-5b8": {
|
| 494 |
-
"__comp": "
|
| 495 |
-
"content": "
|
| 496 |
},
|
| 497 |
"/docs/guides/contacts-officials-9a4": {
|
| 498 |
-
"__comp": "
|
| 499 |
-
"content": "
|
| 500 |
},
|
| 501 |
"/docs/guides/county-aggregation-4d5": {
|
| 502 |
-
"__comp": "
|
| 503 |
-
"content": "
|
| 504 |
},
|
| 505 |
"/docs/guides/document-libraries-525": {
|
| 506 |
-
"__comp": "
|
| 507 |
-
"content": "
|
| 508 |
},
|
| 509 |
"/docs/guides/enterprise-tech-integration-009": {
|
| 510 |
-
"__comp": "
|
| 511 |
-
"content": "
|
| 512 |
},
|
| 513 |
"/docs/guides/form-990-enrichment-e41": {
|
| 514 |
-
"__comp": "
|
| 515 |
-
"content": "
|
| 516 |
},
|
| 517 |
"/docs/guides/gold-table-pipeline-543": {
|
| 518 |
-
"__comp": "
|
| 519 |
-
"content": "
|
| 520 |
},
|
| 521 |
"/docs/guides/handling-formats-052": {
|
| 522 |
-
"__comp": "
|
| 523 |
-
"content": "
|
| 524 |
},
|
| 525 |
"/docs/guides/huggingface-datasets-62d": {
|
| 526 |
-
"__comp": "
|
| 527 |
-
"content": "
|
| 528 |
},
|
| 529 |
"/docs/guides/huggingface-features-5a2": {
|
| 530 |
-
"__comp": "
|
| 531 |
-
"content": "
|
| 532 |
},
|
| 533 |
"/docs/guides/huggingface-integration-edc": {
|
| 534 |
-
"__comp": "
|
| 535 |
-
"content": "
|
| 536 |
},
|
| 537 |
"/docs/guides/huggingface-limits-acf": {
|
| 538 |
-
"__comp": "
|
| 539 |
-
"content": "
|
| 540 |
},
|
| 541 |
"/docs/guides/huggingface-publishing-62f": {
|
| 542 |
-
"__comp": "
|
| 543 |
-
"content": "
|
| 544 |
},
|
| 545 |
"/docs/guides/huggingface-quickstart-98d": {
|
| 546 |
-
"__comp": "
|
| 547 |
-
"content": "
|
| 548 |
},
|
| 549 |
"/docs/guides/impact-navigation-6cb": {
|
| 550 |
-
"__comp": "
|
| 551 |
-
"content": "
|
| 552 |
},
|
| 553 |
"/docs/guides/intel-arc-optimization-006": {
|
| 554 |
-
"__comp": "
|
| 555 |
-
"content": "
|
| 556 |
},
|
| 557 |
"/docs/guides/jurisdiction-setup-a0f": {
|
| 558 |
-
"__comp": "
|
| 559 |
-
"content": "
|
| 560 |
},
|
| 561 |
"/docs/guides/legislative-tracking-484": {
|
| 562 |
-
"__comp": "
|
| 563 |
-
"content": "
|
| 564 |
},
|
| 565 |
"/docs/guides/legislative-tracking-maps-1a7": {
|
| 566 |
-
"__comp": "
|
| 567 |
-
"content": "
|
| 568 |
},
|
| 569 |
"/docs/guides/logo-enrichment-b45": {
|
| 570 |
-
"__comp": "
|
| 571 |
-
"content": "
|
| 572 |
},
|
| 573 |
"/docs/guides/nonprofit-officers-contacts-28a": {
|
| 574 |
-
"__comp": "
|
| 575 |
-
"content": "
|
| 576 |
},
|
| 577 |
"/docs/guides/open-states-legislative-data-60d": {
|
| 578 |
-
"__comp": "
|
| 579 |
-
"content": "
|
| 580 |
},
|
| 581 |
"/docs/guides/partitioned-datasets-714": {
|
| 582 |
-
"__comp": "
|
| 583 |
-
"content": "
|
| 584 |
},
|
| 585 |
"/docs/guides/political-economy-80e": {
|
| 586 |
-
"__comp": "
|
| 587 |
-
"content": "
|
| 588 |
},
|
| 589 |
"/docs/guides/scraper-improvements-bba": {
|
| 590 |
-
"__comp": "
|
| 591 |
-
"content": "
|
| 592 |
},
|
| 593 |
"/docs/guides/search-patterns-410": {
|
| 594 |
-
"__comp": "
|
| 595 |
-
"content": "
|
| 596 |
},
|
| 597 |
"/docs/guides/seo-optimization-79c": {
|
| 598 |
-
"__comp": "
|
| 599 |
-
"content": "
|
| 600 |
},
|
| 601 |
"/docs/guides/specialized-ai-models-c47": {
|
| 602 |
-
"__comp": "
|
| 603 |
-
"content": "
|
| 604 |
},
|
| 605 |
"/docs/guides/split-screen-5ad": {
|
| 606 |
-
"__comp": "
|
| 607 |
-
"content": "
|
| 608 |
},
|
| 609 |
"/docs/guides/state-split-data-f12": {
|
| 610 |
-
"__comp": "
|
| 611 |
-
"content": "
|
| 612 |
},
|
| 613 |
"/docs/guides/unified-search-da6": {
|
| 614 |
-
"__comp": "
|
| 615 |
-
"content": "
|
| 616 |
},
|
| 617 |
"/docs/integrations/dataverse-6df": {
|
| 618 |
-
"__comp": "
|
| 619 |
-
"content": "
|
| 620 |
},
|
| 621 |
"/docs/integrations/dataverse-summary-7d9": {
|
| 622 |
-
"__comp": "
|
| 623 |
-
"content": "
|
| 624 |
},
|
| 625 |
"/docs/integrations/eboard-automated-112": {
|
| 626 |
-
"__comp": "
|
| 627 |
-
"content": "
|
| 628 |
},
|
| 629 |
"/docs/integrations/eboard-cookies-23b": {
|
| 630 |
-
"__comp": "
|
| 631 |
-
"content": "
|
| 632 |
},
|
| 633 |
"/docs/integrations/eboard-manual-6b9": {
|
| 634 |
-
"__comp": "
|
| 635 |
-
"content": "
|
| 636 |
},
|
| 637 |
"/docs/integrations/fec-campaign-finance-bdf": {
|
| 638 |
-
"__comp": "
|
| 639 |
-
"content": "
|
| 640 |
},
|
| 641 |
"/docs/integrations/fec-integration-summary-8af": {
|
| 642 |
-
"__comp": "
|
| 643 |
-
"content": "
|
| 644 |
},
|
| 645 |
"/docs/integrations/fec-political-contributions-42f": {
|
| 646 |
-
"__comp": "
|
| 647 |
-
"content": "
|
| 648 |
},
|
| 649 |
"/docs/integrations/frontend-f9a": {
|
| 650 |
-
"__comp": "
|
| 651 |
-
"content": "
|
| 652 |
},
|
| 653 |
"/docs/integrations/grants-gov-api-d16": {
|
| 654 |
-
"__comp": "
|
| 655 |
-
"content": "
|
| 656 |
},
|
| 657 |
"/docs/integrations/localview-aaa": {
|
| 658 |
-
"__comp": "
|
| 659 |
-
"content": "
|
| 660 |
},
|
| 661 |
"/docs/integrations/mcp-server-79b": {
|
| 662 |
-
"__comp": "
|
| 663 |
-
"content": "
|
| 664 |
},
|
| 665 |
"/docs/integrations/overview-82c": {
|
| 666 |
-
"__comp": "
|
| 667 |
-
"content": "
|
| 668 |
},
|
| 669 |
"/docs/intro-8a9": {
|
| 670 |
-
"__comp": "
|
| 671 |
-
"content": "
|
| 672 |
},
|
| 673 |
"/docs/legal-compliance-7ef": {
|
| 674 |
-
"__comp": "
|
| 675 |
-
"content": "
|
| 676 |
},
|
| 677 |
"/docs/legal/-c48": {
|
| 678 |
-
"__comp": "
|
| 679 |
-
"content": "
|
| 680 |
},
|
| 681 |
"/docs/legal/data-provider-terms-8c2": {
|
| 682 |
-
"__comp": "
|
| 683 |
-
"content": "
|
| 684 |
},
|
| 685 |
"/docs/legal/legal-documentation-complete-311": {
|
| 686 |
-
"__comp": "
|
| 687 |
-
"content": "
|
| 688 |
},
|
| 689 |
"/docs/legal/legal-documentation-summary-6f3": {
|
| 690 |
-
"__comp": "
|
| 691 |
-
"content": "
|
| 692 |
},
|
| 693 |
"/docs/legal/privacy-policy-984": {
|
| 694 |
-
"__comp": "
|
| 695 |
-
"content": "
|
| 696 |
},
|
| 697 |
"/docs/legal/terms-of-service-9e1": {
|
| 698 |
-
"__comp": "
|
| 699 |
-
"content": "
|
| 700 |
},
|
| 701 |
"/docs/open-navigator-bf5": {
|
| 702 |
-
"__comp": "
|
| 703 |
-
"content": "
|
| 704 |
},
|
| 705 |
"/docs/quick-reference-ed9": {
|
| 706 |
-
"__comp": "
|
| 707 |
-
"content": "
|
| 708 |
},
|
| 709 |
"/docs/quickstart-883": {
|
| 710 |
-
"__comp": "
|
| 711 |
-
"content": "
|
| 712 |
},
|
| 713 |
"/-e5f": {
|
| 714 |
-
"__comp": "
|
| 715 |
"__context": {
|
| 716 |
-
"plugin": "
|
| 717 |
},
|
| 718 |
-
"config": "
|
| 719 |
}
|
| 720 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"/__docusaurus/debug-5ff": {
|
| 3 |
+
"__comp": "__comp---theme-debug-config-23-a-2ff",
|
| 4 |
+
"__context": {
|
| 5 |
+
"plugin": "plugin---docusaurus-debugb-38-ad3"
|
| 6 |
+
}
|
| 7 |
+
},
|
| 8 |
+
"/__docusaurus/debug/config-5ba": {
|
| 9 |
+
"__comp": "__comp---theme-debug-config-23-a-2ff",
|
| 10 |
+
"__context": {
|
| 11 |
+
"plugin": "plugin---docusaurus-debugb-38-ad3"
|
| 12 |
+
}
|
| 13 |
+
},
|
| 14 |
+
"/__docusaurus/debug/content-a2b": {
|
| 15 |
+
"__comp": "__comp---theme-debug-contentba-8-ce7",
|
| 16 |
+
"__context": {
|
| 17 |
+
"plugin": "plugin---docusaurus-debugb-38-ad3"
|
| 18 |
+
},
|
| 19 |
+
"__props": "__props---docusaurus-debug-content-3-c-0-be2"
|
| 20 |
+
},
|
| 21 |
+
"/__docusaurus/debug/globalData-c3c": {
|
| 22 |
+
"__comp": "__comp---theme-debug-global-dataede-0fa",
|
| 23 |
+
"__context": {
|
| 24 |
+
"plugin": "plugin---docusaurus-debugb-38-ad3"
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
"/__docusaurus/debug/metadata-156": {
|
| 28 |
+
"__comp": "__comp---theme-debug-site-metadata-68-e-3d4",
|
| 29 |
+
"__context": {
|
| 30 |
+
"plugin": "plugin---docusaurus-debugb-38-ad3"
|
| 31 |
+
}
|
| 32 |
+
},
|
| 33 |
+
"/__docusaurus/debug/registry-88c": {
|
| 34 |
+
"__comp": "__comp---theme-debug-registry-679-501",
|
| 35 |
+
"__context": {
|
| 36 |
+
"plugin": "plugin---docusaurus-debugb-38-ad3"
|
| 37 |
+
}
|
| 38 |
+
},
|
| 39 |
+
"/__docusaurus/debug/routes-000": {
|
| 40 |
+
"__comp": "__comp---theme-debug-routes-946-699",
|
| 41 |
+
"__context": {
|
| 42 |
+
"plugin": "plugin---docusaurus-debugb-38-ad3"
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
"/blog-86b": {
|
| 46 |
+
"__comp": "__comp---theme-blog-list-pagea-6-a-7ba",
|
| 47 |
"__context": {
|
| 48 |
+
"plugin": "plugin---blog-369-22e"
|
| 49 |
},
|
| 50 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 51 |
"items": [
|
| 52 |
{
|
| 53 |
+
"content": "content---blog-6-bd-db5"
|
| 54 |
},
|
| 55 |
{
|
| 56 |
+
"content": "content---blog-371-018"
|
| 57 |
},
|
| 58 |
{
|
| 59 |
+
"content": "content---bloge-1-a-bd7"
|
| 60 |
}
|
| 61 |
],
|
| 62 |
+
"__props": "__props---blogc-15-573"
|
| 63 |
},
|
| 64 |
"/blog/archive-182": {
|
| 65 |
+
"__comp": "__comp---theme-blog-archive-page-9-e-4-1d8",
|
| 66 |
"__context": {
|
| 67 |
+
"plugin": "plugin---blog-369-22e"
|
| 68 |
},
|
| 69 |
+
"__props": "__props---blog-archivef-81-229"
|
| 70 |
},
|
| 71 |
"/blog/authors-0b7": {
|
| 72 |
+
"__comp": "__comp---theme-blog-pages-blog-authors-list-page-621-70c",
|
| 73 |
"__context": {
|
| 74 |
"data": {
|
| 75 |
+
"blogMetadata": "blogMetadata---blog-authorsace-e7d"
|
| 76 |
},
|
| 77 |
+
"plugin": "plugin---blog-369-22e"
|
| 78 |
},
|
| 79 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 80 |
+
"__props": "__props---blog-authorsef-8-44f"
|
| 81 |
},
|
| 82 |
"/blog/authors/communityone-631": {
|
| 83 |
+
"__comp": "__comp---theme-blog-pages-blog-authors-posts-page-33-f-bd5",
|
| 84 |
"__context": {
|
| 85 |
"data": {
|
| 86 |
+
"blogMetadata": "blogMetadata---blog-authorsace-e7d"
|
| 87 |
},
|
| 88 |
+
"plugin": "plugin---blog-369-22e"
|
| 89 |
},
|
| 90 |
"items": [
|
| 91 |
{
|
| 92 |
+
"content": "content---blog-6-bd-db5"
|
| 93 |
},
|
| 94 |
{
|
| 95 |
+
"content": "content---blog-371-018"
|
| 96 |
},
|
| 97 |
{
|
| 98 |
+
"content": "content---bloge-1-a-bd7"
|
| 99 |
}
|
| 100 |
],
|
| 101 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 102 |
+
"__props": "__props---blog-authors-communityoned-7-a-8fc"
|
| 103 |
},
|
| 104 |
"/blog/tags-287": {
|
| 105 |
+
"__comp": "__comp---theme-blog-tags-list-page-01-a-d0b",
|
| 106 |
"__context": {
|
| 107 |
+
"plugin": "plugin---blog-369-22e"
|
| 108 |
},
|
| 109 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 110 |
+
"__props": "__props---blog-tags-3-a-2-fa2"
|
| 111 |
},
|
| 112 |
"/blog/tags/citations-bdc": {
|
| 113 |
+
"__comp": "__comp---theme-blog-tags-posts-page-687-b6c",
|
| 114 |
"__context": {
|
| 115 |
+
"plugin": "plugin---blog-369-22e"
|
| 116 |
},
|
| 117 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 118 |
"items": [
|
| 119 |
{
|
| 120 |
+
"content": "content---blog-371-018"
|
| 121 |
}
|
| 122 |
],
|
| 123 |
+
"__props": "__props---blog-tags-citationsee-0-d4e"
|
| 124 |
},
|
| 125 |
"/blog/tags/civic-tech-1de": {
|
| 126 |
+
"__comp": "__comp---theme-blog-tags-posts-page-687-b6c",
|
| 127 |
"__context": {
|
| 128 |
+
"plugin": "plugin---blog-369-22e"
|
| 129 |
},
|
| 130 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 131 |
"items": [
|
| 132 |
{
|
| 133 |
+
"content": "content---bloge-1-a-bd7"
|
| 134 |
}
|
| 135 |
],
|
| 136 |
+
"__props": "__props---blog-tags-civic-techeaa-486"
|
| 137 |
},
|
| 138 |
"/blog/tags/community-1d3": {
|
| 139 |
+
"__comp": "__comp---theme-blog-tags-posts-page-687-b6c",
|
| 140 |
"__context": {
|
| 141 |
+
"plugin": "plugin---blog-369-22e"
|
| 142 |
},
|
| 143 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 144 |
"items": [
|
| 145 |
{
|
| 146 |
+
"content": "content---bloge-1-a-bd7"
|
| 147 |
}
|
| 148 |
],
|
| 149 |
+
"__props": "__props---blog-tags-communitydc-8-7d6"
|
| 150 |
},
|
| 151 |
"/blog/tags/data-model-426": {
|
| 152 |
+
"__comp": "__comp---theme-blog-tags-posts-page-687-b6c",
|
| 153 |
"__context": {
|
| 154 |
+
"plugin": "plugin---blog-369-22e"
|
| 155 |
},
|
| 156 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 157 |
"items": [
|
| 158 |
{
|
| 159 |
+
"content": "content---blog-371-018"
|
| 160 |
},
|
| 161 |
{
|
| 162 |
+
"content": "content---bloge-1-a-bd7"
|
| 163 |
}
|
| 164 |
],
|
| 165 |
+
"__props": "__props---blog-tags-data-modela-3-c-9de"
|
| 166 |
},
|
| 167 |
"/blog/tags/deployment-0a8": {
|
| 168 |
+
"__comp": "__comp---theme-blog-tags-posts-page-687-b6c",
|
| 169 |
"__context": {
|
| 170 |
+
"plugin": "plugin---blog-369-22e"
|
| 171 |
},
|
| 172 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 173 |
"items": [
|
| 174 |
{
|
| 175 |
+
"content": "content---blog-6-bd-db5"
|
| 176 |
}
|
| 177 |
],
|
| 178 |
+
"__props": "__props---blog-tags-deploymentc-6-b-56c"
|
| 179 |
},
|
| 180 |
"/blog/tags/documentation-6a3": {
|
| 181 |
+
"__comp": "__comp---theme-blog-tags-posts-page-687-b6c",
|
| 182 |
"__context": {
|
| 183 |
+
"plugin": "plugin---blog-369-22e"
|
| 184 |
},
|
| 185 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 186 |
"items": [
|
| 187 |
{
|
| 188 |
+
"content": "content---blog-6-bd-db5"
|
| 189 |
},
|
| 190 |
{
|
| 191 |
+
"content": "content---blog-371-018"
|
| 192 |
}
|
| 193 |
],
|
| 194 |
+
"__props": "__props---blog-tags-documentationaf-8-3c5"
|
| 195 |
},
|
| 196 |
"/blog/week-1-civic-tech-tracking-4b5": {
|
| 197 |
+
"__comp": "__comp---theme-blog-post-pageccc-cab",
|
| 198 |
"__context": {
|
| 199 |
"data": {
|
| 200 |
+
"blogMetadata": "blogMetadata---blog-authorsace-e7d"
|
| 201 |
},
|
| 202 |
+
"plugin": "plugin---blog-369-22e"
|
| 203 |
},
|
| 204 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 205 |
+
"content": "content---blog-week-1-civic-tech-tracking-2-dc-c85"
|
| 206 |
},
|
| 207 |
"/blog/week-2-building-trust-transparency-c1f": {
|
| 208 |
+
"__comp": "__comp---theme-blog-post-pageccc-cab",
|
| 209 |
"__context": {
|
| 210 |
"data": {
|
| 211 |
+
"blogMetadata": "blogMetadata---blog-authorsace-e7d"
|
| 212 |
},
|
| 213 |
+
"plugin": "plugin---blog-369-22e"
|
| 214 |
},
|
| 215 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 216 |
+
"content": "content---blog-week-2-building-trust-transparencydeb-240"
|
| 217 |
},
|
| 218 |
"/blog/week-3-easier-access-civic-data-37e": {
|
| 219 |
+
"__comp": "__comp---theme-blog-post-pageccc-cab",
|
| 220 |
"__context": {
|
| 221 |
"data": {
|
| 222 |
+
"blogMetadata": "blogMetadata---blog-authorsace-e7d"
|
| 223 |
},
|
| 224 |
+
"plugin": "plugin---blog-369-22e"
|
| 225 |
},
|
| 226 |
+
"sidebar": "sidebar---blog-814-8ac",
|
| 227 |
+
"content": "content---blog-week-3-easier-access-civic-data-4-dd-7c5"
|
| 228 |
},
|
| 229 |
"/dashboard-d63": {
|
| 230 |
+
"__comp": "__comp---site-src-pages-dashboard-tsx-00-e-459",
|
| 231 |
"__context": {
|
| 232 |
+
"plugin": "plugin---dashboarda-74-0f3"
|
| 233 |
},
|
| 234 |
+
"config": "config---dashboard-5-e-9-f57"
|
| 235 |
},
|
| 236 |
"/markdown-page-53a": {
|
| 237 |
+
"__comp": "__comp---theme-mdx-page-1-f-3-b90",
|
| 238 |
"__context": {
|
| 239 |
+
"plugin": "plugin---dashboarda-74-0f3"
|
| 240 |
},
|
| 241 |
+
"content": "content---markdown-page-4-c-6-c89"
|
| 242 |
},
|
| 243 |
"/docs-3f2": {
|
| 244 |
+
"__comp": "__comp---theme-docs-root-5-e-9-0b6",
|
| 245 |
"__context": {
|
| 246 |
+
"plugin": "plugin---docsaba-d7c"
|
| 247 |
}
|
| 248 |
},
|
| 249 |
"/docs-21c": {
|
| 250 |
+
"__comp": "__comp---theme-doc-version-roota-7-b-5de",
|
| 251 |
+
"__props": "__props---docs-005-788"
|
| 252 |
},
|
| 253 |
"/docs-788": {
|
| 254 |
+
"__comp": "__comp---theme-doc-roota-94-67a"
|
| 255 |
},
|
| 256 |
"/docs/architecture-2ab": {
|
| 257 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 258 |
+
"content": "content---docs-architecture-528-86f"
|
| 259 |
},
|
| 260 |
"/docs/case-studies/tuscaloosa-complete-2bf": {
|
| 261 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 262 |
+
"content": "content---docs-case-studies-tuscaloosa-completefd-1-af9"
|
| 263 |
},
|
| 264 |
"/docs/case-studies/tuscaloosa-discovery-5a5": {
|
| 265 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 266 |
+
"content": "content---docs-case-studies-tuscaloosa-discoveryfc-1-5ec"
|
| 267 |
},
|
| 268 |
"/docs/case-studies/tuscaloosa-pipeline-cb3": {
|
| 269 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 270 |
+
"content": "content---docs-case-studies-tuscaloosa-pipeline-122-c0e"
|
| 271 |
},
|
| 272 |
"/docs/data-sources/ballot-election-sources-a3d": {
|
| 273 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 274 |
+
"content": "content---docs-data-sources-ballot-election-sources-86-c-b33"
|
| 275 |
},
|
| 276 |
"/docs/data-sources/census-acs-9f7": {
|
| 277 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 278 |
+
"content": "content---docs-data-sources-census-acs-892-ced"
|
| 279 |
},
|
| 280 |
"/docs/data-sources/census-data-9e5": {
|
| 281 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 282 |
+
"content": "content---docs-data-sources-census-data-185-ea3"
|
| 283 |
},
|
| 284 |
"/docs/data-sources/charity-navigator-be7": {
|
| 285 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 286 |
+
"content": "content---docs-data-sources-charity-navigatorf-47-3e6"
|
| 287 |
},
|
| 288 |
"/docs/data-sources/citations-e6d": {
|
| 289 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 290 |
+
"content": "content---docs-data-sources-citationscc-5-09f"
|
| 291 |
},
|
| 292 |
"/docs/data-sources/data-model-erd-cf2": {
|
| 293 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 294 |
+
"content": "content---docs-data-sources-data-model-erdf-89-b95"
|
| 295 |
},
|
| 296 |
"/docs/data-sources/factcheck-sources-d7f": {
|
| 297 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 298 |
+
"content": "content---docs-data-sources-factcheck-sources-264-750"
|
| 299 |
},
|
| 300 |
"/docs/data-sources/form-990-xml-3e7": {
|
| 301 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 302 |
+
"content": "content---docs-data-sources-form-990-xml-035-fa2"
|
| 303 |
},
|
| 304 |
"/docs/data-sources/huggingface-datasets-3b1": {
|
| 305 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 306 |
+
"content": "content---docs-data-sources-huggingface-datasets-297-32d"
|
| 307 |
},
|
| 308 |
"/docs/data-sources/irs-bulk-data-3c4": {
|
| 309 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 310 |
+
"content": "content---docs-data-sources-irs-bulk-data-42-b-0a2"
|
| 311 |
},
|
| 312 |
"/docs/data-sources/jurisdiction-discovery-606": {
|
| 313 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 314 |
+
"content": "content---docs-data-sources-jurisdiction-discovery-52-c-d52"
|
| 315 |
},
|
| 316 |
"/docs/data-sources/nonprofit-sources-198": {
|
| 317 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 318 |
+
"content": "content---docs-data-sources-nonprofit-sources-2-df-537"
|
| 319 |
},
|
| 320 |
"/docs/data-sources/open-source-repositories-526": {
|
| 321 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 322 |
+
"content": "content---docs-data-sources-open-source-repositories-0-af-e9a"
|
| 323 |
},
|
| 324 |
"/docs/data-sources/overview-666": {
|
| 325 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 326 |
+
"content": "content---docs-data-sources-overviewf-9-c-36d"
|
| 327 |
},
|
| 328 |
"/docs/data-sources/polling-survey-sources-ec9": {
|
| 329 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 330 |
+
"content": "content---docs-data-sources-polling-survey-sourcesc-95-59a"
|
| 331 |
},
|
| 332 |
"/docs/data-sources/url-datasets-16b": {
|
| 333 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 334 |
+
"content": "content---docs-data-sources-url-datasets-74-e-591"
|
| 335 |
},
|
| 336 |
"/docs/data-sources/video-channels-d72": {
|
| 337 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 338 |
+
"content": "content---docs-data-sources-video-channels-95-b-06c"
|
| 339 |
},
|
| 340 |
"/docs/data-sources/video-sources-1d5": {
|
| 341 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 342 |
+
"content": "content---docs-data-sources-video-sourcesd-0-f-535"
|
| 343 |
},
|
| 344 |
"/docs/data-sources/youtube-discovery-fb2": {
|
| 345 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 346 |
+
"content": "content---docs-data-sources-youtube-discovery-7-bd-305"
|
| 347 |
},
|
| 348 |
"/docs/deployment/authentication-setup-8cd": {
|
| 349 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 350 |
+
"content": "content---docs-deployment-authentication-setup-06-f-fdd"
|
| 351 |
},
|
| 352 |
"/docs/deployment/build-protection-109": {
|
| 353 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 354 |
+
"content": "content---docs-deployment-build-protection-071-bd6"
|
| 355 |
},
|
| 356 |
"/docs/deployment/build-verification-6a6": {
|
| 357 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 358 |
+
"content": "content---docs-deployment-build-verification-731-0a1"
|
| 359 |
},
|
| 360 |
"/docs/deployment/costs-2fc": {
|
| 361 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 362 |
+
"content": "content---docs-deployment-costs-7-b-6-70b"
|
| 363 |
},
|
| 364 |
"/docs/deployment/d-drive-configuration-aaf": {
|
| 365 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 366 |
+
"content": "content---docs-deployment-d-drive-configuration-224-189"
|
| 367 |
},
|
| 368 |
"/docs/deployment/databricks-apps-c4c": {
|
| 369 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 370 |
+
"content": "content---docs-deployment-databricks-apps-41-d-185"
|
| 371 |
},
|
| 372 |
"/docs/deployment/databricks-migration-0f8": {
|
| 373 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 374 |
+
"content": "content---docs-deployment-databricks-migration-670-d42"
|
| 375 |
},
|
| 376 |
"/docs/deployment/docker-troubleshooting-ab3": {
|
| 377 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 378 |
+
"content": "content---docs-deployment-docker-troubleshooting-938-867"
|
| 379 |
},
|
| 380 |
"/docs/deployment/huggingface-spaces-2b6": {
|
| 381 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 382 |
+
"content": "content---docs-deployment-huggingface-spacesb-13-c8e"
|
| 383 |
},
|
| 384 |
"/docs/deployment/jurisdiction-discovery-478": {
|
| 385 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 386 |
+
"content": "content---docs-deployment-jurisdiction-discovery-359-3e8"
|
| 387 |
},
|
| 388 |
"/docs/deployment/oauth-providers-setup-d04": {
|
| 389 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 390 |
+
"content": "content---docs-deployment-oauth-providers-setup-7-cc-992"
|
| 391 |
},
|
| 392 |
"/docs/deployment/quickstart-databricks-b50": {
|
| 393 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 394 |
+
"content": "content---docs-deployment-quickstart-databricks-2-a-8-894"
|
| 395 |
},
|
| 396 |
"/docs/deployment/rename-repository-be1": {
|
| 397 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 398 |
+
"content": "content---docs-deployment-rename-repository-22-d-4d5"
|
| 399 |
},
|
| 400 |
"/docs/deployment/scale-55d": {
|
| 401 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 402 |
+
"content": "content---docs-deployment-scale-27-d-e60"
|
| 403 |
},
|
| 404 |
"/docs/deployment/schema-migration-191": {
|
| 405 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 406 |
+
"content": "content---docs-deployment-schema-migrationc-2-e-233"
|
| 407 |
},
|
| 408 |
"/docs/deployment/storage-140": {
|
| 409 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 410 |
+
"content": "content---docs-deployment-storage-2-d-0-f7f"
|
| 411 |
},
|
| 412 |
"/docs/deployment/variable-migration-f59": {
|
| 413 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 414 |
+
"content": "content---docs-deployment-variable-migrationd-11-4c9"
|
| 415 |
},
|
| 416 |
"/docs/development/adding-data-sources-071": {
|
| 417 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 418 |
+
"content": "content---docs-development-adding-data-sources-3-df-e92"
|
| 419 |
},
|
| 420 |
"/docs/development/api-logging-errors-4ad": {
|
| 421 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 422 |
+
"content": "content---docs-development-api-logging-errorsc-63-92a"
|
| 423 |
},
|
| 424 |
"/docs/development/changelog-eb9": {
|
| 425 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 426 |
+
"content": "content---docs-development-changelogc-99-cdf"
|
| 427 |
},
|
| 428 |
"/docs/development/county-data-status-c5f": {
|
| 429 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 430 |
+
"content": "content---docs-development-county-data-statuse-19-222"
|
| 431 |
},
|
| 432 |
"/docs/development/dashboard-redesign-2e7": {
|
| 433 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 434 |
+
"content": "content---docs-development-dashboard-redesign-7-df-28b"
|
| 435 |
},
|
| 436 |
"/docs/development/database-setup-66f": {
|
| 437 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 438 |
+
"content": "content---docs-development-database-setup-6-c-0-8da"
|
| 439 |
},
|
| 440 |
"/docs/development/docs-migration-4e9": {
|
| 441 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 442 |
+
"content": "content---docs-development-docs-migrationf-2-e-8b7"
|
| 443 |
},
|
| 444 |
"/docs/development/enhancements-6be": {
|
| 445 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 446 |
+
"content": "content---docs-development-enhancements-864-f41"
|
| 447 |
},
|
| 448 |
"/docs/development/events-naming-migration-717": {
|
| 449 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 450 |
+
"content": "content---docs-development-events-naming-migration-6-db-3cf"
|
| 451 |
},
|
| 452 |
"/docs/development/integration-status-c3e": {
|
| 453 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 454 |
+
"content": "content---docs-development-integration-status-0-f-8-30d"
|
| 455 |
},
|
| 456 |
"/docs/development/intel-optimization-4c4": {
|
| 457 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 458 |
+
"content": "content---docs-development-intel-optimization-20-f-b5c"
|
| 459 |
},
|
| 460 |
"/docs/development/migration-v2-91d": {
|
| 461 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 462 |
+
"content": "content---docs-development-migration-v-2-f-35-314"
|
| 463 |
},
|
| 464 |
"/docs/development/new-capabilities-84d": {
|
| 465 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 466 |
+
"content": "content---docs-development-new-capabilities-249-959"
|
| 467 |
},
|
| 468 |
"/docs/development/openstates-integration-47a": {
|
| 469 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 470 |
+
"content": "content---docs-development-openstates-integration-05-d-c77"
|
| 471 |
},
|
| 472 |
"/docs/development/port-guide-c1d": {
|
| 473 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 474 |
+
"content": "content---docs-development-port-guideca-5-d86"
|
| 475 |
},
|
| 476 |
"/docs/development/react-refactoring-3ae": {
|
| 477 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 478 |
+
"content": "content---docs-development-react-refactoring-698-00f"
|
| 479 |
},
|
| 480 |
"/docs/development/readme-migration-38b": {
|
| 481 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 482 |
+
"content": "content---docs-development-readme-migrationcb-2-69d"
|
| 483 |
},
|
| 484 |
"/docs/development/real-time-statistics-1d7": {
|
| 485 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 486 |
+
"content": "content---docs-development-real-time-statistics-011-fcd"
|
| 487 |
},
|
| 488 |
"/docs/development/refactoring-summary-972": {
|
| 489 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 490 |
+
"content": "content---docs-development-refactoring-summary-3-d-7-e87"
|
| 491 |
},
|
| 492 |
"/docs/development/schema-migration-summary-029": {
|
| 493 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 494 |
+
"content": "content---docs-development-schema-migration-summarya-6-e-b3e"
|
| 495 |
},
|
| 496 |
"/docs/development/terminal-corruption-prevention-ff7": {
|
| 497 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 498 |
+
"content": "content---docs-development-terminal-corruption-prevention-16-e-abe"
|
| 499 |
},
|
| 500 |
"/docs/families/community-events-d26": {
|
| 501 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 502 |
+
"content": "content---docs-families-community-events-828-910"
|
| 503 |
},
|
| 504 |
"/docs/families/community-resources-1e1": {
|
| 505 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 506 |
+
"content": "content---docs-families-community-resourcese-48-84b"
|
| 507 |
},
|
| 508 |
"/docs/families/service-requests-142": {
|
| 509 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 510 |
+
"content": "content---docs-families-service-requests-90-a-24b"
|
| 511 |
},
|
| 512 |
"/docs/families/training-education-f12": {
|
| 513 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 514 |
+
"content": "content---docs-families-training-educationef-8-55d"
|
| 515 |
},
|
| 516 |
"/docs/families/voter-registration-34a": {
|
| 517 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 518 |
+
"content": "content---docs-families-voter-registration-927-847"
|
| 519 |
},
|
| 520 |
"/docs/for-advocates-736": {
|
| 521 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 522 |
+
"content": "content---docs-for-advocates-6-c-8-2df"
|
| 523 |
},
|
| 524 |
"/docs/for-developers-347": {
|
| 525 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 526 |
+
"content": "content---docs-for-developersb-31-32a"
|
| 527 |
},
|
| 528 |
"/docs/for-families-6d7": {
|
| 529 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 530 |
+
"content": "content---docs-for-families-22-d-199"
|
| 531 |
},
|
| 532 |
"/docs/guides/accountability-strategy-69b": {
|
| 533 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 534 |
+
"content": "content---docs-guides-accountability-strategy-70-e-54e"
|
| 535 |
},
|
| 536 |
"/docs/guides/api-troubleshooting-5b8": {
|
| 537 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 538 |
+
"content": "content---docs-guides-api-troubleshooting-692-00a"
|
| 539 |
},
|
| 540 |
"/docs/guides/contacts-officials-9a4": {
|
| 541 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 542 |
+
"content": "content---docs-guides-contacts-officials-4-f-1-a5b"
|
| 543 |
},
|
| 544 |
"/docs/guides/county-aggregation-4d5": {
|
| 545 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 546 |
+
"content": "content---docs-guides-county-aggregation-215-bcf"
|
| 547 |
},
|
| 548 |
"/docs/guides/document-libraries-525": {
|
| 549 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 550 |
+
"content": "content---docs-guides-document-libraries-8-d-6-f24"
|
| 551 |
},
|
| 552 |
"/docs/guides/enterprise-tech-integration-009": {
|
| 553 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 554 |
+
"content": "content---docs-guides-enterprise-tech-integrationdd-5-16d"
|
| 555 |
},
|
| 556 |
"/docs/guides/form-990-enrichment-e41": {
|
| 557 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 558 |
+
"content": "content---docs-guides-form-990-enrichmentcc-4-0b0"
|
| 559 |
},
|
| 560 |
"/docs/guides/gold-table-pipeline-543": {
|
| 561 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 562 |
+
"content": "content---docs-guides-gold-table-pipeline-170-d73"
|
| 563 |
},
|
| 564 |
"/docs/guides/handling-formats-052": {
|
| 565 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 566 |
+
"content": "content---docs-guides-handling-formatse-28-590"
|
| 567 |
},
|
| 568 |
"/docs/guides/huggingface-datasets-62d": {
|
| 569 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 570 |
+
"content": "content---docs-guides-huggingface-datasets-24-e-7a0"
|
| 571 |
},
|
| 572 |
"/docs/guides/huggingface-features-5a2": {
|
| 573 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 574 |
+
"content": "content---docs-guides-huggingface-features-6-f-2-039"
|
| 575 |
},
|
| 576 |
"/docs/guides/huggingface-integration-edc": {
|
| 577 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 578 |
+
"content": "content---docs-guides-huggingface-integration-9-b-5-80f"
|
| 579 |
},
|
| 580 |
"/docs/guides/huggingface-limits-acf": {
|
| 581 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 582 |
+
"content": "content---docs-guides-huggingface-limits-46-d-95a"
|
| 583 |
},
|
| 584 |
"/docs/guides/huggingface-publishing-62f": {
|
| 585 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 586 |
+
"content": "content---docs-guides-huggingface-publishingda-5-330"
|
| 587 |
},
|
| 588 |
"/docs/guides/huggingface-quickstart-98d": {
|
| 589 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 590 |
+
"content": "content---docs-guides-huggingface-quickstartd-7-b-54e"
|
| 591 |
},
|
| 592 |
"/docs/guides/impact-navigation-6cb": {
|
| 593 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 594 |
+
"content": "content---docs-guides-impact-navigatione-75-b18"
|
| 595 |
},
|
| 596 |
"/docs/guides/intel-arc-optimization-006": {
|
| 597 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 598 |
+
"content": "content---docs-guides-intel-arc-optimizationc-1-a-1d7"
|
| 599 |
},
|
| 600 |
"/docs/guides/jurisdiction-setup-a0f": {
|
| 601 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 602 |
+
"content": "content---docs-guides-jurisdiction-setup-73-e-7ee"
|
| 603 |
},
|
| 604 |
"/docs/guides/legislative-tracking-484": {
|
| 605 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 606 |
+
"content": "content---docs-guides-legislative-tracking-184-9c2"
|
| 607 |
},
|
| 608 |
"/docs/guides/legislative-tracking-maps-1a7": {
|
| 609 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 610 |
+
"content": "content---docs-guides-legislative-tracking-maps-7-ce-fee"
|
| 611 |
},
|
| 612 |
"/docs/guides/logo-enrichment-b45": {
|
| 613 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 614 |
+
"content": "content---docs-guides-logo-enrichment-6-fa-08d"
|
| 615 |
},
|
| 616 |
"/docs/guides/nonprofit-officers-contacts-28a": {
|
| 617 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 618 |
+
"content": "content---docs-guides-nonprofit-officers-contacts-426-39b"
|
| 619 |
},
|
| 620 |
"/docs/guides/open-states-legislative-data-60d": {
|
| 621 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 622 |
+
"content": "content---docs-guides-open-states-legislative-datab-2-e-3f8"
|
| 623 |
},
|
| 624 |
"/docs/guides/partitioned-datasets-714": {
|
| 625 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 626 |
+
"content": "content---docs-guides-partitioned-datasetsfdc-324"
|
| 627 |
},
|
| 628 |
"/docs/guides/political-economy-80e": {
|
| 629 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 630 |
+
"content": "content---docs-guides-political-economy-481-476"
|
| 631 |
},
|
| 632 |
"/docs/guides/scraper-improvements-bba": {
|
| 633 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 634 |
+
"content": "content---docs-guides-scraper-improvements-959-f55"
|
| 635 |
},
|
| 636 |
"/docs/guides/search-patterns-410": {
|
| 637 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 638 |
+
"content": "content---docs-guides-search-patternsf-55-4fb"
|
| 639 |
},
|
| 640 |
"/docs/guides/seo-optimization-79c": {
|
| 641 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 642 |
+
"content": "content---docs-guides-seo-optimization-77-a-4bd"
|
| 643 |
},
|
| 644 |
"/docs/guides/specialized-ai-models-c47": {
|
| 645 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 646 |
+
"content": "content---docs-guides-specialized-ai-models-2-f-5-162"
|
| 647 |
},
|
| 648 |
"/docs/guides/split-screen-5ad": {
|
| 649 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 650 |
+
"content": "content---docs-guides-split-screenf-65-772"
|
| 651 |
},
|
| 652 |
"/docs/guides/state-split-data-f12": {
|
| 653 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 654 |
+
"content": "content---docs-guides-state-split-data-2-ac-493"
|
| 655 |
},
|
| 656 |
"/docs/guides/unified-search-da6": {
|
| 657 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 658 |
+
"content": "content---docs-guides-unified-searchec-0-0bc"
|
| 659 |
},
|
| 660 |
"/docs/integrations/dataverse-6df": {
|
| 661 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 662 |
+
"content": "content---docs-integrations-dataverse-23-a-36f"
|
| 663 |
},
|
| 664 |
"/docs/integrations/dataverse-summary-7d9": {
|
| 665 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 666 |
+
"content": "content---docs-integrations-dataverse-summarydf-7-357"
|
| 667 |
},
|
| 668 |
"/docs/integrations/eboard-automated-112": {
|
| 669 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 670 |
+
"content": "content---docs-integrations-eboard-automatedd-3-c-6db"
|
| 671 |
},
|
| 672 |
"/docs/integrations/eboard-cookies-23b": {
|
| 673 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 674 |
+
"content": "content---docs-integrations-eboard-cookiesa-85-260"
|
| 675 |
},
|
| 676 |
"/docs/integrations/eboard-manual-6b9": {
|
| 677 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 678 |
+
"content": "content---docs-integrations-eboard-manual-874-681"
|
| 679 |
},
|
| 680 |
"/docs/integrations/fec-campaign-finance-bdf": {
|
| 681 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 682 |
+
"content": "content---docs-integrations-fec-campaign-financebff-ed2"
|
| 683 |
},
|
| 684 |
"/docs/integrations/fec-integration-summary-8af": {
|
| 685 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 686 |
+
"content": "content---docs-integrations-fec-integration-summary-530-3ee"
|
| 687 |
},
|
| 688 |
"/docs/integrations/fec-political-contributions-42f": {
|
| 689 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 690 |
+
"content": "content---docs-integrations-fec-political-contributionsff-0-23a"
|
| 691 |
},
|
| 692 |
"/docs/integrations/frontend-f9a": {
|
| 693 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 694 |
+
"content": "content---docs-integrations-frontenddbd-72c"
|
| 695 |
},
|
| 696 |
"/docs/integrations/grants-gov-api-d16": {
|
| 697 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 698 |
+
"content": "content---docs-integrations-grants-gov-api-91-c-94b"
|
| 699 |
},
|
| 700 |
"/docs/integrations/localview-aaa": {
|
| 701 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 702 |
+
"content": "content---docs-integrations-localviewa-17-c3f"
|
| 703 |
},
|
| 704 |
"/docs/integrations/mcp-server-79b": {
|
| 705 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 706 |
+
"content": "content---docs-integrations-mcp-servera-95-951"
|
| 707 |
},
|
| 708 |
"/docs/integrations/overview-82c": {
|
| 709 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 710 |
+
"content": "content---docs-integrations-overviewfbb-8a4"
|
| 711 |
},
|
| 712 |
"/docs/intro-8a9": {
|
| 713 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 714 |
+
"content": "content---docs-intro-0-e-3-be1"
|
| 715 |
},
|
| 716 |
"/docs/legal-compliance-7ef": {
|
| 717 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 718 |
+
"content": "content---docs-legal-compliancea-57-580"
|
| 719 |
},
|
| 720 |
"/docs/legal/-c48": {
|
| 721 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 722 |
+
"content": "content---docs-legal-d-4-d-89f"
|
| 723 |
},
|
| 724 |
"/docs/legal/data-provider-terms-8c2": {
|
| 725 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 726 |
+
"content": "content---docs-legal-data-provider-termsea-5-f46"
|
| 727 |
},
|
| 728 |
"/docs/legal/legal-documentation-complete-311": {
|
| 729 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 730 |
+
"content": "content---docs-legal-legal-documentation-complete-020-ff9"
|
| 731 |
},
|
| 732 |
"/docs/legal/legal-documentation-summary-6f3": {
|
| 733 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 734 |
+
"content": "content---docs-legal-legal-documentation-summaryb-6-c-7ff"
|
| 735 |
},
|
| 736 |
"/docs/legal/privacy-policy-984": {
|
| 737 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 738 |
+
"content": "content---docs-legal-privacy-policy-72-a-0cd"
|
| 739 |
},
|
| 740 |
"/docs/legal/terms-of-service-9e1": {
|
| 741 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 742 |
+
"content": "content---docs-legal-terms-of-service-608-300"
|
| 743 |
},
|
| 744 |
"/docs/open-navigator-bf5": {
|
| 745 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 746 |
+
"content": "content---docs-open-navigator-47-d-bd0"
|
| 747 |
},
|
| 748 |
"/docs/quick-reference-ed9": {
|
| 749 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 750 |
+
"content": "content---docs-quick-reference-43-b-463"
|
| 751 |
},
|
| 752 |
"/docs/quickstart-883": {
|
| 753 |
+
"__comp": "__comp---theme-doc-item-178-a40",
|
| 754 |
+
"content": "content---docs-quickstart-807-6cd"
|
| 755 |
},
|
| 756 |
"/-e5f": {
|
| 757 |
+
"__comp": "__comp---site-src-pages-index-tsx-1-df-d3e",
|
| 758 |
"__context": {
|
| 759 |
+
"plugin": "plugin---dashboarda-74-0f3"
|
| 760 |
},
|
| 761 |
+
"config": "config---dashboard-5-e-9-f57"
|
| 762 |
}
|
| 763 |
}
|
website/.docusaurus/site-metadata.json
CHANGED
|
@@ -22,14 +22,9 @@
|
|
| 22 |
"name": "@docusaurus/plugin-content-pages",
|
| 23 |
"version": "3.10.0"
|
| 24 |
},
|
| 25 |
-
"docusaurus-plugin-
|
| 26 |
"type": "package",
|
| 27 |
-
"name": "@docusaurus/plugin-
|
| 28 |
-
"version": "3.10.0"
|
| 29 |
-
},
|
| 30 |
-
"docusaurus-plugin-sitemap": {
|
| 31 |
-
"type": "package",
|
| 32 |
-
"name": "@docusaurus/plugin-sitemap",
|
| 33 |
"version": "3.10.0"
|
| 34 |
},
|
| 35 |
"docusaurus-plugin-svgr": {
|
|
|
|
| 22 |
"name": "@docusaurus/plugin-content-pages",
|
| 23 |
"version": "3.10.0"
|
| 24 |
},
|
| 25 |
+
"docusaurus-plugin-debug": {
|
| 26 |
"type": "package",
|
| 27 |
+
"name": "@docusaurus/plugin-debug",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
"version": "3.10.0"
|
| 29 |
},
|
| 30 |
"docusaurus-plugin-svgr": {
|
website/build/img/communityone_logo.jpg
CHANGED
|
|
Git LFS Details
|
website/build/img/communityone_logo.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/build/img/communityone_logo_64.png
CHANGED
|
|
Git LFS Details
|
website/build/img/docusaurus-social-card.jpg
CHANGED
|
|
Git LFS Details
|
website/build/img/docusaurus.png
CHANGED
|
|
Git LFS Details
|
website/build/img/favicon.ico
CHANGED
|
|
|
|
Git LFS Details
|
website/build/img/logo.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/build/img/undraw_docusaurus_mountain.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/build/img/undraw_docusaurus_react.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/build/img/undraw_docusaurus_tree.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/static/img/communityone_logo.jpg
CHANGED
|
|
Git LFS Details
|
website/static/img/communityone_logo.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/static/img/communityone_logo_64.png
CHANGED
|
|
Git LFS Details
|
website/static/img/docusaurus-social-card.jpg
CHANGED
|
|
Git LFS Details
|
website/static/img/docusaurus.png
CHANGED
|
|
Git LFS Details
|
website/static/img/favicon.ico
CHANGED
|
|
|
|
Git LFS Details
|
website/static/img/logo.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/static/img/undraw_docusaurus_mountain.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/static/img/undraw_docusaurus_react.svg
CHANGED
|
|
|
|
Git LFS Details
|
website/static/img/undraw_docusaurus_tree.svg
CHANGED
|
|
|
|
Git LFS Details
|