@reventlessdev/reventless-infra 3.0.0-alpha.81 → 3.0.0-alpha.83
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 +16 -0
- package/package.json +3 -3
- package/src/components/ReadModel.res +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
# 3.0.0-alpha.83 (2026-07-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 3.0.0-alpha.82 (2026-06-29)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# 3.0.0-alpha.81 (2026-06-27)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-infra",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.83",
|
|
4
4
|
"description": "Infrastructure types for Reventless framework",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"sury": "11.0.0-alpha.4",
|
|
8
8
|
"sury-ppx": "11.0.0-alpha.2",
|
|
9
9
|
"uuid": "^13.0.0",
|
|
10
|
-
"@reventlessdev/rescript-effect": "0.1.0-alpha.
|
|
10
|
+
"@reventlessdev/rescript-effect": "0.1.0-alpha.24",
|
|
11
11
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14",
|
|
12
12
|
"@reventlessdev/rescript-uuid": "1.1.0-alpha.13",
|
|
13
|
-
"@reventlessdev/reventless-spec": "3.0.0-alpha.
|
|
13
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.63"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"rescript": "^12.3.0"
|
|
@@ -37,6 +37,12 @@ module type T = {
|
|
|
37
37
|
type component
|
|
38
38
|
/** Names of aggregates whose events feed this read model (from Projection.Mapping.sourceName). */
|
|
39
39
|
let sourceNames: array<string>
|
|
40
|
+
/** Bare event-variant names this read model consumes, unioned across every projection
|
|
41
|
+
mapping's source event schema (Projection.Mapping.sourceEventSchema). Unlike
|
|
42
|
+
`sourceNames` (the source aggregate / DCB-log names) this names the actual events — so
|
|
43
|
+
a DCB-log-sourced mapping (e.g. consuming `OrderPlaced`) is captured, which sourceNames
|
|
44
|
+
cannot express. Plugin_Structure qualifies + exposes these as `queryableDef.consumedEventTypes`. */
|
|
45
|
+
let consumedEventNames: array<string>
|
|
40
46
|
let make: (
|
|
41
47
|
~api: api,
|
|
42
48
|
~apiRole: role,
|