arkos 1.4.10-beta → 1.4.11-beta

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 (281) hide show
  1. package/dist/cjs/app.js +1 -1
  2. package/dist/cjs/app.js.map +1 -1
  3. package/dist/cjs/modules/auth/auth.router.js +39 -4
  4. package/dist/cjs/modules/auth/auth.router.js.map +1 -1
  5. package/dist/cjs/modules/auth/utils/auth-openapi-generator.js +372 -0
  6. package/dist/cjs/modules/auth/utils/auth-openapi-generator.js.map +1 -0
  7. package/dist/cjs/modules/auth/utils/auth-prisma-json-schema-generator.js +102 -0
  8. package/dist/cjs/modules/auth/utils/auth-prisma-json-schema-generator.js.map +1 -0
  9. package/dist/cjs/modules/base/base.middlewares.js +1 -1
  10. package/dist/cjs/modules/base/base.middlewares.js.map +1 -1
  11. package/dist/cjs/modules/base/types/base.service.types.js.map +1 -1
  12. package/dist/cjs/modules/base/utils/helpers/base.router.helpers.js +46 -14
  13. package/dist/cjs/modules/base/utils/helpers/base.router.helpers.js.map +1 -1
  14. package/dist/cjs/modules/base/utils/helpers/base.service.helpers.js +17 -5
  15. package/dist/cjs/modules/base/utils/helpers/base.service.helpers.js.map +1 -1
  16. package/dist/cjs/modules/base/utils/model-openapi-generator.js +443 -0
  17. package/dist/cjs/modules/base/utils/model-openapi-generator.js.map +1 -0
  18. package/dist/cjs/modules/error-handler/error-handler.controller.js +0 -2
  19. package/dist/cjs/modules/error-handler/error-handler.controller.js.map +1 -1
  20. package/dist/cjs/modules/error-handler/utils/error-handler.helpers.js +0 -106
  21. package/dist/cjs/modules/error-handler/utils/error-handler.helpers.js.map +1 -1
  22. package/dist/cjs/modules/file-upload/file-upload.router.js +19 -0
  23. package/dist/cjs/modules/file-upload/file-upload.router.js.map +1 -1
  24. package/dist/cjs/modules/file-upload/utils/file-upload-json-schema-generator.js +351 -0
  25. package/dist/cjs/modules/file-upload/utils/file-upload-json-schema-generator.js.map +1 -0
  26. package/dist/cjs/modules/swagger/swagger.router.js +35 -16
  27. package/dist/cjs/modules/swagger/swagger.router.js.map +1 -1
  28. package/dist/cjs/modules/swagger/utils/helpers/get-swagger-default-configs.js +1 -2
  29. package/dist/cjs/modules/swagger/utils/helpers/get-swagger-default-configs.js.map +1 -1
  30. package/dist/cjs/modules/swagger/utils/helpers/openapi-schema-converter.js +68 -31
  31. package/dist/cjs/modules/swagger/utils/helpers/openapi-schema-converter.js.map +1 -1
  32. package/dist/cjs/server.js +0 -6
  33. package/dist/cjs/server.js.map +1 -1
  34. package/dist/cjs/types/arkos-config.js.map +1 -1
  35. package/dist/cjs/types/{arkos-config/utils.js → arkos-prisma-input.bak.js} +1 -1
  36. package/dist/cjs/types/arkos-prisma-input.bak.js.map +1 -0
  37. package/dist/cjs/types/index.js.map +1 -1
  38. package/dist/cjs/utils/arkos-router/arkos-router-openapi-manager.js +3 -12
  39. package/dist/cjs/utils/arkos-router/arkos-router-openapi-manager.js.map +1 -1
  40. package/dist/cjs/utils/arkos-router/index.js +47 -8
  41. package/dist/cjs/utils/arkos-router/index.js.map +1 -1
  42. package/dist/cjs/utils/arkos-router/types/openapi-config.js.map +1 -1
  43. package/dist/cjs/utils/arkos-router/utils/helpers/index.js +15 -2
  44. package/dist/cjs/utils/arkos-router/utils/helpers/index.js.map +1 -1
  45. package/dist/cjs/utils/cli/generate.js +4 -4
  46. package/dist/cjs/utils/cli/generate.js.map +1 -1
  47. package/dist/cjs/utils/cli/index.js +11 -11
  48. package/dist/cjs/utils/cli/index.js.map +1 -1
  49. package/dist/cjs/utils/cli/utils/cli.helpers.js +1 -1
  50. package/dist/cjs/utils/cli/utils/template-generator/templates/class-validator/create-dto-template.js +29 -5
  51. package/dist/cjs/utils/cli/utils/template-generator/templates/class-validator/create-dto-template.js.map +1 -1
  52. package/dist/cjs/utils/cli/utils/template-generator/templates/class-validator/update-dto-template.js +26 -5
  53. package/dist/cjs/utils/cli/utils/template-generator/templates/class-validator/update-dto-template.js.map +1 -1
  54. package/dist/cjs/utils/cli/utils/template-generator/templates/class-validator-dto-generator.js +52 -0
  55. package/dist/cjs/utils/cli/utils/template-generator/templates/class-validator-dto-generator.js.map +1 -1
  56. package/dist/cjs/utils/cli/utils/template-generator/templates/zod/create-schema-template.js +10 -1
  57. package/dist/cjs/utils/cli/utils/template-generator/templates/zod/create-schema-template.js.map +1 -1
  58. package/dist/cjs/utils/cli/utils/template-generator/templates/zod/update-schema-template.js +9 -2
  59. package/dist/cjs/utils/cli/utils/template-generator/templates/zod/update-schema-template.js.map +1 -1
  60. package/dist/cjs/utils/cli/utils/template-generator/templates/zod-schema-generator.js +26 -1
  61. package/dist/cjs/utils/cli/utils/template-generator/templates/zod-schema-generator.js.map +1 -1
  62. package/dist/cjs/utils/helpers/routers.helpers.js +2 -4
  63. package/dist/cjs/utils/helpers/routers.helpers.js.map +1 -1
  64. package/dist/cjs/utils/prisma/prisma-json-schema-generator.js +144 -257
  65. package/dist/cjs/utils/prisma/prisma-json-schema-generator.js.map +1 -1
  66. package/dist/cjs/utils/prisma/prisma-schema-parser.js +15 -2
  67. package/dist/cjs/utils/prisma/prisma-schema-parser.js.map +1 -1
  68. package/dist/cjs/utils/prisma/types.js.map +1 -1
  69. package/dist/esm/app.js +1 -1
  70. package/dist/esm/app.js.map +1 -1
  71. package/dist/esm/modules/auth/auth.router.js +39 -4
  72. package/dist/esm/modules/auth/auth.router.js.map +1 -1
  73. package/dist/esm/modules/auth/utils/auth-openapi-generator.js +367 -0
  74. package/dist/esm/modules/auth/utils/auth-openapi-generator.js.map +1 -0
  75. package/dist/esm/modules/auth/utils/auth-prisma-json-schema-generator.js +97 -0
  76. package/dist/esm/modules/auth/utils/auth-prisma-json-schema-generator.js.map +1 -0
  77. package/dist/esm/modules/base/base.middlewares.js +1 -1
  78. package/dist/esm/modules/base/base.middlewares.js.map +1 -1
  79. package/dist/esm/modules/base/types/base.service.types.js.map +1 -1
  80. package/dist/esm/modules/base/utils/helpers/base.router.helpers.js +46 -13
  81. package/dist/esm/modules/base/utils/helpers/base.router.helpers.js.map +1 -1
  82. package/dist/esm/modules/base/utils/helpers/base.service.helpers.js +17 -5
  83. package/dist/esm/modules/base/utils/helpers/base.service.helpers.js.map +1 -1
  84. package/dist/esm/modules/base/utils/model-openapi-generator.js +438 -0
  85. package/dist/esm/modules/base/utils/model-openapi-generator.js.map +1 -0
  86. package/dist/esm/modules/error-handler/error-handler.controller.js +0 -2
  87. package/dist/esm/modules/error-handler/error-handler.controller.js.map +1 -1
  88. package/dist/esm/modules/error-handler/utils/error-handler.helpers.js +0 -87
  89. package/dist/esm/modules/error-handler/utils/error-handler.helpers.js.map +1 -1
  90. package/dist/esm/modules/file-upload/file-upload.router.js +19 -0
  91. package/dist/esm/modules/file-upload/file-upload.router.js.map +1 -1
  92. package/dist/esm/modules/file-upload/utils/file-upload-json-schema-generator.js +346 -0
  93. package/dist/esm/modules/file-upload/utils/file-upload-json-schema-generator.js.map +1 -0
  94. package/dist/esm/modules/swagger/swagger.router.js +35 -16
  95. package/dist/esm/modules/swagger/swagger.router.js.map +1 -1
  96. package/dist/esm/modules/swagger/utils/helpers/get-swagger-default-configs.js +1 -2
  97. package/dist/esm/modules/swagger/utils/helpers/get-swagger-default-configs.js.map +1 -1
  98. package/dist/esm/modules/swagger/utils/helpers/openapi-schema-converter.js +68 -31
  99. package/dist/esm/modules/swagger/utils/helpers/openapi-schema-converter.js.map +1 -1
  100. package/dist/esm/server.js +0 -5
  101. package/dist/esm/server.js.map +1 -1
  102. package/dist/esm/types/arkos-config.js.map +1 -1
  103. package/dist/esm/types/arkos-prisma-input.bak.js +2 -0
  104. package/dist/esm/types/arkos-prisma-input.bak.js.map +1 -0
  105. package/dist/esm/types/index.js.map +1 -1
  106. package/dist/esm/utils/arkos-router/arkos-router-openapi-manager.js +3 -12
  107. package/dist/esm/utils/arkos-router/arkos-router-openapi-manager.js.map +1 -1
  108. package/dist/esm/utils/arkos-router/index.js +47 -8
  109. package/dist/esm/utils/arkos-router/index.js.map +1 -1
  110. package/dist/esm/utils/arkos-router/types/openapi-config.js.map +1 -1
  111. package/dist/esm/utils/arkos-router/utils/helpers/index.js +15 -2
  112. package/dist/esm/utils/arkos-router/utils/helpers/index.js.map +1 -1
  113. package/dist/esm/utils/cli/generate.js +4 -4
  114. package/dist/esm/utils/cli/generate.js.map +1 -1
  115. package/dist/esm/utils/cli/index.js +11 -11
  116. package/dist/esm/utils/cli/index.js.map +1 -1
  117. package/dist/esm/utils/cli/utils/cli.helpers.js +1 -1
  118. package/dist/esm/utils/cli/utils/template-generator/templates/class-validator/create-dto-template.js +29 -5
  119. package/dist/esm/utils/cli/utils/template-generator/templates/class-validator/create-dto-template.js.map +1 -1
  120. package/dist/esm/utils/cli/utils/template-generator/templates/class-validator/update-dto-template.js +26 -5
  121. package/dist/esm/utils/cli/utils/template-generator/templates/class-validator/update-dto-template.js.map +1 -1
  122. package/dist/esm/utils/cli/utils/template-generator/templates/class-validator-dto-generator.js +52 -0
  123. package/dist/esm/utils/cli/utils/template-generator/templates/class-validator-dto-generator.js.map +1 -1
  124. package/dist/esm/utils/cli/utils/template-generator/templates/zod/create-schema-template.js +10 -1
  125. package/dist/esm/utils/cli/utils/template-generator/templates/zod/create-schema-template.js.map +1 -1
  126. package/dist/esm/utils/cli/utils/template-generator/templates/zod/update-schema-template.js +9 -2
  127. package/dist/esm/utils/cli/utils/template-generator/templates/zod/update-schema-template.js.map +1 -1
  128. package/dist/esm/utils/cli/utils/template-generator/templates/zod-schema-generator.js +26 -1
  129. package/dist/esm/utils/cli/utils/template-generator/templates/zod-schema-generator.js.map +1 -1
  130. package/dist/esm/utils/helpers/routers.helpers.js +2 -4
  131. package/dist/esm/utils/helpers/routers.helpers.js.map +1 -1
  132. package/dist/esm/utils/prisma/prisma-json-schema-generator.js +144 -257
  133. package/dist/esm/utils/prisma/prisma-json-schema-generator.js.map +1 -1
  134. package/dist/esm/utils/prisma/prisma-schema-parser.js +15 -2
  135. package/dist/esm/utils/prisma/prisma-schema-parser.js.map +1 -1
  136. package/dist/esm/utils/prisma/types.js.map +1 -1
  137. package/dist/types/modules/auth/utils/auth-openapi-generator.d.ts +9 -0
  138. package/dist/types/modules/auth/utils/auth-prisma-json-schema-generator.d.ts +13 -0
  139. package/dist/types/modules/base/base.middlewares.d.ts +3 -0
  140. package/dist/types/modules/base/types/base.service.types.d.ts +0 -3
  141. package/dist/types/modules/base/utils/helpers/base.router.helpers.d.ts +0 -1
  142. package/dist/types/modules/base/utils/helpers/base.service.helpers.d.ts +1 -1
  143. package/dist/types/modules/base/utils/model-openapi-generator.d.ts +12 -0
  144. package/dist/types/modules/error-handler/utils/error-handler.helpers.d.ts +0 -19
  145. package/dist/types/modules/file-upload/utils/file-upload-json-schema-generator.d.ts +12 -0
  146. package/dist/types/modules/swagger/utils/helpers/get-swagger-default-configs.d.ts +1 -2
  147. package/dist/types/modules/swagger/utils/helpers/openapi-schema-converter.d.ts +27 -3
  148. package/dist/types/server.d.ts +0 -6
  149. package/dist/types/types/arkos-config.d.ts +1 -1
  150. package/dist/types/types/arkos-prisma-input.bak.d.ts +237 -0
  151. package/dist/types/types/index.d.ts +0 -48
  152. package/dist/types/utils/arkos-router/types/openapi-config.d.ts +3 -2
  153. package/dist/types/utils/helpers/routers.helpers.d.ts +1 -1
  154. package/dist/types/utils/prisma/prisma-json-schema-generator.d.ts +12 -42
  155. package/dist/types/utils/prisma/prisma-schema-parser.d.ts +2 -0
  156. package/dist/types/utils/prisma/types.d.ts +2 -1
  157. package/package.json +3 -1
  158. package/dist/cjs/components/arkos-policy/index.js +0 -38
  159. package/dist/cjs/components/arkos-policy/index.js.map +0 -1
  160. package/dist/cjs/components/arkos-policy/types.js +0 -3
  161. package/dist/cjs/components/arkos-policy/types.js.map +0 -1
  162. package/dist/cjs/exports/config.js +0 -6
  163. package/dist/cjs/exports/config.js.map +0 -1
  164. package/dist/cjs/modules/base/utils/helpers/base.controller.helpers.js +0 -80
  165. package/dist/cjs/modules/base/utils/helpers/base.controller.helpers.js.map +0 -1
  166. package/dist/cjs/modules/swagger/utils/built-in-route-path-object-manager.js +0 -7
  167. package/dist/cjs/modules/swagger/utils/built-in-route-path-object-manager.js.map +0 -1
  168. package/dist/cjs/modules/swagger/utils/get-open-api-login-html.js +0 -276
  169. package/dist/cjs/modules/swagger/utils/get-open-api-login-html.js.map +0 -1
  170. package/dist/cjs/modules/swagger/utils/helpers/get-authentication-json-schema-paths.js +0 -482
  171. package/dist/cjs/modules/swagger/utils/helpers/get-authentication-json-schema-paths.js.map +0 -1
  172. package/dist/cjs/modules/swagger/utils/helpers/get-file-upload-json-schema-paths.js +0 -505
  173. package/dist/cjs/modules/swagger/utils/helpers/get-file-upload-json-schema-paths.js.map +0 -1
  174. package/dist/cjs/modules/swagger/utils/helpers/get-system-json-schema-paths.js +0 -37
  175. package/dist/cjs/modules/swagger/utils/helpers/get-system-json-schema-paths.js.map +0 -1
  176. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-class-validator-json-schemas.js +0 -50
  177. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-class-validator-json-schemas.js.map +0 -1
  178. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-prisma-json-schemas.js +0 -32
  179. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-prisma-json-schemas.js.map +0 -1
  180. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-system-json-schemas.js +0 -49
  181. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-system-json-schemas.js.map +0 -1
  182. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-zod-json-schemas.js +0 -34
  183. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/generate-zod-json-schemas.js.map +0 -1
  184. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-main-routes-paths.js +0 -508
  185. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-main-routes-paths.js.map +0 -1
  186. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-parent-routes-paths.js +0 -573
  187. package/dist/cjs/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-parent-routes-paths.js.map +0 -1
  188. package/dist/cjs/modules/swagger/utils/helpers/missing-json-schemas-generator.js +0 -261
  189. package/dist/cjs/modules/swagger/utils/helpers/missing-json-schemas-generator.js.map +0 -1
  190. package/dist/cjs/modules/swagger/utils/helpers/swagger.router.helpers.js +0 -114
  191. package/dist/cjs/modules/swagger/utils/helpers/swagger.router.helpers.js.map +0 -1
  192. package/dist/cjs/paths.js +0 -9
  193. package/dist/cjs/paths.js.map +0 -1
  194. package/dist/cjs/types/arkos-config/utils.js.map +0 -1
  195. package/dist/cjs/types/arkos.js +0 -3
  196. package/dist/cjs/types/arkos.js.map +0 -1
  197. package/dist/cjs/utils/arkos-router/utils/helpers/apply-arkos-router-proxy.js +0 -152
  198. package/dist/cjs/utils/arkos-router/utils/helpers/apply-arkos-router-proxy.js.map +0 -1
  199. package/dist/cjs/utils/cli/utils/template-generator/templates/policy-template.js +0 -53
  200. package/dist/cjs/utils/cli/utils/template-generator/templates/policy-template.js.map +0 -1
  201. package/dist/cjs/utils/helpers/exit-error.js +0 -12
  202. package/dist/cjs/utils/helpers/exit-error.js.map +0 -1
  203. package/dist/cjs/utils/initialize-app.js +0 -56
  204. package/dist/cjs/utils/initialize-app.js.map +0 -1
  205. package/dist/cjs/utils/setup-app.js +0 -119
  206. package/dist/cjs/utils/setup-app.js.map +0 -1
  207. package/dist/esm/components/arkos-policy/index.js +0 -32
  208. package/dist/esm/components/arkos-policy/index.js.map +0 -1
  209. package/dist/esm/components/arkos-policy/types.js +0 -2
  210. package/dist/esm/components/arkos-policy/types.js.map +0 -1
  211. package/dist/esm/exports/config.js +0 -3
  212. package/dist/esm/exports/config.js.map +0 -1
  213. package/dist/esm/modules/base/utils/helpers/base.controller.helpers.js +0 -76
  214. package/dist/esm/modules/base/utils/helpers/base.controller.helpers.js.map +0 -1
  215. package/dist/esm/modules/swagger/utils/built-in-route-path-object-manager.js +0 -5
  216. package/dist/esm/modules/swagger/utils/built-in-route-path-object-manager.js.map +0 -1
  217. package/dist/esm/modules/swagger/utils/get-open-api-login-html.js +0 -273
  218. package/dist/esm/modules/swagger/utils/get-open-api-login-html.js.map +0 -1
  219. package/dist/esm/modules/swagger/utils/helpers/get-authentication-json-schema-paths.js +0 -477
  220. package/dist/esm/modules/swagger/utils/helpers/get-authentication-json-schema-paths.js.map +0 -1
  221. package/dist/esm/modules/swagger/utils/helpers/get-file-upload-json-schema-paths.js +0 -499
  222. package/dist/esm/modules/swagger/utils/helpers/get-file-upload-json-schema-paths.js.map +0 -1
  223. package/dist/esm/modules/swagger/utils/helpers/get-system-json-schema-paths.js +0 -34
  224. package/dist/esm/modules/swagger/utils/helpers/get-system-json-schema-paths.js.map +0 -1
  225. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-class-validator-json-schemas.js +0 -44
  226. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-class-validator-json-schemas.js.map +0 -1
  227. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-prisma-json-schemas.js +0 -26
  228. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-prisma-json-schemas.js.map +0 -1
  229. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-system-json-schemas.js +0 -46
  230. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-system-json-schemas.js.map +0 -1
  231. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-zod-json-schemas.js +0 -28
  232. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/generate-zod-json-schemas.js.map +0 -1
  233. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-main-routes-paths.js +0 -502
  234. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-main-routes-paths.js.map +0 -1
  235. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-parent-routes-paths.js +0 -567
  236. package/dist/esm/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-parent-routes-paths.js.map +0 -1
  237. package/dist/esm/modules/swagger/utils/helpers/missing-json-schemas-generator.js +0 -256
  238. package/dist/esm/modules/swagger/utils/helpers/missing-json-schemas-generator.js.map +0 -1
  239. package/dist/esm/modules/swagger/utils/helpers/swagger.router.helpers.js +0 -103
  240. package/dist/esm/modules/swagger/utils/helpers/swagger.router.helpers.js.map +0 -1
  241. package/dist/esm/paths.js +0 -3
  242. package/dist/esm/paths.js.map +0 -1
  243. package/dist/esm/types/arkos-config/utils.js +0 -2
  244. package/dist/esm/types/arkos-config/utils.js.map +0 -1
  245. package/dist/esm/types/arkos.js +0 -2
  246. package/dist/esm/types/arkos.js.map +0 -1
  247. package/dist/esm/utils/arkos-router/utils/helpers/apply-arkos-router-proxy.js +0 -146
  248. package/dist/esm/utils/arkos-router/utils/helpers/apply-arkos-router-proxy.js.map +0 -1
  249. package/dist/esm/utils/cli/utils/template-generator/templates/policy-template.js +0 -47
  250. package/dist/esm/utils/cli/utils/template-generator/templates/policy-template.js.map +0 -1
  251. package/dist/esm/utils/helpers/exit-error.js +0 -6
  252. package/dist/esm/utils/helpers/exit-error.js.map +0 -1
  253. package/dist/esm/utils/initialize-app.js +0 -50
  254. package/dist/esm/utils/initialize-app.js.map +0 -1
  255. package/dist/esm/utils/setup-app.js +0 -113
  256. package/dist/esm/utils/setup-app.js.map +0 -1
  257. package/dist/types/components/arkos-policy/index.d.ts +0 -31
  258. package/dist/types/components/arkos-policy/types.d.ts +0 -21
  259. package/dist/types/exports/config.d.ts +0 -2
  260. package/dist/types/modules/base/utils/helpers/base.controller.helpers.d.ts +0 -4
  261. package/dist/types/modules/swagger/utils/built-in-route-path-object-manager.d.ts +0 -4
  262. package/dist/types/modules/swagger/utils/get-open-api-login-html.d.ts +0 -1
  263. package/dist/types/modules/swagger/utils/helpers/get-authentication-json-schema-paths.d.ts +0 -4
  264. package/dist/types/modules/swagger/utils/helpers/get-file-upload-json-schema-paths.d.ts +0 -3
  265. package/dist/types/modules/swagger/utils/helpers/get-system-json-schema-paths.d.ts +0 -2
  266. package/dist/types/modules/swagger/utils/helpers/json-schema-generators/generate-class-validator-json-schemas.d.ts +0 -1
  267. package/dist/types/modules/swagger/utils/helpers/json-schema-generators/generate-prisma-json-schemas.d.ts +0 -2
  268. package/dist/types/modules/swagger/utils/helpers/json-schema-generators/generate-system-json-schemas.d.ts +0 -4
  269. package/dist/types/modules/swagger/utils/helpers/json-schema-generators/generate-zod-json-schemas.d.ts +0 -1
  270. package/dist/types/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-main-routes-paths.d.ts +0 -3
  271. package/dist/types/modules/swagger/utils/helpers/json-schema-generators/prisma-models/generate-prisma-model-parent-routes-paths.d.ts +0 -3
  272. package/dist/types/modules/swagger/utils/helpers/missing-json-schemas-generator.d.ts +0 -77
  273. package/dist/types/modules/swagger/utils/helpers/swagger.router.helpers.d.ts +0 -20
  274. package/dist/types/paths.d.ts +0 -1
  275. package/dist/types/types/arkos-config/utils.d.ts +0 -35
  276. package/dist/types/types/arkos.d.ts +0 -31
  277. package/dist/types/utils/arkos-router/utils/helpers/apply-arkos-router-proxy.d.ts +0 -7
  278. package/dist/types/utils/cli/utils/template-generator/templates/policy-template.d.ts +0 -2
  279. package/dist/types/utils/helpers/exit-error.d.ts +0 -1
  280. package/dist/types/utils/initialize-app.d.ts +0 -2
  281. package/dist/types/utils/setup-app.d.ts +0 -2
@@ -1,499 +0,0 @@
1
- import { getModuleComponents } from "../../../../utils/dynamic-loader.js";
2
- import { isEndpointDisabled } from "../../../base/utils/helpers/base.router.helpers.js";
3
- import deepmerge from "../../../../utils/helpers/deepmerge.helper.js";
4
- import { fileUploadDefaultRestrictions } from "../../../file-upload/file-upload.service.js";
5
- export default function getFileUploadJsonSchemaPaths(arkosConfig, existingPaths) {
6
- const paths = { ...existingPaths };
7
- if (!arkosConfig.fileUpload)
8
- return paths;
9
- const FileUploadModuleComponents = getModuleComponents("file-upload");
10
- const routerConfig = FileUploadModuleComponents?.router
11
- ?.config;
12
- const authConfigs = FileUploadModuleComponents?.authConfigs;
13
- if (routerConfig?.disable === true)
14
- return paths;
15
- const isFileUploadEndpointDisabled = (endpoint) => {
16
- return isEndpointDisabled(routerConfig, endpoint);
17
- };
18
- const basePathname = arkosConfig.fileUpload?.baseRoute || "/api/uploads/";
19
- const baseUploadDir = arkosConfig.fileUpload?.baseUploadDir || "uploads";
20
- const restrictions = deepmerge(fileUploadDefaultRestrictions, arkosConfig.fileUpload?.restrictions || {});
21
- const formatBytes = (bytes) => {
22
- if (bytes === 0)
23
- return "0 Bytes";
24
- const k = 1024;
25
- const sizes = ["Bytes", "KB", "MB", "GB"];
26
- const i = Math.floor(Math.log(bytes) / Math.log(k));
27
- return Math.round((bytes / Math.pow(k, i)) * 100) / 100 + " " + sizes[i];
28
- };
29
- const getFileTypeDescription = (fileType) => {
30
- const restriction = restrictions[fileType];
31
- if (!restriction)
32
- return "";
33
- const maxSize = formatBytes(restriction.maxSize);
34
- const maxCount = restriction.maxCount;
35
- const formats = restriction.supportedFilesRegex
36
- ?.toString()
37
- .replace(/\|/g, ", ")
38
- .replace(/\//g, "")
39
- .replace(/\.\*/g, "any format");
40
- return `Maximum file size: ${maxSize}. Maximum files per upload: ${maxCount}. Supported formats: ${formats}`;
41
- };
42
- const shouldIncludeSecurity = (action) => {
43
- const authControl = authConfigs?.authenticationControl;
44
- if (!authControl)
45
- return false;
46
- if (typeof authControl === "boolean")
47
- return authControl;
48
- if (typeof authControl === "object") {
49
- return authControl[action] === true;
50
- }
51
- return false;
52
- };
53
- if (!isFileUploadEndpointDisabled("findFile")) {
54
- const cleanBasePath = basePathname.endsWith("/")
55
- ? basePathname.slice(0, -1)
56
- : basePathname;
57
- const pathname = `${cleanBasePath}/{filePath*}`;
58
- if (!paths[pathname])
59
- paths[pathname] = {};
60
- const currentPath = paths[pathname].get;
61
- const defaultParameters = [
62
- {
63
- name: "filePath",
64
- in: "path",
65
- required: true,
66
- schema: { type: "string" },
67
- description: "Path to the file including file type directory (e.g., images/photo.jpg, videos/clip.mp4)",
68
- },
69
- ];
70
- const existingParams = currentPath?.parameters || [];
71
- const existingParamKeys = new Set(existingParams.map((p) => `${p.in}-${p.name}`));
72
- const mergedParameters = [
73
- ...existingParams,
74
- ...defaultParameters.filter((p) => !existingParamKeys.has(`${p.in}-${p.name}`)),
75
- ];
76
- const defaultSpec = {
77
- tags: ["File Upload", ...(currentPath?.tags || [])].filter((tag) => tag !== "Defaults"),
78
- summary: currentPath?.summary === pathname || !currentPath?.summary
79
- ? "Retrieve uploaded file"
80
- : currentPath?.summary,
81
- description: currentPath?.description === pathname || !currentPath?.description
82
- ? `Serves static files from the upload directory (${baseUploadDir}). This endpoint uses wildcard path matching to serve files from any subdirectory.`
83
- : currentPath?.description,
84
- operationId: currentPath?.operationId?.includes(pathname) ||
85
- !currentPath?.operationId
86
- ? "findFile"
87
- : currentPath?.operationId,
88
- ...(shouldIncludeSecurity("View") && {
89
- security: [{ BearerAuth: [] }],
90
- }),
91
- parameters: mergedParameters,
92
- responses: {
93
- ...(currentPath?.responses || {}),
94
- "200": currentPath?.responses?.["200"] || {
95
- description: "File retrieved successfully",
96
- content: {
97
- "application/octet-stream": {
98
- schema: {
99
- type: "string",
100
- format: "binary",
101
- },
102
- },
103
- },
104
- },
105
- "404": currentPath?.responses?.["404"] || {
106
- description: "File not found",
107
- },
108
- ...(shouldIncludeSecurity("View") && {
109
- "401": currentPath?.responses?.["401"] || {
110
- description: "Authentication required",
111
- },
112
- "403": currentPath?.responses?.["403"] || {
113
- description: "Insufficient permissions to view files",
114
- },
115
- }),
116
- },
117
- };
118
- paths[pathname].get = { ...(currentPath || {}), ...defaultSpec };
119
- }
120
- if (!isFileUploadEndpointDisabled("uploadFile")) {
121
- const cleanBasePath = basePathname.endsWith("/")
122
- ? basePathname.slice(0, -1)
123
- : basePathname;
124
- const pathname = `${cleanBasePath}/{fileType}`;
125
- if (!paths[pathname])
126
- paths[pathname] = {};
127
- const currentPath = paths[pathname].post;
128
- const defaultParameters = [
129
- {
130
- name: "fileType",
131
- in: "path",
132
- required: true,
133
- schema: {
134
- type: "string",
135
- enum: ["images", "videos", "documents", "files"],
136
- },
137
- description: "Type of file being uploaded",
138
- },
139
- {
140
- name: "format",
141
- in: "query",
142
- required: false,
143
- schema: {
144
- type: "string",
145
- enum: ["jpeg", "jpg", "png", "webp", "gif", "avif"],
146
- },
147
- description: "Image format for conversion (only applicable for fileType=images)",
148
- },
149
- {
150
- name: "width",
151
- in: "query",
152
- required: false,
153
- schema: { type: "integer", minimum: 1 },
154
- description: "Target width for image resize (only applicable for fileType=images)",
155
- },
156
- {
157
- name: "height",
158
- in: "query",
159
- required: false,
160
- schema: { type: "integer", minimum: 1 },
161
- description: "Target height for image resize (only applicable for fileType=images)",
162
- },
163
- {
164
- name: "resizeTo",
165
- in: "query",
166
- required: false,
167
- schema: {
168
- type: "string",
169
- enum: ["cover", "contain", "fill", "inside", "outside"],
170
- },
171
- description: "Resize strategy (only applicable for fileType=images)",
172
- },
173
- ];
174
- const existingParams = currentPath?.parameters || [];
175
- const existingParamKeys = new Set(existingParams.map((p) => `${p.in}-${p.name}`));
176
- const mergedParameters = [
177
- ...existingParams,
178
- ...defaultParameters.filter((p) => !existingParamKeys.has(`${p.in}-${p.name}`)),
179
- ];
180
- const defaultSpec = {
181
- tags: ["File Upload", ...(currentPath?.tags || [])].filter((tag) => tag !== "Defaults"),
182
- summary: currentPath?.summary === pathname || !currentPath?.summary
183
- ? "Upload file(s)"
184
- : currentPath?.summary,
185
- description: currentPath?.description === pathname || !currentPath?.description
186
- ? "Upload one or multiple files. Supports image processing options for image uploads."
187
- : currentPath?.description,
188
- operationId: currentPath?.operationId?.includes(pathname) ||
189
- !currentPath?.operationId
190
- ? "uploadFile"
191
- : currentPath?.operationId,
192
- ...(shouldIncludeSecurity("Create") && {
193
- security: [{ BearerAuth: [] }],
194
- }),
195
- parameters: mergedParameters,
196
- requestBody: currentPath?.requestBody || {
197
- required: true,
198
- content: {
199
- "multipart/form-data": {
200
- schema: {
201
- type: "object",
202
- properties: {
203
- images: {
204
- type: "array",
205
- items: { type: "string", format: "binary" },
206
- description: getFileTypeDescription("images"),
207
- },
208
- videos: {
209
- type: "array",
210
- items: { type: "string", format: "binary" },
211
- description: getFileTypeDescription("videos"),
212
- },
213
- documents: {
214
- type: "array",
215
- items: { type: "string", format: "binary" },
216
- description: getFileTypeDescription("documents"),
217
- },
218
- files: {
219
- type: "array",
220
- items: { type: "string", format: "binary" },
221
- description: getFileTypeDescription("files"),
222
- },
223
- },
224
- },
225
- },
226
- },
227
- },
228
- responses: {
229
- ...(currentPath?.responses || {}),
230
- "200": currentPath?.responses?.["200"] || {
231
- description: "File(s) uploaded successfully",
232
- content: {
233
- "application/json": {
234
- schema: {
235
- type: "object",
236
- properties: {
237
- success: { type: "boolean", example: true },
238
- data: {
239
- oneOf: [
240
- { type: "string", description: "URL of uploaded file" },
241
- {
242
- type: "array",
243
- items: { type: "string" },
244
- description: "URLs of uploaded files",
245
- },
246
- ],
247
- },
248
- message: { type: "string" },
249
- },
250
- },
251
- },
252
- },
253
- },
254
- "400": currentPath?.responses?.["400"] || {
255
- description: "Invalid file type, size limit exceeded, or no file uploaded",
256
- },
257
- ...(shouldIncludeSecurity("Create") && {
258
- "401": currentPath?.responses?.["401"] || {
259
- description: "Authentication required",
260
- },
261
- "403": currentPath?.responses?.["403"] || {
262
- description: "Insufficient permissions to upload files",
263
- },
264
- }),
265
- },
266
- };
267
- paths[pathname].post = { ...(currentPath || {}), ...defaultSpec };
268
- }
269
- if (!isFileUploadEndpointDisabled("updateFile")) {
270
- const cleanBasePath = basePathname.endsWith("/")
271
- ? basePathname.slice(0, -1)
272
- : basePathname;
273
- const pathname = `${cleanBasePath}/{fileType}/{fileName}`;
274
- if (!paths[pathname])
275
- paths[pathname] = {};
276
- const currentPath = paths[pathname].patch;
277
- const defaultParameters = [
278
- {
279
- name: "fileType",
280
- in: "path",
281
- required: true,
282
- schema: {
283
- type: "string",
284
- enum: ["images", "videos", "documents", "files"],
285
- },
286
- description: "Type of file being updated",
287
- },
288
- {
289
- name: "fileName",
290
- in: "path",
291
- required: true,
292
- schema: { type: "string" },
293
- description: "Name of the file to update",
294
- },
295
- {
296
- name: "format",
297
- in: "query",
298
- required: false,
299
- schema: {
300
- type: "string",
301
- enum: ["jpeg", "jpg", "png", "webp", "gif", "avif"],
302
- },
303
- description: "Image format for conversion (only applicable for fileType=images)",
304
- },
305
- {
306
- name: "width",
307
- in: "query",
308
- required: false,
309
- schema: { type: "integer", minimum: 1 },
310
- description: "Target width for image resize (only applicable for fileType=images)",
311
- },
312
- {
313
- name: "height",
314
- in: "query",
315
- required: false,
316
- schema: { type: "integer", minimum: 1 },
317
- description: "Target height for image resize (only applicable for fileType=images)",
318
- },
319
- {
320
- name: "resizeTo",
321
- in: "query",
322
- required: false,
323
- schema: {
324
- type: "string",
325
- enum: ["cover", "contain", "fill", "inside", "outside"],
326
- },
327
- description: "Resize strategy (only applicable for fileType=images)",
328
- },
329
- ];
330
- const existingParams = currentPath?.parameters || [];
331
- const existingParamKeys = new Set(existingParams.map((p) => `${p.in}-${p.name}`));
332
- const mergedParameters = [
333
- ...existingParams,
334
- ...defaultParameters.filter((p) => !existingParamKeys.has(`${p.in}-${p.name}`)),
335
- ];
336
- const defaultSpec = {
337
- tags: ["File Upload", ...(currentPath?.tags || [])].filter((tag) => tag !== "Defaults"),
338
- summary: currentPath?.summary === pathname || !currentPath?.summary
339
- ? "Update existing file"
340
- : currentPath?.summary,
341
- description: currentPath?.description === pathname || !currentPath?.description
342
- ? "Replace an existing file with a new one. Deletes the old file and uploads the new one."
343
- : currentPath?.description,
344
- operationId: currentPath?.operationId?.includes(pathname) ||
345
- !currentPath?.operationId
346
- ? "updateFile"
347
- : currentPath?.operationId,
348
- ...(shouldIncludeSecurity("Update") && {
349
- security: [{ BearerAuth: [] }],
350
- }),
351
- parameters: mergedParameters,
352
- requestBody: currentPath?.requestBody || {
353
- required: true,
354
- content: {
355
- "multipart/form-data": {
356
- schema: {
357
- type: "object",
358
- properties: {
359
- images: {
360
- type: "array",
361
- items: { type: "string", format: "binary" },
362
- description: getFileTypeDescription("images"),
363
- },
364
- videos: {
365
- type: "array",
366
- items: { type: "string", format: "binary" },
367
- description: getFileTypeDescription("videos"),
368
- },
369
- documents: {
370
- type: "array",
371
- items: { type: "string", format: "binary" },
372
- description: getFileTypeDescription("documents"),
373
- },
374
- files: {
375
- type: "array",
376
- items: { type: "string", format: "binary" },
377
- description: getFileTypeDescription("files"),
378
- },
379
- },
380
- },
381
- },
382
- },
383
- },
384
- responses: {
385
- ...(currentPath?.responses || {}),
386
- "200": currentPath?.responses?.["200"] || {
387
- description: "File updated successfully",
388
- content: {
389
- "application/json": {
390
- schema: {
391
- type: "object",
392
- properties: {
393
- success: { type: "boolean", example: true },
394
- data: {
395
- oneOf: [
396
- { type: "string", description: "URL of updated file" },
397
- {
398
- type: "array",
399
- items: { type: "string" },
400
- description: "URLs of updated files",
401
- },
402
- ],
403
- },
404
- message: { type: "string" },
405
- },
406
- },
407
- },
408
- },
409
- },
410
- "400": currentPath?.responses?.["400"] || {
411
- description: "Invalid file type, size limit exceeded, or no file uploaded",
412
- },
413
- "404": currentPath?.responses?.["404"] || {
414
- description: "Original file not found",
415
- },
416
- ...(shouldIncludeSecurity("Update") && {
417
- "401": currentPath?.responses?.["401"] || {
418
- description: "Authentication required",
419
- },
420
- "403": currentPath?.responses?.["403"] || {
421
- description: "Insufficient permissions to update files",
422
- },
423
- }),
424
- },
425
- };
426
- paths[pathname].patch = { ...(currentPath || {}), ...defaultSpec };
427
- }
428
- if (!isFileUploadEndpointDisabled("deleteFile")) {
429
- const cleanBasePath = basePathname.endsWith("/")
430
- ? basePathname.slice(0, -1)
431
- : basePathname;
432
- const pathname = `${cleanBasePath}/{fileType}/{fileName}`;
433
- if (!paths[pathname])
434
- paths[pathname] = {};
435
- const currentPath = paths[pathname].delete;
436
- const defaultParameters = [
437
- {
438
- name: "fileType",
439
- in: "path",
440
- required: true,
441
- schema: {
442
- type: "string",
443
- enum: ["images", "videos", "documents", "files"],
444
- },
445
- description: "Type of file being deleted",
446
- },
447
- {
448
- name: "fileName",
449
- in: "path",
450
- required: true,
451
- schema: { type: "string" },
452
- description: "Name of the file to delete",
453
- },
454
- ];
455
- const existingParams = currentPath?.parameters || [];
456
- const existingParamKeys = new Set(existingParams.map((p) => `${p.in}-${p.name}`));
457
- const mergedParameters = [
458
- ...existingParams,
459
- ...defaultParameters.filter((p) => !existingParamKeys.has(`${p.in}-${p.name}`)),
460
- ];
461
- const defaultSpec = {
462
- tags: ["File Upload", ...(currentPath?.tags || [])].filter((tag) => tag !== "Defaults"),
463
- summary: currentPath?.summary === pathname || !currentPath?.summary
464
- ? "Delete file"
465
- : currentPath?.summary,
466
- description: currentPath?.description === pathname || !currentPath?.description
467
- ? "Delete an uploaded file from the server"
468
- : currentPath?.description,
469
- operationId: currentPath?.operationId?.includes(pathname) ||
470
- !currentPath?.operationId
471
- ? "deleteFile"
472
- : currentPath?.operationId,
473
- ...(shouldIncludeSecurity("Delete") && {
474
- security: [{ BearerAuth: [] }],
475
- }),
476
- parameters: mergedParameters,
477
- responses: {
478
- ...(currentPath?.responses || {}),
479
- "204": currentPath?.responses?.["204"] || {
480
- description: "File deleted successfully",
481
- },
482
- "404": currentPath?.responses?.["404"] || {
483
- description: "File not found",
484
- },
485
- ...(shouldIncludeSecurity("Delete") && {
486
- "401": currentPath?.responses?.["401"] || {
487
- description: "Authentication required",
488
- },
489
- "403": currentPath?.responses?.["403"] || {
490
- description: "Insufficient permissions to delete files",
491
- },
492
- }),
493
- },
494
- };
495
- paths[pathname].delete = { ...(currentPath || {}), ...defaultSpec };
496
- }
497
- return paths;
498
- }
499
- //# sourceMappingURL=get-file-upload-json-schema-paths.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-file-upload-json-schema-paths.js","sourceRoot":"","sources":["../../../../../../src/modules/swagger/utils/helpers/get-file-upload-json-schema-paths.ts"],"names":[],"mappings":"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","sourcesContent":["import { OpenAPIV3 } from \"openapi-types\";\nimport { ArkosConfig, RouterConfig } from \"../../../../exports\";\nimport { getModuleComponents } from \"../../../../utils/dynamic-loader\";\nimport { isEndpointDisabled } from \"../../../base/utils/helpers/base.router.helpers\";\nimport deepmerge from \"../../../../utils/helpers/deepmerge.helper\";\nimport { fileUploadDefaultRestrictions } from \"../../../file-upload/file-upload.service\";\n\nexport default function getFileUploadJsonSchemaPaths(\n arkosConfig: ArkosConfig,\n existingPaths: OpenAPIV3.PathsObject\n) {\n const paths: OpenAPIV3.PathsObject = { ...existingPaths };\n\n if (!arkosConfig.fileUpload) return paths;\n\n const FileUploadModuleComponents = getModuleComponents(\"file-upload\");\n const routerConfig = FileUploadModuleComponents?.router\n ?.config as RouterConfig<\"file-upload\">;\n const authConfigs = FileUploadModuleComponents?.authConfigs;\n\n if (routerConfig?.disable === true) return paths;\n\n const isFileUploadEndpointDisabled = (endpoint: string): boolean => {\n return isEndpointDisabled(routerConfig, endpoint as any);\n };\n\n const basePathname = arkosConfig.fileUpload?.baseRoute || \"/api/uploads/\";\n const baseUploadDir = arkosConfig.fileUpload?.baseUploadDir || \"uploads\";\n\n const restrictions = deepmerge(\n fileUploadDefaultRestrictions,\n arkosConfig.fileUpload?.restrictions || {}\n );\n\n const formatBytes = (bytes: number): string => {\n if (bytes === 0) return \"0 Bytes\";\n const k = 1024;\n const sizes = [\"Bytes\", \"KB\", \"MB\", \"GB\"];\n const i = Math.floor(Math.log(bytes) / Math.log(k));\n return Math.round((bytes / Math.pow(k, i)) * 100) / 100 + \" \" + sizes[i];\n };\n\n const getFileTypeDescription = (fileType: string): string => {\n const restriction = restrictions[fileType as keyof typeof restrictions];\n if (!restriction) return \"\";\n\n const maxSize = formatBytes(restriction.maxSize!);\n const maxCount = restriction.maxCount;\n const formats = restriction.supportedFilesRegex\n ?.toString()\n .replace(/\\|/g, \", \")\n .replace(/\\//g, \"\")\n .replace(/\\.\\*/g, \"any format\");\n\n return `Maximum file size: ${maxSize}. Maximum files per upload: ${maxCount}. Supported formats: ${formats}`;\n };\n\n const shouldIncludeSecurity = (\n action: \"View\" | \"Create\" | \"Update\" | \"Delete\"\n ): boolean => {\n const authControl = authConfigs?.authenticationControl;\n if (!authControl) return false;\n\n if (typeof authControl === \"boolean\") return authControl;\n if (typeof authControl === \"object\") {\n return authControl[action] === true;\n }\n\n return false;\n };\n\n // Find File - GET /{filePath*}\n if (!isFileUploadEndpointDisabled(\"findFile\")) {\n const cleanBasePath = basePathname.endsWith(\"/\")\n ? basePathname.slice(0, -1)\n : basePathname;\n const pathname = `${cleanBasePath}/{filePath*}`;\n\n if (!paths[pathname]) paths[pathname] = {};\n const currentPath = paths[pathname]!.get;\n\n const defaultParameters: OpenAPIV3.ParameterObject[] = [\n {\n name: \"filePath\",\n in: \"path\",\n required: true,\n schema: { type: \"string\" },\n description:\n \"Path to the file including file type directory (e.g., images/photo.jpg, videos/clip.mp4)\",\n },\n ];\n\n const existingParams =\n (currentPath?.parameters as OpenAPIV3.ParameterObject[]) || [];\n const existingParamKeys = new Set(\n existingParams.map((p) => `${p.in}-${p.name}`)\n );\n\n const mergedParameters = [\n ...existingParams,\n ...defaultParameters.filter(\n (p) => !existingParamKeys.has(`${p.in}-${p.name}`)\n ),\n ];\n\n const defaultSpec = {\n tags: [\"File Upload\", ...(currentPath?.tags || [])].filter(\n (tag) => tag !== \"Defaults\"\n ),\n summary:\n currentPath?.summary === pathname || !currentPath?.summary\n ? \"Retrieve uploaded file\"\n : currentPath?.summary,\n description:\n currentPath?.description === pathname || !currentPath?.description\n ? `Serves static files from the upload directory (${baseUploadDir}). This endpoint uses wildcard path matching to serve files from any subdirectory.`\n : currentPath?.description,\n operationId:\n currentPath?.operationId?.includes(pathname) ||\n !currentPath?.operationId\n ? \"findFile\"\n : currentPath?.operationId,\n ...(shouldIncludeSecurity(\"View\") && {\n security: [{ BearerAuth: [] }],\n }),\n parameters: mergedParameters,\n responses: {\n ...(currentPath?.responses || {}),\n \"200\": currentPath?.responses?.[\"200\"] || {\n description: \"File retrieved successfully\",\n content: {\n \"application/octet-stream\": {\n schema: {\n type: \"string\",\n format: \"binary\",\n },\n },\n },\n },\n \"404\": currentPath?.responses?.[\"404\"] || {\n description: \"File not found\",\n },\n ...(shouldIncludeSecurity(\"View\") && {\n \"401\": currentPath?.responses?.[\"401\"] || {\n description: \"Authentication required\",\n },\n \"403\": currentPath?.responses?.[\"403\"] || {\n description: \"Insufficient permissions to view files\",\n },\n }),\n },\n };\n\n paths[pathname]!.get = { ...(currentPath || {}), ...defaultSpec };\n }\n\n // Upload File - POST /{fileType}\n if (!isFileUploadEndpointDisabled(\"uploadFile\")) {\n const cleanBasePath = basePathname.endsWith(\"/\")\n ? basePathname.slice(0, -1)\n : basePathname;\n const pathname = `${cleanBasePath}/{fileType}`;\n\n if (!paths[pathname]) paths[pathname] = {};\n const currentPath = paths[pathname]!.post;\n\n const defaultParameters: OpenAPIV3.ParameterObject[] = [\n {\n name: \"fileType\",\n in: \"path\",\n required: true,\n schema: {\n type: \"string\",\n enum: [\"images\", \"videos\", \"documents\", \"files\"],\n },\n description: \"Type of file being uploaded\",\n },\n {\n name: \"format\",\n in: \"query\",\n required: false,\n schema: {\n type: \"string\",\n enum: [\"jpeg\", \"jpg\", \"png\", \"webp\", \"gif\", \"avif\"],\n },\n description:\n \"Image format for conversion (only applicable for fileType=images)\",\n },\n {\n name: \"width\",\n in: \"query\",\n required: false,\n schema: { type: \"integer\", minimum: 1 },\n description:\n \"Target width for image resize (only applicable for fileType=images)\",\n },\n {\n name: \"height\",\n in: \"query\",\n required: false,\n schema: { type: \"integer\", minimum: 1 },\n description:\n \"Target height for image resize (only applicable for fileType=images)\",\n },\n {\n name: \"resizeTo\",\n in: \"query\",\n required: false,\n schema: {\n type: \"string\",\n enum: [\"cover\", \"contain\", \"fill\", \"inside\", \"outside\"],\n },\n description: \"Resize strategy (only applicable for fileType=images)\",\n },\n ];\n\n const existingParams =\n (currentPath?.parameters as OpenAPIV3.ParameterObject[]) || [];\n const existingParamKeys = new Set(\n existingParams.map((p) => `${p.in}-${p.name}`)\n );\n\n const mergedParameters = [\n ...existingParams,\n ...defaultParameters.filter(\n (p) => !existingParamKeys.has(`${p.in}-${p.name}`)\n ),\n ];\n\n const defaultSpec = {\n tags: [\"File Upload\", ...(currentPath?.tags || [])].filter(\n (tag) => tag !== \"Defaults\"\n ),\n summary:\n currentPath?.summary === pathname || !currentPath?.summary\n ? \"Upload file(s)\"\n : currentPath?.summary,\n description:\n currentPath?.description === pathname || !currentPath?.description\n ? \"Upload one or multiple files. Supports image processing options for image uploads.\"\n : currentPath?.description,\n operationId:\n currentPath?.operationId?.includes(pathname) ||\n !currentPath?.operationId\n ? \"uploadFile\"\n : currentPath?.operationId,\n ...(shouldIncludeSecurity(\"Create\") && {\n security: [{ BearerAuth: [] }],\n }),\n parameters: mergedParameters,\n requestBody: currentPath?.requestBody || {\n required: true,\n content: {\n \"multipart/form-data\": {\n schema: {\n type: \"object\",\n properties: {\n images: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"images\"),\n },\n videos: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"videos\"),\n },\n documents: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"documents\"),\n },\n files: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"files\"),\n },\n },\n },\n },\n },\n },\n responses: {\n ...(currentPath?.responses || {}),\n \"200\": currentPath?.responses?.[\"200\"] || {\n description: \"File(s) uploaded successfully\",\n content: {\n \"application/json\": {\n schema: {\n type: \"object\",\n properties: {\n success: { type: \"boolean\", example: true },\n data: {\n oneOf: [\n { type: \"string\", description: \"URL of uploaded file\" },\n {\n type: \"array\",\n items: { type: \"string\" },\n description: \"URLs of uploaded files\",\n },\n ],\n },\n message: { type: \"string\" },\n },\n },\n },\n },\n },\n \"400\": currentPath?.responses?.[\"400\"] || {\n description:\n \"Invalid file type, size limit exceeded, or no file uploaded\",\n },\n ...(shouldIncludeSecurity(\"Create\") && {\n \"401\": currentPath?.responses?.[\"401\"] || {\n description: \"Authentication required\",\n },\n \"403\": currentPath?.responses?.[\"403\"] || {\n description: \"Insufficient permissions to upload files\",\n },\n }),\n },\n };\n\n paths[pathname]!.post = { ...(currentPath || {}), ...defaultSpec };\n }\n\n // Update File - PATCH /{fileType}/{fileName}\n if (!isFileUploadEndpointDisabled(\"updateFile\")) {\n const cleanBasePath = basePathname.endsWith(\"/\")\n ? basePathname.slice(0, -1)\n : basePathname;\n const pathname = `${cleanBasePath}/{fileType}/{fileName}`;\n\n if (!paths[pathname]) paths[pathname] = {};\n const currentPath = paths[pathname]!.patch;\n\n const defaultParameters: OpenAPIV3.ParameterObject[] = [\n {\n name: \"fileType\",\n in: \"path\",\n required: true,\n schema: {\n type: \"string\",\n enum: [\"images\", \"videos\", \"documents\", \"files\"],\n },\n description: \"Type of file being updated\",\n },\n {\n name: \"fileName\",\n in: \"path\",\n required: true,\n schema: { type: \"string\" },\n description: \"Name of the file to update\",\n },\n {\n name: \"format\",\n in: \"query\",\n required: false,\n schema: {\n type: \"string\",\n enum: [\"jpeg\", \"jpg\", \"png\", \"webp\", \"gif\", \"avif\"],\n },\n description:\n \"Image format for conversion (only applicable for fileType=images)\",\n },\n {\n name: \"width\",\n in: \"query\",\n required: false,\n schema: { type: \"integer\", minimum: 1 },\n description:\n \"Target width for image resize (only applicable for fileType=images)\",\n },\n {\n name: \"height\",\n in: \"query\",\n required: false,\n schema: { type: \"integer\", minimum: 1 },\n description:\n \"Target height for image resize (only applicable for fileType=images)\",\n },\n {\n name: \"resizeTo\",\n in: \"query\",\n required: false,\n schema: {\n type: \"string\",\n enum: [\"cover\", \"contain\", \"fill\", \"inside\", \"outside\"],\n },\n description: \"Resize strategy (only applicable for fileType=images)\",\n },\n ];\n\n const existingParams =\n (currentPath?.parameters as OpenAPIV3.ParameterObject[]) || [];\n const existingParamKeys = new Set(\n existingParams.map((p) => `${p.in}-${p.name}`)\n );\n\n const mergedParameters = [\n ...existingParams,\n ...defaultParameters.filter(\n (p) => !existingParamKeys.has(`${p.in}-${p.name}`)\n ),\n ];\n\n const defaultSpec = {\n tags: [\"File Upload\", ...(currentPath?.tags || [])].filter(\n (tag) => tag !== \"Defaults\"\n ),\n summary:\n currentPath?.summary === pathname || !currentPath?.summary\n ? \"Update existing file\"\n : currentPath?.summary,\n description:\n currentPath?.description === pathname || !currentPath?.description\n ? \"Replace an existing file with a new one. Deletes the old file and uploads the new one.\"\n : currentPath?.description,\n operationId:\n currentPath?.operationId?.includes(pathname) ||\n !currentPath?.operationId\n ? \"updateFile\"\n : currentPath?.operationId,\n ...(shouldIncludeSecurity(\"Update\") && {\n security: [{ BearerAuth: [] }],\n }),\n parameters: mergedParameters,\n requestBody: currentPath?.requestBody || {\n required: true,\n content: {\n \"multipart/form-data\": {\n schema: {\n type: \"object\",\n properties: {\n images: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"images\"),\n },\n videos: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"videos\"),\n },\n documents: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"documents\"),\n },\n files: {\n type: \"array\",\n items: { type: \"string\", format: \"binary\" },\n description: getFileTypeDescription(\"files\"),\n },\n },\n },\n },\n },\n },\n responses: {\n ...(currentPath?.responses || {}),\n \"200\": currentPath?.responses?.[\"200\"] || {\n description: \"File updated successfully\",\n content: {\n \"application/json\": {\n schema: {\n type: \"object\",\n properties: {\n success: { type: \"boolean\", example: true },\n data: {\n oneOf: [\n { type: \"string\", description: \"URL of updated file\" },\n {\n type: \"array\",\n items: { type: \"string\" },\n description: \"URLs of updated files\",\n },\n ],\n },\n message: { type: \"string\" },\n },\n },\n },\n },\n },\n \"400\": currentPath?.responses?.[\"400\"] || {\n description:\n \"Invalid file type, size limit exceeded, or no file uploaded\",\n },\n \"404\": currentPath?.responses?.[\"404\"] || {\n description: \"Original file not found\",\n },\n ...(shouldIncludeSecurity(\"Update\") && {\n \"401\": currentPath?.responses?.[\"401\"] || {\n description: \"Authentication required\",\n },\n \"403\": currentPath?.responses?.[\"403\"] || {\n description: \"Insufficient permissions to update files\",\n },\n }),\n },\n };\n\n paths[pathname]!.patch = { ...(currentPath || {}), ...defaultSpec };\n }\n\n // Delete File - DELETE /{fileType}/{fileName}\n if (!isFileUploadEndpointDisabled(\"deleteFile\")) {\n const cleanBasePath = basePathname.endsWith(\"/\")\n ? basePathname.slice(0, -1)\n : basePathname;\n const pathname = `${cleanBasePath}/{fileType}/{fileName}`;\n\n if (!paths[pathname]) paths[pathname] = {};\n const currentPath = paths[pathname]!.delete;\n\n const defaultParameters: OpenAPIV3.ParameterObject[] = [\n {\n name: \"fileType\",\n in: \"path\",\n required: true,\n schema: {\n type: \"string\",\n enum: [\"images\", \"videos\", \"documents\", \"files\"],\n },\n description: \"Type of file being deleted\",\n },\n {\n name: \"fileName\",\n in: \"path\",\n required: true,\n schema: { type: \"string\" },\n description: \"Name of the file to delete\",\n },\n ];\n\n const existingParams =\n (currentPath?.parameters as OpenAPIV3.ParameterObject[]) || [];\n const existingParamKeys = new Set(\n existingParams.map((p) => `${p.in}-${p.name}`)\n );\n\n const mergedParameters = [\n ...existingParams,\n ...defaultParameters.filter(\n (p) => !existingParamKeys.has(`${p.in}-${p.name}`)\n ),\n ];\n\n const defaultSpec = {\n tags: [\"File Upload\", ...(currentPath?.tags || [])].filter(\n (tag) => tag !== \"Defaults\"\n ),\n summary:\n currentPath?.summary === pathname || !currentPath?.summary\n ? \"Delete file\"\n : currentPath?.summary,\n description:\n currentPath?.description === pathname || !currentPath?.description\n ? \"Delete an uploaded file from the server\"\n : currentPath?.description,\n operationId:\n currentPath?.operationId?.includes(pathname) ||\n !currentPath?.operationId\n ? \"deleteFile\"\n : currentPath?.operationId,\n ...(shouldIncludeSecurity(\"Delete\") && {\n security: [{ BearerAuth: [] }],\n }),\n parameters: mergedParameters,\n responses: {\n ...(currentPath?.responses || {}),\n \"204\": currentPath?.responses?.[\"204\"] || {\n description: \"File deleted successfully\",\n },\n \"404\": currentPath?.responses?.[\"404\"] || {\n description: \"File not found\",\n },\n ...(shouldIncludeSecurity(\"Delete\") && {\n \"401\": currentPath?.responses?.[\"401\"] || {\n description: \"Authentication required\",\n },\n \"403\": currentPath?.responses?.[\"403\"] || {\n description: \"Insufficient permissions to delete files\",\n },\n }),\n },\n };\n\n paths[pathname]!.delete = { ...(currentPath || {}), ...defaultSpec };\n }\n\n return paths;\n}\n"]}
@@ -1,34 +0,0 @@
1
- export function getSystemJsonSchemaPaths() {
2
- const paths = {};
3
- paths["/api/available-resources"] = {
4
- get: {
5
- tags: ["System"],
6
- summary: "Get available resources",
7
- description: "Returns a comprehensive list of all available API resource endpoints",
8
- operationId: "getAvailableResources",
9
- responses: {
10
- "200": {
11
- description: "List of available resources retrieved successfully",
12
- content: {
13
- "application/json": {
14
- schema: {
15
- type: "object",
16
- properties: {
17
- data: {
18
- type: "array",
19
- items: {
20
- type: "string",
21
- },
22
- description: "Array of available resource endpoints",
23
- },
24
- },
25
- },
26
- },
27
- },
28
- },
29
- },
30
- },
31
- };
32
- return paths;
33
- }
34
- //# sourceMappingURL=get-system-json-schema-paths.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"get-system-json-schema-paths.js","sourceRoot":"","sources":["../../../../../../src/modules/swagger/utils/helpers/get-system-json-schema-paths.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,wBAAwB;IACtC,MAAM,KAAK,GAA0B,EAAE,CAAC;IAExC,KAAK,CAAC,0BAA0B,CAAC,GAAG;QAClC,GAAG,EAAE;YACH,IAAI,EAAE,CAAC,QAAQ,CAAC;YAChB,OAAO,EAAE,yBAAyB;YAClC,WAAW,EACT,sEAAsE;YACxE,WAAW,EAAE,uBAAuB;YACpC,SAAS,EAAE;gBACT,KAAK,EAAE;oBACL,WAAW,EAAE,oDAAoD;oBACjE,OAAO,EAAE;wBACP,kBAAkB,EAAE;4BAClB,MAAM,EAAE;gCACN,IAAI,EAAE,QAAQ;gCACd,UAAU,EAAE;oCACV,IAAI,EAAE;wCACJ,IAAI,EAAE,OAAO;wCACb,KAAK,EAAE;4CACL,IAAI,EAAE,QAAQ;yCACf;wCACD,WAAW,EAAE,uCAAuC;qCACrD;iCACF;6BACF;yBACF;qBACF;iBACF;aACF;SACF;KACF,CAAC;IAEF,OAAO,KAAK,CAAC;AACf,CAAC","sourcesContent":["import { OpenAPIV3 } from \"openapi-types\";\n\nexport function getSystemJsonSchemaPaths() {\n const paths: OpenAPIV3.PathsObject = {};\n\n paths[\"/api/available-resources\"] = {\n get: {\n tags: [\"System\"],\n summary: \"Get available resources\",\n description:\n \"Returns a comprehensive list of all available API resource endpoints\",\n operationId: \"getAvailableResources\",\n responses: {\n \"200\": {\n description: \"List of available resources retrieved successfully\",\n content: {\n \"application/json\": {\n schema: {\n type: \"object\",\n properties: {\n data: {\n type: \"array\",\n items: {\n type: \"string\",\n },\n description: \"Array of available resource endpoints\",\n },\n },\n },\n },\n },\n },\n },\n },\n };\n\n return paths;\n}\n"]}