ai-first-cli 1.2.2 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (475) hide show
  1. package/CHANGELOG.md +292 -6
  2. package/README.md +24 -4
  3. package/dist/analyzers/symbols.d.ts.map +1 -1
  4. package/dist/analyzers/symbols.js +9 -7
  5. package/dist/analyzers/symbols.js.map +1 -1
  6. package/dist/analyzers/techStack.d.ts.map +1 -1
  7. package/dist/analyzers/techStack.js +198 -3
  8. package/dist/analyzers/techStack.js.map +1 -1
  9. package/dist/commands/ai-first.d.ts.map +1 -1
  10. package/dist/commands/ai-first.js +14 -13
  11. package/dist/commands/ai-first.js.map +1 -1
  12. package/dist/core/adapters/baseAdapter.d.ts +1 -1
  13. package/dist/core/adapters/baseAdapter.d.ts.map +1 -1
  14. package/dist/core/adapters/baseAdapter.js +50 -12
  15. package/dist/core/adapters/baseAdapter.js.map +1 -1
  16. package/dist/core/analysis/architectureDetector.d.ts +37 -0
  17. package/dist/core/analysis/architectureDetector.d.ts.map +1 -0
  18. package/dist/core/analysis/architectureDetector.js +316 -0
  19. package/dist/core/analysis/architectureDetector.js.map +1 -0
  20. package/dist/core/analysis/callGraphBuilder.d.ts +37 -0
  21. package/dist/core/analysis/callGraphBuilder.d.ts.map +1 -0
  22. package/dist/core/analysis/callGraphBuilder.js +101 -0
  23. package/dist/core/analysis/callGraphBuilder.js.map +1 -0
  24. package/dist/core/analysis/dependencyAnalyzer.d.ts +45 -0
  25. package/dist/core/analysis/dependencyAnalyzer.d.ts.map +1 -0
  26. package/dist/core/analysis/dependencyAnalyzer.js +98 -0
  27. package/dist/core/analysis/dependencyAnalyzer.js.map +1 -0
  28. package/dist/core/analysis/index.d.ts +5 -0
  29. package/dist/core/analysis/index.d.ts.map +1 -0
  30. package/dist/core/analysis/index.js +5 -0
  31. package/dist/core/analysis/index.js.map +1 -0
  32. package/dist/core/analysis/inheritanceAnalyzer.d.ts +35 -0
  33. package/dist/core/analysis/inheritanceAnalyzer.d.ts.map +1 -0
  34. package/dist/core/analysis/inheritanceAnalyzer.js +115 -0
  35. package/dist/core/analysis/inheritanceAnalyzer.js.map +1 -0
  36. package/dist/core/ccp.d.ts.map +1 -1
  37. package/dist/core/ccp.js +3 -2
  38. package/dist/core/ccp.js.map +1 -1
  39. package/dist/core/generation/aiContextGenerator.d.ts +71 -0
  40. package/dist/core/generation/aiContextGenerator.d.ts.map +1 -0
  41. package/dist/core/generation/aiContextGenerator.js +217 -0
  42. package/dist/core/generation/aiContextGenerator.js.map +1 -0
  43. package/dist/core/generation/architectureGenerator.d.ts +17 -0
  44. package/dist/core/generation/architectureGenerator.d.ts.map +1 -0
  45. package/dist/core/generation/architectureGenerator.js +160 -0
  46. package/dist/core/generation/architectureGenerator.js.map +1 -0
  47. package/dist/core/generation/flowGenerator.d.ts +52 -0
  48. package/dist/core/generation/flowGenerator.d.ts.map +1 -0
  49. package/dist/core/generation/flowGenerator.js +164 -0
  50. package/dist/core/generation/flowGenerator.js.map +1 -0
  51. package/dist/core/generation/index.d.ts +4 -0
  52. package/dist/core/generation/index.d.ts.map +1 -0
  53. package/dist/core/generation/index.js +4 -0
  54. package/dist/core/generation/index.js.map +1 -0
  55. package/dist/core/hierarchyGenerator.d.ts.map +1 -1
  56. package/dist/core/hierarchyGenerator.js +3 -2
  57. package/dist/core/hierarchyGenerator.js.map +1 -1
  58. package/dist/core/parsers/index.d.ts +20 -0
  59. package/dist/core/parsers/index.d.ts.map +1 -0
  60. package/dist/core/parsers/index.js +76 -0
  61. package/dist/core/parsers/index.js.map +1 -0
  62. package/dist/core/parsers/pythonParser.d.ts +37 -0
  63. package/dist/core/parsers/pythonParser.d.ts.map +1 -0
  64. package/dist/core/parsers/pythonParser.js +229 -0
  65. package/dist/core/parsers/pythonParser.js.map +1 -0
  66. package/dist/core/parsers/typescriptParser.d.ts +54 -0
  67. package/dist/core/parsers/typescriptParser.d.ts.map +1 -0
  68. package/dist/core/parsers/typescriptParser.js +291 -0
  69. package/dist/core/parsers/typescriptParser.js.map +1 -0
  70. package/dist/core/pipeline.d.ts +42 -0
  71. package/dist/core/pipeline.d.ts.map +1 -0
  72. package/dist/core/pipeline.js +172 -0
  73. package/dist/core/pipeline.js.map +1 -0
  74. package/dist/core/semanticContexts.d.ts.map +1 -1
  75. package/dist/core/semanticContexts.js +23 -61
  76. package/dist/core/semanticContexts.js.map +1 -1
  77. package/dist/utils/constants.d.ts +46 -0
  78. package/dist/utils/constants.d.ts.map +1 -0
  79. package/dist/utils/constants.js +67 -0
  80. package/dist/utils/constants.js.map +1 -0
  81. package/install.sh +143 -17
  82. package/package.json +1 -1
  83. package/run-all-tests.sh +184 -0
  84. package/src/analyzers/symbols.ts +12 -7
  85. package/src/analyzers/techStack.ts +203 -3
  86. package/src/commands/ai-first.ts +14 -13
  87. package/src/core/adapters/baseAdapter.ts +61 -12
  88. package/src/core/analysis/architectureDetector.ts +487 -0
  89. package/src/core/analysis/callGraphBuilder.ts +158 -0
  90. package/src/core/analysis/dependencyAnalyzer.ts +167 -0
  91. package/src/core/analysis/index.ts +28 -0
  92. package/src/core/analysis/inheritanceAnalyzer.ts +169 -0
  93. package/src/core/ccp.ts +3 -2
  94. package/src/core/generation/aiContextGenerator.ts +335 -0
  95. package/src/core/generation/architectureGenerator.ts +200 -0
  96. package/src/core/generation/flowGenerator.ts +238 -0
  97. package/src/core/generation/index.ts +16 -0
  98. package/src/core/hierarchyGenerator.ts +3 -2
  99. package/src/core/parsers/index.ts +99 -0
  100. package/src/core/parsers/pythonParser.ts +302 -0
  101. package/src/core/parsers/typescriptParser.ts +445 -0
  102. package/src/core/pipeline.ts +241 -0
  103. package/src/core/semanticContexts.ts +25 -67
  104. package/src/utils/constants.ts +78 -0
  105. package/tests/analysis.test.ts +283 -0
  106. package/tests/architectureDetector.test.ts +137 -0
  107. package/tests/generation.test.ts +216 -0
  108. package/tests/parserRegistry.test.ts +139 -0
  109. package/tests/pipeline.integration.test.ts +245 -0
  110. package/tests/pythonParser.test.ts +210 -0
  111. package/tests/typescriptParser.test.ts +197 -0
  112. package/.ai-dev/index.db +0 -0
  113. package/ANALISIS_COMPLETO.md +0 -424
  114. package/ANALISIS_MEJORAS.md +0 -327
  115. package/BUGS.md +0 -455
  116. package/PLAN_MEJORAS.md +0 -216
  117. package/STATUS_ADAPTADORES +0 -126
  118. package/TEST_RESULTS.md +0 -198
  119. package/TEST_RESULTS_COMPARATIVE.md +0 -159
  120. package/TEST_RESULTS_COMPLETE.md +0 -127
  121. package/TEST_RESULTS_COMPREHENSIVE.md +0 -208
  122. package/TEST_RESULTS_PHASE1.md +0 -420
  123. package/ai-context/ai_context.md +0 -130
  124. package/ai-context/ai_rules.md +0 -54
  125. package/ai-context/architecture.md +0 -136
  126. package/ai-context/cache.json +0 -2349
  127. package/ai-context/ccp/jira-123/context.json +0 -7
  128. package/ai-context/context/features/commands.json +0 -18
  129. package/ai-context/context/features/src.json +0 -61
  130. package/ai-context/context/features/test-projects.json +0 -69
  131. package/ai-context/context/flows/account.json +0 -9
  132. package/ai-context/context/flows/ai-first.json +0 -9
  133. package/ai-context/context/flows/api.json +0 -9
  134. package/ai-context/context/flows/auth.json +0 -13
  135. package/ai-context/context/flows/category.json +0 -12
  136. package/ai-context/context/flows/comment.json +0 -16
  137. package/ai-context/context/flows/dashboard.json +0 -9
  138. package/ai-context/context/flows/doctor.json +0 -9
  139. package/ai-context/context/flows/explore.json +0 -9
  140. package/ai-context/context/flows/login.json +0 -9
  141. package/ai-context/context/flows/opportunity.json +0 -9
  142. package/ai-context/context/flows/post.json +0 -18
  143. package/ai-context/context/flows/routes.json +0 -19
  144. package/ai-context/context/flows/user.json +0 -20
  145. package/ai-context/context/flows/users.json +0 -9
  146. package/ai-context/context/flows/views.json +0 -14
  147. package/ai-context/context/repo.json +0 -56
  148. package/ai-context/context/utils.json +0 -7
  149. package/ai-context/conventions.md +0 -53
  150. package/ai-context/dependencies.json +0 -2946
  151. package/ai-context/embeddings.json +0 -23828
  152. package/ai-context/entrypoints.md +0 -42
  153. package/ai-context/files.json +0 -2944
  154. package/ai-context/git/commit-activity.json +0 -8646
  155. package/ai-context/git/recent-features.json +0 -1
  156. package/ai-context/git/recent-files.json +0 -52
  157. package/ai-context/git/recent-flows.json +0 -1
  158. package/ai-context/graph/knowledge-graph.json +0 -44314
  159. package/ai-context/graph/module-graph.json +0 -866
  160. package/ai-context/graph/symbol-graph.json +0 -200622
  161. package/ai-context/graph/symbol-references.json +0 -6778
  162. package/ai-context/hierarchy.json +0 -20
  163. package/ai-context/index-state.json +0 -4340
  164. package/ai-context/index.db +0 -0
  165. package/ai-context/modules.json +0 -532
  166. package/ai-context/project.json +0 -30
  167. package/ai-context/repo_map.json +0 -5818
  168. package/ai-context/repo_map.md +0 -1327
  169. package/ai-context/schema.json +0 -5
  170. package/ai-context/summary.md +0 -42
  171. package/ai-context/symbols.json +0 -7
  172. package/ai-context/tech_stack.md +0 -46
  173. package/ai-context/tools.json +0 -10
  174. package/test-projects/django-app/.ai-dev/index.db +0 -0
  175. package/test-projects/django-app/ai-context/ai_context.md +0 -92
  176. package/test-projects/django-app/ai-context/ai_rules.md +0 -47
  177. package/test-projects/django-app/ai-context/architecture.md +0 -57
  178. package/test-projects/django-app/ai-context/cache.json +0 -169
  179. package/test-projects/django-app/ai-context/context/flows/views.json +0 -10
  180. package/test-projects/django-app/ai-context/conventions.md +0 -51
  181. package/test-projects/django-app/ai-context/dependencies.json +0 -312
  182. package/test-projects/django-app/ai-context/entrypoints.md +0 -4
  183. package/test-projects/django-app/ai-context/files.json +0 -209
  184. package/test-projects/django-app/ai-context/graph/knowledge-graph.json +0 -36
  185. package/test-projects/django-app/ai-context/graph/module-graph.json +0 -145
  186. package/test-projects/django-app/ai-context/graph/symbol-graph.json +0 -1488
  187. package/test-projects/django-app/ai-context/graph/symbol-references.json +0 -1
  188. package/test-projects/django-app/ai-context/index-state.json +0 -294
  189. package/test-projects/django-app/ai-context/index.db +0 -0
  190. package/test-projects/django-app/ai-context/modules.json +0 -35
  191. package/test-projects/django-app/ai-context/project.json +0 -11
  192. package/test-projects/django-app/ai-context/repo_map.json +0 -412
  193. package/test-projects/django-app/ai-context/repo_map.md +0 -105
  194. package/test-projects/django-app/ai-context/schema.json +0 -5
  195. package/test-projects/django-app/ai-context/summary.md +0 -15
  196. package/test-projects/django-app/ai-context/symbols.json +0 -1
  197. package/test-projects/django-app/ai-context/tech_stack.md +0 -32
  198. package/test-projects/django-app/ai-context/tools.json +0 -10
  199. package/test-projects/express-api/ai-context/ai_context.md +0 -112
  200. package/test-projects/express-api/ai-context/ai_rules.md +0 -50
  201. package/test-projects/express-api/ai-context/architecture.md +0 -62
  202. package/test-projects/express-api/ai-context/context/features/controllers.json +0 -13
  203. package/test-projects/express-api/ai-context/context/features/services.json +0 -13
  204. package/test-projects/express-api/ai-context/context/flows/auth.json +0 -12
  205. package/test-projects/express-api/ai-context/context/flows/user.json +0 -13
  206. package/test-projects/express-api/ai-context/conventions.md +0 -51
  207. package/test-projects/express-api/ai-context/dependencies.json +0 -54
  208. package/test-projects/express-api/ai-context/entrypoints.md +0 -17
  209. package/test-projects/express-api/ai-context/modules.json +0 -30
  210. package/test-projects/express-api/ai-context/project.json +0 -15
  211. package/test-projects/express-api/ai-context/repo_map.json +0 -100
  212. package/test-projects/express-api/ai-context/repo_map.md +0 -36
  213. package/test-projects/express-api/ai-context/schema.json +0 -5
  214. package/test-projects/express-api/ai-context/summary.md +0 -14
  215. package/test-projects/express-api/ai-context/symbols.json +0 -7
  216. package/test-projects/express-api/ai-context/tech_stack.md +0 -38
  217. package/test-projects/express-api/ai-context/tools.json +0 -10
  218. package/test-projects/fastapi-app/.ai-dev/index.db +0 -0
  219. package/test-projects/fastapi-app/ai-context/ai_context.md +0 -89
  220. package/test-projects/fastapi-app/ai-context/ai_rules.md +0 -47
  221. package/test-projects/fastapi-app/ai-context/architecture.md +0 -39
  222. package/test-projects/fastapi-app/ai-context/cache.json +0 -125
  223. package/test-projects/fastapi-app/ai-context/conventions.md +0 -51
  224. package/test-projects/fastapi-app/ai-context/dependencies.json +0 -244
  225. package/test-projects/fastapi-app/ai-context/entrypoints.md +0 -4
  226. package/test-projects/fastapi-app/ai-context/files.json +0 -154
  227. package/test-projects/fastapi-app/ai-context/graph/knowledge-graph.json +0 -15
  228. package/test-projects/fastapi-app/ai-context/graph/module-graph.json +0 -78
  229. package/test-projects/fastapi-app/ai-context/graph/symbol-graph.json +0 -1724
  230. package/test-projects/fastapi-app/ai-context/graph/symbol-references.json +0 -51
  231. package/test-projects/fastapi-app/ai-context/index-state.json +0 -217
  232. package/test-projects/fastapi-app/ai-context/index.db +0 -0
  233. package/test-projects/fastapi-app/ai-context/modules.json +0 -16
  234. package/test-projects/fastapi-app/ai-context/project.json +0 -9
  235. package/test-projects/fastapi-app/ai-context/repo_map.json +0 -298
  236. package/test-projects/fastapi-app/ai-context/repo_map.md +0 -74
  237. package/test-projects/fastapi-app/ai-context/schema.json +0 -5
  238. package/test-projects/fastapi-app/ai-context/summary.md +0 -12
  239. package/test-projects/fastapi-app/ai-context/symbols.json +0 -1
  240. package/test-projects/fastapi-app/ai-context/tech_stack.md +0 -32
  241. package/test-projects/fastapi-app/ai-context/tools.json +0 -10
  242. package/test-projects/flask-app/.ai-dev/index.db +0 -0
  243. package/test-projects/flask-app/ai-context/ai_context.md +0 -94
  244. package/test-projects/flask-app/ai-context/ai_rules.md +0 -47
  245. package/test-projects/flask-app/ai-context/architecture.md +0 -49
  246. package/test-projects/flask-app/ai-context/cache.json +0 -157
  247. package/test-projects/flask-app/ai-context/context/features/app.json +0 -25
  248. package/test-projects/flask-app/ai-context/context/flows/routes.json +0 -14
  249. package/test-projects/flask-app/ai-context/conventions.md +0 -51
  250. package/test-projects/flask-app/ai-context/dependencies.json +0 -298
  251. package/test-projects/flask-app/ai-context/entrypoints.md +0 -4
  252. package/test-projects/flask-app/ai-context/files.json +0 -194
  253. package/test-projects/flask-app/ai-context/graph/knowledge-graph.json +0 -60
  254. package/test-projects/flask-app/ai-context/graph/module-graph.json +0 -95
  255. package/test-projects/flask-app/ai-context/graph/symbol-graph.json +0 -1448
  256. package/test-projects/flask-app/ai-context/graph/symbol-references.json +0 -45
  257. package/test-projects/flask-app/ai-context/index-state.json +0 -273
  258. package/test-projects/flask-app/ai-context/index.db +0 -0
  259. package/test-projects/flask-app/ai-context/modules.json +0 -21
  260. package/test-projects/flask-app/ai-context/project.json +0 -13
  261. package/test-projects/flask-app/ai-context/repo_map.json +0 -400
  262. package/test-projects/flask-app/ai-context/repo_map.md +0 -98
  263. package/test-projects/flask-app/ai-context/schema.json +0 -5
  264. package/test-projects/flask-app/ai-context/summary.md +0 -13
  265. package/test-projects/flask-app/ai-context/symbols.json +0 -1
  266. package/test-projects/flask-app/ai-context/tech_stack.md +0 -32
  267. package/test-projects/flask-app/ai-context/tools.json +0 -10
  268. package/test-projects/laravel-app/.ai-dev/index.db +0 -0
  269. package/test-projects/laravel-app/ai-context/ai_context.md +0 -97
  270. package/test-projects/laravel-app/ai-context/ai_rules.md +0 -47
  271. package/test-projects/laravel-app/ai-context/architecture.md +0 -60
  272. package/test-projects/laravel-app/ai-context/cache.json +0 -161
  273. package/test-projects/laravel-app/ai-context/context/features/app.json +0 -21
  274. package/test-projects/laravel-app/ai-context/context/flows/.json +0 -9
  275. package/test-projects/laravel-app/ai-context/context/flows/category.json +0 -12
  276. package/test-projects/laravel-app/ai-context/context/flows/comment.json +0 -12
  277. package/test-projects/laravel-app/ai-context/context/flows/post.json +0 -12
  278. package/test-projects/laravel-app/ai-context/context/flows/unnamed.json +0 -9
  279. package/test-projects/laravel-app/ai-context/conventions.md +0 -51
  280. package/test-projects/laravel-app/ai-context/dependencies.json +0 -6
  281. package/test-projects/laravel-app/ai-context/entrypoints.md +0 -4
  282. package/test-projects/laravel-app/ai-context/files.json +0 -199
  283. package/test-projects/laravel-app/ai-context/graph/knowledge-graph.json +0 -98
  284. package/test-projects/laravel-app/ai-context/graph/module-graph.json +0 -30
  285. package/test-projects/laravel-app/ai-context/graph/symbol-graph.json +0 -5
  286. package/test-projects/laravel-app/ai-context/graph/symbol-references.json +0 -1
  287. package/test-projects/laravel-app/ai-context/index-state.json +0 -280
  288. package/test-projects/laravel-app/ai-context/index.db +0 -0
  289. package/test-projects/laravel-app/ai-context/modules.json +0 -29
  290. package/test-projects/laravel-app/ai-context/project.json +0 -17
  291. package/test-projects/laravel-app/ai-context/repo_map.json +0 -419
  292. package/test-projects/laravel-app/ai-context/repo_map.md +0 -106
  293. package/test-projects/laravel-app/ai-context/schema.json +0 -5
  294. package/test-projects/laravel-app/ai-context/summary.md +0 -15
  295. package/test-projects/laravel-app/ai-context/symbols.json +0 -1
  296. package/test-projects/laravel-app/ai-context/tech_stack.md +0 -34
  297. package/test-projects/laravel-app/ai-context/tools.json +0 -10
  298. package/test-projects/nestjs-backend/.ai-dev/index.db +0 -0
  299. package/test-projects/nestjs-backend/ai-context/ai_context.md +0 -111
  300. package/test-projects/nestjs-backend/ai-context/ai_rules.md +0 -52
  301. package/test-projects/nestjs-backend/ai-context/architecture.md +0 -49
  302. package/test-projects/nestjs-backend/ai-context/cache.json +0 -169
  303. package/test-projects/nestjs-backend/ai-context/context/features/src.json +0 -23
  304. package/test-projects/nestjs-backend/ai-context/context/flows/auth.controller.json +0 -14
  305. package/test-projects/nestjs-backend/ai-context/context/flows/auth.json +0 -10
  306. package/test-projects/nestjs-backend/ai-context/context/flows/users..json +0 -10
  307. package/test-projects/nestjs-backend/ai-context/context/flows/users.controller.json +0 -14
  308. package/test-projects/nestjs-backend/ai-context/context/flows/users.json +0 -10
  309. package/test-projects/nestjs-backend/ai-context/conventions.md +0 -52
  310. package/test-projects/nestjs-backend/ai-context/dependencies.json +0 -152
  311. package/test-projects/nestjs-backend/ai-context/entrypoints.md +0 -18
  312. package/test-projects/nestjs-backend/ai-context/files.json +0 -209
  313. package/test-projects/nestjs-backend/ai-context/graph/knowledge-graph.json +0 -132
  314. package/test-projects/nestjs-backend/ai-context/graph/module-graph.json +0 -29
  315. package/test-projects/nestjs-backend/ai-context/graph/symbol-graph.json +0 -304
  316. package/test-projects/nestjs-backend/ai-context/graph/symbol-references.json +0 -5
  317. package/test-projects/nestjs-backend/ai-context/index-state.json +0 -294
  318. package/test-projects/nestjs-backend/ai-context/index.db +0 -0
  319. package/test-projects/nestjs-backend/ai-context/modules.json +0 -19
  320. package/test-projects/nestjs-backend/ai-context/project.json +0 -18
  321. package/test-projects/nestjs-backend/ai-context/repo_map.json +0 -427
  322. package/test-projects/nestjs-backend/ai-context/repo_map.md +0 -104
  323. package/test-projects/nestjs-backend/ai-context/schema.json +0 -5
  324. package/test-projects/nestjs-backend/ai-context/summary.md +0 -13
  325. package/test-projects/nestjs-backend/ai-context/symbols.json +0 -1
  326. package/test-projects/nestjs-backend/ai-context/tech_stack.md +0 -38
  327. package/test-projects/nestjs-backend/ai-context/tools.json +0 -10
  328. package/test-projects/python-cli/.ai-dev/index.db +0 -0
  329. package/test-projects/python-cli/ai-context/ai_context.md +0 -95
  330. package/test-projects/python-cli/ai-context/ai_rules.md +0 -47
  331. package/test-projects/python-cli/ai-context/architecture.md +0 -55
  332. package/test-projects/python-cli/ai-context/cache.json +0 -149
  333. package/test-projects/python-cli/ai-context/context/features/cli.json +0 -16
  334. package/test-projects/python-cli/ai-context/context/flows/list_.json +0 -9
  335. package/test-projects/python-cli/ai-context/context/flows/remove_.json +0 -9
  336. package/test-projects/python-cli/ai-context/conventions.md +0 -51
  337. package/test-projects/python-cli/ai-context/dependencies.json +0 -66
  338. package/test-projects/python-cli/ai-context/entrypoints.md +0 -4
  339. package/test-projects/python-cli/ai-context/files.json +0 -184
  340. package/test-projects/python-cli/ai-context/graph/knowledge-graph.json +0 -83
  341. package/test-projects/python-cli/ai-context/graph/module-graph.json +0 -31
  342. package/test-projects/python-cli/ai-context/graph/symbol-graph.json +0 -358
  343. package/test-projects/python-cli/ai-context/graph/symbol-references.json +0 -11
  344. package/test-projects/python-cli/ai-context/index-state.json +0 -259
  345. package/test-projects/python-cli/ai-context/index.db +0 -0
  346. package/test-projects/python-cli/ai-context/modules.json +0 -21
  347. package/test-projects/python-cli/ai-context/project.json +0 -15
  348. package/test-projects/python-cli/ai-context/repo_map.json +0 -367
  349. package/test-projects/python-cli/ai-context/repo_map.md +0 -93
  350. package/test-projects/python-cli/ai-context/schema.json +0 -5
  351. package/test-projects/python-cli/ai-context/summary.md +0 -14
  352. package/test-projects/python-cli/ai-context/symbols.json +0 -1
  353. package/test-projects/python-cli/ai-context/tech_stack.md +0 -32
  354. package/test-projects/python-cli/ai-context/tools.json +0 -10
  355. package/test-projects/rails-app/.ai-dev/index.db +0 -0
  356. package/test-projects/rails-app/ai-context/ai_context.md +0 -94
  357. package/test-projects/rails-app/ai-context/ai_rules.md +0 -47
  358. package/test-projects/rails-app/ai-context/architecture.md +0 -49
  359. package/test-projects/rails-app/ai-context/cache.json +0 -193
  360. package/test-projects/rails-app/ai-context/context/features/app.json +0 -24
  361. package/test-projects/rails-app/ai-context/context/features/config.json +0 -13
  362. package/test-projects/rails-app/ai-context/context/flows/application.json +0 -9
  363. package/test-projects/rails-app/ai-context/context/flows/application_.json +0 -9
  364. package/test-projects/rails-app/ai-context/context/flows/comments.json +0 -11
  365. package/test-projects/rails-app/ai-context/context/flows/comments_.json +0 -11
  366. package/test-projects/rails-app/ai-context/context/flows/posts.json +0 -11
  367. package/test-projects/rails-app/ai-context/context/flows/posts_.json +0 -11
  368. package/test-projects/rails-app/ai-context/context/flows/routes.json +0 -9
  369. package/test-projects/rails-app/ai-context/context/flows/users.json +0 -11
  370. package/test-projects/rails-app/ai-context/context/flows/users_.json +0 -11
  371. package/test-projects/rails-app/ai-context/conventions.md +0 -51
  372. package/test-projects/rails-app/ai-context/dependencies.json +0 -6
  373. package/test-projects/rails-app/ai-context/entrypoints.md +0 -4
  374. package/test-projects/rails-app/ai-context/files.json +0 -239
  375. package/test-projects/rails-app/ai-context/graph/knowledge-graph.json +0 -130
  376. package/test-projects/rails-app/ai-context/graph/module-graph.json +0 -27
  377. package/test-projects/rails-app/ai-context/graph/symbol-graph.json +0 -5
  378. package/test-projects/rails-app/ai-context/graph/symbol-references.json +0 -1
  379. package/test-projects/rails-app/ai-context/index-state.json +0 -336
  380. package/test-projects/rails-app/ai-context/index.db +0 -0
  381. package/test-projects/rails-app/ai-context/modules.json +0 -26
  382. package/test-projects/rails-app/ai-context/project.json +0 -22
  383. package/test-projects/rails-app/ai-context/repo_map.json +0 -486
  384. package/test-projects/rails-app/ai-context/repo_map.md +0 -117
  385. package/test-projects/rails-app/ai-context/schema.json +0 -5
  386. package/test-projects/rails-app/ai-context/summary.md +0 -13
  387. package/test-projects/rails-app/ai-context/symbols.json +0 -1
  388. package/test-projects/rails-app/ai-context/tech_stack.md +0 -32
  389. package/test-projects/rails-app/ai-context/tools.json +0 -10
  390. package/test-projects/react-app/.ai-dev/index.db +0 -0
  391. package/test-projects/react-app/ai-context/ai_context.md +0 -96
  392. package/test-projects/react-app/ai-context/ai_rules.md +0 -49
  393. package/test-projects/react-app/ai-context/architecture.md +0 -39
  394. package/test-projects/react-app/ai-context/cache.json +0 -153
  395. package/test-projects/react-app/ai-context/context/features/src.json +0 -18
  396. package/test-projects/react-app/ai-context/context/flows/UsersPage.json +0 -14
  397. package/test-projects/react-app/ai-context/context/flows/dashboard.json +0 -9
  398. package/test-projects/react-app/ai-context/context/flows/login.json +0 -9
  399. package/test-projects/react-app/ai-context/context/flows/users.json +0 -9
  400. package/test-projects/react-app/ai-context/conventions.md +0 -52
  401. package/test-projects/react-app/ai-context/dependencies.json +0 -128
  402. package/test-projects/react-app/ai-context/entrypoints.md +0 -4
  403. package/test-projects/react-app/ai-context/files.json +0 -189
  404. package/test-projects/react-app/ai-context/graph/knowledge-graph.json +0 -112
  405. package/test-projects/react-app/ai-context/graph/module-graph.json +0 -31
  406. package/test-projects/react-app/ai-context/graph/symbol-graph.json +0 -868
  407. package/test-projects/react-app/ai-context/graph/symbol-references.json +0 -31
  408. package/test-projects/react-app/ai-context/index-state.json +0 -266
  409. package/test-projects/react-app/ai-context/index.db +0 -0
  410. package/test-projects/react-app/ai-context/modules.json +0 -17
  411. package/test-projects/react-app/ai-context/project.json +0 -16
  412. package/test-projects/react-app/ai-context/repo_map.json +0 -391
  413. package/test-projects/react-app/ai-context/repo_map.md +0 -94
  414. package/test-projects/react-app/ai-context/schema.json +0 -5
  415. package/test-projects/react-app/ai-context/summary.md +0 -13
  416. package/test-projects/react-app/ai-context/symbols.json +0 -1
  417. package/test-projects/react-app/ai-context/tech_stack.md +0 -39
  418. package/test-projects/react-app/ai-context/tools.json +0 -10
  419. package/test-projects/salesforce-cli/.ai-dev/index.db +0 -0
  420. package/test-projects/salesforce-cli/ai-context/ai_context.md +0 -89
  421. package/test-projects/salesforce-cli/ai-context/ai_rules.md +0 -47
  422. package/test-projects/salesforce-cli/ai-context/architecture.md +0 -39
  423. package/test-projects/salesforce-cli/ai-context/cache.json +0 -125
  424. package/test-projects/salesforce-cli/ai-context/context/features/force-app.json +0 -14
  425. package/test-projects/salesforce-cli/ai-context/context/flows/account.json +0 -9
  426. package/test-projects/salesforce-cli/ai-context/context/flows/opportunity.json +0 -9
  427. package/test-projects/salesforce-cli/ai-context/conventions.md +0 -51
  428. package/test-projects/salesforce-cli/ai-context/dependencies.json +0 -6
  429. package/test-projects/salesforce-cli/ai-context/entrypoints.md +0 -4
  430. package/test-projects/salesforce-cli/ai-context/files.json +0 -154
  431. package/test-projects/salesforce-cli/ai-context/graph/knowledge-graph.json +0 -64
  432. package/test-projects/salesforce-cli/ai-context/graph/module-graph.json +0 -13
  433. package/test-projects/salesforce-cli/ai-context/graph/symbol-graph.json +0 -148
  434. package/test-projects/salesforce-cli/ai-context/graph/symbol-references.json +0 -1
  435. package/test-projects/salesforce-cli/ai-context/index-state.json +0 -217
  436. package/test-projects/salesforce-cli/ai-context/index.db +0 -0
  437. package/test-projects/salesforce-cli/ai-context/modules.json +0 -12
  438. package/test-projects/salesforce-cli/ai-context/project.json +0 -14
  439. package/test-projects/salesforce-cli/ai-context/repo_map.json +0 -328
  440. package/test-projects/salesforce-cli/ai-context/repo_map.md +0 -80
  441. package/test-projects/salesforce-cli/ai-context/schema.json +0 -5
  442. package/test-projects/salesforce-cli/ai-context/summary.md +0 -13
  443. package/test-projects/salesforce-cli/ai-context/symbols.json +0 -1
  444. package/test-projects/salesforce-cli/ai-context/tech_stack.md +0 -31
  445. package/test-projects/salesforce-cli/ai-context/tools.json +0 -10
  446. package/test-projects/spring-boot-app/.ai-dev/index.db +0 -0
  447. package/test-projects/spring-boot-app/ai-context/ai_context.md +0 -91
  448. package/test-projects/spring-boot-app/ai-context/ai_rules.md +0 -48
  449. package/test-projects/spring-boot-app/ai-context/architecture.md +0 -39
  450. package/test-projects/spring-boot-app/ai-context/cache.json +0 -173
  451. package/test-projects/spring-boot-app/ai-context/context/features/src.json +0 -26
  452. package/test-projects/spring-boot-app/ai-context/context/flows/PostController.json +0 -19
  453. package/test-projects/spring-boot-app/ai-context/context/flows/UserController.json +0 -19
  454. package/test-projects/spring-boot-app/ai-context/context/flows/comment.json +0 -11
  455. package/test-projects/spring-boot-app/ai-context/context/flows/post.json +0 -14
  456. package/test-projects/spring-boot-app/ai-context/context/flows/user.json +0 -14
  457. package/test-projects/spring-boot-app/ai-context/conventions.md +0 -52
  458. package/test-projects/spring-boot-app/ai-context/dependencies.json +0 -326
  459. package/test-projects/spring-boot-app/ai-context/entrypoints.md +0 -4
  460. package/test-projects/spring-boot-app/ai-context/files.json +0 -214
  461. package/test-projects/spring-boot-app/ai-context/graph/knowledge-graph.json +0 -231
  462. package/test-projects/spring-boot-app/ai-context/graph/module-graph.json +0 -22
  463. package/test-projects/spring-boot-app/ai-context/graph/symbol-graph.json +0 -794
  464. package/test-projects/spring-boot-app/ai-context/graph/symbol-references.json +0 -70
  465. package/test-projects/spring-boot-app/ai-context/index-state.json +0 -301
  466. package/test-projects/spring-boot-app/ai-context/index.db +0 -0
  467. package/test-projects/spring-boot-app/ai-context/modules.json +0 -21
  468. package/test-projects/spring-boot-app/ai-context/project.json +0 -17
  469. package/test-projects/spring-boot-app/ai-context/repo_map.json +0 -461
  470. package/test-projects/spring-boot-app/ai-context/repo_map.md +0 -109
  471. package/test-projects/spring-boot-app/ai-context/schema.json +0 -5
  472. package/test-projects/spring-boot-app/ai-context/summary.md +0 -12
  473. package/test-projects/spring-boot-app/ai-context/symbols.json +0 -1
  474. package/test-projects/spring-boot-app/ai-context/tech_stack.md +0 -32
  475. package/test-projects/spring-boot-app/ai-context/tools.json +0 -10
@@ -1,1724 +0,0 @@
1
- {
2
- "symbols": [
3
- {
4
- "id": "app/database.py#SQLALCHEMY_DATABASE_URL",
5
- "name": "SQLALCHEMY_DATABASE_URL",
6
- "type": "const",
7
- "file": "app/database.py",
8
- "line": 5
9
- },
10
- {
11
- "id": "app/database.py#get_db",
12
- "name": "get_db",
13
- "type": "function",
14
- "file": "app/database.py",
15
- "line": 15,
16
- "export": true
17
- },
18
- {
19
- "id": "app/dependencies.py#SECRET_KEY",
20
- "name": "SECRET_KEY",
21
- "type": "const",
22
- "file": "app/dependencies.py",
23
- "line": 12
24
- },
25
- {
26
- "id": "app/dependencies.py#ALGORITHM",
27
- "name": "ALGORITHM",
28
- "type": "const",
29
- "file": "app/dependencies.py",
30
- "line": 13
31
- },
32
- {
33
- "id": "app/dependencies.py#ACCESS_TOKEN_EXPIRE_MINUTES",
34
- "name": "ACCESS_TOKEN_EXPIRE_MINUTES",
35
- "type": "const",
36
- "file": "app/dependencies.py",
37
- "line": 14
38
- },
39
- {
40
- "id": "app/dependencies.py#verify_password",
41
- "name": "verify_password",
42
- "type": "function",
43
- "file": "app/dependencies.py",
44
- "line": 20,
45
- "export": true
46
- },
47
- {
48
- "id": "app/dependencies.py#get_password_hash",
49
- "name": "get_password_hash",
50
- "type": "function",
51
- "file": "app/dependencies.py",
52
- "line": 25,
53
- "export": true
54
- },
55
- {
56
- "id": "app/dependencies.py#get_user",
57
- "name": "get_user",
58
- "type": "function",
59
- "file": "app/dependencies.py",
60
- "line": 30,
61
- "export": true
62
- },
63
- {
64
- "id": "app/dependencies.py#get_user_by_email",
65
- "name": "get_user_by_email",
66
- "type": "function",
67
- "file": "app/dependencies.py",
68
- "line": 35,
69
- "export": true
70
- },
71
- {
72
- "id": "app/dependencies.py#authenticate_user",
73
- "name": "authenticate_user",
74
- "type": "function",
75
- "file": "app/dependencies.py",
76
- "line": 40,
77
- "export": true
78
- },
79
- {
80
- "id": "app/dependencies.py#create_access_token",
81
- "name": "create_access_token",
82
- "type": "function",
83
- "file": "app/dependencies.py",
84
- "line": 52,
85
- "export": true
86
- },
87
- {
88
- "id": "app/main.py#read_root",
89
- "name": "read_root",
90
- "type": "function",
91
- "file": "app/main.py",
92
- "line": 33,
93
- "export": true
94
- },
95
- {
96
- "id": "app/main.py#health_check",
97
- "name": "health_check",
98
- "type": "function",
99
- "file": "app/main.py",
100
- "line": 39,
101
- "export": true
102
- },
103
- {
104
- "id": "app/models.py#User",
105
- "name": "User",
106
- "type": "class",
107
- "file": "app/models.py",
108
- "line": 24,
109
- "export": true
110
- },
111
- {
112
- "id": "app/models.py#__repr__",
113
- "name": "__repr__",
114
- "type": "function",
115
- "file": "app/models.py",
116
- "line": 46,
117
- "export": true
118
- },
119
- {
120
- "id": "app/models.py#Post",
121
- "name": "Post",
122
- "type": "class",
123
- "file": "app/models.py",
124
- "line": 50,
125
- "export": true
126
- },
127
- {
128
- "id": "app/models.py#__repr__",
129
- "name": "__repr__",
130
- "type": "function",
131
- "file": "app/models.py",
132
- "line": 76,
133
- "export": true
134
- },
135
- {
136
- "id": "app/models.py#publish",
137
- "name": "publish",
138
- "type": "function",
139
- "file": "app/models.py",
140
- "line": 79,
141
- "export": true
142
- },
143
- {
144
- "id": "app/models.py#unpublish",
145
- "name": "unpublish",
146
- "type": "function",
147
- "file": "app/models.py",
148
- "line": 86,
149
- "export": true
150
- },
151
- {
152
- "id": "app/models.py#Comment",
153
- "name": "Comment",
154
- "type": "class",
155
- "file": "app/models.py",
156
- "line": 92,
157
- "export": true
158
- },
159
- {
160
- "id": "app/models.py#__repr__",
161
- "name": "__repr__",
162
- "type": "function",
163
- "file": "app/models.py",
164
- "line": 113,
165
- "export": true
166
- },
167
- {
168
- "id": "app/models.py#Category",
169
- "name": "Category",
170
- "type": "class",
171
- "file": "app/models.py",
172
- "line": 117,
173
- "export": true
174
- },
175
- {
176
- "id": "app/models.py#__repr__",
177
- "name": "__repr__",
178
- "type": "function",
179
- "file": "app/models.py",
180
- "line": 131,
181
- "export": true
182
- },
183
- {
184
- "id": "app/models.py#Tag",
185
- "name": "Tag",
186
- "type": "class",
187
- "file": "app/models.py",
188
- "line": 135,
189
- "export": true
190
- },
191
- {
192
- "id": "app/models.py#__repr__",
193
- "name": "__repr__",
194
- "type": "function",
195
- "file": "app/models.py",
196
- "line": 148,
197
- "export": true
198
- },
199
- {
200
- "id": "app/routers/auth.py#register",
201
- "name": "register",
202
- "type": "function",
203
- "file": "app/routers/auth.py",
204
- "line": 23,
205
- "export": true
206
- },
207
- {
208
- "id": "app/routers/auth.py#login",
209
- "name": "login",
210
- "type": "function",
211
- "file": "app/routers/auth.py",
212
- "line": 57,
213
- "export": true
214
- },
215
- {
216
- "id": "app/routers/auth.py#read_users_me",
217
- "name": "read_users_me",
218
- "type": "function",
219
- "file": "app/routers/auth.py",
220
- "line": 76,
221
- "export": true
222
- },
223
- {
224
- "id": "app/routers/auth.py#update_user_me",
225
- "name": "update_user_me",
226
- "type": "function",
227
- "file": "app/routers/auth.py",
228
- "line": 82,
229
- "export": true
230
- },
231
- {
232
- "id": "app/routers/auth.py#change_password",
233
- "name": "change_password",
234
- "type": "function",
235
- "file": "app/routers/auth.py",
236
- "line": 100,
237
- "export": true
238
- },
239
- {
240
- "id": "app/routers/posts.py#generate_slug",
241
- "name": "generate_slug",
242
- "type": "function",
243
- "file": "app/routers/posts.py",
244
- "line": 12,
245
- "export": true
246
- },
247
- {
248
- "id": "app/routers/posts.py#list_posts",
249
- "name": "list_posts",
250
- "type": "function",
251
- "file": "app/routers/posts.py",
252
- "line": 22,
253
- "export": true
254
- },
255
- {
256
- "id": "app/routers/posts.py#create_post",
257
- "name": "create_post",
258
- "type": "function",
259
- "file": "app/routers/posts.py",
260
- "line": 87,
261
- "export": true
262
- },
263
- {
264
- "id": "app/routers/posts.py#get_post",
265
- "name": "get_post",
266
- "type": "function",
267
- "file": "app/routers/posts.py",
268
- "line": 133,
269
- "export": true
270
- },
271
- {
272
- "id": "app/routers/posts.py#update_post",
273
- "name": "update_post",
274
- "type": "function",
275
- "file": "app/routers/posts.py",
276
- "line": 150,
277
- "export": true
278
- },
279
- {
280
- "id": "app/routers/posts.py#delete_post",
281
- "name": "delete_post",
282
- "type": "function",
283
- "file": "app/routers/posts.py",
284
- "line": 201,
285
- "export": true
286
- },
287
- {
288
- "id": "app/routers/posts.py#publish_post",
289
- "name": "publish_post",
290
- "type": "function",
291
- "file": "app/routers/posts.py",
292
- "line": 228,
293
- "export": true
294
- },
295
- {
296
- "id": "app/routers/posts.py#get_my_posts",
297
- "name": "get_my_posts",
298
- "type": "function",
299
- "file": "app/routers/posts.py",
300
- "line": 256,
301
- "export": true
302
- },
303
- {
304
- "id": "app/schemas.py#UserBase",
305
- "name": "UserBase",
306
- "type": "class",
307
- "file": "app/schemas.py",
308
- "line": 7,
309
- "export": true
310
- },
311
- {
312
- "id": "app/schemas.py#UserCreate",
313
- "name": "UserCreate",
314
- "type": "class",
315
- "file": "app/schemas.py",
316
- "line": 14,
317
- "export": true
318
- },
319
- {
320
- "id": "app/schemas.py#UserUpdate",
321
- "name": "UserUpdate",
322
- "type": "class",
323
- "file": "app/schemas.py",
324
- "line": 18,
325
- "export": true
326
- },
327
- {
328
- "id": "app/schemas.py#User",
329
- "name": "User",
330
- "type": "class",
331
- "file": "app/schemas.py",
332
- "line": 24,
333
- "export": true
334
- },
335
- {
336
- "id": "app/schemas.py#UserInDB",
337
- "name": "UserInDB",
338
- "type": "class",
339
- "file": "app/schemas.py",
340
- "line": 35,
341
- "export": true
342
- },
343
- {
344
- "id": "app/schemas.py#CategoryBase",
345
- "name": "CategoryBase",
346
- "type": "class",
347
- "file": "app/schemas.py",
348
- "line": 40,
349
- "export": true
350
- },
351
- {
352
- "id": "app/schemas.py#CategoryCreate",
353
- "name": "CategoryCreate",
354
- "type": "class",
355
- "file": "app/schemas.py",
356
- "line": 45,
357
- "export": true
358
- },
359
- {
360
- "id": "app/schemas.py#CategoryUpdate",
361
- "name": "CategoryUpdate",
362
- "type": "class",
363
- "file": "app/schemas.py",
364
- "line": 49,
365
- "export": true
366
- },
367
- {
368
- "id": "app/schemas.py#Category",
369
- "name": "Category",
370
- "type": "class",
371
- "file": "app/schemas.py",
372
- "line": 54,
373
- "export": true
374
- },
375
- {
376
- "id": "app/schemas.py#TagBase",
377
- "name": "TagBase",
378
- "type": "class",
379
- "file": "app/schemas.py",
380
- "line": 63,
381
- "export": true
382
- },
383
- {
384
- "id": "app/schemas.py#TagCreate",
385
- "name": "TagCreate",
386
- "type": "class",
387
- "file": "app/schemas.py",
388
- "line": 67,
389
- "export": true
390
- },
391
- {
392
- "id": "app/schemas.py#Tag",
393
- "name": "Tag",
394
- "type": "class",
395
- "file": "app/schemas.py",
396
- "line": 71,
397
- "export": true
398
- },
399
- {
400
- "id": "app/schemas.py#CommentBase",
401
- "name": "CommentBase",
402
- "type": "class",
403
- "file": "app/schemas.py",
404
- "line": 80,
405
- "export": true
406
- },
407
- {
408
- "id": "app/schemas.py#CommentCreate",
409
- "name": "CommentCreate",
410
- "type": "class",
411
- "file": "app/schemas.py",
412
- "line": 84,
413
- "export": true
414
- },
415
- {
416
- "id": "app/schemas.py#CommentUpdate",
417
- "name": "CommentUpdate",
418
- "type": "class",
419
- "file": "app/schemas.py",
420
- "line": 88,
421
- "export": true
422
- },
423
- {
424
- "id": "app/schemas.py#Comment",
425
- "name": "Comment",
426
- "type": "class",
427
- "file": "app/schemas.py",
428
- "line": 92,
429
- "export": true
430
- },
431
- {
432
- "id": "app/schemas.py#PostBase",
433
- "name": "PostBase",
434
- "type": "class",
435
- "file": "app/schemas.py",
436
- "line": 107,
437
- "export": true
438
- },
439
- {
440
- "id": "app/schemas.py#PostCreate",
441
- "name": "PostCreate",
442
- "type": "class",
443
- "file": "app/schemas.py",
444
- "line": 113,
445
- "export": true
446
- },
447
- {
448
- "id": "app/schemas.py#PostUpdate",
449
- "name": "PostUpdate",
450
- "type": "class",
451
- "file": "app/schemas.py",
452
- "line": 119,
453
- "export": true
454
- },
455
- {
456
- "id": "app/schemas.py#Post",
457
- "name": "Post",
458
- "type": "class",
459
- "file": "app/schemas.py",
460
- "line": 128,
461
- "export": true
462
- },
463
- {
464
- "id": "app/schemas.py#PostList",
465
- "name": "PostList",
466
- "type": "class",
467
- "file": "app/schemas.py",
468
- "line": 145,
469
- "export": true
470
- },
471
- {
472
- "id": "app/schemas.py#Token",
473
- "name": "Token",
474
- "type": "class",
475
- "file": "app/schemas.py",
476
- "line": 163,
477
- "export": true
478
- },
479
- {
480
- "id": "app/schemas.py#TokenData",
481
- "name": "TokenData",
482
- "type": "class",
483
- "file": "app/schemas.py",
484
- "line": 168,
485
- "export": true
486
- },
487
- {
488
- "id": "app/schemas.py#LoginRequest",
489
- "name": "LoginRequest",
490
- "type": "class",
491
- "file": "app/schemas.py",
492
- "line": 172,
493
- "export": true
494
- },
495
- {
496
- "id": "app/schemas.py#PaginatedResponse",
497
- "name": "PaginatedResponse",
498
- "type": "class",
499
- "file": "app/schemas.py",
500
- "line": 178,
501
- "export": true
502
- },
503
- {
504
- "id": "app/schemas.py#PostFilter",
505
- "name": "PostFilter",
506
- "type": "class",
507
- "file": "app/schemas.py",
508
- "line": 186,
509
- "export": true
510
- }
511
- ],
512
- "relationships": [
513
- {
514
- "symbolId": "app/dependencies.py#SECRET_KEY",
515
- "targetId": "app/database.py#get_db",
516
- "type": "imports"
517
- },
518
- {
519
- "symbolId": "app/dependencies.py#ALGORITHM",
520
- "targetId": "app/database.py#get_db",
521
- "type": "imports"
522
- },
523
- {
524
- "symbolId": "app/dependencies.py#ACCESS_TOKEN_EXPIRE_MINUTES",
525
- "targetId": "app/database.py#get_db",
526
- "type": "imports"
527
- },
528
- {
529
- "symbolId": "app/dependencies.py#verify_password",
530
- "targetId": "app/database.py#get_db",
531
- "type": "imports"
532
- },
533
- {
534
- "symbolId": "app/dependencies.py#get_password_hash",
535
- "targetId": "app/database.py#get_db",
536
- "type": "imports"
537
- },
538
- {
539
- "symbolId": "app/dependencies.py#get_user",
540
- "targetId": "app/database.py#get_db",
541
- "type": "imports"
542
- },
543
- {
544
- "symbolId": "app/dependencies.py#get_user_by_email",
545
- "targetId": "app/database.py#get_db",
546
- "type": "imports"
547
- },
548
- {
549
- "symbolId": "app/dependencies.py#authenticate_user",
550
- "targetId": "app/database.py#get_db",
551
- "type": "imports"
552
- },
553
- {
554
- "symbolId": "app/dependencies.py#create_access_token",
555
- "targetId": "app/database.py#get_db",
556
- "type": "imports"
557
- },
558
- {
559
- "symbolId": "app/main.py#read_root",
560
- "targetId": "app/database.py#get_db",
561
- "type": "imports"
562
- },
563
- {
564
- "symbolId": "app/main.py#health_check",
565
- "targetId": "app/database.py#get_db",
566
- "type": "imports"
567
- },
568
- {
569
- "symbolId": "app/models.py#User",
570
- "targetId": "app/database.py#get_db",
571
- "type": "imports"
572
- },
573
- {
574
- "symbolId": "app/models.py#__repr__",
575
- "targetId": "app/database.py#get_db",
576
- "type": "imports"
577
- },
578
- {
579
- "symbolId": "app/models.py#Post",
580
- "targetId": "app/database.py#get_db",
581
- "type": "imports"
582
- },
583
- {
584
- "symbolId": "app/models.py#__repr__",
585
- "targetId": "app/database.py#get_db",
586
- "type": "imports"
587
- },
588
- {
589
- "symbolId": "app/models.py#publish",
590
- "targetId": "app/database.py#get_db",
591
- "type": "imports"
592
- },
593
- {
594
- "symbolId": "app/models.py#unpublish",
595
- "targetId": "app/database.py#get_db",
596
- "type": "imports"
597
- },
598
- {
599
- "symbolId": "app/models.py#Comment",
600
- "targetId": "app/database.py#get_db",
601
- "type": "imports"
602
- },
603
- {
604
- "symbolId": "app/models.py#__repr__",
605
- "targetId": "app/database.py#get_db",
606
- "type": "imports"
607
- },
608
- {
609
- "symbolId": "app/models.py#Category",
610
- "targetId": "app/database.py#get_db",
611
- "type": "imports"
612
- },
613
- {
614
- "symbolId": "app/models.py#__repr__",
615
- "targetId": "app/database.py#get_db",
616
- "type": "imports"
617
- },
618
- {
619
- "symbolId": "app/models.py#Tag",
620
- "targetId": "app/database.py#get_db",
621
- "type": "imports"
622
- },
623
- {
624
- "symbolId": "app/models.py#__repr__",
625
- "targetId": "app/database.py#get_db",
626
- "type": "imports"
627
- },
628
- {
629
- "symbolId": "app/routers/auth.py#register",
630
- "targetId": "app/database.py#get_db",
631
- "type": "imports"
632
- },
633
- {
634
- "symbolId": "app/routers/auth.py#login",
635
- "targetId": "app/database.py#get_db",
636
- "type": "imports"
637
- },
638
- {
639
- "symbolId": "app/routers/auth.py#read_users_me",
640
- "targetId": "app/database.py#get_db",
641
- "type": "imports"
642
- },
643
- {
644
- "symbolId": "app/routers/auth.py#update_user_me",
645
- "targetId": "app/database.py#get_db",
646
- "type": "imports"
647
- },
648
- {
649
- "symbolId": "app/routers/auth.py#change_password",
650
- "targetId": "app/database.py#get_db",
651
- "type": "imports"
652
- },
653
- {
654
- "symbolId": "app/routers/auth.py#register",
655
- "targetId": "app/dependencies.py#verify_password",
656
- "type": "imports"
657
- },
658
- {
659
- "symbolId": "app/routers/auth.py#login",
660
- "targetId": "app/dependencies.py#verify_password",
661
- "type": "imports"
662
- },
663
- {
664
- "symbolId": "app/routers/auth.py#read_users_me",
665
- "targetId": "app/dependencies.py#verify_password",
666
- "type": "imports"
667
- },
668
- {
669
- "symbolId": "app/routers/auth.py#update_user_me",
670
- "targetId": "app/dependencies.py#verify_password",
671
- "type": "imports"
672
- },
673
- {
674
- "symbolId": "app/routers/auth.py#change_password",
675
- "targetId": "app/dependencies.py#verify_password",
676
- "type": "imports"
677
- },
678
- {
679
- "symbolId": "app/routers/posts.py#generate_slug",
680
- "targetId": "app/database.py#get_db",
681
- "type": "imports"
682
- },
683
- {
684
- "symbolId": "app/routers/posts.py#list_posts",
685
- "targetId": "app/database.py#get_db",
686
- "type": "imports"
687
- },
688
- {
689
- "symbolId": "app/routers/posts.py#create_post",
690
- "targetId": "app/database.py#get_db",
691
- "type": "imports"
692
- },
693
- {
694
- "symbolId": "app/routers/posts.py#get_post",
695
- "targetId": "app/database.py#get_db",
696
- "type": "imports"
697
- },
698
- {
699
- "symbolId": "app/routers/posts.py#update_post",
700
- "targetId": "app/database.py#get_db",
701
- "type": "imports"
702
- },
703
- {
704
- "symbolId": "app/routers/posts.py#delete_post",
705
- "targetId": "app/database.py#get_db",
706
- "type": "imports"
707
- },
708
- {
709
- "symbolId": "app/routers/posts.py#publish_post",
710
- "targetId": "app/database.py#get_db",
711
- "type": "imports"
712
- },
713
- {
714
- "symbolId": "app/routers/posts.py#get_my_posts",
715
- "targetId": "app/database.py#get_db",
716
- "type": "imports"
717
- },
718
- {
719
- "symbolId": "app/routers/posts.py#generate_slug",
720
- "targetId": "app/dependencies.py#verify_password",
721
- "type": "imports"
722
- },
723
- {
724
- "symbolId": "app/routers/posts.py#list_posts",
725
- "targetId": "app/dependencies.py#verify_password",
726
- "type": "imports"
727
- },
728
- {
729
- "symbolId": "app/routers/posts.py#create_post",
730
- "targetId": "app/dependencies.py#verify_password",
731
- "type": "imports"
732
- },
733
- {
734
- "symbolId": "app/routers/posts.py#get_post",
735
- "targetId": "app/dependencies.py#verify_password",
736
- "type": "imports"
737
- },
738
- {
739
- "symbolId": "app/routers/posts.py#update_post",
740
- "targetId": "app/dependencies.py#verify_password",
741
- "type": "imports"
742
- },
743
- {
744
- "symbolId": "app/routers/posts.py#delete_post",
745
- "targetId": "app/dependencies.py#verify_password",
746
- "type": "imports"
747
- },
748
- {
749
- "symbolId": "app/routers/posts.py#publish_post",
750
- "targetId": "app/dependencies.py#verify_password",
751
- "type": "imports"
752
- },
753
- {
754
- "symbolId": "app/routers/posts.py#get_my_posts",
755
- "targetId": "app/dependencies.py#verify_password",
756
- "type": "imports"
757
- },
758
- {
759
- "symbolId": "app/database.py#get_db",
760
- "targetId": "app/database.py#get_db",
761
- "type": "exports"
762
- },
763
- {
764
- "symbolId": "app/dependencies.py#verify_password",
765
- "targetId": "app/dependencies.py#verify_password",
766
- "type": "exports"
767
- },
768
- {
769
- "symbolId": "app/dependencies.py#get_password_hash",
770
- "targetId": "app/dependencies.py#get_password_hash",
771
- "type": "exports"
772
- },
773
- {
774
- "symbolId": "app/dependencies.py#get_user",
775
- "targetId": "app/dependencies.py#get_user",
776
- "type": "exports"
777
- },
778
- {
779
- "symbolId": "app/dependencies.py#get_user_by_email",
780
- "targetId": "app/dependencies.py#get_user_by_email",
781
- "type": "exports"
782
- },
783
- {
784
- "symbolId": "app/dependencies.py#authenticate_user",
785
- "targetId": "app/dependencies.py#authenticate_user",
786
- "type": "exports"
787
- },
788
- {
789
- "symbolId": "app/dependencies.py#create_access_token",
790
- "targetId": "app/dependencies.py#create_access_token",
791
- "type": "exports"
792
- },
793
- {
794
- "symbolId": "app/main.py#read_root",
795
- "targetId": "app/main.py#read_root",
796
- "type": "exports"
797
- },
798
- {
799
- "symbolId": "app/main.py#health_check",
800
- "targetId": "app/main.py#health_check",
801
- "type": "exports"
802
- },
803
- {
804
- "symbolId": "app/models.py#User",
805
- "targetId": "app/models.py#User",
806
- "type": "exports"
807
- },
808
- {
809
- "symbolId": "app/models.py#__repr__",
810
- "targetId": "app/models.py#__repr__",
811
- "type": "exports"
812
- },
813
- {
814
- "symbolId": "app/models.py#Post",
815
- "targetId": "app/models.py#Post",
816
- "type": "exports"
817
- },
818
- {
819
- "symbolId": "app/models.py#__repr__",
820
- "targetId": "app/models.py#__repr__",
821
- "type": "exports"
822
- },
823
- {
824
- "symbolId": "app/models.py#publish",
825
- "targetId": "app/models.py#publish",
826
- "type": "exports"
827
- },
828
- {
829
- "symbolId": "app/models.py#unpublish",
830
- "targetId": "app/models.py#unpublish",
831
- "type": "exports"
832
- },
833
- {
834
- "symbolId": "app/models.py#Comment",
835
- "targetId": "app/models.py#Comment",
836
- "type": "exports"
837
- },
838
- {
839
- "symbolId": "app/models.py#__repr__",
840
- "targetId": "app/models.py#__repr__",
841
- "type": "exports"
842
- },
843
- {
844
- "symbolId": "app/models.py#Category",
845
- "targetId": "app/models.py#Category",
846
- "type": "exports"
847
- },
848
- {
849
- "symbolId": "app/models.py#__repr__",
850
- "targetId": "app/models.py#__repr__",
851
- "type": "exports"
852
- },
853
- {
854
- "symbolId": "app/models.py#Tag",
855
- "targetId": "app/models.py#Tag",
856
- "type": "exports"
857
- },
858
- {
859
- "symbolId": "app/models.py#__repr__",
860
- "targetId": "app/models.py#__repr__",
861
- "type": "exports"
862
- },
863
- {
864
- "symbolId": "app/routers/auth.py#register",
865
- "targetId": "app/routers/auth.py#register",
866
- "type": "exports"
867
- },
868
- {
869
- "symbolId": "app/routers/auth.py#login",
870
- "targetId": "app/routers/auth.py#login",
871
- "type": "exports"
872
- },
873
- {
874
- "symbolId": "app/routers/auth.py#read_users_me",
875
- "targetId": "app/routers/auth.py#read_users_me",
876
- "type": "exports"
877
- },
878
- {
879
- "symbolId": "app/routers/auth.py#update_user_me",
880
- "targetId": "app/routers/auth.py#update_user_me",
881
- "type": "exports"
882
- },
883
- {
884
- "symbolId": "app/routers/auth.py#change_password",
885
- "targetId": "app/routers/auth.py#change_password",
886
- "type": "exports"
887
- },
888
- {
889
- "symbolId": "app/routers/posts.py#generate_slug",
890
- "targetId": "app/routers/posts.py#generate_slug",
891
- "type": "exports"
892
- },
893
- {
894
- "symbolId": "app/routers/posts.py#list_posts",
895
- "targetId": "app/routers/posts.py#list_posts",
896
- "type": "exports"
897
- },
898
- {
899
- "symbolId": "app/routers/posts.py#create_post",
900
- "targetId": "app/routers/posts.py#create_post",
901
- "type": "exports"
902
- },
903
- {
904
- "symbolId": "app/routers/posts.py#get_post",
905
- "targetId": "app/routers/posts.py#get_post",
906
- "type": "exports"
907
- },
908
- {
909
- "symbolId": "app/routers/posts.py#update_post",
910
- "targetId": "app/routers/posts.py#update_post",
911
- "type": "exports"
912
- },
913
- {
914
- "symbolId": "app/routers/posts.py#delete_post",
915
- "targetId": "app/routers/posts.py#delete_post",
916
- "type": "exports"
917
- },
918
- {
919
- "symbolId": "app/routers/posts.py#publish_post",
920
- "targetId": "app/routers/posts.py#publish_post",
921
- "type": "exports"
922
- },
923
- {
924
- "symbolId": "app/routers/posts.py#get_my_posts",
925
- "targetId": "app/routers/posts.py#get_my_posts",
926
- "type": "exports"
927
- },
928
- {
929
- "symbolId": "app/schemas.py#UserBase",
930
- "targetId": "app/schemas.py#UserBase",
931
- "type": "exports"
932
- },
933
- {
934
- "symbolId": "app/schemas.py#UserCreate",
935
- "targetId": "app/schemas.py#UserCreate",
936
- "type": "exports"
937
- },
938
- {
939
- "symbolId": "app/schemas.py#UserUpdate",
940
- "targetId": "app/schemas.py#UserUpdate",
941
- "type": "exports"
942
- },
943
- {
944
- "symbolId": "app/schemas.py#User",
945
- "targetId": "app/schemas.py#User",
946
- "type": "exports"
947
- },
948
- {
949
- "symbolId": "app/schemas.py#UserInDB",
950
- "targetId": "app/schemas.py#UserInDB",
951
- "type": "exports"
952
- },
953
- {
954
- "symbolId": "app/schemas.py#CategoryBase",
955
- "targetId": "app/schemas.py#CategoryBase",
956
- "type": "exports"
957
- },
958
- {
959
- "symbolId": "app/schemas.py#CategoryCreate",
960
- "targetId": "app/schemas.py#CategoryCreate",
961
- "type": "exports"
962
- },
963
- {
964
- "symbolId": "app/schemas.py#CategoryUpdate",
965
- "targetId": "app/schemas.py#CategoryUpdate",
966
- "type": "exports"
967
- },
968
- {
969
- "symbolId": "app/schemas.py#Category",
970
- "targetId": "app/schemas.py#Category",
971
- "type": "exports"
972
- },
973
- {
974
- "symbolId": "app/schemas.py#TagBase",
975
- "targetId": "app/schemas.py#TagBase",
976
- "type": "exports"
977
- },
978
- {
979
- "symbolId": "app/schemas.py#TagCreate",
980
- "targetId": "app/schemas.py#TagCreate",
981
- "type": "exports"
982
- },
983
- {
984
- "symbolId": "app/schemas.py#Tag",
985
- "targetId": "app/schemas.py#Tag",
986
- "type": "exports"
987
- },
988
- {
989
- "symbolId": "app/schemas.py#CommentBase",
990
- "targetId": "app/schemas.py#CommentBase",
991
- "type": "exports"
992
- },
993
- {
994
- "symbolId": "app/schemas.py#CommentCreate",
995
- "targetId": "app/schemas.py#CommentCreate",
996
- "type": "exports"
997
- },
998
- {
999
- "symbolId": "app/schemas.py#CommentUpdate",
1000
- "targetId": "app/schemas.py#CommentUpdate",
1001
- "type": "exports"
1002
- },
1003
- {
1004
- "symbolId": "app/schemas.py#Comment",
1005
- "targetId": "app/schemas.py#Comment",
1006
- "type": "exports"
1007
- },
1008
- {
1009
- "symbolId": "app/schemas.py#PostBase",
1010
- "targetId": "app/schemas.py#PostBase",
1011
- "type": "exports"
1012
- },
1013
- {
1014
- "symbolId": "app/schemas.py#PostCreate",
1015
- "targetId": "app/schemas.py#PostCreate",
1016
- "type": "exports"
1017
- },
1018
- {
1019
- "symbolId": "app/schemas.py#PostUpdate",
1020
- "targetId": "app/schemas.py#PostUpdate",
1021
- "type": "exports"
1022
- },
1023
- {
1024
- "symbolId": "app/schemas.py#Post",
1025
- "targetId": "app/schemas.py#Post",
1026
- "type": "exports"
1027
- },
1028
- {
1029
- "symbolId": "app/schemas.py#PostList",
1030
- "targetId": "app/schemas.py#PostList",
1031
- "type": "exports"
1032
- },
1033
- {
1034
- "symbolId": "app/schemas.py#Token",
1035
- "targetId": "app/schemas.py#Token",
1036
- "type": "exports"
1037
- },
1038
- {
1039
- "symbolId": "app/schemas.py#TokenData",
1040
- "targetId": "app/schemas.py#TokenData",
1041
- "type": "exports"
1042
- },
1043
- {
1044
- "symbolId": "app/schemas.py#LoginRequest",
1045
- "targetId": "app/schemas.py#LoginRequest",
1046
- "type": "exports"
1047
- },
1048
- {
1049
- "symbolId": "app/schemas.py#PaginatedResponse",
1050
- "targetId": "app/schemas.py#PaginatedResponse",
1051
- "type": "exports"
1052
- },
1053
- {
1054
- "symbolId": "app/schemas.py#PostFilter",
1055
- "targetId": "app/schemas.py#PostFilter",
1056
- "type": "exports"
1057
- }
1058
- ],
1059
- "bySymbol": {
1060
- "app/dependencies.py#SECRET_KEY": [
1061
- {
1062
- "symbolId": "app/dependencies.py#SECRET_KEY",
1063
- "targetId": "app/database.py#get_db",
1064
- "type": "imports"
1065
- }
1066
- ],
1067
- "app/dependencies.py#ALGORITHM": [
1068
- {
1069
- "symbolId": "app/dependencies.py#ALGORITHM",
1070
- "targetId": "app/database.py#get_db",
1071
- "type": "imports"
1072
- }
1073
- ],
1074
- "app/dependencies.py#ACCESS_TOKEN_EXPIRE_MINUTES": [
1075
- {
1076
- "symbolId": "app/dependencies.py#ACCESS_TOKEN_EXPIRE_MINUTES",
1077
- "targetId": "app/database.py#get_db",
1078
- "type": "imports"
1079
- }
1080
- ],
1081
- "app/dependencies.py#verify_password": [
1082
- {
1083
- "symbolId": "app/dependencies.py#verify_password",
1084
- "targetId": "app/database.py#get_db",
1085
- "type": "imports"
1086
- },
1087
- {
1088
- "symbolId": "app/dependencies.py#verify_password",
1089
- "targetId": "app/dependencies.py#verify_password",
1090
- "type": "exports"
1091
- }
1092
- ],
1093
- "app/dependencies.py#get_password_hash": [
1094
- {
1095
- "symbolId": "app/dependencies.py#get_password_hash",
1096
- "targetId": "app/database.py#get_db",
1097
- "type": "imports"
1098
- },
1099
- {
1100
- "symbolId": "app/dependencies.py#get_password_hash",
1101
- "targetId": "app/dependencies.py#get_password_hash",
1102
- "type": "exports"
1103
- }
1104
- ],
1105
- "app/dependencies.py#get_user": [
1106
- {
1107
- "symbolId": "app/dependencies.py#get_user",
1108
- "targetId": "app/database.py#get_db",
1109
- "type": "imports"
1110
- },
1111
- {
1112
- "symbolId": "app/dependencies.py#get_user",
1113
- "targetId": "app/dependencies.py#get_user",
1114
- "type": "exports"
1115
- }
1116
- ],
1117
- "app/dependencies.py#get_user_by_email": [
1118
- {
1119
- "symbolId": "app/dependencies.py#get_user_by_email",
1120
- "targetId": "app/database.py#get_db",
1121
- "type": "imports"
1122
- },
1123
- {
1124
- "symbolId": "app/dependencies.py#get_user_by_email",
1125
- "targetId": "app/dependencies.py#get_user_by_email",
1126
- "type": "exports"
1127
- }
1128
- ],
1129
- "app/dependencies.py#authenticate_user": [
1130
- {
1131
- "symbolId": "app/dependencies.py#authenticate_user",
1132
- "targetId": "app/database.py#get_db",
1133
- "type": "imports"
1134
- },
1135
- {
1136
- "symbolId": "app/dependencies.py#authenticate_user",
1137
- "targetId": "app/dependencies.py#authenticate_user",
1138
- "type": "exports"
1139
- }
1140
- ],
1141
- "app/dependencies.py#create_access_token": [
1142
- {
1143
- "symbolId": "app/dependencies.py#create_access_token",
1144
- "targetId": "app/database.py#get_db",
1145
- "type": "imports"
1146
- },
1147
- {
1148
- "symbolId": "app/dependencies.py#create_access_token",
1149
- "targetId": "app/dependencies.py#create_access_token",
1150
- "type": "exports"
1151
- }
1152
- ],
1153
- "app/main.py#read_root": [
1154
- {
1155
- "symbolId": "app/main.py#read_root",
1156
- "targetId": "app/database.py#get_db",
1157
- "type": "imports"
1158
- },
1159
- {
1160
- "symbolId": "app/main.py#read_root",
1161
- "targetId": "app/main.py#read_root",
1162
- "type": "exports"
1163
- }
1164
- ],
1165
- "app/main.py#health_check": [
1166
- {
1167
- "symbolId": "app/main.py#health_check",
1168
- "targetId": "app/database.py#get_db",
1169
- "type": "imports"
1170
- },
1171
- {
1172
- "symbolId": "app/main.py#health_check",
1173
- "targetId": "app/main.py#health_check",
1174
- "type": "exports"
1175
- }
1176
- ],
1177
- "app/models.py#User": [
1178
- {
1179
- "symbolId": "app/models.py#User",
1180
- "targetId": "app/database.py#get_db",
1181
- "type": "imports"
1182
- },
1183
- {
1184
- "symbolId": "app/models.py#User",
1185
- "targetId": "app/models.py#User",
1186
- "type": "exports"
1187
- }
1188
- ],
1189
- "app/models.py#__repr__": [
1190
- {
1191
- "symbolId": "app/models.py#__repr__",
1192
- "targetId": "app/database.py#get_db",
1193
- "type": "imports"
1194
- },
1195
- {
1196
- "symbolId": "app/models.py#__repr__",
1197
- "targetId": "app/database.py#get_db",
1198
- "type": "imports"
1199
- },
1200
- {
1201
- "symbolId": "app/models.py#__repr__",
1202
- "targetId": "app/database.py#get_db",
1203
- "type": "imports"
1204
- },
1205
- {
1206
- "symbolId": "app/models.py#__repr__",
1207
- "targetId": "app/database.py#get_db",
1208
- "type": "imports"
1209
- },
1210
- {
1211
- "symbolId": "app/models.py#__repr__",
1212
- "targetId": "app/database.py#get_db",
1213
- "type": "imports"
1214
- },
1215
- {
1216
- "symbolId": "app/models.py#__repr__",
1217
- "targetId": "app/models.py#__repr__",
1218
- "type": "exports"
1219
- },
1220
- {
1221
- "symbolId": "app/models.py#__repr__",
1222
- "targetId": "app/models.py#__repr__",
1223
- "type": "exports"
1224
- },
1225
- {
1226
- "symbolId": "app/models.py#__repr__",
1227
- "targetId": "app/models.py#__repr__",
1228
- "type": "exports"
1229
- },
1230
- {
1231
- "symbolId": "app/models.py#__repr__",
1232
- "targetId": "app/models.py#__repr__",
1233
- "type": "exports"
1234
- },
1235
- {
1236
- "symbolId": "app/models.py#__repr__",
1237
- "targetId": "app/models.py#__repr__",
1238
- "type": "exports"
1239
- }
1240
- ],
1241
- "app/models.py#Post": [
1242
- {
1243
- "symbolId": "app/models.py#Post",
1244
- "targetId": "app/database.py#get_db",
1245
- "type": "imports"
1246
- },
1247
- {
1248
- "symbolId": "app/models.py#Post",
1249
- "targetId": "app/models.py#Post",
1250
- "type": "exports"
1251
- }
1252
- ],
1253
- "app/models.py#publish": [
1254
- {
1255
- "symbolId": "app/models.py#publish",
1256
- "targetId": "app/database.py#get_db",
1257
- "type": "imports"
1258
- },
1259
- {
1260
- "symbolId": "app/models.py#publish",
1261
- "targetId": "app/models.py#publish",
1262
- "type": "exports"
1263
- }
1264
- ],
1265
- "app/models.py#unpublish": [
1266
- {
1267
- "symbolId": "app/models.py#unpublish",
1268
- "targetId": "app/database.py#get_db",
1269
- "type": "imports"
1270
- },
1271
- {
1272
- "symbolId": "app/models.py#unpublish",
1273
- "targetId": "app/models.py#unpublish",
1274
- "type": "exports"
1275
- }
1276
- ],
1277
- "app/models.py#Comment": [
1278
- {
1279
- "symbolId": "app/models.py#Comment",
1280
- "targetId": "app/database.py#get_db",
1281
- "type": "imports"
1282
- },
1283
- {
1284
- "symbolId": "app/models.py#Comment",
1285
- "targetId": "app/models.py#Comment",
1286
- "type": "exports"
1287
- }
1288
- ],
1289
- "app/models.py#Category": [
1290
- {
1291
- "symbolId": "app/models.py#Category",
1292
- "targetId": "app/database.py#get_db",
1293
- "type": "imports"
1294
- },
1295
- {
1296
- "symbolId": "app/models.py#Category",
1297
- "targetId": "app/models.py#Category",
1298
- "type": "exports"
1299
- }
1300
- ],
1301
- "app/models.py#Tag": [
1302
- {
1303
- "symbolId": "app/models.py#Tag",
1304
- "targetId": "app/database.py#get_db",
1305
- "type": "imports"
1306
- },
1307
- {
1308
- "symbolId": "app/models.py#Tag",
1309
- "targetId": "app/models.py#Tag",
1310
- "type": "exports"
1311
- }
1312
- ],
1313
- "app/routers/auth.py#register": [
1314
- {
1315
- "symbolId": "app/routers/auth.py#register",
1316
- "targetId": "app/database.py#get_db",
1317
- "type": "imports"
1318
- },
1319
- {
1320
- "symbolId": "app/routers/auth.py#register",
1321
- "targetId": "app/dependencies.py#verify_password",
1322
- "type": "imports"
1323
- },
1324
- {
1325
- "symbolId": "app/routers/auth.py#register",
1326
- "targetId": "app/routers/auth.py#register",
1327
- "type": "exports"
1328
- }
1329
- ],
1330
- "app/routers/auth.py#login": [
1331
- {
1332
- "symbolId": "app/routers/auth.py#login",
1333
- "targetId": "app/database.py#get_db",
1334
- "type": "imports"
1335
- },
1336
- {
1337
- "symbolId": "app/routers/auth.py#login",
1338
- "targetId": "app/dependencies.py#verify_password",
1339
- "type": "imports"
1340
- },
1341
- {
1342
- "symbolId": "app/routers/auth.py#login",
1343
- "targetId": "app/routers/auth.py#login",
1344
- "type": "exports"
1345
- }
1346
- ],
1347
- "app/routers/auth.py#read_users_me": [
1348
- {
1349
- "symbolId": "app/routers/auth.py#read_users_me",
1350
- "targetId": "app/database.py#get_db",
1351
- "type": "imports"
1352
- },
1353
- {
1354
- "symbolId": "app/routers/auth.py#read_users_me",
1355
- "targetId": "app/dependencies.py#verify_password",
1356
- "type": "imports"
1357
- },
1358
- {
1359
- "symbolId": "app/routers/auth.py#read_users_me",
1360
- "targetId": "app/routers/auth.py#read_users_me",
1361
- "type": "exports"
1362
- }
1363
- ],
1364
- "app/routers/auth.py#update_user_me": [
1365
- {
1366
- "symbolId": "app/routers/auth.py#update_user_me",
1367
- "targetId": "app/database.py#get_db",
1368
- "type": "imports"
1369
- },
1370
- {
1371
- "symbolId": "app/routers/auth.py#update_user_me",
1372
- "targetId": "app/dependencies.py#verify_password",
1373
- "type": "imports"
1374
- },
1375
- {
1376
- "symbolId": "app/routers/auth.py#update_user_me",
1377
- "targetId": "app/routers/auth.py#update_user_me",
1378
- "type": "exports"
1379
- }
1380
- ],
1381
- "app/routers/auth.py#change_password": [
1382
- {
1383
- "symbolId": "app/routers/auth.py#change_password",
1384
- "targetId": "app/database.py#get_db",
1385
- "type": "imports"
1386
- },
1387
- {
1388
- "symbolId": "app/routers/auth.py#change_password",
1389
- "targetId": "app/dependencies.py#verify_password",
1390
- "type": "imports"
1391
- },
1392
- {
1393
- "symbolId": "app/routers/auth.py#change_password",
1394
- "targetId": "app/routers/auth.py#change_password",
1395
- "type": "exports"
1396
- }
1397
- ],
1398
- "app/routers/posts.py#generate_slug": [
1399
- {
1400
- "symbolId": "app/routers/posts.py#generate_slug",
1401
- "targetId": "app/database.py#get_db",
1402
- "type": "imports"
1403
- },
1404
- {
1405
- "symbolId": "app/routers/posts.py#generate_slug",
1406
- "targetId": "app/dependencies.py#verify_password",
1407
- "type": "imports"
1408
- },
1409
- {
1410
- "symbolId": "app/routers/posts.py#generate_slug",
1411
- "targetId": "app/routers/posts.py#generate_slug",
1412
- "type": "exports"
1413
- }
1414
- ],
1415
- "app/routers/posts.py#list_posts": [
1416
- {
1417
- "symbolId": "app/routers/posts.py#list_posts",
1418
- "targetId": "app/database.py#get_db",
1419
- "type": "imports"
1420
- },
1421
- {
1422
- "symbolId": "app/routers/posts.py#list_posts",
1423
- "targetId": "app/dependencies.py#verify_password",
1424
- "type": "imports"
1425
- },
1426
- {
1427
- "symbolId": "app/routers/posts.py#list_posts",
1428
- "targetId": "app/routers/posts.py#list_posts",
1429
- "type": "exports"
1430
- }
1431
- ],
1432
- "app/routers/posts.py#create_post": [
1433
- {
1434
- "symbolId": "app/routers/posts.py#create_post",
1435
- "targetId": "app/database.py#get_db",
1436
- "type": "imports"
1437
- },
1438
- {
1439
- "symbolId": "app/routers/posts.py#create_post",
1440
- "targetId": "app/dependencies.py#verify_password",
1441
- "type": "imports"
1442
- },
1443
- {
1444
- "symbolId": "app/routers/posts.py#create_post",
1445
- "targetId": "app/routers/posts.py#create_post",
1446
- "type": "exports"
1447
- }
1448
- ],
1449
- "app/routers/posts.py#get_post": [
1450
- {
1451
- "symbolId": "app/routers/posts.py#get_post",
1452
- "targetId": "app/database.py#get_db",
1453
- "type": "imports"
1454
- },
1455
- {
1456
- "symbolId": "app/routers/posts.py#get_post",
1457
- "targetId": "app/dependencies.py#verify_password",
1458
- "type": "imports"
1459
- },
1460
- {
1461
- "symbolId": "app/routers/posts.py#get_post",
1462
- "targetId": "app/routers/posts.py#get_post",
1463
- "type": "exports"
1464
- }
1465
- ],
1466
- "app/routers/posts.py#update_post": [
1467
- {
1468
- "symbolId": "app/routers/posts.py#update_post",
1469
- "targetId": "app/database.py#get_db",
1470
- "type": "imports"
1471
- },
1472
- {
1473
- "symbolId": "app/routers/posts.py#update_post",
1474
- "targetId": "app/dependencies.py#verify_password",
1475
- "type": "imports"
1476
- },
1477
- {
1478
- "symbolId": "app/routers/posts.py#update_post",
1479
- "targetId": "app/routers/posts.py#update_post",
1480
- "type": "exports"
1481
- }
1482
- ],
1483
- "app/routers/posts.py#delete_post": [
1484
- {
1485
- "symbolId": "app/routers/posts.py#delete_post",
1486
- "targetId": "app/database.py#get_db",
1487
- "type": "imports"
1488
- },
1489
- {
1490
- "symbolId": "app/routers/posts.py#delete_post",
1491
- "targetId": "app/dependencies.py#verify_password",
1492
- "type": "imports"
1493
- },
1494
- {
1495
- "symbolId": "app/routers/posts.py#delete_post",
1496
- "targetId": "app/routers/posts.py#delete_post",
1497
- "type": "exports"
1498
- }
1499
- ],
1500
- "app/routers/posts.py#publish_post": [
1501
- {
1502
- "symbolId": "app/routers/posts.py#publish_post",
1503
- "targetId": "app/database.py#get_db",
1504
- "type": "imports"
1505
- },
1506
- {
1507
- "symbolId": "app/routers/posts.py#publish_post",
1508
- "targetId": "app/dependencies.py#verify_password",
1509
- "type": "imports"
1510
- },
1511
- {
1512
- "symbolId": "app/routers/posts.py#publish_post",
1513
- "targetId": "app/routers/posts.py#publish_post",
1514
- "type": "exports"
1515
- }
1516
- ],
1517
- "app/routers/posts.py#get_my_posts": [
1518
- {
1519
- "symbolId": "app/routers/posts.py#get_my_posts",
1520
- "targetId": "app/database.py#get_db",
1521
- "type": "imports"
1522
- },
1523
- {
1524
- "symbolId": "app/routers/posts.py#get_my_posts",
1525
- "targetId": "app/dependencies.py#verify_password",
1526
- "type": "imports"
1527
- },
1528
- {
1529
- "symbolId": "app/routers/posts.py#get_my_posts",
1530
- "targetId": "app/routers/posts.py#get_my_posts",
1531
- "type": "exports"
1532
- }
1533
- ],
1534
- "app/database.py#get_db": [
1535
- {
1536
- "symbolId": "app/database.py#get_db",
1537
- "targetId": "app/database.py#get_db",
1538
- "type": "exports"
1539
- }
1540
- ],
1541
- "app/schemas.py#UserBase": [
1542
- {
1543
- "symbolId": "app/schemas.py#UserBase",
1544
- "targetId": "app/schemas.py#UserBase",
1545
- "type": "exports"
1546
- }
1547
- ],
1548
- "app/schemas.py#UserCreate": [
1549
- {
1550
- "symbolId": "app/schemas.py#UserCreate",
1551
- "targetId": "app/schemas.py#UserCreate",
1552
- "type": "exports"
1553
- }
1554
- ],
1555
- "app/schemas.py#UserUpdate": [
1556
- {
1557
- "symbolId": "app/schemas.py#UserUpdate",
1558
- "targetId": "app/schemas.py#UserUpdate",
1559
- "type": "exports"
1560
- }
1561
- ],
1562
- "app/schemas.py#User": [
1563
- {
1564
- "symbolId": "app/schemas.py#User",
1565
- "targetId": "app/schemas.py#User",
1566
- "type": "exports"
1567
- }
1568
- ],
1569
- "app/schemas.py#UserInDB": [
1570
- {
1571
- "symbolId": "app/schemas.py#UserInDB",
1572
- "targetId": "app/schemas.py#UserInDB",
1573
- "type": "exports"
1574
- }
1575
- ],
1576
- "app/schemas.py#CategoryBase": [
1577
- {
1578
- "symbolId": "app/schemas.py#CategoryBase",
1579
- "targetId": "app/schemas.py#CategoryBase",
1580
- "type": "exports"
1581
- }
1582
- ],
1583
- "app/schemas.py#CategoryCreate": [
1584
- {
1585
- "symbolId": "app/schemas.py#CategoryCreate",
1586
- "targetId": "app/schemas.py#CategoryCreate",
1587
- "type": "exports"
1588
- }
1589
- ],
1590
- "app/schemas.py#CategoryUpdate": [
1591
- {
1592
- "symbolId": "app/schemas.py#CategoryUpdate",
1593
- "targetId": "app/schemas.py#CategoryUpdate",
1594
- "type": "exports"
1595
- }
1596
- ],
1597
- "app/schemas.py#Category": [
1598
- {
1599
- "symbolId": "app/schemas.py#Category",
1600
- "targetId": "app/schemas.py#Category",
1601
- "type": "exports"
1602
- }
1603
- ],
1604
- "app/schemas.py#TagBase": [
1605
- {
1606
- "symbolId": "app/schemas.py#TagBase",
1607
- "targetId": "app/schemas.py#TagBase",
1608
- "type": "exports"
1609
- }
1610
- ],
1611
- "app/schemas.py#TagCreate": [
1612
- {
1613
- "symbolId": "app/schemas.py#TagCreate",
1614
- "targetId": "app/schemas.py#TagCreate",
1615
- "type": "exports"
1616
- }
1617
- ],
1618
- "app/schemas.py#Tag": [
1619
- {
1620
- "symbolId": "app/schemas.py#Tag",
1621
- "targetId": "app/schemas.py#Tag",
1622
- "type": "exports"
1623
- }
1624
- ],
1625
- "app/schemas.py#CommentBase": [
1626
- {
1627
- "symbolId": "app/schemas.py#CommentBase",
1628
- "targetId": "app/schemas.py#CommentBase",
1629
- "type": "exports"
1630
- }
1631
- ],
1632
- "app/schemas.py#CommentCreate": [
1633
- {
1634
- "symbolId": "app/schemas.py#CommentCreate",
1635
- "targetId": "app/schemas.py#CommentCreate",
1636
- "type": "exports"
1637
- }
1638
- ],
1639
- "app/schemas.py#CommentUpdate": [
1640
- {
1641
- "symbolId": "app/schemas.py#CommentUpdate",
1642
- "targetId": "app/schemas.py#CommentUpdate",
1643
- "type": "exports"
1644
- }
1645
- ],
1646
- "app/schemas.py#Comment": [
1647
- {
1648
- "symbolId": "app/schemas.py#Comment",
1649
- "targetId": "app/schemas.py#Comment",
1650
- "type": "exports"
1651
- }
1652
- ],
1653
- "app/schemas.py#PostBase": [
1654
- {
1655
- "symbolId": "app/schemas.py#PostBase",
1656
- "targetId": "app/schemas.py#PostBase",
1657
- "type": "exports"
1658
- }
1659
- ],
1660
- "app/schemas.py#PostCreate": [
1661
- {
1662
- "symbolId": "app/schemas.py#PostCreate",
1663
- "targetId": "app/schemas.py#PostCreate",
1664
- "type": "exports"
1665
- }
1666
- ],
1667
- "app/schemas.py#PostUpdate": [
1668
- {
1669
- "symbolId": "app/schemas.py#PostUpdate",
1670
- "targetId": "app/schemas.py#PostUpdate",
1671
- "type": "exports"
1672
- }
1673
- ],
1674
- "app/schemas.py#Post": [
1675
- {
1676
- "symbolId": "app/schemas.py#Post",
1677
- "targetId": "app/schemas.py#Post",
1678
- "type": "exports"
1679
- }
1680
- ],
1681
- "app/schemas.py#PostList": [
1682
- {
1683
- "symbolId": "app/schemas.py#PostList",
1684
- "targetId": "app/schemas.py#PostList",
1685
- "type": "exports"
1686
- }
1687
- ],
1688
- "app/schemas.py#Token": [
1689
- {
1690
- "symbolId": "app/schemas.py#Token",
1691
- "targetId": "app/schemas.py#Token",
1692
- "type": "exports"
1693
- }
1694
- ],
1695
- "app/schemas.py#TokenData": [
1696
- {
1697
- "symbolId": "app/schemas.py#TokenData",
1698
- "targetId": "app/schemas.py#TokenData",
1699
- "type": "exports"
1700
- }
1701
- ],
1702
- "app/schemas.py#LoginRequest": [
1703
- {
1704
- "symbolId": "app/schemas.py#LoginRequest",
1705
- "targetId": "app/schemas.py#LoginRequest",
1706
- "type": "exports"
1707
- }
1708
- ],
1709
- "app/schemas.py#PaginatedResponse": [
1710
- {
1711
- "symbolId": "app/schemas.py#PaginatedResponse",
1712
- "targetId": "app/schemas.py#PaginatedResponse",
1713
- "type": "exports"
1714
- }
1715
- ],
1716
- "app/schemas.py#PostFilter": [
1717
- {
1718
- "symbolId": "app/schemas.py#PostFilter",
1719
- "targetId": "app/schemas.py#PostFilter",
1720
- "type": "exports"
1721
- }
1722
- ]
1723
- }
1724
- }