@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.48 → 2.4.0-alpha.50

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.50 (2026-07-11)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
9
+
10
+
11
+
12
+
13
+
14
+ # 2.4.0-alpha.49 (2026-07-11)
15
+
16
+ ### Features
17
+
18
+ * **pulumi-aws:** add email/https/application SNS subscription protocols ([9c70d81](https://github.com/ReventlessDev/reventless-core/commit/9c70d81a92b7f28023850114868142aca828f5ff))
19
+
20
+
6
21
  # 2.4.0-alpha.48 (2026-07-11)
7
22
 
8
23
  ### Features
package/README.md CHANGED
@@ -1,19 +1,35 @@
1
- [![npm version](https://img.shields.io/npm/v/@reventlessdev/rescript-pulumi-aws.svg?label=version)](https://www.npmjs.com/package/@reventlessdev/rescript-pulumi-aws)
2
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3
- [![Changelog](https://img.shields.io/badge/📋-Changelog-blue)](./CHANGELOG.md)
1
+ [![npm](https://img.shields.io/npm/v/@reventlessdev/rescript-pulumi-aws.svg?label=npm)](https://www.npmjs.com/package/@reventlessdev/rescript-pulumi-aws)
2
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
3
+ [![Docs](https://img.shields.io/badge/docs-reventless.dev-blue)](https://docs.reventless.dev)
4
4
 
5
- # `rescript-pulumi-aws`
5
+ # @reventlessdev/rescript-pulumi-aws
6
6
 
7
- ReasonML / Bucklescript bindings for [@pulumi/pulumi-aws](https://github.com/pulumi/pulumi-aws/tree/master/sdk/nodejs).
8
- Also see [official documentation](https://www.pulumi.com/registry/packages/aws/api-docs/).
7
+ > ⚠️ **Alpha.** APIs can change without notice between releases.
8
+ > Pin exact versions and expect breaking changes.
9
9
 
10
- ## Usage
11
- - Add `rescript-pulumi-aws` to your dependencies in `package.json`.
12
- - Add `rescript-pulumi-aws` to your dependencies in `rescript.json`.
13
- - For general information see this monorepo's [readme](../../README.md)
10
+ ReScript bindings for [@pulumi/aws](https://github.com/pulumi/pulumi-aws/tree/master/sdk/nodejs).
11
+ Also see [official documentation](https://www.pulumi.com/registry/packages/aws/api-docs/).
14
12
 
15
- ## Example
13
+ ## Install
16
14
 
15
+ ```bash
16
+ pnpm add @reventlessdev/rescript-pulumi-aws
17
17
  ```
18
- // TODO: DEMONSTRATE API
18
+
19
+ Add it to your `rescript.json` dependencies:
20
+
21
+ ```json
22
+ {
23
+ "dependencies": ["@reventlessdev/rescript-pulumi-aws"]
24
+ }
19
25
  ```
26
+
27
+ ## Links
28
+
29
+ - 📚 Documentation — [docs.reventless.dev](https://docs.reventless.dev)
30
+ - 📦 Repository — [ReventlessDev/reventless-core](https://github.com/ReventlessDev/reventless-core)
31
+ - 📋 [Changelog](./CHANGELOG.md)
32
+
33
+ ## License
34
+
35
+ [Apache-2.0](https://opensource.org/licenses/Apache-2.0)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/rescript-pulumi-aws",
3
- "version": "2.4.0-alpha.48",
3
+ "version": "2.4.0-alpha.50",
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-aws-sdk": "2.2.0-alpha.20",
26
- "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.14"
25
+ "@reventlessdev/rescript-aws-sdk": "2.2.0-alpha.21",
26
+ "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.15"
27
27
  },
28
28
  "devDependencies": {
29
29
  "esbuild": "^0.25.12",
@@ -7,13 +7,22 @@ type t = {
7
7
  name: Pulumi.Output.t<string>,
8
8
  }
9
9
 
10
- type protocol = | @as("sqs") SQS | @as("sms") SMS | @as("lambda") Lambda
10
+ type protocol =
11
+ | @as("sqs") SQS
12
+ | @as("sms") SMS
13
+ | @as("lambda") Lambda
14
+ | @as("email") Email
15
+ | @as("email-json") EmailJson
16
+ | @as("http") Http
17
+ | @as("https") Https
18
+ | @as("application") Application
11
19
 
12
20
  type args = {
13
21
  endpoint: Pulumi.Input.t<string>,
14
22
  topic: Pulumi.Input.t<string>,
15
23
  protocol: protocol,
16
- rawMessageDelivery: Pulumi.Input.t<bool>,
24
+ // Only valid for the sqs/http(s) protocols; AWS rejects it for email/sms.
25
+ rawMessageDelivery?: Pulumi.Input.t<bool>,
17
26
  }
18
27
 
19
28
  @module("@pulumi/aws") @scope("sns") @new