@toa.io/extensions.exposition 1.0.0-alpha.270 → 1.0.0-alpha.272

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.
Files changed (34) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/components/{exposition.stash → exposition.atom}/manifest.toa.yaml +1 -3
  3. package/components/exposition.atom/operations/meter.js +7 -0
  4. package/components/identity.basic/operations/tsconfig.tsbuildinfo +1 -1
  5. package/components/identity.credentials/operations/tsconfig.tsbuildinfo +1 -1
  6. package/components/identity.federation/operations/tsconfig.tsbuildinfo +1 -1
  7. package/components/identity.keys/operations/tsconfig.tsbuildinfo +1 -1
  8. package/components/identity.otp/operations/tsconfig.tsbuildinfo +1 -1
  9. package/components/identity.passkeys/operations/tsconfig.tsbuildinfo +1 -1
  10. package/components/identity.roles/operations/tsconfig.tsbuildinfo +1 -1
  11. package/components/identity.tokens/operations/tsconfig.tsbuildinfo +1 -1
  12. package/documentation/notes/throttling.md +1 -1
  13. package/features/introspection.feature +27 -34
  14. package/features/query.feature +27 -0
  15. package/features/steps/Database.ts +9 -0
  16. package/package.json +6 -6
  17. package/schemas/querystring.cos.yaml +2 -0
  18. package/source/Gateway.ts +9 -1
  19. package/source/Tenant.ts +12 -1
  20. package/source/directives/io/IO.ts +2 -2
  21. package/source/directives/io/lib/throttle/Sync.ts +4 -4
  22. package/transpiled/Gateway.d.ts +7 -0
  23. package/transpiled/Gateway.js +9 -1
  24. package/transpiled/Gateway.js.map +1 -1
  25. package/transpiled/Tenant.d.ts +7 -1
  26. package/transpiled/Tenant.js +11 -1
  27. package/transpiled/Tenant.js.map +1 -1
  28. package/transpiled/directives/io/IO.d.ts +1 -1
  29. package/transpiled/directives/io/IO.js +2 -2
  30. package/transpiled/directives/io/IO.js.map +1 -1
  31. package/transpiled/directives/io/lib/throttle/Sync.d.ts +2 -2
  32. package/transpiled/directives/io/lib/throttle/Sync.js +4 -4
  33. package/transpiled/directives/io/lib/throttle/Sync.js.map +1 -1
  34. package/transpiled/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,43 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-alpha.272](https://github.com/toa-io/toa/compare/v1.0.0-alpha.271...v1.0.0-alpha.272) (2026-09-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **core:** stop the reply contract from relaxing the declaration ([6222893](https://github.com/toa-io/toa/commit/622289326630b94deff93499d6a851bfaa57c69a))
12
+ * **exposition:** close the query string, and tell it about sample ([ba82e61](https://github.com/toa-io/toa/commit/ba82e617f9d6e18b2c01ee68661407a781952443))
13
+ * **exposition:** stop a tenant announcing on its way out ([e1926fe](https://github.com/toa-io/toa/commit/e1926fe53186d9044c502e84f5894b6fbce88011))
14
+ * **exposition:** stop the throttling ticker before what it calls goes down ([f770740](https://github.com/toa-io/toa/commit/f770740a8359762b10cd456bc64e259415f7ef75))
15
+
16
+
17
+ * refactor(exposition)!: meter through the atom ([aa9c8f1](https://github.com/toa-io/toa/commit/aa9c8f16de3f4d315b14c49ff0b4f203053ede2c))
18
+
19
+
20
+ ### BREAKING CHANGES
21
+
22
+ * `context.stash.meter` is gone; meter through `context.atom` instead.
23
+ A deployment that declared a stash for `exposition.stash` can drop it, and needs
24
+ `atomicity.redis` set for throttling to reconcile.
25
+
26
+ Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
27
+
28
+
29
+
30
+
31
+
32
+ # [1.0.0-alpha.271](https://github.com/toa-io/toa/compare/v1.0.0-alpha.270...v1.0.0-alpha.271) (2026-08-31)
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * **exposition:** ship the stash component's meter operation ([dee5ae4](https://github.com/toa-io/toa/commit/dee5ae43cd34581e10192c071d9dd673213a28c6))
38
+
39
+
40
+
41
+
42
+
6
43
  # [1.0.0-alpha.270](https://github.com/toa-io/toa/compare/v1.0.0-alpha.269...v1.0.0-alpha.270) (2026-08-31)
7
44
 
8
45
 
@@ -1,7 +1,5 @@
1
1
  namespace: exposition
2
- name: stash
3
-
4
- stash: ~
2
+ name: atom
5
3
 
6
4
  operations:
7
5
  meter:
@@ -0,0 +1,7 @@
1
+ 'use strict'
2
+
3
+ async function meter (input, context) {
4
+ return context.atom.meter(input.keys, input.deltas)
5
+ }
6
+
7
+ exports.computation = meter