@reventlessdev/reventless-local 3.0.0-alpha.203 → 3.0.0-alpha.204

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,13 @@
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.204 (2026-08-08)
7
+
8
+ ### Features
9
+
10
+ * **core:** add a runtime hook for command outcomes ([f2092a8](https://github.com/ReventlessDev/reventless-core/commit/f2092a8f9a8d8d7feee4f3de19bea7297a250cbd))
11
+
12
+
6
13
  # 3.0.0-alpha.203 (2026-08-08)
7
14
 
8
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-local",
3
- "version": "3.0.0-alpha.203",
3
+ "version": "3.0.0-alpha.204",
4
4
  "description": "Local platform for Reventless (in-memory or SQLite backend, for development and testing without AWS)",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
@@ -35,18 +35,18 @@
35
35
  "sury": "11.0.0-alpha.4",
36
36
  "ws": "^8.18.0",
37
37
  "@reventlessdev/rescript-effect": "0.1.0-alpha.32",
38
- "@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.26",
38
+ "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
39
39
  "@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.21",
40
+ "@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.26",
40
41
  "@reventlessdev/rescript-node": "2.0.0-alpha.2",
41
- "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
42
42
  "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
43
- "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.63",
44
- "@reventlessdev/reventless-core": "3.0.0-alpha.215",
45
- "@reventlessdev/reventless-gwt": "1.0.0-alpha.162",
46
- "@reventlessdev/reventless-infra": "3.0.0-alpha.127",
47
- "@reventlessdev/reventless-postgres": "3.0.0-alpha.79",
43
+ "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.64",
44
+ "@reventlessdev/reventless-gwt": "1.0.0-alpha.163",
45
+ "@reventlessdev/reventless-core": "3.0.0-alpha.216",
46
+ "@reventlessdev/reventless-infra": "3.0.0-alpha.128",
47
+ "@reventlessdev/reventless-postgres": "3.0.0-alpha.80",
48
48
  "@reventlessdev/reventless-seed": "1.0.0-alpha.9",
49
- "@reventlessdev/reventless-spec": "3.0.0-alpha.101"
49
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.102"
50
50
  },
51
51
  "devDependencies": {
52
52
  "rescript": "12.3.0",
@@ -6,6 +6,14 @@ let componentType = CommandTopic$ReventlessCore.componentType;
6
6
 
7
7
  let NotPublishedToChannel = CommandTopic$ReventlessCore.NotPublishedToChannel;
8
8
 
9
+ let commandOutcomeHook = CommandTopic$ReventlessCore.commandOutcomeHook;
10
+
11
+ let registerCommandOutcome = CommandTopic$ReventlessCore.registerCommandOutcome;
12
+
13
+ let clearCommandOutcome = CommandTopic$ReventlessCore.clearCommandOutcome;
14
+
15
+ let fireCommandOutcome = CommandTopic$ReventlessCore.fireCommandOutcome;
16
+
9
17
  let acceptedResultChannel = CommandTopic$ReventlessCore.acceptedResultChannel;
10
18
 
11
19
  let rejectedResultChannel = CommandTopic$ReventlessCore.rejectedResultChannel;
@@ -37,6 +45,10 @@ let filter = CommandTopic$ReventlessCore.filter;
37
45
  export {
38
46
  componentType,
39
47
  NotPublishedToChannel,
48
+ commandOutcomeHook,
49
+ registerCommandOutcome,
50
+ clearCommandOutcome,
51
+ fireCommandOutcome,
40
52
  acceptedResultChannel,
41
53
  rejectedResultChannel,
42
54
  reportAccepted,