claudeship 0.2.11 → 0.2.14

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 (119) hide show
  1. package/apps/server/dist/app.module.js +8 -0
  2. package/apps/server/dist/app.module.js.map +1 -1
  3. package/apps/server/dist/chat/prompts/fullstack-express-prompt.d.ts +1 -1
  4. package/apps/server/dist/chat/prompts/fullstack-express-prompt.js +110 -1
  5. package/apps/server/dist/chat/prompts/fullstack-express-prompt.js.map +1 -1
  6. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.d.ts +1 -1
  7. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.js +110 -1
  8. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.js.map +1 -1
  9. package/apps/server/dist/chat/prompts/web-system-prompt.d.ts +1 -1
  10. package/apps/server/dist/chat/prompts/web-system-prompt.js +157 -0
  11. package/apps/server/dist/chat/prompts/web-system-prompt.js.map +1 -1
  12. package/apps/server/dist/checkpoint/checkpoint.controller.d.ts +19 -0
  13. package/apps/server/dist/checkpoint/checkpoint.controller.js +93 -0
  14. package/apps/server/dist/checkpoint/checkpoint.controller.js.map +1 -0
  15. package/apps/server/dist/checkpoint/checkpoint.module.d.ts +2 -0
  16. package/apps/server/dist/checkpoint/checkpoint.module.js +25 -0
  17. package/apps/server/dist/checkpoint/checkpoint.module.js.map +1 -0
  18. package/apps/server/dist/checkpoint/checkpoint.service.d.ts +41 -0
  19. package/apps/server/dist/checkpoint/checkpoint.service.js +261 -0
  20. package/apps/server/dist/checkpoint/checkpoint.service.js.map +1 -0
  21. package/apps/server/dist/database/database.controller.d.ts +23 -0
  22. package/apps/server/dist/database/database.controller.js +109 -0
  23. package/apps/server/dist/database/database.controller.js.map +1 -0
  24. package/apps/server/dist/database/database.module.d.ts +2 -0
  25. package/apps/server/dist/database/database.module.js +25 -0
  26. package/apps/server/dist/database/database.module.js.map +1 -0
  27. package/apps/server/dist/database/database.service.d.ts +32 -0
  28. package/apps/server/dist/database/database.service.js +238 -0
  29. package/apps/server/dist/database/database.service.js.map +1 -0
  30. package/apps/server/dist/preview/preview.controller.d.ts +5 -0
  31. package/apps/server/dist/preview/preview.controller.js +41 -0
  32. package/apps/server/dist/preview/preview.controller.js.map +1 -1
  33. package/apps/server/dist/preview/preview.service.d.ts +20 -0
  34. package/apps/server/dist/preview/preview.service.js +51 -2
  35. package/apps/server/dist/preview/preview.service.js.map +1 -1
  36. package/apps/server/dist/project/project.controller.d.ts +10 -1
  37. package/apps/server/dist/project/project.controller.js +57 -0
  38. package/apps/server/dist/project/project.controller.js.map +1 -1
  39. package/apps/server/dist/project/project.service.d.ts +15 -0
  40. package/apps/server/dist/project/project.service.js +111 -0
  41. package/apps/server/dist/project/project.service.js.map +1 -1
  42. package/apps/server/dist/project-context/project-context.controller.d.ts +42 -0
  43. package/apps/server/dist/project-context/project-context.controller.js +127 -0
  44. package/apps/server/dist/project-context/project-context.controller.js.map +1 -0
  45. package/apps/server/dist/project-context/project-context.module.d.ts +2 -0
  46. package/apps/server/dist/project-context/project-context.module.js +25 -0
  47. package/apps/server/dist/project-context/project-context.module.js.map +1 -0
  48. package/apps/server/dist/project-context/project-context.service.d.ts +36 -0
  49. package/apps/server/dist/project-context/project-context.service.js +260 -0
  50. package/apps/server/dist/project-context/project-context.service.js.map +1 -0
  51. package/apps/server/dist/testing/testing.controller.d.ts +24 -0
  52. package/apps/server/dist/testing/testing.controller.js +126 -0
  53. package/apps/server/dist/testing/testing.controller.js.map +1 -0
  54. package/apps/server/dist/testing/testing.module.d.ts +2 -0
  55. package/apps/server/dist/testing/testing.module.js +26 -0
  56. package/apps/server/dist/testing/testing.module.js.map +1 -0
  57. package/apps/server/dist/testing/testing.service.d.ts +62 -0
  58. package/apps/server/dist/testing/testing.service.js +269 -0
  59. package/apps/server/dist/testing/testing.service.js.map +1 -0
  60. package/apps/server/dist/tsconfig.tsbuildinfo +1 -1
  61. package/apps/server/package.json +1 -1
  62. package/apps/web/.next/BUILD_ID +1 -1
  63. package/apps/web/.next/app-build-manifest.json +7 -7
  64. package/apps/web/.next/app-path-routes-manifest.json +2 -2
  65. package/apps/web/.next/build-manifest.json +2 -2
  66. package/apps/web/.next/cache/.previewinfo +1 -1
  67. package/apps/web/.next/cache/.rscinfo +1 -1
  68. package/apps/web/.next/cache/.tsbuildinfo +1 -1
  69. package/apps/web/.next/cache/config.json +3 -3
  70. package/apps/web/.next/cache/eslint/.cache_j3uhuz +1 -1
  71. package/apps/web/.next/cache/webpack/client-production/0.pack +0 -0
  72. package/apps/web/.next/cache/webpack/client-production/index.pack +0 -0
  73. package/apps/web/.next/cache/webpack/edge-server-production/index.pack +0 -0
  74. package/apps/web/.next/cache/webpack/server-production/0.pack +0 -0
  75. package/apps/web/.next/cache/webpack/server-production/index.pack +0 -0
  76. package/apps/web/.next/prerender-manifest.json +13 -13
  77. package/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  78. package/apps/web/.next/server/app/_not-found.html +1 -1
  79. package/apps/web/.next/server/app/_not-found.rsc +2 -2
  80. package/apps/web/.next/server/app/index.html +1 -1
  81. package/apps/web/.next/server/app/index.rsc +3 -3
  82. package/apps/web/.next/server/app/page.js +2 -2
  83. package/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
  84. package/apps/web/.next/server/app/project/[id]/page.js +2 -2
  85. package/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
  86. package/apps/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  87. package/apps/web/.next/server/app/settings.html +1 -1
  88. package/apps/web/.next/server/app/settings.rsc +3 -3
  89. package/apps/web/.next/server/app-paths-manifest.json +2 -2
  90. package/apps/web/.next/server/chunks/392.js +1 -1
  91. package/apps/web/.next/server/pages/404.html +1 -1
  92. package/apps/web/.next/server/pages/500.html +1 -1
  93. package/apps/web/.next/server/server-reference-manifest.json +1 -1
  94. package/apps/web/.next/static/chunks/712-11fca77fb30a2a06.js +1 -0
  95. package/apps/web/.next/static/chunks/app/page-0db1c152fbd48359.js +1 -0
  96. package/apps/web/.next/static/chunks/app/project/[id]/page-7c44ae18c8984726.js +1 -0
  97. package/apps/web/.next/static/chunks/app/settings/page-d1318c2fd58729a5.js +1 -0
  98. package/apps/web/.next/static/css/d0f1b036f222bc16.css +3 -0
  99. package/apps/web/.next/trace +18 -17
  100. package/apps/web/node_modules/.bin/eslint +2 -2
  101. package/apps/web/package.json +2 -1
  102. package/apps/web/src/components/checkpoint/CheckpointPanel.tsx +384 -0
  103. package/apps/web/src/components/database/DatabasePanel.tsx +405 -0
  104. package/apps/web/src/components/env/EnvPanel.tsx +356 -0
  105. package/apps/web/src/components/preview/ConsoleViewer.tsx +270 -0
  106. package/apps/web/src/components/preview/ErrorOverlay.tsx +189 -0
  107. package/apps/web/src/components/preview/PreviewPanel.tsx +148 -6
  108. package/apps/web/src/components/testing/TestRunner.tsx +481 -0
  109. package/apps/web/src/components/ui/tabs.tsx +55 -0
  110. package/apps/web/src/components/visual-editor/VisualEditor.tsx +382 -0
  111. package/apps/web/src/lib/api.ts +5 -2
  112. package/package.json +1 -1
  113. package/apps/web/.next/static/chunks/298-6f3d6b321c288cd3.js +0 -1
  114. package/apps/web/.next/static/chunks/app/page-3d093f7f480a8599.js +0 -1
  115. package/apps/web/.next/static/chunks/app/project/[id]/page-e5cda6f9050b0a52.js +0 -1
  116. package/apps/web/.next/static/chunks/app/settings/page-92d28565c3d8c755.js +0 -1
  117. package/apps/web/.next/static/css/8f946046a2047594.css +0 -3
  118. /package/apps/web/.next/static/{zw4FcukMOho6_dzgpEdNW → tV_Qc76rupeogXvWEMw6p}/_buildManifest.js +0 -0
  119. /package/apps/web/.next/static/{zw4FcukMOho6_dzgpEdNW → tV_Qc76rupeogXvWEMw6p}/_ssgManifest.js +0 -0
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claudeship/server",
3
- "version": "0.2.11",
3
+ "version": "0.2.14",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "nest start --watch",
@@ -1 +1 @@
1
- zw4FcukMOho6_dzgpEdNW
1
+ tV_Qc76rupeogXvWEMw6p
@@ -12,7 +12,7 @@
12
12
  "static/chunks/c476d598-9099ed8b975ae1d6.js",
13
13
  "static/chunks/498-ad4e539d948e058e.js",
14
14
  "static/chunks/main-app-de4b9be4b7d2b049.js",
15
- "static/css/8f946046a2047594.css",
15
+ "static/css/d0f1b036f222bc16.css",
16
16
  "static/chunks/app/layout-2079789d2a8cf3e0.js"
17
17
  ],
18
18
  "/page": [
@@ -21,24 +21,24 @@
21
21
  "static/chunks/498-ad4e539d948e058e.js",
22
22
  "static/chunks/main-app-de4b9be4b7d2b049.js",
23
23
  "static/chunks/992-806bad722ba16222.js",
24
- "static/chunks/app/page-3d093f7f480a8599.js"
24
+ "static/chunks/app/page-0db1c152fbd48359.js"
25
25
  ],
26
- "/project/[id]/page": [
26
+ "/settings/page": [
27
27
  "static/chunks/webpack-1ff95075f86c177e.js",
28
28
  "static/chunks/c476d598-9099ed8b975ae1d6.js",
29
29
  "static/chunks/498-ad4e539d948e058e.js",
30
30
  "static/chunks/main-app-de4b9be4b7d2b049.js",
31
31
  "static/chunks/992-806bad722ba16222.js",
32
- "static/chunks/298-6f3d6b321c288cd3.js",
33
- "static/chunks/app/project/[id]/page-e5cda6f9050b0a52.js"
32
+ "static/chunks/app/settings/page-d1318c2fd58729a5.js"
34
33
  ],
35
- "/settings/page": [
34
+ "/project/[id]/page": [
36
35
  "static/chunks/webpack-1ff95075f86c177e.js",
37
36
  "static/chunks/c476d598-9099ed8b975ae1d6.js",
38
37
  "static/chunks/498-ad4e539d948e058e.js",
39
38
  "static/chunks/main-app-de4b9be4b7d2b049.js",
40
39
  "static/chunks/992-806bad722ba16222.js",
41
- "static/chunks/app/settings/page-92d28565c3d8c755.js"
40
+ "static/chunks/712-11fca77fb30a2a06.js",
41
+ "static/chunks/app/project/[id]/page-7c44ae18c8984726.js"
42
42
  ]
43
43
  }
44
44
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "/_not-found/page": "/_not-found",
3
3
  "/page": "/",
4
- "/project/[id]/page": "/project/[id]",
5
- "/settings/page": "/settings"
4
+ "/settings/page": "/settings",
5
+ "/project/[id]/page": "/project/[id]"
6
6
  }
@@ -5,8 +5,8 @@
5
5
  "devFiles": [],
6
6
  "ampDevFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/zw4FcukMOho6_dzgpEdNW/_buildManifest.js",
9
- "static/zw4FcukMOho6_dzgpEdNW/_ssgManifest.js"
8
+ "static/tV_Qc76rupeogXvWEMw6p/_buildManifest.js",
9
+ "static/tV_Qc76rupeogXvWEMw6p/_ssgManifest.js"
10
10
  ],
11
11
  "rootMainFiles": [
12
12
  "static/chunks/webpack-1ff95075f86c177e.js",
@@ -1 +1 @@
1
- {"previewModeId":"7271da2c3b30da48044f7d7eb95a0c5c","previewModeSigningKey":"be28bf006a16f1f5d408746f8822019b38d912c03b9e4c1136137930ccbd0bed","previewModeEncryptionKey":"a4ed7ba857990a116a386ef28ac267428b21e1e4313e7e60a3bee91358c875ab","expireAt":1768572487023}
1
+ {"previewModeId":"9f5cf58d2b125383dee3e5337131db93","previewModeSigningKey":"cc7d816757dd969789423919814de54577dc1e8421b2d4711db92a0cf4158dbe","previewModeEncryptionKey":"f5570178373f3c69aa7926b31e8dc5e160d76c0f189f74762a87671224c1bb1b","expireAt":1768789051646}
@@ -1 +1 @@
1
- {"encryption.key":"Md3h2I0mS1YQL0Btrex93sLegLDpuOAm3SXCVIXND40=","encryption.expire_at":1768572486853}
1
+ {"encryption.key":"0ZtKXwqLcrG0setj9e3ezEr5O8S+kLVBNBScRdR2reM=","encryption.expire_at":1768789051408}