@reventlessdev/reventless-infra 3.0.0-alpha.157 → 3.0.0-alpha.159

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,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.159 (2026-09-07)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/reventless-infra
9
+
10
+
11
+
12
+
13
+
14
+ # 3.0.0-alpha.158 (2026-09-07)
15
+
16
+ ### Features
17
+
18
+ * **core:** a command's lifecycle edge comes from its scenarios, not its claim ([1879d05](https://github.com/ReventlessDev/reventless-core/commit/1879d0570a981e7fae5bcd3808f8a36e898bd0fd))
19
+ * **ui:** a deployment can name the module that draws its own surfaces ([b43828c](https://github.com/ReventlessDev/reventless-core/commit/b43828ca50cddd31f7aefae016669fcb7c059838))
20
+
21
+
6
22
  # 3.0.0-alpha.157 (2026-09-04)
7
23
 
8
24
  * feat(spec)!: one optional encoding on the wire, with no annotation ([320f91d](https://github.com/ReventlessDev/reventless-core/commit/320f91daa8bd90812a6e82069e7a1cb473041930))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-infra",
3
- "version": "3.0.0-alpha.157",
3
+ "version": "3.0.0-alpha.159",
4
4
  "description": "Infrastructure types for Reventless framework",
5
5
  "license": "Apache-2.0",
6
6
  "jest": {
@@ -16,10 +16,10 @@
16
16
  "sury": "11.0.0-rc.2",
17
17
  "sury-ppx": "11.0.0-rc.2",
18
18
  "uuid": "^13.0.0",
19
+ "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.19",
19
20
  "@reventlessdev/rescript-effect": "0.1.0-alpha.32",
20
21
  "@reventlessdev/rescript-uuid": "2.0.0-alpha.0",
21
- "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.19",
22
- "@reventlessdev/reventless-spec": "3.0.0-alpha.129"
22
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.131"
23
23
  },
24
24
  "devDependencies": {
25
25
  "rescript": "12.3.0",
@@ -95,5 +95,6 @@ module type T = {
95
95
  ~extensions: array<module(Extension.Blueprint)>=?,
96
96
  ~extensionPoints: array<module(ExtensionPointMapping.Mapping)>=?,
97
97
  ~componentChapters: dict<string>=?,
98
+ ~lifecycleModel: array<Reventless.Plugin.derivedEdge>=?,
98
99
  ) => Reventless.Plugin.pluginStructure
99
100
  }
@@ -449,9 +449,23 @@ module type T = {
449
449
  bundleVersion?: string,
450
450
  // Optional path to a static AutoUI `ui-hints.json`, read and written
451
451
  // verbatim as a BucketObject beside `config.json` at deploy time. Unset ⇒
452
- // no file written; the shell treats the 404 as "no hints" and boots
453
- // unchanged. In-memory platforms ignore this.
452
+ // no file written and the shell boots unchanged. In-memory platforms serve
453
+ // it too, out of the host-shell package's own dist/, and watch it so an
454
+ // edit is a browser refresh.
454
455
  uiHintsFile?: string,
456
+ // Optional path to an ES module registering AutoUI slot renderers, read and
457
+ // written verbatim beside `config.json` at deploy time. Unset ⇒ no file
458
+ // written and every mode draws its own regions. Served and watched
459
+ // in-memory exactly as `uiHintsFile` is.
460
+ //
461
+ // Absent does not mean 404: the bundle's SPA fallback answers any missing
462
+ // path with index.html under a 200, so a reader of either file has to judge
463
+ // it by content type. Observed on alpha, not hypothetical.
464
+ //
465
+ // Verbatim, and for the same reason: this is a deployment's own source, and
466
+ // a build step over it would make the local watch a lie and put a bundler
467
+ // between an author and their own file.
468
+ uiSlotsFile?: string,
455
469
  // Optional baked component manifest. When set, the curated manifest is
456
470
  // written beside `config.json` at deploy time; the shell reads it through
457
471
  // its `manifestUrl` config key and never calls the platform's admin API.