@checkstack/frontend 0.5.0 → 0.6.0

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,64 @@
1
1
  # @checkstack/frontend
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7c97b43: Backfill missing package bumps for the `/rest` mount PR — these packages were
8
+ modified in that change but were not declared in its changeset:
9
+
10
+ - `@checkstack/api-docs-frontend`: schema renderer rewrite (`additionalProperties`,
11
+ `$ref` resolution, `oneOf`/`anyOf`/`allOf`, nullable unions, `format`
12
+ qualifiers) and the new path/query/header/cookie parameters table for GET
13
+ endpoints.
14
+ - `@checkstack/frontend`: Vite dev-server proxy for `/rest/*` so external REST
15
+ clients pointing at the Vite port resolve to the backend.
16
+ - `@checkstack/healthcheck-backend`: router handler now unpacks `input.systemId`
17
+ after `getSystemConfigurations` was refactored from `.input(z.string())` to
18
+ `.input(z.object({ systemId: z.string() }))`.
19
+
20
+ No behavior change beyond what the original PR already shipped.
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [9016526]
25
+ - @checkstack/common@0.10.0
26
+ - @checkstack/about-frontend@0.2.17
27
+ - @checkstack/announcement-frontend@0.3.1
28
+ - @checkstack/auth-frontend@0.6.1
29
+ - @checkstack/catalog-frontend@0.10.1
30
+ - @checkstack/command-frontend@0.2.36
31
+ - @checkstack/dependency-frontend@0.4.1
32
+ - @checkstack/frontend-api@0.5.1
33
+ - @checkstack/signal-common@0.2.3
34
+ - @checkstack/ui@1.8.1
35
+ - @checkstack/signal-frontend@0.1.3
36
+
37
+ ## 0.5.1
38
+
39
+ ### Patch Changes
40
+
41
+ - Updated dependencies [42abfff]
42
+ - Updated dependencies [3547670]
43
+ - Updated dependencies [f6f9a5c]
44
+ - Updated dependencies [f6f9a5c]
45
+ - Updated dependencies [1ef2e79]
46
+ - Updated dependencies [aa89bc5]
47
+ - Updated dependencies [950d6ec]
48
+ - Updated dependencies [3547670]
49
+ - Updated dependencies [3547670]
50
+ - @checkstack/common@0.9.0
51
+ - @checkstack/ui@1.8.0
52
+ - @checkstack/catalog-frontend@0.10.0
53
+ - @checkstack/dependency-frontend@0.4.0
54
+ - @checkstack/frontend-api@0.5.0
55
+ - @checkstack/auth-frontend@0.6.0
56
+ - @checkstack/announcement-frontend@0.3.0
57
+ - @checkstack/about-frontend@0.2.16
58
+ - @checkstack/command-frontend@0.2.35
59
+ - @checkstack/signal-common@0.2.2
60
+ - @checkstack/signal-frontend@0.1.2
61
+
3
62
  ## 0.5.0
4
63
 
5
64
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/frontend",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
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.14",
20
- "@checkstack/announcement-frontend": "0.2.15",
21
- "@checkstack/auth-frontend": "0.5.32",
22
- "@checkstack/catalog-frontend": "0.9.0",
23
- "@checkstack/command-frontend": "0.2.33",
24
- "@checkstack/common": "0.7.0",
25
- "@checkstack/dependency-frontend": "0.3.4",
26
- "@checkstack/frontend-api": "0.4.1",
27
- "@checkstack/signal-common": "0.2.0",
28
- "@checkstack/signal-frontend": "0.1.0",
29
- "@checkstack/ui": "1.7.0",
19
+ "@checkstack/about-frontend": "0.2.16",
20
+ "@checkstack/announcement-frontend": "0.3.0",
21
+ "@checkstack/auth-frontend": "0.6.0",
22
+ "@checkstack/catalog-frontend": "0.10.0",
23
+ "@checkstack/command-frontend": "0.2.35",
24
+ "@checkstack/common": "0.9.0",
25
+ "@checkstack/dependency-frontend": "0.4.0",
26
+ "@checkstack/frontend-api": "0.5.0",
27
+ "@checkstack/signal-common": "0.2.2",
28
+ "@checkstack/signal-frontend": "0.1.2",
29
+ "@checkstack/ui": "1.8.0",
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,8 +40,8 @@
40
40
  "tailwind-merge": "^2.2.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@checkstack/scripts": "0.1.2",
44
- "@checkstack/tsconfig": "0.0.6",
43
+ "@checkstack/scripts": "0.3.1",
44
+ "@checkstack/tsconfig": "0.0.7",
45
45
  "@types/react": "^18.2.64",
46
46
  "@types/react-dom": "^18.2.21",
47
47
  "@vitejs/plugin-react": "^6.0.1",
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.