@reventlessdev/reventless-infra 3.0.0-alpha.124 → 3.0.0-alpha.126
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 +4 -4
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.126 (2026-08-04)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **geocoding:** serve geocoding through the platform GraphQL API (D9 half 2) ([914d3c0](https://github.com/ReventlessDev/reventless-core/commit/914d3c0a99a1b67ffb89e2b8259dd30f67ff9bae))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# 3.0.0-alpha.125 (2026-08-04)
|
|
14
|
+
|
|
15
|
+
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 3.0.0-alpha.124 (2026-08-03)
|
|
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.126",
|
|
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/
|
|
20
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.100",
|
|
21
21
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
|
|
22
|
-
"@reventlessdev/
|
|
22
|
+
"@reventlessdev/rescript-uuid": "2.0.0-alpha.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"rescript": "12.3.0",
|
package/src/types/Platform.res
CHANGED
|
@@ -351,10 +351,10 @@ module type T = {
|
|
|
351
351
|
// no file written; the shell treats the 404 as "no hints" and boots
|
|
352
352
|
// unchanged. In-memory platforms ignore this.
|
|
353
353
|
uiHintsFile?: string,
|
|
354
|
-
// Optional geocoding place index. When set, the deploy provisions
|
|
355
|
-
//
|
|
356
|
-
//
|
|
357
|
-
// platforms ignore this.
|
|
354
|
+
// Optional geocoding place index. When set, the deploy provisions the
|
|
355
|
+
// capability's client door — a Cognito-authenticated `Query.geocode` resolver
|
|
356
|
+
// on the platform API — and exports the index name for the unattended slice
|
|
357
|
+
// path. Unset ⇒ no resolver, no export. In-memory platforms ignore this.
|
|
358
358
|
geocoderPlaceIndex?: geocoderIndex,
|
|
359
359
|
// Optional object store for direct-to-store uploads. When set, the deploy
|
|
360
360
|
// provisions a presign service against it, threads that service's URL into
|