@beignet/devtools 0.0.13 → 0.0.15

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,17 @@
1
1
  # @beignet/devtools
2
2
 
3
+ ## 0.0.15
4
+
5
+ ## 0.0.14
6
+
7
+ ### Patch Changes
8
+
9
+ - 6828442: Add first-class feature flag primitives, an OpenFeature-backed flags provider,
10
+ and devtools support for flag evaluation, exposure, and tracking events.
11
+ - edf5ddc: Add first-class entitlement primitives for product access checks, devtools-ready entitlement decision observation, and doctor checks for entitlement wiring drift. Generated billing slices expose a billing-backed entitlements port.
12
+ - d51a35f: Add the provider-neutral payments port, memory payments adapter, Stripe payments provider, Next.js payment webhook route helper, `beignet make payments`, and first-class payments devtools view.
13
+ - 655c101: Add keyed authorization batch checks and best-effort policy decision observation, plus a first-class devtools watcher/view for policy decision events.
14
+
3
15
  ## 0.0.13
4
16
 
5
17
  ## 0.0.12
package/README.md CHANGED
@@ -101,10 +101,11 @@ and request/trace IDs when the runtime can preserve active request context.
101
101
  Outbox shows delivered/retry/dead-letter counts, message name/kind, attempts,
102
102
  retry timing, and related request/trace context. Jobs and schedules show
103
103
  lifecycle status, provider, retry/error details, cron metadata, and request
104
- context. Cache, storage, uploads, mail, notifications, auth, audit, and rate
105
- limits show domain-specific metrics such as hits/misses, missing objects, file
106
- counts, recipients, channels, session state, durable audit actors/resources,
107
- and allowed versus blocked checks.
104
+ context. Cache, storage, uploads, mail, payments, entitlements, notifications,
105
+ auth, audit, policies, and rate limits show domain-specific metrics such as
106
+ hits/misses, missing objects, file counts, recipients, checkout sessions,
107
+ verified webhooks, product access decisions, channels, session state, durable
108
+ audit actors/resources, policy decisions, and allowed versus blocked checks.
108
109
 
109
110
  Use the request lifecycle view first when debugging a route. It shows whether
110
111
  the response was route-owned or framework-owned, which use cases ran, which
@@ -181,12 +182,18 @@ Built-in watchers:
181
182
  - `providers` records provider setup, start, and stop activity.
182
183
  - `db` records database diagnostics from first-party providers.
183
184
  - `cache` records cache diagnostics from first-party providers.
185
+ - `flags` records feature flag evaluations, explicit exposures, and tracking
186
+ events from first-party providers.
184
187
  - `storage` records storage diagnostics from first-party providers.
185
188
  - `uploads` records upload preparation, signing, and completion.
186
189
  - `mail` records mail diagnostics from first-party providers.
190
+ - `payments` records checkout, portal, refund, and webhook diagnostics from
191
+ payment providers.
192
+ - `entitlements` records product access decisions from billing or plan state.
187
193
  - `notifications` records notification intent and channel delivery.
188
194
  - `auth` records auth diagnostics from first-party providers.
189
195
  - `audit` records sanitized durable audit activity emitted by application code.
196
+ - `policies` records application authorization policy decisions.
190
197
  - `rateLimit` records rate limit diagnostics from first-party providers.
191
198
  - `custom` records application and integration-specific diagnostic events.
192
199
 
@@ -202,6 +209,7 @@ createDevtoolsProvider({
202
209
  outbox: true,
203
210
  schedules: true,
204
211
  db: true,
212
+ payments: true,
205
213
  },
206
214
  });
207
215
  ```
@@ -296,10 +304,10 @@ export const searchProvider = createProvider({
296
304
  });
297
305
  ```
298
306
 
299
- Use a built-in watcher such as `db`, `cache`, `storage`, `mail`, `auth`,
300
- `audit`, `rateLimit`, or `schedules` when the provider belongs to one of those
301
- categories. Use `custom` or a custom watcher name for application-specific
302
- integrations.
307
+ Use a built-in watcher such as `db`, `cache`, `storage`, `mail`, `payments`,
308
+ `flags`, `entitlements`, `auth`, `audit`, `policies`, `rateLimit`, or `schedules` when
309
+ the provider belongs to one of those categories. Use `custom` or a custom
310
+ watcher name for application-specific integrations.
303
311
 
304
312
  ## Audit activity
305
313
 
@@ -1 +1 @@
1
- {"version":3,"file":"ui-html.generated.d.ts","sourceRoot":"","sources":["../src/ui-html.generated.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,uBAAuB,EAAE,MAC+rtc,CAAC"}
1
+ {"version":3,"file":"ui-html.generated.d.ts","sourceRoot":"","sources":["../src/ui-html.generated.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,uBAAuB,EAAE,MACsp5c,CAAC"}