repoburg 1.3.150 → 1.3.152
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/backend/dist/src/app.module.js +1 -0
- package/backend/dist/src/app.module.js.map +1 -1
- package/backend/dist/src/app.service.d.ts +1 -0
- package/backend/dist/src/app.service.js +3 -0
- package/backend/dist/src/app.service.js.map +1 -1
- package/backend/dist/src/application-state/application-state.controller.d.ts +6 -0
- package/backend/dist/src/application-state/application-state.controller.js +29 -0
- package/backend/dist/src/application-state/application-state.controller.js.map +1 -1
- package/backend/dist/src/application-state/application-state.service.d.ts +3 -0
- package/backend/dist/src/application-state/application-state.service.js +15 -0
- package/backend/dist/src/application-state/application-state.service.js.map +1 -1
- package/backend/dist/src/application-state/dto/set-notifications-enabled.dto.d.ts +3 -0
- package/backend/dist/src/application-state/dto/set-notifications-enabled.dto.js +21 -0
- package/backend/dist/src/application-state/dto/set-notifications-enabled.dto.js.map +1 -0
- package/backend/dist/src/global-config/dto/update-global-config.dto.d.ts +1 -0
- package/backend/dist/src/global-config/dto/update-global-config.dto.js +5 -0
- package/backend/dist/src/global-config/dto/update-global-config.dto.js.map +1 -1
- package/backend/dist/src/global-config/global-config.service.d.ts +1 -0
- package/backend/dist/src/global-config/global-config.service.js.map +1 -1
- package/backend/dist/src/llm-orchestration/hooks/frontend-notification.hook.d.ts +9 -1
- package/backend/dist/src/llm-orchestration/hooks/frontend-notification.hook.js +43 -2
- package/backend/dist/src/llm-orchestration/hooks/frontend-notification.hook.js.map +1 -1
- package/backend/dist/src/llm-orchestration/llm-orchestration.module.js +4 -0
- package/backend/dist/src/llm-orchestration/llm-orchestration.module.js.map +1 -1
- package/backend/dist/src/notifications/notifications.module.d.ts +2 -0
- package/backend/dist/src/notifications/notifications.module.js +23 -0
- package/backend/dist/src/notifications/notifications.module.js.map +1 -0
- package/backend/dist/src/notifications/notifications.service.d.ts +12 -0
- package/backend/dist/src/notifications/notifications.service.js +49 -0
- package/backend/dist/src/notifications/notifications.service.js.map +1 -0
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/backend/package.json +1 -0
- package/backend/section-modified.txt +1 -0
- package/package.json +6 -6
package/backend/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
current
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repoburg",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.152",
|
|
4
4
|
"description": "A local AI-powered software developer assistant that runs on your own machine.",
|
|
5
5
|
"author": "Celal Ertug",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"@nestjs/core": "^10.0.0",
|
|
43
43
|
"@nestjs/platform-express": "^10.0.0",
|
|
44
44
|
"@nestjs/platform-ws": "^10.3.10",
|
|
45
|
+
"@nestjs/swagger": "^7.4.0",
|
|
45
46
|
"@nestjs/typeorm": "^10.0.0",
|
|
46
47
|
"@nestjs/websockets": "^10.3.10",
|
|
47
48
|
"@openrouter/sdk": "^0.3.10",
|
|
@@ -57,11 +58,11 @@
|
|
|
57
58
|
"class-validator": "^0.14.0",
|
|
58
59
|
"cli-table3": "^0.6.5",
|
|
59
60
|
"commander": "^12.1.0",
|
|
60
|
-
"@nestjs/swagger": "^7.4.0",
|
|
61
61
|
"concurrently": "^8.2.2",
|
|
62
62
|
"cors": "^2.8.5",
|
|
63
63
|
"cross-env": "^7.0.3",
|
|
64
64
|
"dotenv": "^16.4.5",
|
|
65
|
+
"esbuild": "^0.28.0",
|
|
65
66
|
"eta": "^3.5.0",
|
|
66
67
|
"express": "^4.19.2",
|
|
67
68
|
"form-data": "^4.0.0",
|
|
@@ -74,6 +75,7 @@
|
|
|
74
75
|
"js-tiktoken": "^1.0.21",
|
|
75
76
|
"libphonenumber-js": "^1.12.10",
|
|
76
77
|
"mermaid": "^11.10.1",
|
|
78
|
+
"node-notifier": "^10.0.1",
|
|
77
79
|
"open": "^10.1.2",
|
|
78
80
|
"ora": "^8.0.1",
|
|
79
81
|
"pm2": "^6.0.8",
|
|
@@ -82,13 +84,11 @@
|
|
|
82
84
|
"sqlite3": "^5.1.6",
|
|
83
85
|
"swagger-ui-express": "^5.0.1",
|
|
84
86
|
"typeorm": "^0.3.17",
|
|
87
|
+
"undici": "^8.1.0",
|
|
85
88
|
"web-tree-sitter": "^0.25.10",
|
|
86
|
-
"ws": "^8.17.1"
|
|
87
|
-
"esbuild": "^0.28.0",
|
|
88
|
-
"undici": "^8.1.0"
|
|
89
|
+
"ws": "^8.17.1"
|
|
89
90
|
},
|
|
90
91
|
"devDependencies": {
|
|
91
92
|
"@yao-pkg/pkg": "^5.8.1"
|
|
92
|
-
|
|
93
93
|
}
|
|
94
94
|
}
|