ai-first-cli 1.1.2 → 1.1.5

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 (264) hide show
  1. package/ANALISIS_MEJORAS.md +327 -0
  2. package/BUGS.md +455 -0
  3. package/CHANGELOG.md +100 -225
  4. package/TEST_RESULTS.md +198 -0
  5. package/TEST_RESULTS_COMPARATIVE.md +159 -0
  6. package/TEST_RESULTS_COMPLETE.md +127 -0
  7. package/TEST_RESULTS_COMPREHENSIVE.md +208 -0
  8. package/ai/ai_context.md +17 -10
  9. package/ai/ai_rules.md +5 -3
  10. package/ai/architecture.md +28 -7
  11. package/ai/cache.json +832 -52
  12. package/ai/context/features/commands.json +18 -0
  13. package/ai/context/features/src.json +61 -0
  14. package/ai/context/features/test-projects.json +56 -0
  15. package/ai/context/flows/account.json +9 -0
  16. package/ai/context/flows/add_.json +9 -0
  17. package/ai/context/flows/ai-first.json +9 -0
  18. package/ai/context/flows/auth..json +10 -0
  19. package/ai/context/flows/auth.json +12 -0
  20. package/ai/context/flows/dashboard.json +9 -0
  21. package/ai/context/flows/doctor.json +9 -0
  22. package/ai/context/flows/explore.json +9 -0
  23. package/ai/context/flows/list_.json +9 -0
  24. package/ai/context/flows/login.json +9 -0
  25. package/ai/context/flows/opportunity.json +9 -0
  26. package/ai/context/flows/remove_.json +9 -0
  27. package/ai/context/flows/user.json +14 -0
  28. package/ai/context/flows/users..json +10 -0
  29. package/ai/context/flows/users.json +9 -0
  30. package/ai/conventions.md +3 -2
  31. package/ai/dependencies.json +429 -251
  32. package/ai/entrypoints.md +10 -0
  33. package/ai/files.json +822 -46
  34. package/ai/git/commit-activity.json +126 -39
  35. package/ai/git/recent-features.json +3 -1
  36. package/ai/git/recent-files.json +6 -6
  37. package/ai/git/recent-flows.json +3 -1
  38. package/ai/graph/knowledge-graph.json +954 -182
  39. package/ai/graph/module-graph.json +270 -0
  40. package/ai/graph/symbol-graph.json +48991 -16523
  41. package/ai/graph/symbol-references.json +953 -56
  42. package/ai/hierarchy.json +3 -24
  43. package/ai/index-state.json +1261 -253
  44. package/ai/index.db +0 -0
  45. package/ai/modules.json +226 -0
  46. package/ai/project.json +29 -0
  47. package/ai/repo-map.json +2284 -250
  48. package/ai/repo_map.json +2731 -231
  49. package/ai/repo_map.md +559 -2
  50. package/ai/schema.json +5 -0
  51. package/ai/summary.md +16 -7
  52. package/ai/tech_stack.md +4 -1
  53. package/ai/tools.json +10 -0
  54. package/dist/analyzers/dependencies.d.ts.map +1 -1
  55. package/dist/analyzers/dependencies.js +8 -16
  56. package/dist/analyzers/dependencies.js.map +1 -1
  57. package/dist/analyzers/symbols.d.ts.map +1 -1
  58. package/dist/analyzers/symbols.js +60 -0
  59. package/dist/analyzers/symbols.js.map +1 -1
  60. package/dist/commands/ai-first.d.ts +1 -0
  61. package/dist/commands/ai-first.d.ts.map +1 -1
  62. package/dist/commands/ai-first.js +29 -6
  63. package/dist/commands/ai-first.js.map +1 -1
  64. package/dist/core/semanticContexts.d.ts.map +1 -1
  65. package/dist/core/semanticContexts.js +48 -26
  66. package/dist/core/semanticContexts.js.map +1 -1
  67. package/dist/core/symbolGraph.d.ts.map +1 -1
  68. package/dist/core/symbolGraph.js +14 -2
  69. package/dist/core/symbolGraph.js.map +1 -1
  70. package/dist/utils/fileUtils.d.ts.map +1 -1
  71. package/dist/utils/fileUtils.js +5 -0
  72. package/dist/utils/fileUtils.js.map +1 -1
  73. package/package.json +2 -2
  74. package/src/analyzers/dependencies.ts +10 -20
  75. package/src/analyzers/symbols.ts +64 -0
  76. package/src/commands/ai-first.ts +32 -8
  77. package/src/core/semanticContexts.ts +54 -29
  78. package/src/core/symbolGraph.ts +16 -2
  79. package/src/utils/fileUtils.ts +5 -0
  80. package/test-projects/express-api/ai/ai_context.md +112 -0
  81. package/test-projects/express-api/ai/ai_rules.md +50 -0
  82. package/test-projects/express-api/ai/architecture.md +62 -0
  83. package/test-projects/express-api/ai/cache.json +125 -0
  84. package/test-projects/express-api/ai/context/features/controllers.json +13 -0
  85. package/test-projects/express-api/ai/context/features/services.json +13 -0
  86. package/test-projects/express-api/ai/context/flows/auth.json +12 -0
  87. package/test-projects/express-api/ai/context/flows/user.json +13 -0
  88. package/test-projects/express-api/ai/conventions.md +51 -0
  89. package/test-projects/express-api/ai/dependencies.json +54 -0
  90. package/test-projects/express-api/ai/entrypoints.md +17 -0
  91. package/test-projects/express-api/ai/files.json +169 -0
  92. package/test-projects/express-api/ai/graph/knowledge-graph.json +98 -0
  93. package/test-projects/express-api/ai/graph/module-graph.json +44 -0
  94. package/test-projects/express-api/ai/graph/symbol-graph.json +882 -0
  95. package/test-projects/express-api/ai/graph/symbol-references.json +51 -0
  96. package/test-projects/express-api/ai/index-state.json +238 -0
  97. package/test-projects/express-api/ai/index.db +0 -0
  98. package/test-projects/express-api/ai/modules.json +30 -0
  99. package/test-projects/express-api/ai/project.json +15 -0
  100. package/test-projects/express-api/ai/repo-map.json +291 -0
  101. package/test-projects/express-api/ai/repo_map.json +100 -0
  102. package/test-projects/express-api/ai/repo_map.md +36 -0
  103. package/test-projects/express-api/ai/schema.json +5 -0
  104. package/test-projects/express-api/ai/summary.md +14 -0
  105. package/test-projects/express-api/ai/symbols.json +1174 -0
  106. package/test-projects/express-api/ai/tech_stack.md +38 -0
  107. package/test-projects/express-api/ai/tools.json +10 -0
  108. package/test-projects/express-api/controllers/authController.js +32 -0
  109. package/test-projects/express-api/controllers/userController.js +51 -0
  110. package/test-projects/express-api/index.js +21 -0
  111. package/test-projects/express-api/middleware/authMiddleware.js +30 -0
  112. package/test-projects/express-api/models/userRepository.js +25 -0
  113. package/test-projects/express-api/package.json +18 -0
  114. package/test-projects/express-api/services/authService.js +17 -0
  115. package/test-projects/express-api/services/userService.js +28 -0
  116. package/test-projects/nestjs-backend/ai/ai_context.md +110 -0
  117. package/test-projects/nestjs-backend/ai/ai_rules.md +52 -0
  118. package/test-projects/nestjs-backend/ai/architecture.md +43 -0
  119. package/test-projects/nestjs-backend/ai/cache.json +137 -0
  120. package/test-projects/nestjs-backend/ai/context/features/src.json +23 -0
  121. package/test-projects/nestjs-backend/ai/context/flows/auth..json +10 -0
  122. package/test-projects/nestjs-backend/ai/context/flows/users..json +10 -0
  123. package/test-projects/nestjs-backend/ai/conventions.md +52 -0
  124. package/test-projects/nestjs-backend/ai/dependencies.json +152 -0
  125. package/test-projects/nestjs-backend/ai/entrypoints.md +18 -0
  126. package/test-projects/nestjs-backend/ai/files.json +184 -0
  127. package/test-projects/nestjs-backend/ai/graph/knowledge-graph.json +74 -0
  128. package/test-projects/nestjs-backend/ai/graph/module-graph.json +29 -0
  129. package/test-projects/nestjs-backend/ai/graph/symbol-graph.json +304 -0
  130. package/test-projects/nestjs-backend/ai/graph/symbol-references.json +5 -0
  131. package/test-projects/nestjs-backend/ai/index-state.json +259 -0
  132. package/test-projects/nestjs-backend/ai/index.db +0 -0
  133. package/test-projects/nestjs-backend/ai/modules.json +19 -0
  134. package/test-projects/nestjs-backend/ai/project.json +14 -0
  135. package/test-projects/nestjs-backend/ai/repo-map.json +323 -0
  136. package/test-projects/nestjs-backend/ai/repo_map.json +141 -0
  137. package/test-projects/nestjs-backend/ai/repo_map.md +39 -0
  138. package/test-projects/nestjs-backend/ai/schema.json +5 -0
  139. package/test-projects/nestjs-backend/ai/summary.md +11 -0
  140. package/test-projects/nestjs-backend/ai/symbols.json +527 -0
  141. package/test-projects/nestjs-backend/ai/tech_stack.md +37 -0
  142. package/test-projects/nestjs-backend/ai/tools.json +10 -0
  143. package/test-projects/nestjs-backend/package.json +22 -0
  144. package/test-projects/nestjs-backend/src/app.module.ts +8 -0
  145. package/test-projects/nestjs-backend/src/auth/auth.controller.ts +22 -0
  146. package/test-projects/nestjs-backend/src/auth/auth.module.ts +11 -0
  147. package/test-projects/nestjs-backend/src/auth/auth.service.ts +28 -0
  148. package/test-projects/nestjs-backend/src/auth/dto/login.dto.ts +4 -0
  149. package/test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts +18 -0
  150. package/test-projects/nestjs-backend/src/main.ts +9 -0
  151. package/test-projects/nestjs-backend/src/users/users.controller.ts +32 -0
  152. package/test-projects/nestjs-backend/src/users/users.module.ts +10 -0
  153. package/test-projects/nestjs-backend/src/users/users.service.ts +42 -0
  154. package/test-projects/nestjs-backend/tsconfig.json +21 -0
  155. package/test-projects/python-cli/__init__.py +1 -0
  156. package/test-projects/python-cli/ai/ai_context.md +94 -0
  157. package/test-projects/python-cli/ai/ai_rules.md +47 -0
  158. package/test-projects/python-cli/ai/architecture.md +49 -0
  159. package/test-projects/python-cli/ai/cache.json +129 -0
  160. package/test-projects/python-cli/ai/context/features/cli.json +16 -0
  161. package/test-projects/python-cli/ai/context/flows/add_.json +9 -0
  162. package/test-projects/python-cli/ai/context/flows/list_.json +9 -0
  163. package/test-projects/python-cli/ai/context/flows/remove_.json +9 -0
  164. package/test-projects/python-cli/ai/conventions.md +51 -0
  165. package/test-projects/python-cli/ai/dependencies.json +66 -0
  166. package/test-projects/python-cli/ai/entrypoints.md +4 -0
  167. package/test-projects/python-cli/ai/files.json +174 -0
  168. package/test-projects/python-cli/ai/graph/knowledge-graph.json +83 -0
  169. package/test-projects/python-cli/ai/graph/module-graph.json +31 -0
  170. package/test-projects/python-cli/ai/graph/symbol-graph.json +358 -0
  171. package/test-projects/python-cli/ai/graph/symbol-references.json +11 -0
  172. package/test-projects/python-cli/ai/index-state.json +245 -0
  173. package/test-projects/python-cli/ai/index.db +0 -0
  174. package/test-projects/python-cli/ai/modules.json +21 -0
  175. package/test-projects/python-cli/ai/project.json +15 -0
  176. package/test-projects/python-cli/ai/repo-map.json +290 -0
  177. package/test-projects/python-cli/ai/repo_map.json +99 -0
  178. package/test-projects/python-cli/ai/repo_map.md +32 -0
  179. package/test-projects/python-cli/ai/schema.json +5 -0
  180. package/test-projects/python-cli/ai/summary.md +11 -0
  181. package/test-projects/python-cli/ai/symbols.json +475 -0
  182. package/test-projects/python-cli/ai/tech_stack.md +30 -0
  183. package/test-projects/python-cli/ai/tools.json +10 -0
  184. package/test-projects/python-cli/cli/__init__.py +1 -0
  185. package/test-projects/python-cli/cli/add_command.py +6 -0
  186. package/test-projects/python-cli/cli/list_command.py +7 -0
  187. package/test-projects/python-cli/cli/remove_command.py +6 -0
  188. package/test-projects/python-cli/main.py +34 -0
  189. package/test-projects/python-cli/models/__init__.py +2 -0
  190. package/test-projects/python-cli/models/task.py +19 -0
  191. package/test-projects/python-cli/models/task_repository.py +44 -0
  192. package/test-projects/react-app/ai/ai_context.md +95 -0
  193. package/test-projects/react-app/ai/ai_rules.md +49 -0
  194. package/test-projects/react-app/ai/architecture.md +33 -0
  195. package/test-projects/react-app/ai/cache.json +129 -0
  196. package/test-projects/react-app/ai/context/features/src.json +18 -0
  197. package/test-projects/react-app/ai/context/flows/dashboard.json +9 -0
  198. package/test-projects/react-app/ai/context/flows/login.json +9 -0
  199. package/test-projects/react-app/ai/context/flows/users.json +9 -0
  200. package/test-projects/react-app/ai/conventions.md +52 -0
  201. package/test-projects/react-app/ai/dependencies.json +128 -0
  202. package/test-projects/react-app/ai/entrypoints.md +4 -0
  203. package/test-projects/react-app/ai/files.json +174 -0
  204. package/test-projects/react-app/ai/graph/knowledge-graph.json +83 -0
  205. package/test-projects/react-app/ai/graph/module-graph.json +31 -0
  206. package/test-projects/react-app/ai/graph/symbol-graph.json +868 -0
  207. package/test-projects/react-app/ai/graph/symbol-references.json +31 -0
  208. package/test-projects/react-app/ai/index-state.json +245 -0
  209. package/test-projects/react-app/ai/index.db +0 -0
  210. package/test-projects/react-app/ai/modules.json +17 -0
  211. package/test-projects/react-app/ai/project.json +15 -0
  212. package/test-projects/react-app/ai/repo-map.json +305 -0
  213. package/test-projects/react-app/ai/repo_map.json +114 -0
  214. package/test-projects/react-app/ai/repo_map.md +31 -0
  215. package/test-projects/react-app/ai/schema.json +5 -0
  216. package/test-projects/react-app/ai/summary.md +11 -0
  217. package/test-projects/react-app/ai/symbols.json +985 -0
  218. package/test-projects/react-app/ai/tech_stack.md +38 -0
  219. package/test-projects/react-app/ai/tools.json +10 -0
  220. package/test-projects/react-app/package.json +16 -0
  221. package/test-projects/react-app/src/App.tsx +21 -0
  222. package/test-projects/react-app/src/context/AuthContext.tsx +41 -0
  223. package/test-projects/react-app/src/hooks/useAuth.ts +10 -0
  224. package/test-projects/react-app/src/main.tsx +10 -0
  225. package/test-projects/react-app/src/pages/DashboardPage.tsx +17 -0
  226. package/test-projects/react-app/src/pages/LoginPage.tsx +41 -0
  227. package/test-projects/react-app/src/pages/UsersPage.tsx +36 -0
  228. package/test-projects/react-app/src/services/userService.ts +37 -0
  229. package/test-projects/salesforce-cli/.forceignore +27 -0
  230. package/test-projects/salesforce-cli/ai/ai_context.md +88 -0
  231. package/test-projects/salesforce-cli/ai/ai_rules.md +47 -0
  232. package/test-projects/salesforce-cli/ai/architecture.md +33 -0
  233. package/test-projects/salesforce-cli/ai/cache.json +105 -0
  234. package/test-projects/salesforce-cli/ai/context/features/force-app.json +14 -0
  235. package/test-projects/salesforce-cli/ai/context/flows/account.json +9 -0
  236. package/test-projects/salesforce-cli/ai/context/flows/opportunity.json +9 -0
  237. package/test-projects/salesforce-cli/ai/conventions.md +51 -0
  238. package/test-projects/salesforce-cli/ai/dependencies.json +6 -0
  239. package/test-projects/salesforce-cli/ai/entrypoints.md +4 -0
  240. package/test-projects/salesforce-cli/ai/files.json +144 -0
  241. package/test-projects/salesforce-cli/ai/graph/knowledge-graph.json +64 -0
  242. package/test-projects/salesforce-cli/ai/graph/module-graph.json +13 -0
  243. package/test-projects/salesforce-cli/ai/graph/symbol-graph.json +148 -0
  244. package/test-projects/salesforce-cli/ai/graph/symbol-references.json +1 -0
  245. package/test-projects/salesforce-cli/ai/index-state.json +203 -0
  246. package/test-projects/salesforce-cli/ai/index.db +0 -0
  247. package/test-projects/salesforce-cli/ai/modules.json +12 -0
  248. package/test-projects/salesforce-cli/ai/project.json +14 -0
  249. package/test-projects/salesforce-cli/ai/repo-map.json +251 -0
  250. package/test-projects/salesforce-cli/ai/repo_map.json +69 -0
  251. package/test-projects/salesforce-cli/ai/repo_map.md +21 -0
  252. package/test-projects/salesforce-cli/ai/schema.json +5 -0
  253. package/test-projects/salesforce-cli/ai/summary.md +11 -0
  254. package/test-projects/salesforce-cli/ai/symbols.json +245 -0
  255. package/test-projects/salesforce-cli/ai/tech_stack.md +30 -0
  256. package/test-projects/salesforce-cli/ai/tools.json +10 -0
  257. package/test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls +24 -0
  258. package/test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls +25 -0
  259. package/test-projects/salesforce-cli/force-app/main/default/objects/Project__c.object.xml +45 -0
  260. package/test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger +33 -0
  261. package/test-projects/salesforce-cli/sfdx-project.json +11 -0
  262. package/tests/e2e/README.md +85 -0
  263. package/tests/e2e/run-e2e.sh +88 -0
  264. package/tests/semanticContexts.test.ts +23 -25
@@ -0,0 +1,985 @@
1
+ {
2
+ "symbols": {
3
+ "src/App.tsx#App": {
4
+ "name": "App",
5
+ "type": "function",
6
+ "file": "src/App.tsx",
7
+ "line": 7,
8
+ "module": "src",
9
+ "export": false
10
+ },
11
+ "src/context/AuthContext.tsx#User": {
12
+ "name": "User",
13
+ "type": "interface",
14
+ "file": "src/context/AuthContext.tsx",
15
+ "line": 3,
16
+ "module": "src",
17
+ "export": false
18
+ },
19
+ "src/context/AuthContext.tsx#AuthContextType": {
20
+ "name": "AuthContextType",
21
+ "type": "interface",
22
+ "file": "src/context/AuthContext.tsx",
23
+ "line": 9,
24
+ "module": "src",
25
+ "export": false
26
+ },
27
+ "src/context/AuthContext.tsx#login": {
28
+ "name": "login",
29
+ "type": "const",
30
+ "file": "src/context/AuthContext.tsx",
31
+ "line": 21,
32
+ "module": "src",
33
+ "export": false
34
+ },
35
+ "src/context/AuthContext.tsx#logout": {
36
+ "name": "logout",
37
+ "type": "const",
38
+ "file": "src/context/AuthContext.tsx",
39
+ "line": 32,
40
+ "module": "src",
41
+ "export": false
42
+ },
43
+ "src/context/AuthContext.tsx#AuthContext": {
44
+ "name": "AuthContext",
45
+ "type": "const",
46
+ "file": "src/context/AuthContext.tsx",
47
+ "line": 16,
48
+ "module": "src",
49
+ "export": true
50
+ },
51
+ "src/context/AuthContext.tsx#AuthProvider": {
52
+ "name": "AuthProvider",
53
+ "type": "function",
54
+ "file": "src/context/AuthContext.tsx",
55
+ "line": 18,
56
+ "module": "src",
57
+ "export": true
58
+ },
59
+ "src/context/AuthContext.tsx#response": {
60
+ "name": "response",
61
+ "type": "const",
62
+ "file": "src/context/AuthContext.tsx",
63
+ "line": 22,
64
+ "module": "src",
65
+ "export": false
66
+ },
67
+ "src/context/AuthContext.tsx#data": {
68
+ "name": "data",
69
+ "type": "const",
70
+ "file": "src/context/AuthContext.tsx",
71
+ "line": 28,
72
+ "module": "src",
73
+ "export": false
74
+ },
75
+ "src/hooks/useAuth.ts#useAuth": {
76
+ "name": "useAuth",
77
+ "type": "function",
78
+ "file": "src/hooks/useAuth.ts",
79
+ "line": 4,
80
+ "module": "src",
81
+ "export": true
82
+ },
83
+ "src/hooks/useAuth.ts#context": {
84
+ "name": "context",
85
+ "type": "const",
86
+ "file": "src/hooks/useAuth.ts",
87
+ "line": 5,
88
+ "module": "src",
89
+ "export": false
90
+ },
91
+ "src/main.tsx#root": {
92
+ "name": "root",
93
+ "type": "const",
94
+ "file": "src/main.tsx",
95
+ "line": 5,
96
+ "module": "src",
97
+ "export": false
98
+ },
99
+ "src/pages/DashboardPage.tsx#DashboardPage": {
100
+ "name": "DashboardPage",
101
+ "type": "function",
102
+ "file": "src/pages/DashboardPage.tsx",
103
+ "line": 3,
104
+ "module": "src",
105
+ "export": true
106
+ },
107
+ "src/pages/LoginPage.tsx#LoginPage": {
108
+ "name": "LoginPage",
109
+ "type": "function",
110
+ "file": "src/pages/LoginPage.tsx",
111
+ "line": 5,
112
+ "module": "src",
113
+ "export": true
114
+ },
115
+ "src/pages/LoginPage.tsx#navigate": {
116
+ "name": "navigate",
117
+ "type": "const",
118
+ "file": "src/pages/LoginPage.tsx",
119
+ "line": 9,
120
+ "module": "src",
121
+ "export": false
122
+ },
123
+ "src/pages/LoginPage.tsx#handleSubmit": {
124
+ "name": "handleSubmit",
125
+ "type": "const",
126
+ "file": "src/pages/LoginPage.tsx",
127
+ "line": 11,
128
+ "module": "src",
129
+ "export": false
130
+ },
131
+ "src/pages/UsersPage.tsx#UsersPage": {
132
+ "name": "UsersPage",
133
+ "type": "function",
134
+ "file": "src/pages/UsersPage.tsx",
135
+ "line": 4,
136
+ "module": "src",
137
+ "export": true
138
+ },
139
+ "src/pages/UsersPage.tsx#fetchUsers": {
140
+ "name": "fetchUsers",
141
+ "type": "const",
142
+ "file": "src/pages/UsersPage.tsx",
143
+ "line": 12,
144
+ "module": "src",
145
+ "export": false
146
+ },
147
+ "src/pages/UsersPage.tsx#response": {
148
+ "name": "response",
149
+ "type": "const",
150
+ "file": "src/pages/UsersPage.tsx",
151
+ "line": 14,
152
+ "module": "src",
153
+ "export": false
154
+ },
155
+ "src/pages/UsersPage.tsx#data": {
156
+ "name": "data",
157
+ "type": "const",
158
+ "file": "src/pages/UsersPage.tsx",
159
+ "line": 15,
160
+ "module": "src",
161
+ "export": false
162
+ },
163
+ "src/services/userService.ts#User": {
164
+ "name": "User",
165
+ "type": "interface",
166
+ "file": "src/services/userService.ts",
167
+ "line": 1,
168
+ "module": "src",
169
+ "export": true
170
+ },
171
+ "src/services/userService.ts#fetchUsers": {
172
+ "name": "fetchUsers",
173
+ "type": "function",
174
+ "file": "src/services/userService.ts",
175
+ "line": 7,
176
+ "module": "src",
177
+ "export": true
178
+ },
179
+ "src/services/userService.ts#response": {
180
+ "name": "response",
181
+ "type": "const",
182
+ "file": "src/services/userService.ts",
183
+ "line": 27,
184
+ "module": "src",
185
+ "export": false
186
+ },
187
+ "src/services/userService.ts#fetchUser": {
188
+ "name": "fetchUser",
189
+ "type": "function",
190
+ "file": "src/services/userService.ts",
191
+ "line": 12,
192
+ "module": "src",
193
+ "export": true
194
+ },
195
+ "src/services/userService.ts#createUser": {
196
+ "name": "createUser",
197
+ "type": "function",
198
+ "file": "src/services/userService.ts",
199
+ "line": 17,
200
+ "module": "src",
201
+ "export": true
202
+ },
203
+ "src/services/userService.ts#updateUser": {
204
+ "name": "updateUser",
205
+ "type": "function",
206
+ "file": "src/services/userService.ts",
207
+ "line": 26,
208
+ "module": "src",
209
+ "export": true
210
+ },
211
+ "src/services/userService.ts#deleteUser": {
212
+ "name": "deleteUser",
213
+ "type": "function",
214
+ "file": "src/services/userService.ts",
215
+ "line": 35,
216
+ "module": "src",
217
+ "export": true
218
+ }
219
+ },
220
+ "total": 40,
221
+ "byType": {
222
+ "function": [
223
+ {
224
+ "id": "src/App.tsx#App",
225
+ "name": "App",
226
+ "type": "function",
227
+ "file": "src/App.tsx",
228
+ "line": 7,
229
+ "export": false
230
+ },
231
+ {
232
+ "id": "src/context/AuthContext.tsx#login",
233
+ "name": "login",
234
+ "type": "function",
235
+ "file": "src/context/AuthContext.tsx",
236
+ "line": 11,
237
+ "export": false
238
+ },
239
+ {
240
+ "id": "src/context/AuthContext.tsx#logout",
241
+ "name": "logout",
242
+ "type": "function",
243
+ "file": "src/context/AuthContext.tsx",
244
+ "line": 12,
245
+ "export": false
246
+ },
247
+ {
248
+ "id": "src/context/AuthContext.tsx#AuthProvider",
249
+ "name": "AuthProvider",
250
+ "type": "function",
251
+ "file": "src/context/AuthContext.tsx",
252
+ "line": 18,
253
+ "export": true
254
+ },
255
+ {
256
+ "id": "src/context/AuthContext.tsx#login",
257
+ "name": "login",
258
+ "type": "function",
259
+ "file": "src/context/AuthContext.tsx",
260
+ "line": 21,
261
+ "export": false
262
+ },
263
+ {
264
+ "id": "src/context/AuthContext.tsx#login",
265
+ "name": "login",
266
+ "type": "function",
267
+ "file": "src/context/AuthContext.tsx",
268
+ "line": 21,
269
+ "export": false
270
+ },
271
+ {
272
+ "id": "src/context/AuthContext.tsx#logout",
273
+ "name": "logout",
274
+ "type": "function",
275
+ "file": "src/context/AuthContext.tsx",
276
+ "line": 32,
277
+ "export": false
278
+ },
279
+ {
280
+ "id": "src/context/AuthContext.tsx#logout",
281
+ "name": "logout",
282
+ "type": "function",
283
+ "file": "src/context/AuthContext.tsx",
284
+ "line": 32,
285
+ "export": false
286
+ },
287
+ {
288
+ "id": "src/hooks/useAuth.ts#useAuth",
289
+ "name": "useAuth",
290
+ "type": "function",
291
+ "file": "src/hooks/useAuth.ts",
292
+ "line": 4,
293
+ "export": true
294
+ },
295
+ {
296
+ "id": "src/pages/DashboardPage.tsx#DashboardPage",
297
+ "name": "DashboardPage",
298
+ "type": "function",
299
+ "file": "src/pages/DashboardPage.tsx",
300
+ "line": 3,
301
+ "export": true
302
+ },
303
+ {
304
+ "id": "src/pages/LoginPage.tsx#LoginPage",
305
+ "name": "LoginPage",
306
+ "type": "function",
307
+ "file": "src/pages/LoginPage.tsx",
308
+ "line": 5,
309
+ "export": true
310
+ },
311
+ {
312
+ "id": "src/pages/LoginPage.tsx#handleSubmit",
313
+ "name": "handleSubmit",
314
+ "type": "function",
315
+ "file": "src/pages/LoginPage.tsx",
316
+ "line": 11,
317
+ "export": false
318
+ },
319
+ {
320
+ "id": "src/pages/LoginPage.tsx#handleSubmit",
321
+ "name": "handleSubmit",
322
+ "type": "function",
323
+ "file": "src/pages/LoginPage.tsx",
324
+ "line": 11,
325
+ "export": false
326
+ },
327
+ {
328
+ "id": "src/pages/UsersPage.tsx#UsersPage",
329
+ "name": "UsersPage",
330
+ "type": "function",
331
+ "file": "src/pages/UsersPage.tsx",
332
+ "line": 4,
333
+ "export": true
334
+ },
335
+ {
336
+ "id": "src/pages/UsersPage.tsx#fetchUsers",
337
+ "name": "fetchUsers",
338
+ "type": "function",
339
+ "file": "src/pages/UsersPage.tsx",
340
+ "line": 12,
341
+ "export": false
342
+ },
343
+ {
344
+ "id": "src/pages/UsersPage.tsx#fetchUsers",
345
+ "name": "fetchUsers",
346
+ "type": "function",
347
+ "file": "src/pages/UsersPage.tsx",
348
+ "line": 12,
349
+ "export": false
350
+ },
351
+ {
352
+ "id": "src/services/userService.ts#fetchUsers",
353
+ "name": "fetchUsers",
354
+ "type": "function",
355
+ "file": "src/services/userService.ts",
356
+ "line": 7,
357
+ "export": true
358
+ },
359
+ {
360
+ "id": "src/services/userService.ts#fetchUser",
361
+ "name": "fetchUser",
362
+ "type": "function",
363
+ "file": "src/services/userService.ts",
364
+ "line": 12,
365
+ "export": true
366
+ },
367
+ {
368
+ "id": "src/services/userService.ts#createUser",
369
+ "name": "createUser",
370
+ "type": "function",
371
+ "file": "src/services/userService.ts",
372
+ "line": 17,
373
+ "export": true
374
+ },
375
+ {
376
+ "id": "src/services/userService.ts#updateUser",
377
+ "name": "updateUser",
378
+ "type": "function",
379
+ "file": "src/services/userService.ts",
380
+ "line": 26,
381
+ "export": true
382
+ },
383
+ {
384
+ "id": "src/services/userService.ts#deleteUser",
385
+ "name": "deleteUser",
386
+ "type": "function",
387
+ "file": "src/services/userService.ts",
388
+ "line": 35,
389
+ "export": true
390
+ }
391
+ ],
392
+ "interface": [
393
+ {
394
+ "id": "src/context/AuthContext.tsx#User",
395
+ "name": "User",
396
+ "type": "interface",
397
+ "file": "src/context/AuthContext.tsx",
398
+ "line": 3,
399
+ "export": false
400
+ },
401
+ {
402
+ "id": "src/context/AuthContext.tsx#AuthContextType",
403
+ "name": "AuthContextType",
404
+ "type": "interface",
405
+ "file": "src/context/AuthContext.tsx",
406
+ "line": 9,
407
+ "export": false
408
+ },
409
+ {
410
+ "id": "src/services/userService.ts#User",
411
+ "name": "User",
412
+ "type": "interface",
413
+ "file": "src/services/userService.ts",
414
+ "line": 1,
415
+ "export": true
416
+ }
417
+ ],
418
+ "const": [
419
+ {
420
+ "id": "src/context/AuthContext.tsx#AuthContext",
421
+ "name": "AuthContext",
422
+ "type": "const",
423
+ "file": "src/context/AuthContext.tsx",
424
+ "line": 16,
425
+ "export": true
426
+ },
427
+ {
428
+ "id": "src/context/AuthContext.tsx#login",
429
+ "name": "login",
430
+ "type": "const",
431
+ "file": "src/context/AuthContext.tsx",
432
+ "line": 21,
433
+ "export": false
434
+ },
435
+ {
436
+ "id": "src/context/AuthContext.tsx#response",
437
+ "name": "response",
438
+ "type": "const",
439
+ "file": "src/context/AuthContext.tsx",
440
+ "line": 22,
441
+ "export": false
442
+ },
443
+ {
444
+ "id": "src/context/AuthContext.tsx#data",
445
+ "name": "data",
446
+ "type": "const",
447
+ "file": "src/context/AuthContext.tsx",
448
+ "line": 28,
449
+ "export": false
450
+ },
451
+ {
452
+ "id": "src/context/AuthContext.tsx#logout",
453
+ "name": "logout",
454
+ "type": "const",
455
+ "file": "src/context/AuthContext.tsx",
456
+ "line": 32,
457
+ "export": false
458
+ },
459
+ {
460
+ "id": "src/hooks/useAuth.ts#context",
461
+ "name": "context",
462
+ "type": "const",
463
+ "file": "src/hooks/useAuth.ts",
464
+ "line": 5,
465
+ "export": false
466
+ },
467
+ {
468
+ "id": "src/main.tsx#root",
469
+ "name": "root",
470
+ "type": "const",
471
+ "file": "src/main.tsx",
472
+ "line": 5,
473
+ "export": false
474
+ },
475
+ {
476
+ "id": "src/pages/LoginPage.tsx#navigate",
477
+ "name": "navigate",
478
+ "type": "const",
479
+ "file": "src/pages/LoginPage.tsx",
480
+ "line": 9,
481
+ "export": false
482
+ },
483
+ {
484
+ "id": "src/pages/LoginPage.tsx#handleSubmit",
485
+ "name": "handleSubmit",
486
+ "type": "const",
487
+ "file": "src/pages/LoginPage.tsx",
488
+ "line": 11,
489
+ "export": false
490
+ },
491
+ {
492
+ "id": "src/pages/UsersPage.tsx#fetchUsers",
493
+ "name": "fetchUsers",
494
+ "type": "const",
495
+ "file": "src/pages/UsersPage.tsx",
496
+ "line": 12,
497
+ "export": false
498
+ },
499
+ {
500
+ "id": "src/pages/UsersPage.tsx#response",
501
+ "name": "response",
502
+ "type": "const",
503
+ "file": "src/pages/UsersPage.tsx",
504
+ "line": 14,
505
+ "export": false
506
+ },
507
+ {
508
+ "id": "src/pages/UsersPage.tsx#data",
509
+ "name": "data",
510
+ "type": "const",
511
+ "file": "src/pages/UsersPage.tsx",
512
+ "line": 15,
513
+ "export": false
514
+ },
515
+ {
516
+ "id": "src/services/userService.ts#response",
517
+ "name": "response",
518
+ "type": "const",
519
+ "file": "src/services/userService.ts",
520
+ "line": 8,
521
+ "export": false
522
+ },
523
+ {
524
+ "id": "src/services/userService.ts#response",
525
+ "name": "response",
526
+ "type": "const",
527
+ "file": "src/services/userService.ts",
528
+ "line": 13,
529
+ "export": false
530
+ },
531
+ {
532
+ "id": "src/services/userService.ts#response",
533
+ "name": "response",
534
+ "type": "const",
535
+ "file": "src/services/userService.ts",
536
+ "line": 18,
537
+ "export": false
538
+ },
539
+ {
540
+ "id": "src/services/userService.ts#response",
541
+ "name": "response",
542
+ "type": "const",
543
+ "file": "src/services/userService.ts",
544
+ "line": 27,
545
+ "export": false
546
+ }
547
+ ]
548
+ },
549
+ "byFile": {
550
+ "src/App.tsx": [
551
+ {
552
+ "id": "src/App.tsx#App",
553
+ "name": "App",
554
+ "type": "function",
555
+ "file": "src/App.tsx",
556
+ "line": 7,
557
+ "export": false
558
+ }
559
+ ],
560
+ "src/context/AuthContext.tsx": [
561
+ {
562
+ "id": "src/context/AuthContext.tsx#User",
563
+ "name": "User",
564
+ "type": "interface",
565
+ "file": "src/context/AuthContext.tsx",
566
+ "line": 3,
567
+ "export": false
568
+ },
569
+ {
570
+ "id": "src/context/AuthContext.tsx#AuthContextType",
571
+ "name": "AuthContextType",
572
+ "type": "interface",
573
+ "file": "src/context/AuthContext.tsx",
574
+ "line": 9,
575
+ "export": false
576
+ },
577
+ {
578
+ "id": "src/context/AuthContext.tsx#login",
579
+ "name": "login",
580
+ "type": "function",
581
+ "file": "src/context/AuthContext.tsx",
582
+ "line": 11,
583
+ "export": false
584
+ },
585
+ {
586
+ "id": "src/context/AuthContext.tsx#logout",
587
+ "name": "logout",
588
+ "type": "function",
589
+ "file": "src/context/AuthContext.tsx",
590
+ "line": 12,
591
+ "export": false
592
+ },
593
+ {
594
+ "id": "src/context/AuthContext.tsx#AuthContext",
595
+ "name": "AuthContext",
596
+ "type": "const",
597
+ "file": "src/context/AuthContext.tsx",
598
+ "line": 16,
599
+ "export": true
600
+ },
601
+ {
602
+ "id": "src/context/AuthContext.tsx#AuthProvider",
603
+ "name": "AuthProvider",
604
+ "type": "function",
605
+ "file": "src/context/AuthContext.tsx",
606
+ "line": 18,
607
+ "export": true
608
+ },
609
+ {
610
+ "id": "src/context/AuthContext.tsx#login",
611
+ "name": "login",
612
+ "type": "function",
613
+ "file": "src/context/AuthContext.tsx",
614
+ "line": 21,
615
+ "export": false
616
+ },
617
+ {
618
+ "id": "src/context/AuthContext.tsx#login",
619
+ "name": "login",
620
+ "type": "function",
621
+ "file": "src/context/AuthContext.tsx",
622
+ "line": 21,
623
+ "export": false
624
+ },
625
+ {
626
+ "id": "src/context/AuthContext.tsx#login",
627
+ "name": "login",
628
+ "type": "const",
629
+ "file": "src/context/AuthContext.tsx",
630
+ "line": 21,
631
+ "export": false
632
+ },
633
+ {
634
+ "id": "src/context/AuthContext.tsx#response",
635
+ "name": "response",
636
+ "type": "const",
637
+ "file": "src/context/AuthContext.tsx",
638
+ "line": 22,
639
+ "export": false
640
+ },
641
+ {
642
+ "id": "src/context/AuthContext.tsx#data",
643
+ "name": "data",
644
+ "type": "const",
645
+ "file": "src/context/AuthContext.tsx",
646
+ "line": 28,
647
+ "export": false
648
+ },
649
+ {
650
+ "id": "src/context/AuthContext.tsx#logout",
651
+ "name": "logout",
652
+ "type": "function",
653
+ "file": "src/context/AuthContext.tsx",
654
+ "line": 32,
655
+ "export": false
656
+ },
657
+ {
658
+ "id": "src/context/AuthContext.tsx#logout",
659
+ "name": "logout",
660
+ "type": "function",
661
+ "file": "src/context/AuthContext.tsx",
662
+ "line": 32,
663
+ "export": false
664
+ },
665
+ {
666
+ "id": "src/context/AuthContext.tsx#logout",
667
+ "name": "logout",
668
+ "type": "const",
669
+ "file": "src/context/AuthContext.tsx",
670
+ "line": 32,
671
+ "export": false
672
+ }
673
+ ],
674
+ "src/hooks/useAuth.ts": [
675
+ {
676
+ "id": "src/hooks/useAuth.ts#useAuth",
677
+ "name": "useAuth",
678
+ "type": "function",
679
+ "file": "src/hooks/useAuth.ts",
680
+ "line": 4,
681
+ "export": true
682
+ },
683
+ {
684
+ "id": "src/hooks/useAuth.ts#context",
685
+ "name": "context",
686
+ "type": "const",
687
+ "file": "src/hooks/useAuth.ts",
688
+ "line": 5,
689
+ "export": false
690
+ }
691
+ ],
692
+ "src/main.tsx": [
693
+ {
694
+ "id": "src/main.tsx#root",
695
+ "name": "root",
696
+ "type": "const",
697
+ "file": "src/main.tsx",
698
+ "line": 5,
699
+ "export": false
700
+ }
701
+ ],
702
+ "src/pages/DashboardPage.tsx": [
703
+ {
704
+ "id": "src/pages/DashboardPage.tsx#DashboardPage",
705
+ "name": "DashboardPage",
706
+ "type": "function",
707
+ "file": "src/pages/DashboardPage.tsx",
708
+ "line": 3,
709
+ "export": true
710
+ }
711
+ ],
712
+ "src/pages/LoginPage.tsx": [
713
+ {
714
+ "id": "src/pages/LoginPage.tsx#LoginPage",
715
+ "name": "LoginPage",
716
+ "type": "function",
717
+ "file": "src/pages/LoginPage.tsx",
718
+ "line": 5,
719
+ "export": true
720
+ },
721
+ {
722
+ "id": "src/pages/LoginPage.tsx#navigate",
723
+ "name": "navigate",
724
+ "type": "const",
725
+ "file": "src/pages/LoginPage.tsx",
726
+ "line": 9,
727
+ "export": false
728
+ },
729
+ {
730
+ "id": "src/pages/LoginPage.tsx#handleSubmit",
731
+ "name": "handleSubmit",
732
+ "type": "function",
733
+ "file": "src/pages/LoginPage.tsx",
734
+ "line": 11,
735
+ "export": false
736
+ },
737
+ {
738
+ "id": "src/pages/LoginPage.tsx#handleSubmit",
739
+ "name": "handleSubmit",
740
+ "type": "function",
741
+ "file": "src/pages/LoginPage.tsx",
742
+ "line": 11,
743
+ "export": false
744
+ },
745
+ {
746
+ "id": "src/pages/LoginPage.tsx#handleSubmit",
747
+ "name": "handleSubmit",
748
+ "type": "const",
749
+ "file": "src/pages/LoginPage.tsx",
750
+ "line": 11,
751
+ "export": false
752
+ }
753
+ ],
754
+ "src/pages/UsersPage.tsx": [
755
+ {
756
+ "id": "src/pages/UsersPage.tsx#UsersPage",
757
+ "name": "UsersPage",
758
+ "type": "function",
759
+ "file": "src/pages/UsersPage.tsx",
760
+ "line": 4,
761
+ "export": true
762
+ },
763
+ {
764
+ "id": "src/pages/UsersPage.tsx#fetchUsers",
765
+ "name": "fetchUsers",
766
+ "type": "function",
767
+ "file": "src/pages/UsersPage.tsx",
768
+ "line": 12,
769
+ "export": false
770
+ },
771
+ {
772
+ "id": "src/pages/UsersPage.tsx#fetchUsers",
773
+ "name": "fetchUsers",
774
+ "type": "function",
775
+ "file": "src/pages/UsersPage.tsx",
776
+ "line": 12,
777
+ "export": false
778
+ },
779
+ {
780
+ "id": "src/pages/UsersPage.tsx#fetchUsers",
781
+ "name": "fetchUsers",
782
+ "type": "const",
783
+ "file": "src/pages/UsersPage.tsx",
784
+ "line": 12,
785
+ "export": false
786
+ },
787
+ {
788
+ "id": "src/pages/UsersPage.tsx#response",
789
+ "name": "response",
790
+ "type": "const",
791
+ "file": "src/pages/UsersPage.tsx",
792
+ "line": 14,
793
+ "export": false
794
+ },
795
+ {
796
+ "id": "src/pages/UsersPage.tsx#data",
797
+ "name": "data",
798
+ "type": "const",
799
+ "file": "src/pages/UsersPage.tsx",
800
+ "line": 15,
801
+ "export": false
802
+ }
803
+ ],
804
+ "src/services/userService.ts": [
805
+ {
806
+ "id": "src/services/userService.ts#User",
807
+ "name": "User",
808
+ "type": "interface",
809
+ "file": "src/services/userService.ts",
810
+ "line": 1,
811
+ "export": true
812
+ },
813
+ {
814
+ "id": "src/services/userService.ts#fetchUsers",
815
+ "name": "fetchUsers",
816
+ "type": "function",
817
+ "file": "src/services/userService.ts",
818
+ "line": 7,
819
+ "export": true
820
+ },
821
+ {
822
+ "id": "src/services/userService.ts#response",
823
+ "name": "response",
824
+ "type": "const",
825
+ "file": "src/services/userService.ts",
826
+ "line": 8,
827
+ "export": false
828
+ },
829
+ {
830
+ "id": "src/services/userService.ts#fetchUser",
831
+ "name": "fetchUser",
832
+ "type": "function",
833
+ "file": "src/services/userService.ts",
834
+ "line": 12,
835
+ "export": true
836
+ },
837
+ {
838
+ "id": "src/services/userService.ts#response",
839
+ "name": "response",
840
+ "type": "const",
841
+ "file": "src/services/userService.ts",
842
+ "line": 13,
843
+ "export": false
844
+ },
845
+ {
846
+ "id": "src/services/userService.ts#createUser",
847
+ "name": "createUser",
848
+ "type": "function",
849
+ "file": "src/services/userService.ts",
850
+ "line": 17,
851
+ "export": true
852
+ },
853
+ {
854
+ "id": "src/services/userService.ts#response",
855
+ "name": "response",
856
+ "type": "const",
857
+ "file": "src/services/userService.ts",
858
+ "line": 18,
859
+ "export": false
860
+ },
861
+ {
862
+ "id": "src/services/userService.ts#updateUser",
863
+ "name": "updateUser",
864
+ "type": "function",
865
+ "file": "src/services/userService.ts",
866
+ "line": 26,
867
+ "export": true
868
+ },
869
+ {
870
+ "id": "src/services/userService.ts#response",
871
+ "name": "response",
872
+ "type": "const",
873
+ "file": "src/services/userService.ts",
874
+ "line": 27,
875
+ "export": false
876
+ },
877
+ {
878
+ "id": "src/services/userService.ts#deleteUser",
879
+ "name": "deleteUser",
880
+ "type": "function",
881
+ "file": "src/services/userService.ts",
882
+ "line": 35,
883
+ "export": true
884
+ }
885
+ ]
886
+ },
887
+ "exported": [
888
+ {
889
+ "id": "src/context/AuthContext.tsx#AuthContext",
890
+ "name": "AuthContext",
891
+ "type": "const",
892
+ "file": "src/context/AuthContext.tsx",
893
+ "line": 16,
894
+ "export": true
895
+ },
896
+ {
897
+ "id": "src/context/AuthContext.tsx#AuthProvider",
898
+ "name": "AuthProvider",
899
+ "type": "function",
900
+ "file": "src/context/AuthContext.tsx",
901
+ "line": 18,
902
+ "export": true
903
+ },
904
+ {
905
+ "id": "src/hooks/useAuth.ts#useAuth",
906
+ "name": "useAuth",
907
+ "type": "function",
908
+ "file": "src/hooks/useAuth.ts",
909
+ "line": 4,
910
+ "export": true
911
+ },
912
+ {
913
+ "id": "src/pages/DashboardPage.tsx#DashboardPage",
914
+ "name": "DashboardPage",
915
+ "type": "function",
916
+ "file": "src/pages/DashboardPage.tsx",
917
+ "line": 3,
918
+ "export": true
919
+ },
920
+ {
921
+ "id": "src/pages/LoginPage.tsx#LoginPage",
922
+ "name": "LoginPage",
923
+ "type": "function",
924
+ "file": "src/pages/LoginPage.tsx",
925
+ "line": 5,
926
+ "export": true
927
+ },
928
+ {
929
+ "id": "src/pages/UsersPage.tsx#UsersPage",
930
+ "name": "UsersPage",
931
+ "type": "function",
932
+ "file": "src/pages/UsersPage.tsx",
933
+ "line": 4,
934
+ "export": true
935
+ },
936
+ {
937
+ "id": "src/services/userService.ts#User",
938
+ "name": "User",
939
+ "type": "interface",
940
+ "file": "src/services/userService.ts",
941
+ "line": 1,
942
+ "export": true
943
+ },
944
+ {
945
+ "id": "src/services/userService.ts#fetchUsers",
946
+ "name": "fetchUsers",
947
+ "type": "function",
948
+ "file": "src/services/userService.ts",
949
+ "line": 7,
950
+ "export": true
951
+ },
952
+ {
953
+ "id": "src/services/userService.ts#fetchUser",
954
+ "name": "fetchUser",
955
+ "type": "function",
956
+ "file": "src/services/userService.ts",
957
+ "line": 12,
958
+ "export": true
959
+ },
960
+ {
961
+ "id": "src/services/userService.ts#createUser",
962
+ "name": "createUser",
963
+ "type": "function",
964
+ "file": "src/services/userService.ts",
965
+ "line": 17,
966
+ "export": true
967
+ },
968
+ {
969
+ "id": "src/services/userService.ts#updateUser",
970
+ "name": "updateUser",
971
+ "type": "function",
972
+ "file": "src/services/userService.ts",
973
+ "line": 26,
974
+ "export": true
975
+ },
976
+ {
977
+ "id": "src/services/userService.ts#deleteUser",
978
+ "name": "deleteUser",
979
+ "type": "function",
980
+ "file": "src/services/userService.ts",
981
+ "line": 35,
982
+ "export": true
983
+ }
984
+ ]
985
+ }