@checkstack/frontend 0.5.1 → 0.6.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,52 @@
1
1
  # @checkstack/frontend
2
2
 
3
+ ## 0.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b627562]
8
+ - @checkstack/ui@1.8.2
9
+ - @checkstack/about-frontend@0.2.18
10
+ - @checkstack/announcement-frontend@0.3.2
11
+ - @checkstack/auth-frontend@0.6.2
12
+ - @checkstack/catalog-frontend@0.10.2
13
+ - @checkstack/command-frontend@0.2.37
14
+ - @checkstack/dependency-frontend@0.4.2
15
+
16
+ ## 0.6.0
17
+
18
+ ### Minor Changes
19
+
20
+ - 7c97b43: Backfill missing package bumps for the `/rest` mount PR — these packages were
21
+ modified in that change but were not declared in its changeset:
22
+
23
+ - `@checkstack/api-docs-frontend`: schema renderer rewrite (`additionalProperties`,
24
+ `$ref` resolution, `oneOf`/`anyOf`/`allOf`, nullable unions, `format`
25
+ qualifiers) and the new path/query/header/cookie parameters table for GET
26
+ endpoints.
27
+ - `@checkstack/frontend`: Vite dev-server proxy for `/rest/*` so external REST
28
+ clients pointing at the Vite port resolve to the backend.
29
+ - `@checkstack/healthcheck-backend`: router handler now unpacks `input.systemId`
30
+ after `getSystemConfigurations` was refactored from `.input(z.string())` to
31
+ `.input(z.object({ systemId: z.string() }))`.
32
+
33
+ No behavior change beyond what the original PR already shipped.
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [9016526]
38
+ - @checkstack/common@0.10.0
39
+ - @checkstack/about-frontend@0.2.17
40
+ - @checkstack/announcement-frontend@0.3.1
41
+ - @checkstack/auth-frontend@0.6.1
42
+ - @checkstack/catalog-frontend@0.10.1
43
+ - @checkstack/command-frontend@0.2.36
44
+ - @checkstack/dependency-frontend@0.4.1
45
+ - @checkstack/frontend-api@0.5.1
46
+ - @checkstack/signal-common@0.2.3
47
+ - @checkstack/ui@1.8.1
48
+ - @checkstack/signal-frontend@0.1.3
49
+
3
50
  ## 0.5.1
4
51
 
5
52
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/frontend",
3
- "version": "0.5.1",
3
+ "version": "0.6.1",
4
4
  "license": "Elastic-2.0",
5
5
  "checkstack": {
6
6
  "type": "frontend"
@@ -16,17 +16,17 @@
16
16
  "lint:code": "eslint . --max-warnings 0"
17
17
  },
18
18
  "dependencies": {
19
- "@checkstack/about-frontend": "0.2.15",
20
- "@checkstack/announcement-frontend": "0.2.16",
21
- "@checkstack/auth-frontend": "0.5.33",
22
- "@checkstack/catalog-frontend": "0.9.1",
23
- "@checkstack/command-frontend": "0.2.34",
24
- "@checkstack/common": "0.8.0",
25
- "@checkstack/dependency-frontend": "0.3.5",
26
- "@checkstack/frontend-api": "0.4.2",
27
- "@checkstack/signal-common": "0.2.1",
28
- "@checkstack/signal-frontend": "0.1.1",
29
- "@checkstack/ui": "1.7.1",
19
+ "@checkstack/about-frontend": "0.2.17",
20
+ "@checkstack/announcement-frontend": "0.3.1",
21
+ "@checkstack/auth-frontend": "0.6.1",
22
+ "@checkstack/catalog-frontend": "0.10.1",
23
+ "@checkstack/command-frontend": "0.2.36",
24
+ "@checkstack/common": "0.10.0",
25
+ "@checkstack/dependency-frontend": "0.4.1",
26
+ "@checkstack/frontend-api": "0.5.1",
27
+ "@checkstack/signal-common": "0.2.3",
28
+ "@checkstack/signal-frontend": "0.1.3",
29
+ "@checkstack/ui": "1.8.1",
30
30
  "@orpc/client": "^1.13.14",
31
31
  "@tanstack/react-query": "^5.64.0",
32
32
  "@tanstack/react-query-devtools": "^5.64.0",
@@ -40,7 +40,7 @@
40
40
  "tailwind-merge": "^2.2.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@checkstack/scripts": "0.3.0",
43
+ "@checkstack/scripts": "0.3.2",
44
44
  "@checkstack/tsconfig": "0.0.7",
45
45
  "@types/react": "^18.2.64",
46
46
  "@types/react-dom": "^18.2.21",
package/vite.config.ts CHANGED
@@ -21,6 +21,10 @@ export default defineConfig(() => {
21
21
  target: backendUrl,
22
22
  ws: true, // Enable WebSocket proxy
23
23
  },
24
+ // REST mount served by oRPC's OpenAPIHandler on the backend (see
25
+ // core/backend/src/plugin-manager/api-router.ts). Proxied so external
26
+ // REST clients pointing at the Vite dev port still resolve.
27
+ "^/rest/": backendUrl,
24
28
  "/assets": backendUrl,
25
29
  // Platform endpoints (probes etc.) under /.checkstack/* — proxied
26
30
  // here for dev convenience so e.g.