@reventlessdev/reventless-infra 3.0.0-alpha.126 → 3.0.0-alpha.128

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
@@ -3,6 +3,21 @@
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.128 (2026-08-08)
7
+
8
+ ### Features
9
+
10
+ * **core,spec:** surface a write-side component's declared error types ([c9c2505](https://github.com/ReventlessDev/reventless-core/commit/c9c25057c70595fe27d73447c9aef9b451f86168))
11
+
12
+
13
+ # 3.0.0-alpha.127 (2026-08-05)
14
+
15
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
16
+
17
+
18
+
19
+
20
+
6
21
  # 3.0.0-alpha.126 (2026-08-04)
7
22
 
8
23
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-infra",
3
- "version": "3.0.0-alpha.126",
3
+ "version": "3.0.0-alpha.128",
4
4
  "description": "Infrastructure types for Reventless framework",
5
5
  "license": "Apache-2.0",
6
6
  "jest": {
@@ -17,9 +17,9 @@
17
17
  "sury-ppx": "11.0.0-alpha.2",
18
18
  "uuid": "^13.0.0",
19
19
  "@reventlessdev/rescript-effect": "0.1.0-alpha.32",
20
- "@reventlessdev/reventless-spec": "3.0.0-alpha.100",
21
20
  "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
22
- "@reventlessdev/rescript-uuid": "2.0.0-alpha.0"
21
+ "@reventlessdev/rescript-uuid": "2.0.0-alpha.0",
22
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.102"
23
23
  },
24
24
  "devDependencies": {
25
25
  "rescript": "12.3.0",
@@ -141,6 +141,8 @@ let queryableDefSchema = Plugin$Reventless.queryableDefSchema;
141
141
 
142
142
  let eventDefSchema = Plugin$Reventless.eventDefSchema;
143
143
 
144
+ let errorDefSchema = Plugin$Reventless.errorDefSchema;
145
+
144
146
  let writableDefSchema = Plugin$Reventless.writableDefSchema;
145
147
 
146
148
  let automationSliceDefSchema = Plugin$Reventless.automationSliceDefSchema;
@@ -193,6 +195,7 @@ export {
193
195
  commandDefSchema,
194
196
  queryableDefSchema,
195
197
  eventDefSchema,
198
+ errorDefSchema,
196
199
  writableDefSchema,
197
200
  automationSliceDefSchema,
198
201
  outboundTranslationSliceDefSchema,