@chidchanun/bcp 0.2.17 → 0.2.19

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/docs/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  The `docs/` directory is the documentation source of truth for BCP Framework and is organized for **`bcp-docs-web`**.
4
4
 
5
- > **Documentation target:** BCP Framework `0.2.17Observability Platform v3`
5
+ > **Documentation target:** BCP Framework `0.2.19Stability & API Freeze`
6
6
  >
7
7
  > **Release state:** unreleased development target until RC validation, tagging and npm publication complete.
8
8
 
@@ -17,6 +17,9 @@ docs/platform-manifest.json
17
17
 
18
18
  docs/api-manifest.json
19
19
  -> public package entrypoints, source ownership and guide mapping
20
+
21
+ docs/api-freeze-snapshot.json
22
+ -> frozen public/CLI/prepared-package compatibility contract
20
23
  ```
21
24
 
22
25
  Framework source and tests remain authoritative for runtime behavior.
@@ -43,64 +46,42 @@ Framework source and tests remain authoritative for runtime behavior.
43
46
  | `0.2.15` | Plugin & Module Platform |
44
47
  | `0.2.16` | Cache Platform v2 |
45
48
  | `0.2.17` | Observability Platform v3 |
49
+ | `0.2.18` | Deployment Platform v2 |
50
+ | `0.2.19` | Stability & API Freeze |
46
51
 
47
- ## 0.2.17Observability Platform v3
48
-
49
- `0.2.17` extends the existing server-only `bcp/observability` public entrypoint while preserving Observability Platform v2 metrics and health APIs.
50
-
51
- Primary tracing APIs:
52
+ ## 0.2.19Stability & API Freeze
52
53
 
53
- ```ts
54
- import {
55
- createCompositeTraceSpanExporter,
56
- createMemoryTraceSpanExporter,
57
- createRequestTracingMiddleware,
58
- createTraceCarrier,
59
- createTraceMetricsExporter,
60
- createTracer,
61
- getTraceLogFields,
62
- runWithTraceCarrier,
63
- } from "bcp/observability";
64
- ```
54
+ `0.2.19` freezes the supported `0.2.x` public package and CLI contract without adding a new application subsystem.
65
55
 
66
- Runtime model:
56
+ Primary stability commands:
67
57
 
68
- ```text
69
- Incoming HTTP
70
- |
71
- v
72
- request tracing middleware
73
- |
74
- +-- AsyncLocalStorage trace context
75
- +-- W3C traceparent
76
- +-- correlationId
77
- |
78
- +-- database/cache child spans
79
- +-- trace carrier -> jobs/workflows/events/realtime
80
- |
81
- v
82
- TraceSpanExporter
83
- +-- memory exporter
84
- +-- trace metrics exporter
85
- +-- application/vendor exporter
58
+ ```bash
59
+ npm run api:check
60
+ npm run api:snapshot
61
+ npm run release:readiness
62
+ npm run release:readiness:report
86
63
  ```
87
64
 
88
- A root trace owns a stable `traceId` and `correlationId`. Nested spans inherit that identity and receive their own `spanId` / `parentSpanId` relationship.
65
+ The freeze snapshot captures:
89
66
 
90
- `createTraceCarrier()` and `runWithTraceCarrier()` provide explicit provider-neutral propagation through non-HTTP transports without changing persisted job/workflow/outbox schemas.
67
+ - public `bcp/*` entrypoints;
68
+ - CLI command names;
69
+ - prepared npm export targets;
70
+ - browser poison boundaries;
71
+ - API source/environment ownership;
72
+ - compatibility with `0.2.18`.
91
73
 
92
- Prepared npm packages compile `bcp/observability` to `observability.mjs` for standalone Node runtime use.
74
+ `npm run api:check` prepares the exact npm staging package and rejects drift from the committed snapshot.
93
75
 
94
76
  New/updated sources:
95
77
 
96
78
  | Source | Purpose |
97
79
  | --- | --- |
98
- | `observability-v3.md` | Tracing, propagation, W3C trace context, exporters, correlation and trace metrics |
99
- | `api-reference.md` | `bcp/observability` tracing APIs |
100
- | `platform-manifest.json` | Observability v3 capability flags |
101
- | `api-manifest.json` | Updated observability source/guide ownership |
102
- | `docs-web-manifest.json` | Observability v3 docs navigation and `0.2.17` release route |
103
- | `releases/0.2.17.md` | Observability Platform v3 release notes |
80
+ | `stability-api-freeze.md` | Freeze policy, compatibility checks and release readiness |
81
+ | `api-freeze-snapshot.json` | Frozen public/CLI/package contract |
82
+ | `platform-manifest.json` | Stability capability flags and `0.2.18` compatibility baseline |
83
+ | `docs-web-manifest.json` | Stability guide and `0.2.19` release route |
84
+ | `releases/0.2.19.md` | Stability & API Freeze release notes |
104
85
 
105
86
  ## Update rule
106
87
 
@@ -112,17 +93,17 @@ When framework behavior or public surface changes:
112
93
  4. Update `platform-manifest.json` for runtime/public-entrypoint/capability changes.
113
94
  5. Update `api-manifest.json` for public API ownership/guide changes.
114
95
  6. Update `docs-web-manifest.json` for website route/navigation changes.
115
- 7. Update `docs/releases/<version>.md`.
116
- 8. Change release state only after the release workflow reaches that state.
96
+ 7. Review `api-freeze-snapshot.json`; do not regenerate it casually during `0.2.19`.
97
+ 8. Update `docs/releases/<version>.md`.
98
+ 9. Change release state only after the release workflow reaches that state.
117
99
 
118
100
  ## Important docs-web routes
119
101
 
120
102
  | Website route | Markdown source |
121
103
  | --- | --- |
122
- | `/docs/authentication` | `authentication.md` |
123
- | `/docs/observability` | `observability.md` |
104
+ | `/docs/stability-api-freeze` | `stability-api-freeze.md` |
124
105
  | `/docs/observability-v3` | `observability-v3.md` |
125
- | `/docs/background-jobs` | `background-jobs.md` |
106
+ | `/docs/deployment-platform-v2` | `deployment-platform-v2.md` |
126
107
  | `/docs/durable-jobs` | `durable-jobs.md` |
127
108
  | `/docs/workflow-orchestration` | `workflow-orchestration.md` |
128
109
  | `/docs/transactional-outbox-events` | `transactional-outbox-events.md` |
@@ -131,7 +112,7 @@ When framework behavior or public surface changes:
131
112
  | `/docs/plugin-module-platform` | `plugin-module-platform.md` |
132
113
  | `/docs/cache-platform-v2` | `cache-platform-v2.md` |
133
114
  | `/docs/api-reference` | `api-reference.md` |
134
- | `/releases/0.2.17` | `releases/0.2.17.md` |
115
+ | `/releases/0.2.19` | `releases/0.2.19.md` |
135
116
 
136
117
  Every route/source pair is validated by unit tests.
137
118
 
@@ -153,16 +134,17 @@ bcp/realtime
153
134
  bcp/testing
154
135
  bcp/plugins
155
136
  bcp/observability
137
+ bcp/deployment
156
138
  bcp/server
157
139
  bcp/server-only
158
140
  bcp/middleware
159
141
  ```
160
142
 
161
- The API-manifest entrypoint set must match the platform public-entrypoint set exactly.
143
+ The API-manifest entrypoint set, platform public-entrypoint set and freeze snapshot must remain aligned.
162
144
 
163
145
  ## Release validation
164
146
 
165
- Before publishing `0.2.17`:
147
+ Before publishing `0.2.19`:
166
148
 
167
149
  ```bash
168
150
  npm run typecheck
@@ -170,9 +152,11 @@ npm run test:unit
170
152
  npm run test:integration
171
153
  npm run test:e2e
172
154
  npm run test:package
155
+ npm run api:check
156
+ npm run release:readiness
173
157
  npm run rc:check
174
158
  ```
175
159
 
176
- Observability Platform v3 validation covers root/child spans, async trace context, W3C traceparent parsing/injection, correlation IDs, request middleware, trace carriers, error spans, metrics integration, compiled `observability.mjs` package execution and docs/platform/API parity.
160
+ Stability validation covers public/CLI/export parity, prepared-package browser/runtime boundaries, release metadata and deployment lifecycle idempotency in addition to all existing subsystem suites.
177
161
 
178
162
  The final release tag must point to the exact commit that passed the complete RC sequence.
@@ -0,0 +1,232 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "framework": "bcp",
4
+ "version": "0.2.19",
5
+ "baselineVersion": "0.2.18",
6
+ "state": "frozen",
7
+ "intentionalBreakingChanges": false,
8
+ "publicEntrypoints": [
9
+ "bcp",
10
+ "bcp/island",
11
+ "bcp/cache",
12
+ "bcp/config",
13
+ "bcp/validation",
14
+ "bcp/error",
15
+ "bcp/database",
16
+ "bcp/auth",
17
+ "bcp/jobs",
18
+ "bcp/workflow",
19
+ "bcp/events",
20
+ "bcp/realtime",
21
+ "bcp/testing",
22
+ "bcp/plugins",
23
+ "bcp/observability",
24
+ "bcp/deployment",
25
+ "bcp/server",
26
+ "bcp/server-only",
27
+ "bcp/middleware"
28
+ ],
29
+ "cliCommands": [
30
+ "dev",
31
+ "build",
32
+ "package",
33
+ "start",
34
+ "routes",
35
+ "update",
36
+ "db",
37
+ "generate",
38
+ "config",
39
+ "doctor",
40
+ "inspect",
41
+ "help",
42
+ "version"
43
+ ],
44
+ "packageExports": {
45
+ ".": {
46
+ "default": "./packages/client/src/index.tsx",
47
+ "types": "./packages/client/src/index.tsx"
48
+ },
49
+ "./auth": {
50
+ "browser": "./packages/client/src/server-only.browser.mjs",
51
+ "default": "./packages/client/src/auth.mjs",
52
+ "types": "./packages/client/src/auth.ts"
53
+ },
54
+ "./cache": {
55
+ "default": "./packages/client/src/cache.mjs",
56
+ "types": "./packages/client/src/cache.ts"
57
+ },
58
+ "./config": {
59
+ "default": "./packages/client/src/config.mjs",
60
+ "types": "./packages/client/src/config.ts"
61
+ },
62
+ "./database": {
63
+ "browser": "./packages/client/src/server-only.browser.mjs",
64
+ "default": "./packages/client/src/database.mjs",
65
+ "types": "./packages/client/src/database.ts"
66
+ },
67
+ "./deployment": {
68
+ "browser": "./packages/client/src/server-only.browser.mjs",
69
+ "default": "./packages/client/src/deployment.mjs",
70
+ "types": "./packages/client/src/deployment.ts"
71
+ },
72
+ "./error": {
73
+ "default": "./packages/client/src/http-error.ts",
74
+ "types": "./packages/client/src/http-error.ts"
75
+ },
76
+ "./events": {
77
+ "browser": "./packages/client/src/server-only.browser.mjs",
78
+ "default": "./packages/client/src/events.mjs",
79
+ "types": "./packages/client/src/events.ts"
80
+ },
81
+ "./island": {
82
+ "default": "./packages/client/src/islands.tsx",
83
+ "types": "./packages/client/src/islands.tsx"
84
+ },
85
+ "./jobs": {
86
+ "browser": "./packages/client/src/server-only.browser.mjs",
87
+ "default": "./packages/client/src/jobs.mjs",
88
+ "types": "./packages/client/src/jobs.ts"
89
+ },
90
+ "./middleware": {
91
+ "default": "./packages/server/src/middleware.mjs",
92
+ "types": "./packages/server/src/middleware.ts"
93
+ },
94
+ "./observability": {
95
+ "browser": "./packages/client/src/server-only.browser.mjs",
96
+ "default": "./packages/client/src/observability.mjs",
97
+ "types": "./packages/client/src/observability.ts"
98
+ },
99
+ "./package.json": "./package.json",
100
+ "./plugins": {
101
+ "browser": "./packages/client/src/server-only.browser.mjs",
102
+ "default": "./packages/client/src/plugins.mjs",
103
+ "types": "./packages/client/src/plugins.ts"
104
+ },
105
+ "./realtime": {
106
+ "browser": "./packages/client/src/server-only.browser.mjs",
107
+ "default": "./packages/client/src/realtime.mjs",
108
+ "types": "./packages/client/src/realtime.ts"
109
+ },
110
+ "./server": {
111
+ "browser": "./packages/client/src/server-only.browser.mjs",
112
+ "default": "./packages/client/src/server.mjs",
113
+ "types": "./packages/client/src/server.ts"
114
+ },
115
+ "./server-only": {
116
+ "browser": "./packages/client/src/server-only.browser.mjs",
117
+ "default": "./packages/client/src/server-only.mjs",
118
+ "types": "./packages/client/src/server-only.d.ts"
119
+ },
120
+ "./testing": {
121
+ "browser": "./packages/client/src/server-only.browser.mjs",
122
+ "default": "./packages/client/src/testing.mjs",
123
+ "types": "./packages/client/src/testing.ts"
124
+ },
125
+ "./validation": {
126
+ "default": "./packages/client/src/validation.ts",
127
+ "types": "./packages/client/src/validation.ts"
128
+ },
129
+ "./workflow": {
130
+ "browser": "./packages/client/src/server-only.browser.mjs",
131
+ "default": "./packages/client/src/workflow.mjs",
132
+ "types": "./packages/client/src/workflow.ts"
133
+ }
134
+ },
135
+ "apiOwnership": [
136
+ {
137
+ "package": "bcp",
138
+ "source": "packages/client/src/index.tsx",
139
+ "environment": "universal"
140
+ },
141
+ {
142
+ "package": "bcp/island",
143
+ "source": "packages/client/src/islands.tsx",
144
+ "environment": "universal"
145
+ },
146
+ {
147
+ "package": "bcp/cache",
148
+ "source": "packages/client/src/cache.ts",
149
+ "environment": "server-preferred"
150
+ },
151
+ {
152
+ "package": "bcp/config",
153
+ "source": "packages/client/src/config.ts",
154
+ "environment": "server"
155
+ },
156
+ {
157
+ "package": "bcp/validation",
158
+ "source": "packages/client/src/validation.ts",
159
+ "environment": "universal"
160
+ },
161
+ {
162
+ "package": "bcp/error",
163
+ "source": "packages/client/src/http-error.ts",
164
+ "environment": "universal"
165
+ },
166
+ {
167
+ "package": "bcp/database",
168
+ "source": "packages/client/src/database.ts",
169
+ "environment": "server"
170
+ },
171
+ {
172
+ "package": "bcp/auth",
173
+ "source": "packages/client/src/auth.ts",
174
+ "environment": "server"
175
+ },
176
+ {
177
+ "package": "bcp/jobs",
178
+ "source": "packages/client/src/jobs.ts",
179
+ "environment": "server"
180
+ },
181
+ {
182
+ "package": "bcp/workflow",
183
+ "source": "packages/client/src/workflow.ts",
184
+ "environment": "server"
185
+ },
186
+ {
187
+ "package": "bcp/events",
188
+ "source": "packages/client/src/events.ts",
189
+ "environment": "server"
190
+ },
191
+ {
192
+ "package": "bcp/realtime",
193
+ "source": "packages/client/src/realtime.ts",
194
+ "environment": "server"
195
+ },
196
+ {
197
+ "package": "bcp/testing",
198
+ "source": "packages/client/src/testing.ts",
199
+ "environment": "server"
200
+ },
201
+ {
202
+ "package": "bcp/plugins",
203
+ "source": "packages/client/src/plugins.ts",
204
+ "environment": "server"
205
+ },
206
+ {
207
+ "package": "bcp/observability",
208
+ "source": "packages/client/src/observability.ts",
209
+ "environment": "server"
210
+ },
211
+ {
212
+ "package": "bcp/deployment",
213
+ "source": "packages/client/src/deployment.ts",
214
+ "environment": "server"
215
+ },
216
+ {
217
+ "package": "bcp/server",
218
+ "source": "packages/client/src/server.ts",
219
+ "environment": "server"
220
+ },
221
+ {
222
+ "package": "bcp/server-only",
223
+ "source": "packages/client/src/server-only.mjs",
224
+ "environment": "server-marker"
225
+ },
226
+ {
227
+ "package": "bcp/middleware",
228
+ "source": "packages/server/src/middleware.ts",
229
+ "environment": "server"
230
+ }
231
+ ]
232
+ }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "framework": "bcp",
4
- "version": "0.2.17",
4
+ "version": "0.2.19",
5
5
  "releaseState": "unreleased",
6
6
  "coverage": "public-entrypoints",
7
7
  "entrypoints": [
@@ -34,8 +34,8 @@
34
34
  "source": "packages/client/src/config.ts",
35
35
  "environment": "server",
36
36
  "route": "/docs/api-reference#bcp-config",
37
- "summary": "Typed BCP configuration, environment-schema validation and configuration diagnostics APIs.",
38
- "guides": ["/docs/configuration", "/docs/environment-validation"]
37
+ "summary": "Typed BCP configuration, environment-schema validation and configuration diagnostics APIs with a compiled production runtime.",
38
+ "guides": ["/docs/configuration", "/docs/environment-validation", "/docs/deployment-platform-v2"]
39
39
  },
40
40
  {
41
41
  "package": "bcp/validation",
@@ -59,15 +59,15 @@
59
59
  "environment": "server",
60
60
  "route": "/docs/api-reference#bcp-database",
61
61
  "summary": "Provider-neutral MySQL, PostgreSQL and SQLite query, transaction, lifecycle and migration primitives.",
62
- "guides": ["/docs/database", "/docs/database-migrations", "/docs/transactional-outbox-events", "/docs/testing-platform", "/docs/observability-v3"]
62
+ "guides": ["/docs/database", "/docs/database-migrations", "/docs/transactional-outbox-events", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
63
63
  },
64
64
  {
65
65
  "package": "bcp/auth",
66
66
  "source": "packages/client/src/auth.ts",
67
67
  "environment": "server",
68
68
  "route": "/docs/api-reference#bcp-auth",
69
- "summary": "Authentication Platform v2 plus permission checks, authorization policies and auth/guest/role/permission route guards.",
70
- "guides": ["/docs/authentication", "/docs/auth-session-store", "/docs/auth-route-guards", "/docs/authorization-security", "/docs/session-auth", "/docs/testing-platform"]
69
+ "summary": "Authentication Platform v2 plus permission checks, authorization policies and auth/guest/role/permission route guards, published with a compiled Node runtime.",
70
+ "guides": ["/docs/authentication", "/docs/auth-session-store", "/docs/auth-route-guards", "/docs/authorization-security", "/docs/session-auth", "/docs/testing-platform", "/docs/deployment-platform-v2"]
71
71
  },
72
72
  {
73
73
  "package": "bcp/jobs",
@@ -75,7 +75,7 @@
75
75
  "environment": "server",
76
76
  "route": "/docs/api-reference#bcp-jobs",
77
77
  "summary": "Background queues and schedules with visibility leases, heartbeats, stale recovery, DLQ maintenance and Redis-compatible durable adapters.",
78
- "guides": ["/docs/background-jobs", "/docs/job-scheduling", "/docs/durable-jobs", "/docs/transactional-outbox-events", "/docs/realtime-platform", "/docs/testing-platform", "/docs/observability-v3"]
78
+ "guides": ["/docs/background-jobs", "/docs/job-scheduling", "/docs/durable-jobs", "/docs/transactional-outbox-events", "/docs/realtime-platform", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
79
79
  },
80
80
  {
81
81
  "package": "bcp/workflow",
@@ -83,7 +83,7 @@
83
83
  "environment": "server",
84
84
  "route": "/docs/api-reference#bcp-workflow",
85
85
  "summary": "Persistent workflow orchestration with sequential and parallel steps, retries, delays, compensation, run leases and optional durable queue execution.",
86
- "guides": ["/docs/workflow-orchestration", "/docs/durable-jobs", "/docs/realtime-platform", "/docs/testing-platform", "/docs/observability-v3"]
86
+ "guides": ["/docs/workflow-orchestration", "/docs/durable-jobs", "/docs/realtime-platform", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
87
87
  },
88
88
  {
89
89
  "package": "bcp/events",
@@ -91,7 +91,7 @@
91
91
  "environment": "server",
92
92
  "route": "/docs/api-reference#bcp-events",
93
93
  "summary": "Transactional outbox and event delivery APIs with SQL persistence, dispatcher leases, retries, stale recovery, queue handoff and in-process event bus delivery.",
94
- "guides": ["/docs/transactional-outbox-events", "/docs/database", "/docs/durable-jobs", "/docs/realtime-platform", "/docs/testing-platform", "/docs/observability-v3"]
94
+ "guides": ["/docs/transactional-outbox-events", "/docs/database", "/docs/durable-jobs", "/docs/realtime-platform", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
95
95
  },
96
96
  {
97
97
  "package": "bcp/realtime",
@@ -99,7 +99,7 @@
99
99
  "environment": "server",
100
100
  "route": "/docs/api-reference#bcp-realtime",
101
101
  "summary": "Realtime channels, cross-hub broker delivery, presence, channel authorization, WebSocket adapter integration, heartbeat handling and built-in Server-Sent Events responses.",
102
- "guides": ["/docs/realtime-platform", "/docs/authentication", "/docs/testing-platform", "/docs/observability-v3"]
102
+ "guides": ["/docs/realtime-platform", "/docs/authentication", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
103
103
  },
104
104
  {
105
105
  "package": "bcp/testing",
@@ -115,7 +115,7 @@
115
115
  "environment": "server",
116
116
  "route": "/docs/api-reference#bcp-plugins",
117
117
  "summary": "Plugin and module composition with dependency ordering, lifecycle hooks, typed config parsing, shared services and asynchronous extension hooks.",
118
- "guides": ["/docs/plugin-module-platform", "/docs/configuration", "/docs/testing-platform", "/docs/observability-v3"]
118
+ "guides": ["/docs/plugin-module-platform", "/docs/configuration", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
119
119
  },
120
120
  {
121
121
  "package": "bcp/observability",
@@ -123,15 +123,23 @@
123
123
  "environment": "server",
124
124
  "route": "/docs/api-reference#bcp-observability",
125
125
  "summary": "Metrics, Prometheus output, health checks and Observability Platform v3 distributed tracing with W3C trace context, correlation IDs, request tracing, span exporters and trace-to-metrics integration.",
126
- "guides": ["/docs/observability", "/docs/observability-v3", "/docs/development-logging", "/docs/cache-platform-v2"]
126
+ "guides": ["/docs/observability", "/docs/observability-v3", "/docs/development-logging", "/docs/cache-platform-v2", "/docs/deployment-platform-v2"]
127
+ },
128
+ {
129
+ "package": "bcp/deployment",
130
+ "source": "packages/client/src/deployment.ts",
131
+ "environment": "server",
132
+ "route": "/docs/api-reference#bcp-deployment",
133
+ "summary": "Deployment Platform v2 runtime lifecycle with resource startup/shutdown ordering, readiness, diagnostics, deployment metadata, signal handling and framework shutdown-hook integration.",
134
+ "guides": ["/docs/deployment-platform-v2", "/docs/application-packaging", "/docs/production-hardening", "/docs/observability-v3"]
127
135
  },
128
136
  {
129
137
  "package": "bcp/server",
130
138
  "source": "packages/client/src/server.ts",
131
139
  "environment": "server",
132
140
  "route": "/docs/api-reference#bcp-server",
133
- "summary": "Request context, cookies, CSRF/same-origin protection, logging, production hardening, upload, storage, response and session APIs.",
134
- "guides": ["/docs/server-request-apis", "/docs/authorization-security", "/docs/file-upload", "/docs/storage", "/docs/storage-ecosystem", "/docs/production-hardening", "/docs/testing-platform", "/docs/observability-v3"]
141
+ "summary": "Request context, cookies, CSRF/same-origin protection, logging, production hardening, upload, storage, response and session APIs, published with a compiled Node runtime.",
142
+ "guides": ["/docs/server-request-apis", "/docs/authorization-security", "/docs/file-upload", "/docs/storage", "/docs/storage-ecosystem", "/docs/production-hardening", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
135
143
  },
136
144
  {
137
145
  "package": "bcp/server-only",
@@ -146,8 +154,8 @@
146
154
  "source": "packages/server/src/middleware.ts",
147
155
  "environment": "server",
148
156
  "route": "/docs/api-reference#bcp-middleware",
149
- "summary": "Middleware System v2 request/response pipeline types and helpers.",
150
- "guides": ["/docs/middleware", "/docs/testing-platform", "/docs/observability-v3"]
157
+ "summary": "Middleware System v2 request/response pipeline types and helpers, published with a compiled Node runtime.",
158
+ "guides": ["/docs/middleware", "/docs/testing-platform", "/docs/observability-v3", "/docs/deployment-platform-v2"]
151
159
  }
152
160
  ]
153
161
  }