@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.59 → 2.4.0-alpha.61

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
+ # 2.4.0-alpha.61 (2026-07-27)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
9
+
10
+
11
+
12
+
13
+
14
+ # 2.4.0-alpha.60 (2026-07-26)
15
+
16
+ ### Features
17
+
18
+ * **example:** activate geocoder + upload services in platform-aws deploy ([e684d66](https://github.com/ReventlessDev/reventless-core/commit/e684d66bc4ce844ae36e8292ed0b78fd965490ff))
19
+
20
+
6
21
  # 2.4.0-alpha.59 (2026-07-23)
7
22
 
8
23
  ### 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.59",
3
+ "version": "2.4.0-alpha.61",
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-pulumi-pulumi": "2.3.0-alpha.17",
26
- "@reventlessdev/rescript-aws-sdk": "2.2.0-alpha.24"
25
+ "@reventlessdev/rescript-aws-sdk": "2.2.0-alpha.25",
26
+ "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.17"
27
27
  },
28
28
  "devDependencies": {
29
29
  "esbuild": "^0.25.12",
@@ -0,0 +1,4 @@
1
+ /** @pulumi/aws/location
2
+ see: https://www.pulumi.com/registry/packages/aws/api-docs/location/
3
+ */
4
+ module PlaceIndex = Location_PlaceIndex
@@ -0,0 +1,9 @@
1
+ // Generated by ReScript, PLEASE EDIT WITH CARE
2
+
3
+
4
+ let PlaceIndex;
5
+
6
+ export {
7
+ PlaceIndex,
8
+ }
9
+ /* No side effect */
@@ -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"
@@ -0,0 +1,2 @@
1
+ // Generated by ReScript, PLEASE EDIT WITH CARE
2
+ /* This output is empty. Its source's type definitions, externals and/or unused code got optimized away. */