@nextsparkjs/core 0.1.0-beta.83 → 0.1.0-beta.85

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 (365) hide show
  1. package/dist/styles/classes.json +1 -1
  2. package/dist/templates/app/(auth)/forgot-password/page.tsx +216 -0
  3. package/dist/templates/app/(auth)/layout.tsx +51 -0
  4. package/dist/templates/app/(auth)/login/page.tsx +21 -0
  5. package/dist/templates/app/(auth)/reset-password/page.tsx +212 -0
  6. package/dist/templates/app/(auth)/signup/page.tsx +21 -0
  7. package/dist/templates/app/(auth)/verify-email/page.tsx +190 -0
  8. package/dist/templates/app/(public)/[...slug]/page.tsx +378 -0
  9. package/dist/templates/app/(public)/docs/[section]/[page]/page.tsx +90 -0
  10. package/dist/templates/app/(public)/docs/layout.tsx +25 -0
  11. package/dist/templates/app/(public)/docs/page.tsx +81 -0
  12. package/dist/templates/app/(public)/layout.tsx +41 -0
  13. package/dist/templates/app/(public)/page.tsx +19 -0
  14. package/dist/templates/app/403/page.tsx +89 -0
  15. package/dist/templates/app/api/auth/[...all]/route.ts +78 -0
  16. package/dist/templates/app/api/cron/billing/lifecycle/route.ts +98 -0
  17. package/dist/templates/app/api/csp-report/route.ts +175 -0
  18. package/dist/templates/app/api/devtools/config/entities/route.ts +108 -0
  19. package/dist/templates/app/api/devtools/config/theme/route.ts +66 -0
  20. package/dist/templates/app/api/devtools/tests/[...path]/route.ts +130 -0
  21. package/dist/templates/app/api/devtools/tests/route.ts +134 -0
  22. package/dist/templates/app/api/health/route.ts +29 -0
  23. package/dist/templates/app/api/internal/user-metadata/route.ts +36 -0
  24. package/dist/templates/app/api/superadmin/subscriptions/route.ts +310 -0
  25. package/dist/templates/app/api/superadmin/teams/[teamId]/route.ts +286 -0
  26. package/dist/templates/app/api/superadmin/teams/route.ts +188 -0
  27. package/dist/templates/app/api/superadmin/users/[userId]/route.ts +540 -0
  28. package/dist/templates/app/api/superadmin/users/route.ts +323 -0
  29. package/dist/templates/app/api/user/delete-account/route.ts +55 -0
  30. package/dist/templates/app/api/user/plan-flags/route.ts +283 -0
  31. package/dist/templates/app/api/user/profile/route.ts +133 -0
  32. package/dist/templates/app/api/v1/[entity]/[id]/child/[childType]/[childId]/route.ts +210 -0
  33. package/dist/templates/app/api/v1/[entity]/[id]/child/[childType]/route.ts +331 -0
  34. package/dist/templates/app/api/v1/[entity]/[id]/route.ts +35 -0
  35. package/dist/templates/app/api/v1/[entity]/docs.md +369 -0
  36. package/dist/templates/app/api/v1/[entity]/presets.ts +194 -0
  37. package/dist/templates/app/api/v1/[entity]/route.ts +31 -0
  38. package/dist/templates/app/api/v1/api-keys/[id]/route.ts +303 -0
  39. package/dist/templates/app/api/v1/api-keys/docs.md +101 -0
  40. package/dist/templates/app/api/v1/api-keys/presets.ts +31 -0
  41. package/dist/templates/app/api/v1/api-keys/route.ts +250 -0
  42. package/dist/templates/app/api/v1/auth/docs.md +184 -0
  43. package/dist/templates/app/api/v1/auth/presets.ts +44 -0
  44. package/dist/templates/app/api/v1/auth/signup-with-invite/route.ts +227 -0
  45. package/dist/templates/app/api/v1/billing/cancel/route.ts +206 -0
  46. package/dist/templates/app/api/v1/billing/change-plan/route.ts +97 -0
  47. package/dist/templates/app/api/v1/billing/check-action/route.ts +81 -0
  48. package/dist/templates/app/api/v1/billing/checkout/route.ts +124 -0
  49. package/dist/templates/app/api/v1/billing/docs.md +209 -0
  50. package/dist/templates/app/api/v1/billing/plans/route.ts +85 -0
  51. package/dist/templates/app/api/v1/billing/portal/route.ts +90 -0
  52. package/dist/templates/app/api/v1/billing/presets.ts +121 -0
  53. package/dist/templates/app/api/v1/billing/webhooks/stripe/route.ts +428 -0
  54. package/dist/templates/app/api/v1/blocks/[slug]/route.ts +29 -0
  55. package/dist/templates/app/api/v1/blocks/docs.md +173 -0
  56. package/dist/templates/app/api/v1/blocks/presets.ts +121 -0
  57. package/dist/templates/app/api/v1/blocks/route.ts +45 -0
  58. package/dist/templates/app/api/v1/blocks/validate/route.ts +45 -0
  59. package/dist/templates/app/api/v1/cron/docs.md +116 -0
  60. package/dist/templates/app/api/v1/cron/presets.ts +26 -0
  61. package/dist/templates/app/api/v1/cron/process/route.ts +108 -0
  62. package/dist/templates/app/api/v1/devtools/blocks/route.ts +82 -0
  63. package/dist/templates/app/api/v1/devtools/docs/route.ts +150 -0
  64. package/dist/templates/app/api/v1/devtools/docs.md +204 -0
  65. package/dist/templates/app/api/v1/devtools/features/route.ts +61 -0
  66. package/dist/templates/app/api/v1/devtools/flows/route.ts +61 -0
  67. package/dist/templates/app/api/v1/devtools/presets.ts +113 -0
  68. package/dist/templates/app/api/v1/devtools/scheduled-actions/route.ts +120 -0
  69. package/dist/templates/app/api/v1/devtools/testing/route.ts +82 -0
  70. package/dist/templates/app/api/v1/media/docs.md +117 -0
  71. package/dist/templates/app/api/v1/media/presets.ts +24 -0
  72. package/dist/templates/app/api/v1/media/upload/route.ts +150 -0
  73. package/dist/templates/app/api/v1/patterns/[id]/usages/route.ts +116 -0
  74. package/dist/templates/app/api/v1/plugin/[...path]/route.ts +373 -0
  75. package/dist/templates/app/api/v1/plugin/docs.md +79 -0
  76. package/dist/templates/app/api/v1/plugin/presets.ts +21 -0
  77. package/dist/templates/app/api/v1/plugin/route.ts +96 -0
  78. package/dist/templates/app/api/v1/post-categories/[id]/route.ts +255 -0
  79. package/dist/templates/app/api/v1/post-categories/docs.md +134 -0
  80. package/dist/templates/app/api/v1/post-categories/presets.ts +78 -0
  81. package/dist/templates/app/api/v1/post-categories/route.ts +119 -0
  82. package/dist/templates/app/api/v1/team-invitations/[token]/accept/route.ts +179 -0
  83. package/dist/templates/app/api/v1/team-invitations/[token]/decline/route.ts +120 -0
  84. package/dist/templates/app/api/v1/team-invitations/[token]/route.ts +89 -0
  85. package/dist/templates/app/api/v1/team-invitations/docs.md +88 -0
  86. package/dist/templates/app/api/v1/team-invitations/presets.ts +43 -0
  87. package/dist/templates/app/api/v1/team-invitations/route.ts +114 -0
  88. package/dist/templates/app/api/v1/teams/[teamId]/invitations/route.ts +171 -0
  89. package/dist/templates/app/api/v1/teams/[teamId]/invoices/[invoiceNumber]/route.ts +105 -0
  90. package/dist/templates/app/api/v1/teams/[teamId]/invoices/route.ts +125 -0
  91. package/dist/templates/app/api/v1/teams/[teamId]/members/[memberId]/route.ts +263 -0
  92. package/dist/templates/app/api/v1/teams/[teamId]/members/route.ts +358 -0
  93. package/dist/templates/app/api/v1/teams/[teamId]/route.ts +322 -0
  94. package/dist/templates/app/api/v1/teams/[teamId]/subscription/route.ts +50 -0
  95. package/dist/templates/app/api/v1/teams/[teamId]/usage/[limitSlug]/route.ts +91 -0
  96. package/dist/templates/app/api/v1/teams/docs.md +320 -0
  97. package/dist/templates/app/api/v1/teams/presets.ts +178 -0
  98. package/dist/templates/app/api/v1/teams/route.ts +293 -0
  99. package/dist/templates/app/api/v1/teams/switch/route.ts +88 -0
  100. package/dist/templates/app/api/v1/theme/[...path]/route.ts +361 -0
  101. package/dist/templates/app/api/v1/theme/docs.md +74 -0
  102. package/dist/templates/app/api/v1/theme/presets.ts +21 -0
  103. package/dist/templates/app/api/v1/theme/route.ts +96 -0
  104. package/dist/templates/app/api/v1/users/[id]/meta/[key]/route.ts +363 -0
  105. package/dist/templates/app/api/v1/users/[id]/route.ts +302 -0
  106. package/dist/templates/app/api/v1/users/docs.md +93 -0
  107. package/dist/templates/app/api/v1/users/presets.ts +59 -0
  108. package/dist/templates/app/api/v1/users/route.ts +197 -0
  109. package/dist/templates/app/dashboard/(main)/[entity]/[id]/edit/page.tsx +117 -0
  110. package/dist/templates/app/dashboard/(main)/[entity]/[id]/page.tsx +103 -0
  111. package/dist/templates/app/dashboard/(main)/[entity]/create/page.tsx +95 -0
  112. package/dist/templates/app/dashboard/(main)/[entity]/error.tsx +51 -0
  113. package/dist/templates/app/dashboard/(main)/[entity]/layout.tsx +113 -0
  114. package/dist/templates/app/dashboard/(main)/[entity]/loading.tsx +61 -0
  115. package/dist/templates/app/dashboard/(main)/[entity]/page.tsx +90 -0
  116. package/dist/templates/app/dashboard/(main)/layout.tsx +98 -0
  117. package/dist/templates/app/dashboard/(main)/loading.tsx +5 -0
  118. package/dist/templates/app/dashboard/(main)/page.tsx +201 -0
  119. package/dist/templates/app/dashboard/(main)/patterns/[id]/edit/page.tsx +114 -0
  120. package/dist/templates/app/dashboard/(main)/patterns/[id]/page.tsx +20 -0
  121. package/dist/templates/app/dashboard/(main)/patterns/[id]/reports/page.tsx +171 -0
  122. package/dist/templates/app/dashboard/(main)/patterns/create/page.tsx +86 -0
  123. package/dist/templates/app/dashboard/(main)/patterns/page.tsx +444 -0
  124. package/dist/templates/app/dashboard/features/analytics/page.tsx +35 -0
  125. package/dist/templates/app/dashboard/features/automation/page.tsx +35 -0
  126. package/dist/templates/app/dashboard/features/layout.tsx +13 -0
  127. package/dist/templates/app/dashboard/features/loading.tsx +5 -0
  128. package/dist/templates/app/dashboard/features/webhooks/page.tsx +35 -0
  129. package/dist/templates/app/dashboard/layout.tsx +86 -0
  130. package/dist/templates/app/dashboard/permission-denied/page.tsx +29 -0
  131. package/dist/templates/app/dashboard/settings/api-keys/loading.tsx +5 -0
  132. package/dist/templates/app/dashboard/settings/api-keys/page.tsx +513 -0
  133. package/dist/templates/app/dashboard/settings/billing/loading.tsx +5 -0
  134. package/dist/templates/app/dashboard/settings/billing/page.tsx +284 -0
  135. package/dist/templates/app/dashboard/settings/invoices/[invoiceNumber]/page.tsx +222 -0
  136. package/dist/templates/app/dashboard/settings/invoices/loading.tsx +5 -0
  137. package/dist/templates/app/dashboard/settings/invoices/page.tsx +82 -0
  138. package/dist/templates/app/dashboard/settings/layout.tsx +151 -0
  139. package/dist/templates/app/dashboard/settings/loading.tsx +5 -0
  140. package/dist/templates/app/dashboard/settings/notifications/loading.tsx +5 -0
  141. package/dist/templates/app/dashboard/settings/notifications/page.tsx +462 -0
  142. package/dist/templates/app/dashboard/settings/page.tsx +92 -0
  143. package/dist/templates/app/dashboard/settings/password/loading.tsx +5 -0
  144. package/dist/templates/app/dashboard/settings/password/page.tsx +306 -0
  145. package/dist/templates/app/dashboard/settings/plans/loading.tsx +5 -0
  146. package/dist/templates/app/dashboard/settings/plans/page.tsx +40 -0
  147. package/dist/templates/app/dashboard/settings/profile/loading.tsx +5 -0
  148. package/dist/templates/app/dashboard/settings/profile/page.tsx +686 -0
  149. package/dist/templates/app/dashboard/settings/security/loading.tsx +5 -0
  150. package/dist/templates/app/dashboard/settings/security/page.tsx +505 -0
  151. package/dist/templates/app/dashboard/settings/teams/loading.tsx +5 -0
  152. package/dist/templates/app/dashboard/settings/teams/page.tsx +272 -0
  153. package/dist/templates/app/dashboard/settings/teams/permissions/page.tsx +92 -0
  154. package/dist/templates/app/devtools/blocks/[slug]/page.tsx +39 -0
  155. package/dist/templates/app/devtools/blocks/page.tsx +31 -0
  156. package/dist/templates/app/devtools/config/page.tsx +31 -0
  157. package/dist/templates/app/devtools/features/page.tsx +31 -0
  158. package/dist/templates/app/devtools/flows/page.tsx +31 -0
  159. package/dist/templates/app/devtools/layout.tsx +58 -0
  160. package/dist/templates/app/devtools/page.tsx +121 -0
  161. package/dist/templates/app/devtools/scheduled-actions/page.tsx +157 -0
  162. package/dist/templates/app/devtools/style/page.tsx +330 -0
  163. package/dist/templates/app/devtools/tags/page.tsx +31 -0
  164. package/dist/templates/app/devtools/tests/[[...path]]/page.tsx +47 -0
  165. package/dist/templates/app/favicon.ico +0 -0
  166. package/dist/templates/app/globals.css +12 -0
  167. package/dist/templates/app/layout.tsx +96 -0
  168. package/dist/templates/app/public/page.tsx +30 -0
  169. package/dist/templates/app/superadmin/docs/[section]/[page]/page.tsx +92 -0
  170. package/dist/templates/app/superadmin/docs/page.tsx +75 -0
  171. package/dist/templates/app/superadmin/layout.tsx +67 -0
  172. package/dist/templates/app/superadmin/page.tsx +149 -0
  173. package/dist/templates/app/superadmin/subscriptions/page.tsx +655 -0
  174. package/dist/templates/app/superadmin/team-roles/page.tsx +493 -0
  175. package/dist/templates/app/superadmin/teams/[teamId]/page.tsx +687 -0
  176. package/dist/templates/app/superadmin/teams/page.tsx +302 -0
  177. package/dist/templates/app/superadmin/users/[userId]/page.tsx +548 -0
  178. package/dist/templates/app/superadmin/users/page.tsx +528 -0
  179. package/package.json +15 -15
  180. package/scripts/build/docs-registry.mjs +0 -0
  181. package/scripts/create-theme.mjs +0 -0
  182. package/scripts/deploy/release-version.mjs +0 -0
  183. package/scripts/deploy/vercel-deploy.mjs +0 -0
  184. package/scripts/dev/watch-plugins.mjs +0 -0
  185. package/scripts/maintenance/update-core.mjs +0 -0
  186. package/scripts/setup/npm-postinstall.mjs +0 -0
  187. package/scripts/setup/setup-claude.mjs +0 -0
  188. package/scripts/validation/check-imports.sh +0 -0
  189. package/templates/app/(auth)/forgot-password/page.tsx +216 -0
  190. package/templates/app/(auth)/layout.tsx +51 -0
  191. package/templates/app/(auth)/login/page.tsx +21 -0
  192. package/templates/app/(auth)/reset-password/page.tsx +212 -0
  193. package/templates/app/(auth)/signup/page.tsx +21 -0
  194. package/templates/app/(auth)/verify-email/page.tsx +190 -0
  195. package/templates/app/(public)/[...slug]/page.tsx +378 -0
  196. package/templates/app/(public)/docs/[section]/[page]/page.tsx +90 -0
  197. package/templates/app/(public)/docs/layout.tsx +25 -0
  198. package/templates/app/(public)/docs/page.tsx +81 -0
  199. package/templates/app/(public)/layout.tsx +41 -0
  200. package/templates/app/(public)/page.tsx +19 -0
  201. package/templates/app/403/page.tsx +89 -0
  202. package/templates/app/api/auth/[...all]/route.ts +78 -0
  203. package/templates/app/api/cron/billing/lifecycle/route.ts +98 -0
  204. package/templates/app/api/csp-report/route.ts +175 -0
  205. package/templates/app/api/devtools/config/entities/route.ts +108 -0
  206. package/templates/app/api/devtools/config/theme/route.ts +66 -0
  207. package/templates/app/api/devtools/tests/[...path]/route.ts +130 -0
  208. package/templates/app/api/devtools/tests/route.ts +134 -0
  209. package/templates/app/api/health/route.ts +29 -0
  210. package/templates/app/api/internal/user-metadata/route.ts +36 -0
  211. package/templates/app/api/superadmin/subscriptions/route.ts +310 -0
  212. package/templates/app/api/superadmin/teams/[teamId]/route.ts +286 -0
  213. package/templates/app/api/superadmin/teams/route.ts +188 -0
  214. package/templates/app/api/superadmin/users/[userId]/route.ts +540 -0
  215. package/templates/app/api/superadmin/users/route.ts +323 -0
  216. package/templates/app/api/user/delete-account/route.ts +55 -0
  217. package/templates/app/api/user/plan-flags/route.ts +283 -0
  218. package/templates/app/api/user/profile/route.ts +133 -0
  219. package/templates/app/api/v1/[entity]/[id]/child/[childType]/[childId]/route.ts +210 -0
  220. package/templates/app/api/v1/[entity]/[id]/child/[childType]/route.ts +331 -0
  221. package/templates/app/api/v1/[entity]/[id]/route.ts +35 -0
  222. package/templates/app/api/v1/[entity]/docs.md +369 -0
  223. package/templates/app/api/v1/[entity]/presets.ts +194 -0
  224. package/templates/app/api/v1/[entity]/route.ts +31 -0
  225. package/templates/app/api/v1/api-keys/[id]/route.ts +303 -0
  226. package/templates/app/api/v1/api-keys/docs.md +101 -0
  227. package/templates/app/api/v1/api-keys/presets.ts +31 -0
  228. package/templates/app/api/v1/api-keys/route.ts +250 -0
  229. package/templates/app/api/v1/auth/docs.md +184 -0
  230. package/templates/app/api/v1/auth/presets.ts +44 -0
  231. package/templates/app/api/v1/auth/signup-with-invite/route.ts +227 -0
  232. package/templates/app/api/v1/billing/cancel/route.ts +206 -0
  233. package/templates/app/api/v1/billing/change-plan/route.ts +97 -0
  234. package/templates/app/api/v1/billing/check-action/route.ts +81 -0
  235. package/templates/app/api/v1/billing/checkout/route.ts +124 -0
  236. package/templates/app/api/v1/billing/docs.md +209 -0
  237. package/templates/app/api/v1/billing/plans/route.ts +85 -0
  238. package/templates/app/api/v1/billing/portal/route.ts +90 -0
  239. package/templates/app/api/v1/billing/presets.ts +121 -0
  240. package/templates/app/api/v1/billing/webhooks/stripe/route.ts +428 -0
  241. package/templates/app/api/v1/blocks/[slug]/route.ts +29 -0
  242. package/templates/app/api/v1/blocks/docs.md +173 -0
  243. package/templates/app/api/v1/blocks/presets.ts +121 -0
  244. package/templates/app/api/v1/blocks/route.ts +45 -0
  245. package/templates/app/api/v1/blocks/validate/route.ts +45 -0
  246. package/templates/app/api/v1/cron/docs.md +116 -0
  247. package/templates/app/api/v1/cron/presets.ts +26 -0
  248. package/templates/app/api/v1/cron/process/route.ts +108 -0
  249. package/templates/app/api/v1/devtools/blocks/route.ts +82 -0
  250. package/templates/app/api/v1/devtools/docs/route.ts +150 -0
  251. package/templates/app/api/v1/devtools/docs.md +204 -0
  252. package/templates/app/api/v1/devtools/features/route.ts +61 -0
  253. package/templates/app/api/v1/devtools/flows/route.ts +61 -0
  254. package/templates/app/api/v1/devtools/presets.ts +113 -0
  255. package/templates/app/api/v1/devtools/scheduled-actions/route.ts +120 -0
  256. package/templates/app/api/v1/devtools/testing/route.ts +82 -0
  257. package/templates/app/api/v1/media/docs.md +117 -0
  258. package/templates/app/api/v1/media/presets.ts +24 -0
  259. package/templates/app/api/v1/media/upload/route.ts +150 -0
  260. package/templates/app/api/v1/patterns/[id]/usages/route.ts +116 -0
  261. package/templates/app/api/v1/plugin/[...path]/route.ts +373 -0
  262. package/templates/app/api/v1/plugin/docs.md +79 -0
  263. package/templates/app/api/v1/plugin/presets.ts +21 -0
  264. package/templates/app/api/v1/plugin/route.ts +96 -0
  265. package/templates/app/api/v1/post-categories/[id]/route.ts +255 -0
  266. package/templates/app/api/v1/post-categories/docs.md +134 -0
  267. package/templates/app/api/v1/post-categories/presets.ts +78 -0
  268. package/templates/app/api/v1/post-categories/route.ts +119 -0
  269. package/templates/app/api/v1/team-invitations/[token]/accept/route.ts +179 -0
  270. package/templates/app/api/v1/team-invitations/[token]/decline/route.ts +120 -0
  271. package/templates/app/api/v1/team-invitations/[token]/route.ts +89 -0
  272. package/templates/app/api/v1/team-invitations/docs.md +88 -0
  273. package/templates/app/api/v1/team-invitations/presets.ts +43 -0
  274. package/templates/app/api/v1/team-invitations/route.ts +114 -0
  275. package/templates/app/api/v1/teams/[teamId]/invitations/route.ts +171 -0
  276. package/templates/app/api/v1/teams/[teamId]/invoices/[invoiceNumber]/route.ts +105 -0
  277. package/templates/app/api/v1/teams/[teamId]/invoices/route.ts +125 -0
  278. package/templates/app/api/v1/teams/[teamId]/members/[memberId]/route.ts +263 -0
  279. package/templates/app/api/v1/teams/[teamId]/members/route.ts +358 -0
  280. package/templates/app/api/v1/teams/[teamId]/route.ts +322 -0
  281. package/templates/app/api/v1/teams/[teamId]/subscription/route.ts +50 -0
  282. package/templates/app/api/v1/teams/[teamId]/usage/[limitSlug]/route.ts +91 -0
  283. package/templates/app/api/v1/teams/docs.md +320 -0
  284. package/templates/app/api/v1/teams/presets.ts +178 -0
  285. package/templates/app/api/v1/teams/route.ts +293 -0
  286. package/templates/app/api/v1/teams/switch/route.ts +88 -0
  287. package/templates/app/api/v1/theme/[...path]/route.ts +361 -0
  288. package/templates/app/api/v1/theme/docs.md +74 -0
  289. package/templates/app/api/v1/theme/presets.ts +21 -0
  290. package/templates/app/api/v1/theme/route.ts +96 -0
  291. package/templates/app/api/v1/users/[id]/meta/[key]/route.ts +363 -0
  292. package/templates/app/api/v1/users/[id]/route.ts +302 -0
  293. package/templates/app/api/v1/users/docs.md +93 -0
  294. package/templates/app/api/v1/users/presets.ts +59 -0
  295. package/templates/app/api/v1/users/route.ts +197 -0
  296. package/templates/app/dashboard/(main)/[entity]/[id]/edit/page.tsx +117 -0
  297. package/templates/app/dashboard/(main)/[entity]/[id]/page.tsx +103 -0
  298. package/templates/app/dashboard/(main)/[entity]/create/page.tsx +95 -0
  299. package/templates/app/dashboard/(main)/[entity]/error.tsx +51 -0
  300. package/templates/app/dashboard/(main)/[entity]/layout.tsx +113 -0
  301. package/templates/app/dashboard/(main)/[entity]/loading.tsx +61 -0
  302. package/templates/app/dashboard/(main)/[entity]/page.tsx +90 -0
  303. package/templates/app/dashboard/(main)/layout.tsx +98 -0
  304. package/templates/app/dashboard/(main)/loading.tsx +5 -0
  305. package/templates/app/dashboard/(main)/page.tsx +201 -0
  306. package/templates/app/dashboard/(main)/patterns/[id]/edit/page.tsx +114 -0
  307. package/templates/app/dashboard/(main)/patterns/[id]/page.tsx +20 -0
  308. package/templates/app/dashboard/(main)/patterns/[id]/reports/page.tsx +171 -0
  309. package/templates/app/dashboard/(main)/patterns/create/page.tsx +86 -0
  310. package/templates/app/dashboard/(main)/patterns/page.tsx +444 -0
  311. package/templates/app/dashboard/features/analytics/page.tsx +35 -0
  312. package/templates/app/dashboard/features/automation/page.tsx +35 -0
  313. package/templates/app/dashboard/features/layout.tsx +13 -0
  314. package/templates/app/dashboard/features/loading.tsx +5 -0
  315. package/templates/app/dashboard/features/webhooks/page.tsx +35 -0
  316. package/templates/app/dashboard/layout.tsx +86 -0
  317. package/templates/app/dashboard/permission-denied/page.tsx +29 -0
  318. package/templates/app/dashboard/settings/api-keys/loading.tsx +5 -0
  319. package/templates/app/dashboard/settings/api-keys/page.tsx +513 -0
  320. package/templates/app/dashboard/settings/billing/loading.tsx +5 -0
  321. package/templates/app/dashboard/settings/billing/page.tsx +284 -0
  322. package/templates/app/dashboard/settings/invoices/[invoiceNumber]/page.tsx +222 -0
  323. package/templates/app/dashboard/settings/invoices/loading.tsx +5 -0
  324. package/templates/app/dashboard/settings/invoices/page.tsx +82 -0
  325. package/templates/app/dashboard/settings/layout.tsx +151 -0
  326. package/templates/app/dashboard/settings/loading.tsx +5 -0
  327. package/templates/app/dashboard/settings/notifications/loading.tsx +5 -0
  328. package/templates/app/dashboard/settings/notifications/page.tsx +462 -0
  329. package/templates/app/dashboard/settings/page.tsx +92 -0
  330. package/templates/app/dashboard/settings/password/loading.tsx +5 -0
  331. package/templates/app/dashboard/settings/password/page.tsx +306 -0
  332. package/templates/app/dashboard/settings/plans/loading.tsx +5 -0
  333. package/templates/app/dashboard/settings/plans/page.tsx +40 -0
  334. package/templates/app/dashboard/settings/profile/loading.tsx +5 -0
  335. package/templates/app/dashboard/settings/profile/page.tsx +686 -0
  336. package/templates/app/dashboard/settings/security/loading.tsx +5 -0
  337. package/templates/app/dashboard/settings/security/page.tsx +505 -0
  338. package/templates/app/dashboard/settings/teams/loading.tsx +5 -0
  339. package/templates/app/dashboard/settings/teams/page.tsx +272 -0
  340. package/templates/app/dashboard/settings/teams/permissions/page.tsx +92 -0
  341. package/templates/app/devtools/blocks/[slug]/page.tsx +39 -0
  342. package/templates/app/devtools/blocks/page.tsx +31 -0
  343. package/templates/app/devtools/config/page.tsx +31 -0
  344. package/templates/app/devtools/features/page.tsx +31 -0
  345. package/templates/app/devtools/flows/page.tsx +31 -0
  346. package/templates/app/devtools/layout.tsx +58 -0
  347. package/templates/app/devtools/page.tsx +121 -0
  348. package/templates/app/devtools/scheduled-actions/page.tsx +157 -0
  349. package/templates/app/devtools/style/page.tsx +330 -0
  350. package/templates/app/devtools/tags/page.tsx +31 -0
  351. package/templates/app/devtools/tests/[[...path]]/page.tsx +47 -0
  352. package/templates/app/favicon.ico +0 -0
  353. package/templates/app/globals.css +12 -0
  354. package/templates/app/layout.tsx +96 -0
  355. package/templates/app/public/page.tsx +30 -0
  356. package/templates/app/superadmin/docs/[section]/[page]/page.tsx +92 -0
  357. package/templates/app/superadmin/docs/page.tsx +75 -0
  358. package/templates/app/superadmin/layout.tsx +67 -0
  359. package/templates/app/superadmin/page.tsx +149 -0
  360. package/templates/app/superadmin/subscriptions/page.tsx +655 -0
  361. package/templates/app/superadmin/team-roles/page.tsx +493 -0
  362. package/templates/app/superadmin/teams/[teamId]/page.tsx +687 -0
  363. package/templates/app/superadmin/teams/page.tsx +302 -0
  364. package/templates/app/superadmin/users/[userId]/page.tsx +548 -0
  365. package/templates/app/superadmin/users/page.tsx +528 -0
@@ -0,0 +1,133 @@
1
+ import { NextResponse } from 'next/server'
2
+ import { auth } from '@nextsparkjs/core/lib/auth'
3
+ import { headers } from 'next/headers'
4
+ import { queryOneWithRLS, mutateWithRLS, queryOne } from '@nextsparkjs/core/lib/db'
5
+ import { profileSchema } from '@nextsparkjs/core/lib/validation'
6
+ import { MetaService } from '@nextsparkjs/core/lib/services/meta.service'
7
+
8
+ export async function GET(request: Request) {
9
+ const url = new URL(request.url)
10
+ const includeMeta = url.searchParams.get('includeMeta') === 'true'
11
+ try {
12
+ const sessionHeaders = await headers()
13
+ const session = await auth.api.getSession({ headers: sessionHeaders })
14
+
15
+ if (!session?.user) {
16
+ return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
17
+ }
18
+
19
+ // Get user profile data including the new fields
20
+ const user = await queryOneWithRLS(
21
+ 'SELECT id, email, "firstName", "lastName", country, timezone, language, image, "emailVerified", "createdAt", "updatedAt" FROM "users" WHERE id = $1',
22
+ [session.user.id],
23
+ session.user.id
24
+ )
25
+
26
+ if (!user) {
27
+ return NextResponse.json({ error: 'User not found' }, { status: 404 })
28
+ }
29
+
30
+ // Get auth method (check if user has password or uses OAuth) - using direct query for auth table
31
+ const account = await queryOne<{ providerId: string }>(
32
+ 'SELECT "providerId" FROM "account" WHERE "userId" = $1',
33
+ [session.user.id]
34
+ )
35
+
36
+ const authMethod = account
37
+ ? account.providerId === 'credential' ? 'Email' : 'Google'
38
+ : 'Email'
39
+
40
+ let result: Record<string, unknown> = {
41
+ ...user,
42
+ authMethod
43
+ }
44
+
45
+ // Include metadata if requested
46
+ if (includeMeta) {
47
+ const metadata = await MetaService.getEntityMetas('user', session.user.id, session.user.id, true)
48
+ result = { ...result, meta: metadata }
49
+ }
50
+
51
+ return NextResponse.json(result)
52
+ } catch (error) {
53
+ console.error('Error fetching user profile:', error)
54
+ return NextResponse.json({ error: 'Internal server error' }, { status: 500 })
55
+ }
56
+ }
57
+
58
+ export async function PATCH(request: Request) {
59
+ try {
60
+ const sessionHeaders = await headers()
61
+ const session = await auth.api.getSession({ headers: sessionHeaders })
62
+
63
+ if (!session?.user) {
64
+ return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
65
+ }
66
+
67
+ const body = await request.json()
68
+ const { meta, ...profileData } = body
69
+
70
+ // Handle metadata-only updates (formato anidado)
71
+ if (meta && Object.keys(profileData).length === 0) {
72
+ // Procesar cada grupo de metadata por separado
73
+ for (const [metaKey, metaValue] of Object.entries(meta)) {
74
+ if (metaValue && typeof metaValue === 'object') {
75
+ await MetaService.setEntityMeta('user', session.user.id, metaKey, metaValue, session.user.id)
76
+ }
77
+ }
78
+
79
+ return NextResponse.json({
80
+ message: 'Settings updated successfully',
81
+ success: true
82
+ })
83
+ }
84
+
85
+ // Handle profile data updates
86
+ if (Object.keys(profileData).length > 0) {
87
+ // Validate the request body
88
+ const validationResult = profileSchema.safeParse(profileData)
89
+ if (!validationResult.success) {
90
+ return NextResponse.json({
91
+ error: 'Invalid data',
92
+ details: validationResult.error.issues
93
+ }, { status: 400 })
94
+ }
95
+
96
+ const { firstName, lastName, country, timezone, language } = validationResult.data
97
+
98
+ // Update user profile
99
+ const result = await mutateWithRLS(
100
+ `UPDATE "users"
101
+ SET "firstName" = $1, "lastName" = $2, country = $3, timezone = $4, language = $5, "updatedAt" = CURRENT_TIMESTAMP
102
+ WHERE id = $6
103
+ RETURNING id, email, "firstName", "lastName", country, timezone, language, image, "emailVerified", "createdAt", "updatedAt"`,
104
+ [firstName, lastName, country, timezone, language, session.user.id],
105
+ session.user.id
106
+ )
107
+
108
+ const updatedUser = result.rows[0]
109
+
110
+ if (!updatedUser) {
111
+ return NextResponse.json({ error: 'User not found' }, { status: 404 })
112
+ }
113
+ }
114
+
115
+ // Handle metadata updates if provided (formato anidado)
116
+ if (meta) {
117
+ // Procesar cada grupo de metadata por separado
118
+ for (const [metaKey, metaValue] of Object.entries(meta)) {
119
+ if (metaValue && typeof metaValue === 'object') {
120
+ await MetaService.setEntityMeta('user', session.user.id, metaKey, metaValue, session.user.id)
121
+ }
122
+ }
123
+ }
124
+
125
+ return NextResponse.json({
126
+ message: 'Profile updated successfully',
127
+ success: true
128
+ })
129
+ } catch (error) {
130
+ console.error('Error updating user profile:', error)
131
+ return NextResponse.json({ error: 'Internal server error' }, { status: 500 })
132
+ }
133
+ }
@@ -0,0 +1,210 @@
1
+ /**
2
+ * API endpoint for individual child entity operations
3
+ * PUT /api/v1/[entity]/[id]/child/[childType]/[childId]
4
+ * DELETE /api/v1/[entity]/[id]/child/[childType]/[childId]
5
+ */
6
+
7
+ // CRITICAL: Initialize entity registry for API routes
8
+ // This import is processed by webpack which resolves the @nextsparkjs alias
9
+ // The setEntityRegistry call happens at module load time
10
+ import { setEntityRegistry, isRegistryInitialized, getChildEntities, getEntity } from '@nextsparkjs/core/lib/entities/queries'
11
+ import { ENTITY_REGISTRY, ENTITY_METADATA } from '@nextsparkjs/registries/entity-registry'
12
+ if (!isRegistryInitialized()) {
13
+ setEntityRegistry(ENTITY_REGISTRY, ENTITY_METADATA)
14
+ }
15
+
16
+ import { NextRequest, NextResponse } from 'next/server'
17
+ import { queryWithRLS } from '@nextsparkjs/core/lib/db'
18
+ import { resolveEntityFromUrl } from '@nextsparkjs/core/lib/api/entity/resolver'
19
+
20
+ interface RouteParams {
21
+ entity: string
22
+ id: string
23
+ childType: string
24
+ childId: string
25
+ }
26
+
27
+ export async function PUT(
28
+ request: NextRequest,
29
+ { params }: { params: Promise<RouteParams> }
30
+ ) {
31
+ const { entity, id, childType, childId } = await params
32
+
33
+ try {
34
+ const body = await request.json()
35
+
36
+ // Resolve entity from URL (handles plural to singular conversion)
37
+ const resolution = await resolveEntityFromUrl(request.nextUrl.pathname)
38
+ if (!resolution.isValidEntity || !resolution.entityConfig) {
39
+ return NextResponse.json(
40
+ { error: `Entity "${entity}" not found` },
41
+ { status: 404 }
42
+ )
43
+ }
44
+
45
+ // Get child entities for this parent entity from registry
46
+ const childEntities = getChildEntities(resolution.entityName as string)
47
+ const childEntity = childEntities.find(child => child.name === childType)
48
+
49
+ if (!childEntity) {
50
+ return NextResponse.json(
51
+ { error: `Child entity "${childType}" not found for "${entity}"` },
52
+ { status: 404 }
53
+ )
54
+ }
55
+
56
+ // Get child entity configuration from registry
57
+ const childConfig = getEntity(childType as string)
58
+ if (!childConfig) {
59
+ return NextResponse.json(
60
+ { error: `Child entity configuration "${childType}" not found` },
61
+ { status: 404 }
62
+ )
63
+ }
64
+
65
+ // Prepare data
66
+ const childTable = childEntity.tableName
67
+ const parentIdColumn = 'parentId' // Use consistent naming
68
+
69
+ // Extract field names and values for update (exclude system fields)
70
+ const systemFields = ['id', 'parentId', 'createdAt', 'updatedAt']
71
+ const userFields = childConfig.fields.filter(field => !systemFields.includes(field.name))
72
+ const fieldNames = userFields.map(field => field.name)
73
+ const updateClauses = fieldNames
74
+ .filter(name => body[name] !== undefined)
75
+ .map(name => {
76
+ const value = body[name]
77
+ if (value === null) {
78
+ return `"${name}" = NULL`
79
+ }
80
+
81
+ const field = childConfig.fields.find(f => f.name === name)
82
+
83
+ // Handle relation fields specially - extract single ID from array or object
84
+ if (field?.type === 'relation') {
85
+ if (Array.isArray(value) && value.length > 0) {
86
+ const firstItem = value[0]
87
+ const relationId = typeof firstItem === 'object' && firstItem && 'id' in firstItem ? firstItem.id : firstItem
88
+ return `"${name}" = '${String(relationId).replace(/'/g, "''")}'`
89
+ } else if (typeof value === 'object' && value && 'id' in value) {
90
+ return `"${name}" = '${String((value as { id: unknown }).id).replace(/'/g, "''")}'`
91
+ } else if (typeof value === 'string') {
92
+ return `"${name}" = '${String(value).replace(/'/g, "''")}'`
93
+ }
94
+ return `"${name}" = NULL`
95
+ }
96
+
97
+ // Handle relation-multi fields - store as JSONB array of IDs
98
+ if (field?.type === 'relation-multi') {
99
+ let relationIds = []
100
+ if (Array.isArray(value)) {
101
+ relationIds = value.map(item =>
102
+ typeof item === 'object' && item && 'id' in item ? item.id : item
103
+ ).filter(id => id && String(id).trim() !== '')
104
+ }
105
+ return `"${name}" = '${JSON.stringify(relationIds).replace(/'/g, "''")}'::jsonb`
106
+ }
107
+
108
+ // Handle multiselect, user, and other complex types as JSONB
109
+ if (field?.type === 'multiselect' || field?.type === 'user' ||
110
+ Array.isArray(value) || (typeof value === 'object' && value !== null)) {
111
+ return `"${name}" = '${JSON.stringify(value).replace(/'/g, "''")}'::jsonb`
112
+ }
113
+
114
+ return `"${name}" = '${String(value).replace(/'/g, "''")}'`
115
+ })
116
+
117
+ // Add updatedAt
118
+ updateClauses.push(`"updatedAt" = NOW()`)
119
+
120
+ const query = `
121
+ UPDATE "${childTable}"
122
+ SET ${updateClauses.join(', ')}
123
+ WHERE "id" = $1 AND "${parentIdColumn}" = $2
124
+ RETURNING *
125
+ `
126
+
127
+ const result = await queryWithRLS<Record<string, unknown>>(query, [childId, id], 'system')
128
+
129
+ if (result.length === 0) {
130
+ return NextResponse.json(
131
+ { error: 'Child entity not found' },
132
+ { status: 404 }
133
+ )
134
+ }
135
+
136
+ return NextResponse.json({
137
+ success: true,
138
+ data: result[0],
139
+ info: {
140
+ timestamp: new Date().toISOString()
141
+ }
142
+ })
143
+ } catch (error) {
144
+ console.error(`Error updating child entity:`, error)
145
+ return NextResponse.json(
146
+ { error: 'Internal server error' },
147
+ { status: 500 }
148
+ )
149
+ }
150
+ }
151
+
152
+ export async function DELETE(
153
+ request: NextRequest,
154
+ { params }: { params: Promise<RouteParams> }
155
+ ) {
156
+ try {
157
+ const { entity, id, childType, childId } = await params
158
+
159
+ // Resolve entity from URL (handles plural to singular conversion)
160
+ const resolution = await resolveEntityFromUrl(request.nextUrl.pathname)
161
+ if (!resolution.isValidEntity || !resolution.entityConfig) {
162
+ return NextResponse.json(
163
+ { error: `Entity "${entity}" not found` },
164
+ { status: 404 }
165
+ )
166
+ }
167
+
168
+ // Get child entities for this parent entity from registry
169
+ const childEntities = getChildEntities(resolution.entityName as string)
170
+ const childEntity = childEntities.find(child => child.name === childType)
171
+
172
+ if (!childEntity) {
173
+ return NextResponse.json(
174
+ { error: `Child entity "${childType}" not found for "${entity}"` },
175
+ { status: 404 }
176
+ )
177
+ }
178
+
179
+ // Delete child entity
180
+ const childTable = childEntity.tableName
181
+ const parentIdColumn = 'parentId' // Use consistent naming
182
+
183
+ const query = `
184
+ DELETE FROM "${childTable}"
185
+ WHERE "id" = $1 AND "${parentIdColumn}" = $2
186
+ RETURNING id
187
+ `
188
+
189
+ const result = await queryWithRLS<{ id: string }>(query, [childId, id], 'system')
190
+
191
+ if (result.length === 0) {
192
+ return NextResponse.json(
193
+ { error: 'Child entity not found' },
194
+ { status: 404 }
195
+ )
196
+ }
197
+
198
+ return NextResponse.json({
199
+ success: true,
200
+ message: 'Child entity deleted successfully',
201
+ id: result[0].id
202
+ })
203
+ } catch (error) {
204
+ console.error(`Error deleting child entity:`, error)
205
+ return NextResponse.json(
206
+ { error: 'Internal server error' },
207
+ { status: 500 }
208
+ )
209
+ }
210
+ }
@@ -0,0 +1,331 @@
1
+ /**
2
+ * API endpoint for child entities
3
+ * GET /api/v1/[entity]/[id]/child/[childType]
4
+ * POST /api/v1/[entity]/[id]/child/[childType]
5
+ */
6
+
7
+ // CRITICAL: Initialize entity registry for API routes
8
+ // This import is processed by webpack which resolves the @nextsparkjs alias
9
+ // The setEntityRegistry call happens at module load time
10
+ import { setEntityRegistry, isRegistryInitialized, getChildEntities, getEntity } from '@nextsparkjs/core/lib/entities/queries'
11
+ import { ENTITY_REGISTRY, ENTITY_METADATA } from '@nextsparkjs/registries/entity-registry'
12
+ if (!isRegistryInitialized()) {
13
+ setEntityRegistry(ENTITY_REGISTRY, ENTITY_METADATA)
14
+ }
15
+
16
+ import { NextRequest, NextResponse } from 'next/server'
17
+ import { queryWithRLS } from '@nextsparkjs/core/lib/db'
18
+ import { resolveEntityFromUrl } from '@nextsparkjs/core/lib/api/entity/resolver'
19
+
20
+
21
+ interface RouteParams {
22
+ entity: string
23
+ id: string
24
+ childType: string
25
+ }
26
+
27
+ export async function GET(
28
+ request: NextRequest,
29
+ { params }: { params: Promise<RouteParams> }
30
+ ) {
31
+ const { entity, id, childType } = await params
32
+
33
+ try {
34
+
35
+ // Resolve entity from URL (handles plural to singular conversion)
36
+ const resolution = await resolveEntityFromUrl(request.nextUrl.pathname)
37
+ if (!resolution.isValidEntity || !resolution.entityConfig) {
38
+ return NextResponse.json(
39
+ { error: `Entity "${entity}" not found` },
40
+ { status: 404 }
41
+ )
42
+ }
43
+
44
+ // Check if child entity exists using the new registry system
45
+ const childEntities = getChildEntities(resolution.entityName as string)
46
+ const childEntity = childEntities.find(child => child.name === childType)
47
+
48
+ if (!childEntity) {
49
+ return NextResponse.json(
50
+ { error: `Child entity "${childType}" not found for "${entity}"` },
51
+ { status: 404 }
52
+ )
53
+ }
54
+
55
+ // Get child config from registry
56
+ const childConfig = getEntity(childType as string)
57
+ if (!childConfig) {
58
+ return NextResponse.json(
59
+ { error: `Child entity configuration "${childType}" not found` },
60
+ { status: 404 }
61
+ )
62
+ }
63
+
64
+ // Query child entities
65
+ const childTable = childEntity.tableName
66
+ const parentIdColumn = 'parentId' // Child entities use 'parentId' as foreign key
67
+
68
+ const query = `
69
+ SELECT * FROM "${childTable}"
70
+ WHERE "${parentIdColumn}" = $1
71
+ ORDER BY "createdAt" DESC
72
+ `
73
+
74
+ const childRows = await queryWithRLS<Record<string, unknown>>(query, [id], 'system')
75
+
76
+ return NextResponse.json({
77
+ success: true,
78
+ data: childRows,
79
+ info: {
80
+ timestamp: new Date().toISOString()
81
+ }
82
+ })
83
+ } catch (error) {
84
+ console.error(`Error loading child entities for ${entity}/${id}/${childType}:`, error)
85
+ return NextResponse.json(
86
+ { error: 'Internal server error' },
87
+ { status: 500 }
88
+ )
89
+ }
90
+ }
91
+
92
+ export async function POST(
93
+ request: NextRequest,
94
+ { params }: { params: Promise<RouteParams> }
95
+ ) {
96
+ const { entity, id, childType } = await params
97
+
98
+ try {
99
+ console.log(`[ChildAPI] POST ${entity}/${id}/child/${childType}`)
100
+ const body = await request.json()
101
+ console.log(`[ChildAPI] Request body:`, body)
102
+
103
+ // Resolve entity from URL (handles plural to singular conversion)
104
+ const resolution = await resolveEntityFromUrl(request.nextUrl.pathname)
105
+ console.log(`[ChildAPI] Resolution:`, resolution)
106
+ if (!resolution.isValidEntity || !resolution.entityConfig) {
107
+ return NextResponse.json(
108
+ { error: `Entity "${entity}" not found` },
109
+ { status: 404 }
110
+ )
111
+ }
112
+
113
+ // Check if child entity exists using the new registry system
114
+ const childEntities = getChildEntities(resolution.entityName as string)
115
+ const childEntity = childEntities.find(child => child.name === childType)
116
+ console.log(`[ChildAPI] Found child entities for ${entity}:`, childEntities.map(c => c.name))
117
+ console.log(`[ChildAPI] Looking for childType:`, childType)
118
+ console.log(`[ChildAPI] Found child entity:`, childEntity)
119
+
120
+ if (!childEntity) {
121
+ return NextResponse.json(
122
+ { error: `Child entity "${childType}" not found for "${entity}"` },
123
+ { status: 404 }
124
+ )
125
+ }
126
+
127
+ // Get child config from registry
128
+ const childConfig = getEntity(childType as string)
129
+ console.log(`[ChildAPI] Child config for ${childType}:`, childConfig)
130
+ if (!childConfig) {
131
+ return NextResponse.json(
132
+ { error: `Child entity configuration "${childType}" not found` },
133
+ { status: 404 }
134
+ )
135
+ }
136
+
137
+ // Prepare data
138
+ const childTable = childEntity.tableName
139
+ const parentIdColumn = 'parentId' // Child entities use 'parentId' as foreign key
140
+
141
+ // Extract field names and values (exclude system fields that we'll add separately)
142
+ const systemFields = ['id', 'parentId', 'createdAt', 'updatedAt']
143
+ const userFields = childConfig.fields.filter(field => !systemFields.includes(field.name))
144
+ const fieldNames = userFields.map(field => field.name)
145
+ const fieldValues = fieldNames.map(name => body[name])
146
+
147
+ // Determine ID generation strategy (default: uuid)
148
+ const idStrategy = childConfig.idStrategy?.type || 'uuid'
149
+
150
+ // Add parent ID and system fields based on ID strategy
151
+ let allFields: string[]
152
+ let allValues: string[]
153
+
154
+ if (idStrategy === 'serial') {
155
+ // SERIAL: Let database generate ID via DEFAULT/SERIAL
156
+ allFields = [parentIdColumn, ...fieldNames, 'createdAt', 'updatedAt']
157
+ allValues = [
158
+ `'${id}'`, // parentId
159
+ ...fieldValues.map((value, index) => {
160
+
161
+ if (value === null || value === undefined) {
162
+ return 'NULL'
163
+ }
164
+
165
+ const fieldName = fieldNames[index]
166
+ const field = childConfig.fields.find(f => f.name === fieldName)
167
+
168
+ // Handle number fields - convert empty strings to NULL
169
+ if (field?.type === 'number') {
170
+ if (typeof value === 'string' && value.trim() === '') {
171
+ return 'NULL'
172
+ }
173
+ // Convert to number and validate
174
+ const numValue = Number(value)
175
+ if (isNaN(numValue)) {
176
+ return 'NULL'
177
+ }
178
+ return String(numValue)
179
+ }
180
+
181
+ // Handle relation fields specially - extract single ID from array or object
182
+ if (field?.type === 'relation') {
183
+ if (Array.isArray(value) && value.length > 0) {
184
+ const firstItem = value[0]
185
+ const relationId = typeof firstItem === 'object' && firstItem && 'id' in firstItem ? firstItem.id : firstItem
186
+ // Check if relationId is empty string or null/undefined
187
+ if (!relationId || String(relationId).trim() === '') {
188
+ return 'NULL'
189
+ }
190
+ return `'${String(relationId).replace(/'/g, "''")}'`
191
+ } else if (typeof value === 'object' && value && 'id' in value) {
192
+ const relationId = (value as { id: unknown }).id
193
+ // Check if relationId is empty string or null/undefined
194
+ if (!relationId || String(relationId).trim() === '') {
195
+ return 'NULL'
196
+ }
197
+ return `'${String(relationId).replace(/'/g, "''")}'`
198
+ } else if (typeof value === 'string') {
199
+ // Check if string is empty or just whitespace
200
+ if (value.trim() === '') {
201
+ return 'NULL'
202
+ }
203
+ return `'${String(value).replace(/'/g, "''")}'`
204
+ }
205
+ return 'NULL'
206
+ }
207
+
208
+ // Handle relation-multi fields - store as JSONB array of IDs
209
+ if (field?.type === 'relation-multi') {
210
+ let relationIds = []
211
+ if (Array.isArray(value)) {
212
+ relationIds = value.map(item =>
213
+ typeof item === 'object' && item && 'id' in item ? item.id : item
214
+ ).filter(id => id && String(id).trim() !== '')
215
+ }
216
+ return `'${JSON.stringify(relationIds).replace(/'/g, "''")}'::jsonb`
217
+ }
218
+
219
+ // Handle multiselect, user, and other complex types as JSONB
220
+ if (field?.type === 'multiselect' || field?.type === 'user' ||
221
+ Array.isArray(value) || (typeof value === 'object' && value !== null)) {
222
+ return `'${JSON.stringify(value).replace(/'/g, "''")}'::jsonb`
223
+ }
224
+
225
+ return `'${String(value).replace(/'/g, "''")}'`
226
+ }), // properly handle null values and complex types
227
+ 'NOW()', // createdAt
228
+ 'NOW()' // updatedAt
229
+ ]
230
+ } else {
231
+ // UUID: Generate ID and include in INSERT
232
+ allFields = ['id', parentIdColumn, ...fieldNames, 'createdAt', 'updatedAt']
233
+ allValues = [
234
+ `gen_random_uuid()::TEXT`, // id
235
+ `'${id}'`, // parentId
236
+ ...fieldValues.map((value, index) => {
237
+ if (value === null || value === undefined) {
238
+ return 'NULL'
239
+ }
240
+
241
+ const fieldName = fieldNames[index]
242
+ const field = childConfig.fields.find(f => f.name === fieldName)
243
+
244
+ // Handle number fields - convert empty strings to NULL
245
+ if (field?.type === 'number') {
246
+ if (typeof value === 'string' && value.trim() === '') {
247
+ return 'NULL'
248
+ }
249
+ // Convert to number and validate
250
+ const numValue = Number(value)
251
+ if (isNaN(numValue)) {
252
+ return 'NULL'
253
+ }
254
+ return String(numValue)
255
+ }
256
+
257
+ // Handle relation fields specially - extract single ID from array or object
258
+ if (field?.type === 'relation') {
259
+ if (Array.isArray(value) && value.length > 0) {
260
+ const firstItem = value[0]
261
+ const relationId = typeof firstItem === 'object' && firstItem && 'id' in firstItem ? firstItem.id : firstItem
262
+ // Check if relationId is empty string or null/undefined
263
+ if (!relationId || String(relationId).trim() === '') {
264
+ return 'NULL'
265
+ }
266
+ return `'${String(relationId).replace(/'/g, "''")}'`
267
+ } else if (typeof value === 'object' && value && 'id' in value) {
268
+ const relationId = (value as { id: unknown }).id
269
+ // Check if relationId is empty string or null/undefined
270
+ if (!relationId || String(relationId).trim() === '') {
271
+ return 'NULL'
272
+ }
273
+ return `'${String(relationId).replace(/'/g, "''")}'`
274
+ } else if (typeof value === 'string') {
275
+ // Check if string is empty or just whitespace
276
+ if (value.trim() === '') {
277
+ return 'NULL'
278
+ }
279
+ return `'${String(value).replace(/'/g, "''")}'`
280
+ }
281
+ return 'NULL'
282
+ }
283
+
284
+ // Handle relation-multi fields - store as JSONB array of IDs
285
+ if (field?.type === 'relation-multi') {
286
+ let relationIds = []
287
+ if (Array.isArray(value)) {
288
+ relationIds = value.map(item =>
289
+ typeof item === 'object' && item && 'id' in item ? item.id : item
290
+ ).filter(id => id && String(id).trim() !== '')
291
+ }
292
+ return `'${JSON.stringify(relationIds).replace(/'/g, "''")}'::jsonb`
293
+ }
294
+
295
+ // Handle multiselect, user, and other complex types as JSONB
296
+ if (field?.type === 'multiselect' || field?.type === 'user' ||
297
+ Array.isArray(value) || (typeof value === 'object' && value !== null)) {
298
+ return `'${JSON.stringify(value).replace(/'/g, "''")}'::jsonb`
299
+ }
300
+
301
+ return `'${String(value).replace(/'/g, "''")}'`
302
+ }), // properly handle null values and complex types
303
+ 'NOW()', // createdAt
304
+ 'NOW()' // updatedAt
305
+ ]
306
+ }
307
+
308
+ const query = `
309
+ INSERT INTO "${childTable}" (${allFields.map(f => `"${f}"`).join(', ')})
310
+ VALUES (${allValues.join(', ')})
311
+ RETURNING *
312
+ `
313
+
314
+ const result = await queryWithRLS<Record<string, unknown>>(query, [], 'system')
315
+
316
+ return NextResponse.json({
317
+ success: true,
318
+ data: result[0],
319
+ info: {
320
+ timestamp: new Date().toISOString()
321
+ }
322
+ })
323
+ } catch (error) {
324
+ console.error(`[ChildAPI] Error creating child entity for ${entity}/${id}/${childType}:`, error)
325
+ console.error(`[ChildAPI] Error stack:`, error instanceof Error ? error.stack : 'No stack available')
326
+ return NextResponse.json(
327
+ { error: 'Internal server error', details: error instanceof Error ? error.message : String(error) },
328
+ { status: 500 }
329
+ )
330
+ }
331
+ }