@reventlessdev/reventless-local 3.0.0-alpha.189 → 3.0.0-alpha.191

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.191 (2026-08-02)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/reventless-local
9
+
10
+
11
+
12
+
13
+
14
+ # 3.0.0-alpha.190 (2026-08-02)
15
+
16
+ ### Features
17
+
18
+ * **spec:** make plugin structure/apiSchemaFragment offloadable payloads ([a0391bf](https://github.com/ReventlessDev/reventless-core/commit/a0391bf26f91035460cbf90f52d105a1003414c3))
19
+
20
+
6
21
  # 3.0.0-alpha.189 (2026-08-02)
7
22
 
8
23
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-local",
3
- "version": "3.0.0-alpha.189",
3
+ "version": "3.0.0-alpha.191",
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": {
@@ -36,16 +36,16 @@
36
36
  "ws": "^8.18.0",
37
37
  "@reventlessdev/rescript-effect": "0.1.0-alpha.32",
38
38
  "@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.26",
39
- "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
40
- "@reventlessdev/rescript-node": "2.0.0-alpha.0",
41
39
  "@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.21",
42
- "@reventlessdev/reventless-core": "3.0.0-alpha.201",
40
+ "@reventlessdev/rescript-node": "2.0.0-alpha.1",
41
+ "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
43
42
  "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
44
- "@reventlessdev/reventless-gwt": "1.0.0-alpha.148",
45
- "@reventlessdev/reventless-infra": "3.0.0-alpha.118",
46
- "@reventlessdev/reventless-postgres": "3.0.0-alpha.65",
47
- "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.49",
48
- "@reventlessdev/reventless-spec": "3.0.0-alpha.93"
43
+ "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.51",
44
+ "@reventlessdev/reventless-gwt": "1.0.0-alpha.150",
45
+ "@reventlessdev/reventless-core": "3.0.0-alpha.203",
46
+ "@reventlessdev/reventless-infra": "3.0.0-alpha.120",
47
+ "@reventlessdev/reventless-postgres": "3.0.0-alpha.67",
48
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.95"
49
49
  },
50
50
  "devDependencies": {
51
51
  "rescript": "12.3.0",
package/src/Platform.res CHANGED
@@ -1113,9 +1113,9 @@ module MakeWithConfig = (
1113
1113
  },
1114
1114
  ),
1115
1115
  extensionProtocols: [],
1116
- apiSchemaFragment,
1116
+ apiSchemaFragment: apiSchemaFragment->Option.map(f => Reventless.Offload.Inline(f)),
1117
1117
  apiTarget: None,
1118
- structure: pluginStructure,
1118
+ structure: pluginStructure->Option.map(s => Reventless.Offload.Inline(s)),
1119
1119
  dcbEventLog: None,
1120
1120
  kind: Domain,
1121
1121
  }
@@ -969,9 +969,15 @@ function MakeWithConfig(Config) {
969
969
  }),
970
970
  eventCollector: param[2].name,
971
971
  extensionProtocols: [],
972
- apiSchemaFragment: param[5],
972
+ apiSchemaFragment: Stdlib_Option.map(param[5], f => ({
973
+ TAG: "Inline",
974
+ _0: f
975
+ })),
973
976
  apiTarget: undefined,
974
- structure: param[7],
977
+ structure: Stdlib_Option.map(param[7], s => ({
978
+ TAG: "Inline",
979
+ _0: s
980
+ })),
975
981
  dcbEventLog: undefined,
976
982
  kind: "Domain"
977
983
  };
@@ -2653,9 +2659,15 @@ function Make($star) {
2653
2659
  }),
2654
2660
  eventCollector: param[2].name,
2655
2661
  extensionProtocols: [],
2656
- apiSchemaFragment: param[5],
2662
+ apiSchemaFragment: Stdlib_Option.map(param[5], f => ({
2663
+ TAG: "Inline",
2664
+ _0: f
2665
+ })),
2657
2666
  apiTarget: undefined,
2658
- structure: param[7],
2667
+ structure: Stdlib_Option.map(param[7], s => ({
2668
+ TAG: "Inline",
2669
+ _0: s
2670
+ })),
2659
2671
  dcbEventLog: undefined,
2660
2672
  kind: "Domain"
2661
2673
  };