claudeship 0.2.20 → 0.2.21
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.
- package/apps/server/dist/chat/chat.controller.d.ts +1 -1
- package/apps/server/dist/chat/chat.service.d.ts +1 -1
- package/apps/server/dist/database/database.module.js +15 -4
- package/apps/server/dist/database/database.module.js.map +1 -1
- package/apps/server/dist/database/infra/database-infra.controller.d.ts +14 -0
- package/apps/server/dist/database/infra/database-infra.controller.js +121 -0
- package/apps/server/dist/database/infra/database-infra.controller.js.map +1 -0
- package/apps/server/dist/database/infra/database-infra.service.d.ts +34 -0
- package/apps/server/dist/database/infra/database-infra.service.js +130 -0
- package/apps/server/dist/database/infra/database-infra.service.js.map +1 -0
- package/apps/server/dist/database/infra/docker.service.d.ts +34 -0
- package/apps/server/dist/database/infra/docker.service.js +186 -0
- package/apps/server/dist/database/infra/docker.service.js.map +1 -0
- package/apps/server/dist/database/infra/index.d.ts +4 -0
- package/apps/server/dist/database/infra/index.js +21 -0
- package/apps/server/dist/database/infra/index.js.map +1 -0
- package/apps/server/dist/database/infra/postgres-container.service.d.ts +31 -0
- package/apps/server/dist/database/infra/postgres-container.service.js +163 -0
- package/apps/server/dist/database/infra/postgres-container.service.js.map +1 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.d.ts +14 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.js +121 -0
- package/apps/server/dist/database/infra/sqlite-infra.service.js.map +1 -0
- package/apps/server/dist/project/project.controller.d.ts +7 -0
- package/apps/server/dist/project/project.module.js +2 -1
- package/apps/server/dist/project/project.module.js.map +1 -1
- package/apps/server/dist/project/project.service.d.ts +10 -1
- package/apps/server/dist/project/project.service.js +35 -3
- package/apps/server/dist/project/project.service.js.map +1 -1
- package/apps/server/dist/tsconfig.tsbuildinfo +1 -1
- package/apps/server/package.json +1 -1
- package/apps/server/prisma/dev.db +0 -0
- package/apps/server/prisma/migrations/20260109053359_add_database_provider/migration.sql +11 -0
- package/apps/server/prisma/schema.prisma +16 -5
- package/apps/web/.next/BUILD_ID +1 -1
- package/apps/web/.next/app-build-manifest.json +8 -8
- package/apps/web/.next/build-manifest.json +2 -2
- package/apps/web/.next/cache/.previewinfo +1 -1
- package/apps/web/.next/cache/.rscinfo +1 -1
- package/apps/web/.next/cache/.tsbuildinfo +1 -1
- package/apps/web/.next/cache/config.json +3 -3
- package/apps/web/.next/cache/eslint/.cache_j3uhuz +1 -1
- package/apps/web/.next/cache/webpack/client-production/0.pack +0 -0
- package/apps/web/.next/cache/webpack/client-production/index.pack +0 -0
- package/apps/web/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/apps/web/.next/cache/webpack/server-production/0.pack +0 -0
- package/apps/web/.next/cache/webpack/server-production/index.pack +0 -0
- package/apps/web/.next/prerender-manifest.json +9 -9
- package/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/_not-found.html +1 -1
- package/apps/web/.next/server/app/_not-found.rsc +2 -2
- package/apps/web/.next/server/app/index.html +1 -1
- package/apps/web/.next/server/app/index.rsc +3 -3
- package/apps/web/.next/server/app/page.js +1 -1
- package/apps/web/.next/server/app/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/project/[id]/page.js +2 -2
- package/apps/web/.next/server/app/project/[id]/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/settings/page.js +2 -2
- package/apps/web/.next/server/app/settings/page.js.nft.json +1 -1
- package/apps/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
- package/apps/web/.next/server/app/settings.html +1 -1
- package/apps/web/.next/server/app/settings.rsc +3 -3
- package/apps/web/.next/server/chunks/{811.js → 526.js} +1 -1
- package/apps/web/.next/server/pages/404.html +1 -1
- package/apps/web/.next/server/pages/500.html +1 -1
- package/apps/web/.next/server/server-reference-manifest.json +1 -1
- package/apps/web/.next/static/chunks/193-9e44b5a1ad3e0586.js +1 -0
- package/apps/web/.next/static/chunks/700-75e1212e819e279c.js +1 -0
- package/apps/web/.next/static/chunks/app/page-6f2bfb6c9202164b.js +1 -0
- package/apps/web/.next/static/chunks/app/project/[id]/page-388d14835cae411b.js +1 -0
- package/apps/web/.next/static/chunks/app/settings/page-34c4ce9b8e645903.js +1 -0
- package/apps/web/.next/static/css/70f2a13cf3d254d8.css +3 -0
- package/apps/web/.next/trace +18 -18
- package/apps/web/package.json +1 -1
- package/apps/web/src/app/settings/page.tsx +138 -2
- package/apps/web/src/components/project/ProjectCard.tsx +12 -2
- package/package.json +1 -1
- package/packages/shared/src/types/project.ts +6 -0
- package/apps/web/.next/static/chunks/87-e65fb39b36fc5ac8.js +0 -1
- package/apps/web/.next/static/chunks/992-806bad722ba16222.js +0 -1
- package/apps/web/.next/static/chunks/app/page-8310956d8eae9762.js +0 -1
- package/apps/web/.next/static/chunks/app/project/[id]/page-3d9d2622b2801ab0.js +0 -1
- package/apps/web/.next/static/chunks/app/settings/page-3532fad509d55b77.js +0 -1
- package/apps/web/.next/static/css/b92103813bcb2a3c.css +0 -3
- /package/apps/web/.next/static/{91tvQbwE6MrVEkEolpLDW → UHB0ELmeUrSRXrnycF8qv}/_buildManifest.js +0 -0
- /package/apps/web/.next/static/{91tvQbwE6MrVEkEolpLDW → UHB0ELmeUrSRXrnycF8qv}/_ssgManifest.js +0 -0
package/apps/server/package.json
CHANGED
|
Binary file
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
-- AlterTable
|
|
2
|
+
ALTER TABLE "projects" ADD COLUMN "databaseProvider" TEXT;
|
|
3
|
+
ALTER TABLE "projects" ADD COLUMN "databaseUrl" TEXT;
|
|
4
|
+
ALTER TABLE "projects" ADD COLUMN "dockerContainerId" TEXT;
|
|
5
|
+
|
|
6
|
+
-- CreateTable
|
|
7
|
+
CREATE TABLE "settings" (
|
|
8
|
+
"key" TEXT NOT NULL PRIMARY KEY,
|
|
9
|
+
"value" TEXT NOT NULL,
|
|
10
|
+
"updatedAt" DATETIME NOT NULL
|
|
11
|
+
);
|
|
@@ -8,15 +8,21 @@ datasource db {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
model Project {
|
|
11
|
-
id String
|
|
11
|
+
id String @id @default(uuid())
|
|
12
12
|
name String
|
|
13
13
|
projectType ProjectType
|
|
14
|
-
backendFramework BackendFramework
|
|
14
|
+
backendFramework BackendFramework @default(NONE)
|
|
15
15
|
path String
|
|
16
16
|
description String?
|
|
17
|
-
claudeSessionId String?
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
claudeSessionId String? // Claude Code CLI session ID for conversation continuity
|
|
18
|
+
|
|
19
|
+
// Database infrastructure
|
|
20
|
+
databaseProvider DatabaseProvider? // null means not yet created
|
|
21
|
+
databaseUrl String? // Connection URL (stored encrypted in production)
|
|
22
|
+
dockerContainerId String? // Docker container ID for postgres_docker provider
|
|
23
|
+
|
|
24
|
+
createdAt DateTime @default(now())
|
|
25
|
+
updatedAt DateTime @updatedAt
|
|
20
26
|
|
|
21
27
|
messages Message[]
|
|
22
28
|
|
|
@@ -47,6 +53,11 @@ enum BackendFramework {
|
|
|
47
53
|
FASTAPI
|
|
48
54
|
}
|
|
49
55
|
|
|
56
|
+
enum DatabaseProvider {
|
|
57
|
+
POSTGRES_DOCKER
|
|
58
|
+
SQLITE
|
|
59
|
+
}
|
|
60
|
+
|
|
50
61
|
enum Role {
|
|
51
62
|
USER
|
|
52
63
|
ASSISTANT
|
package/apps/web/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
UHB0ELmeUrSRXrnycF8qv
|
|
@@ -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/
|
|
15
|
+
"static/css/70f2a13cf3d254d8.css",
|
|
16
16
|
"static/chunks/app/layout-2079789d2a8cf3e0.js"
|
|
17
17
|
],
|
|
18
18
|
"/page": [
|
|
@@ -20,25 +20,25 @@
|
|
|
20
20
|
"static/chunks/c476d598-9099ed8b975ae1d6.js",
|
|
21
21
|
"static/chunks/498-ad4e539d948e058e.js",
|
|
22
22
|
"static/chunks/main-app-de4b9be4b7d2b049.js",
|
|
23
|
-
"static/chunks/
|
|
24
|
-
"static/chunks/app/page-
|
|
23
|
+
"static/chunks/193-9e44b5a1ad3e0586.js",
|
|
24
|
+
"static/chunks/app/page-6f2bfb6c9202164b.js"
|
|
25
25
|
],
|
|
26
26
|
"/project/[id]/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
|
-
"static/chunks/
|
|
32
|
-
"static/chunks/
|
|
33
|
-
"static/chunks/app/project/[id]/page-
|
|
31
|
+
"static/chunks/193-9e44b5a1ad3e0586.js",
|
|
32
|
+
"static/chunks/700-75e1212e819e279c.js",
|
|
33
|
+
"static/chunks/app/project/[id]/page-388d14835cae411b.js"
|
|
34
34
|
],
|
|
35
35
|
"/settings/page": [
|
|
36
36
|
"static/chunks/webpack-1ff95075f86c177e.js",
|
|
37
37
|
"static/chunks/c476d598-9099ed8b975ae1d6.js",
|
|
38
38
|
"static/chunks/498-ad4e539d948e058e.js",
|
|
39
39
|
"static/chunks/main-app-de4b9be4b7d2b049.js",
|
|
40
|
-
"static/chunks/
|
|
41
|
-
"static/chunks/app/settings/page-
|
|
40
|
+
"static/chunks/193-9e44b5a1ad3e0586.js",
|
|
41
|
+
"static/chunks/app/settings/page-34c4ce9b8e645903.js"
|
|
42
42
|
]
|
|
43
43
|
}
|
|
44
44
|
}
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/UHB0ELmeUrSRXrnycF8qv/_buildManifest.js",
|
|
9
|
+
"static/UHB0ELmeUrSRXrnycF8qv/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [
|
|
12
12
|
"static/chunks/webpack-1ff95075f86c177e.js",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"previewModeId":"
|
|
1
|
+
{"previewModeId":"ce2ce952efd5fba2b56a5ea1c934fc1e","previewModeSigningKey":"fc408fdba9b193ff4aefbb87c36b733f1ed81dd856ac2b22f2a4d0956e7ce438","previewModeEncryptionKey":"f45104d27bb9b6a20582d54c77ef116448a6e14aa6e21832ea9c786384510f80","expireAt":1769161440041}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"encryption.key":"
|
|
1
|
+
{"encryption.key":"xDX9txZaZp6pmx+rExfFKmbwGEnXfc6Dt6oOTlHnqLc=","encryption.expire_at":1769161439854}
|