@camstack/server 1.2.80 → 1.2.82

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/dist/main.js CHANGED
@@ -958,6 +958,10 @@ async function bootstrap() {
958
958
  getRegistry: () => capabilityRegistry,
959
959
  verifyToken: (t) => authService.verifyToken(t),
960
960
  publicHubUrl: () => process.env.CAMSTACK_PUBLIC_ORIGIN ?? `https://localhost:${port}`,
961
+ // Every /authorize refusal is a dropped account-linking attempt. Without
962
+ // this scope the drop is invisible in Loki and the only signal left is an
963
+ // operator noticing that linking stopped working.
964
+ logger: app.get(logging_service_1.LoggingService).createLogger('oauth2'),
961
965
  });
962
966
  console.log('[bootstrap] OAuth2 routes registered at /api/oauth2/*');
963
967
  // Attach tRPC WebSocket handler using noServer mode to avoid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/server",
3
- "version": "1.2.80",
3
+ "version": "1.2.82",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -33,19 +33,19 @@
33
33
  ]
34
34
  },
35
35
  "dependencies": {
36
- "@camstack/addon-admin-ui": "1.2.40",
36
+ "@camstack/addon-admin-ui": "1.2.41",
37
37
  "@camstack/addon-agent-ui": "1.2.10",
38
38
  "@camstack/addon-auth": "1.2.11",
39
39
  "@camstack/addon-decoder-nodeav": "1.2.9",
40
40
  "@camstack/addon-notifiers": "1.2.13",
41
41
  "@camstack/addon-pipeline": "1.2.52",
42
42
  "@camstack/addon-pipeline-orchestrator": "1.2.33",
43
- "@camstack/addon-post-analysis": "1.2.55",
44
- "@camstack/sdk": "1.2.10",
43
+ "@camstack/addon-post-analysis": "1.2.56",
44
+ "@camstack/sdk": "1.2.11",
45
45
  "@camstack/shm-ring": "1.1.9",
46
- "@camstack/system": "1.2.67",
47
- "@camstack/types": "1.2.51",
48
- "@camstack/ui-library": "1.2.36",
46
+ "@camstack/system": "1.2.69",
47
+ "@camstack/types": "1.2.53",
48
+ "@camstack/ui-library": "1.2.38",
49
49
  "@fastify/compress": "^9.0.0",
50
50
  "@fastify/cookie": "^11.0.2",
51
51
  "@fastify/cors": "^11.2.0",