@danypops/tickets 0.8.4 → 0.8.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danypops/tickets",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5",
|
|
4
4
|
"description": "Unified CLI, daemon, and TypeScript library for issue tracking across GitHub, GitLab, and Jira.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"typecheck": "tsc --noEmit"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@danypops/vehicle-core": "^0.
|
|
28
|
-
"@danypops/vehicle-server": "^0.
|
|
27
|
+
"@danypops/vehicle-core": "^0.11.0",
|
|
28
|
+
"@danypops/vehicle-server": "^0.16.0",
|
|
29
29
|
"@danypops/vehicle-client": "^0.5.0",
|
|
30
30
|
"@danypops/enigma-client": "^0.3.0",
|
|
31
31
|
"@gitbeaker/rest": "^43.8.0",
|
|
@@ -285,9 +285,12 @@ export function syncDiscoverAvailability(registry: VehicleRegistry, service: Tic
|
|
|
285
285
|
export function createTicketsVehicleRegistry(deps: Omit<TicketsAppDeps, "vehicleRegistry">): VehicleRegistry {
|
|
286
286
|
const registry = new VehicleRegistry({
|
|
287
287
|
name: "tickets",
|
|
288
|
-
version:
|
|
288
|
+
version: deps.version,
|
|
289
289
|
description: "Unified issue tracking across GitHub, GitLab, and Jira.",
|
|
290
290
|
});
|
|
291
|
+
// setExposeHandlerFailureDetails left off: ApiError (issue/errors.ts) embeds the raw HTTP
|
|
292
|
+
// response body, untrusted external content from GitHub/GitLab/Jira. No error-parity wrapper
|
|
293
|
+
// here either -- TICKET_OP_HANDLERS' real errors reach the registry's own catch-all as-is.
|
|
291
294
|
|
|
292
295
|
for (const spec of OPERATIONS) {
|
|
293
296
|
const operation = defineVehicleOperation({
|