@reventlessdev/reventless-infra 3.0.0-alpha.136 → 3.0.0-alpha.138
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 +15 -0
- package/package.json +3 -3
- package/src/types/Platform.res +25 -0
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.138 (2026-08-13)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **local:** bake one curated surface per audience ([3be6f63](https://github.com/ReventlessDev/reventless-core/commit/3be6f63e579cef8cd213a84b6ccded773b1abc9e))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# 3.0.0-alpha.137 (2026-08-12)
|
|
14
|
+
|
|
15
|
+
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 3.0.0-alpha.136 (2026-08-12)
|
|
7
22
|
|
|
8
23
|
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-infra",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.138",
|
|
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/rescript-pulumi-pulumi": "2.3.0-alpha.18",
|
|
21
20
|
"@reventlessdev/rescript-uuid": "2.0.0-alpha.0",
|
|
22
|
-
"@reventlessdev/
|
|
21
|
+
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
|
|
22
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.112"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"rescript": "12.3.0",
|
package/src/types/Platform.res
CHANGED
|
@@ -136,10 +136,35 @@ type bakedManifestSelection = {
|
|
|
136
136
|
deployment is byte-identical to today. This is curation (what exists for
|
|
137
137
|
this deployment's audience), never authorization (what this caller may
|
|
138
138
|
do) — the server-side gate on every query and mutation is untouched. */
|
|
139
|
+
/** One audience's surface, selected the same way the default one is.
|
|
140
|
+
|
|
141
|
+
A deployment serving several audiences from one domain curates each of them
|
|
142
|
+
separately rather than publishing the union and leaning on server-side
|
|
143
|
+
authorization to make the extra entries merely useless. `group` is the
|
|
144
|
+
caller group this journey serves; the shell picks by the role the caller is
|
|
145
|
+
acting as. */
|
|
146
|
+
type bakedJourney = {
|
|
147
|
+
group: string,
|
|
148
|
+
/** What a switcher calls this journey. Defaults to the group's own name. */
|
|
149
|
+
label?: string,
|
|
150
|
+
components: array<bakedManifestSelection>,
|
|
151
|
+
/** Defaults to a per-group file name beside `config.json`. */
|
|
152
|
+
key?: string,
|
|
153
|
+
}
|
|
154
|
+
|
|
139
155
|
type bakedManifest = {
|
|
156
|
+
/** The default journey — what a caller matching no declared `journeys` entry
|
|
157
|
+
gets. Not only backward compatibility: the in-memory platform's no-bearer
|
|
158
|
+
identity carries a group no deployment declares, so without a default a
|
|
159
|
+
local dev session without a login would match nothing and render an empty
|
|
160
|
+
shell. */
|
|
140
161
|
components: array<bakedManifestSelection>,
|
|
141
162
|
/** Defaults to `component-manifest.json`, written beside `config.json`. */
|
|
142
163
|
key?: string,
|
|
164
|
+
/** Per-audience surfaces beside the default one. Unset ⇒ one file, exactly as
|
|
165
|
+
before. Curation, never authorization: leaving a component out of a journey
|
|
166
|
+
keeps it out of that role's menu and makes it no less callable. */
|
|
167
|
+
journeys?: array<bakedJourney>,
|
|
143
168
|
}
|
|
144
169
|
|
|
145
170
|
type geocoderIndex = {indexName: Pulumi.Input.t<string>}
|