@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.59 → 2.4.0-alpha.60
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
|
+
# 2.4.0-alpha.60 (2026-07-26)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **example:** activate geocoder + upload services in platform-aws deploy ([e684d66](https://github.com/ReventlessDev/reventless-core/commit/e684d66bc4ce844ae36e8292ed0b78fd965490ff))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 2.4.0-alpha.59 (2026-07-23)
|
|
7
14
|
|
|
8
15
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/rescript-pulumi-aws",
|
|
3
|
-
"version": "2.4.0-alpha.
|
|
3
|
+
"version": "2.4.0-alpha.60",
|
|
4
4
|
"description": "ReScript bindings for @pulumi/aws",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"@pulumi/aws": "~7.19.0",
|
|
23
23
|
"@pulumi/aws-native": "^1.62.0",
|
|
24
24
|
"sury": "11.0.0-alpha.4",
|
|
25
|
-
"@reventlessdev/rescript-
|
|
26
|
-
"@reventlessdev/rescript-
|
|
25
|
+
"@reventlessdev/rescript-aws-sdk": "2.2.0-alpha.24",
|
|
26
|
+
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.17"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"esbuild": "^0.25.12",
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/** @pulumi/aws/location/PlaceIndex
|
|
2
|
+
see: https://www.pulumi.com/registry/packages/aws/api-docs/location/placeindex/
|
|
3
|
+
*/
|
|
4
|
+
type dataSourceConfiguration = {
|
|
5
|
+
// "SingleUse" | "Storage" — geocoding for immediate display uses SingleUse.
|
|
6
|
+
intendedUse?: Pulumi.Input.t<string>,
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
type args = {
|
|
10
|
+
indexName: Pulumi.Input.t<string>,
|
|
11
|
+
// Provider of geospatial data: "Esri" | "Grab" | "Here".
|
|
12
|
+
dataSource: Pulumi.Input.t<string>,
|
|
13
|
+
dataSourceConfiguration?: Pulumi.Input.t<dataSourceConfiguration>,
|
|
14
|
+
description?: Pulumi.Input.t<string>,
|
|
15
|
+
tags?: Pulumi.Input.t<Aws.tags>,
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
type t = {
|
|
19
|
+
indexName: Pulumi.Output.t<string>,
|
|
20
|
+
indexArn: Pulumi.Output.t<string>,
|
|
21
|
+
createTime: Pulumi.Output.t<string>,
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@module("@pulumi/aws") @scope("location") @new
|
|
25
|
+
external make: (~name: string, ~args: args, ~opts: Pulumi.CustomResourceOptions.t=?) => t =
|
|
26
|
+
"PlaceIndex"
|
|
27
|
+
|
|
28
|
+
@module("@pulumi/aws") @scope(("location", "PlaceIndex"))
|
|
29
|
+
external get: (
|
|
30
|
+
~name: string,
|
|
31
|
+
~id: Pulumi.Input.t<string>,
|
|
32
|
+
~opts: Pulumi.CustomResourceOptions.t=?,
|
|
33
|
+
) => t = "get"
|