@reventlessdev/rescript-aws-sdk 2.2.0-alpha.20 → 2.2.0-alpha.22

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +17 -1
  2. package/README.md +29 -13
  3. package/package.json +12 -14
package/CHANGELOG.md CHANGED
@@ -3,7 +3,23 @@
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.2.0-alpha.20 (2026-06-23)
6
+ # 2.2.0-alpha.22 (2026-07-16)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/rescript-aws-sdk
9
+
10
+
11
+
12
+
13
+
14
+ # 2.2.0-alpha.21 (2026-07-11)
15
+
16
+ **Note:** Version bump only for package @reventlessdev/rescript-aws-sdk
17
+
18
+
19
+
20
+
21
+
22
+ # 2.2.0-alpha.20 (2026-06-27)
7
23
 
8
24
  **Note:** Version bump only for package @reventlessdev/rescript-aws-sdk
9
25
 
package/README.md CHANGED
@@ -1,21 +1,37 @@
1
- [![npm version](https://img.shields.io/npm/v/@reventlessdev/rescript-aws-sdk.svg?label=version)](https://www.npmjs.com/package/@reventlessdev/rescript-aws-sdk)
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-aws-sdk.svg?label=npm)](https://www.npmjs.com/package/@reventlessdev/rescript-aws-sdk)
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-aws-sdk`
5
+ # @reventlessdev/rescript-aws-sdk
6
6
 
7
- ReasonML / Bucklescript bindings for [aws-sdk](https://github.com/aws/aws-sdk-js).
7
+ > ⚠️ **Alpha.** APIs and on-disk formats can change without notice between releases.
8
+ > Pin exact versions and expect breaking changes.
9
+
10
+ ReScript bindings for [aws-sdk](https://github.com/aws/aws-sdk-js).
8
11
  Also see the [official documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS.html).
9
12
 
10
- ## Usage
11
- - Add `rescript-aws-sdk` and `aws-sdk` to your dependencies in `package.json`.
12
- *Note: If you are deploying your code to AWS Lambda, you don't need to put `aws-sdk` into your dependencies.*
13
- - Add `rescript-aws-sdk` to your dependencies in `rescript.json`.
14
- - For general information see this monorepo's [readme](../../README.md)
13
+ ## Install
15
14
 
16
- ## Example
15
+ ```bash
16
+ pnpm add @reventlessdev/rescript-aws-sdk aws-sdk
17
17
  ```
18
- // TODO: DEMONSTRATE API
18
+
19
+ > If you deploy to AWS Lambda you don't need `aws-sdk` in your dependencies — the runtime provides it.
20
+
21
+ Add it to your `rescript.json` dependencies:
22
+
23
+ ```json
24
+ {
25
+ "dependencies": ["@reventlessdev/rescript-aws-sdk"]
26
+ }
19
27
  ```
20
28
 
21
- ## Contribution
29
+ ## Links
30
+
31
+ - 📚 Documentation — [docs.reventless.dev](https://docs.reventless.dev)
32
+ - 📦 Repository — [ReventlessDev/reventless-core](https://github.com/ReventlessDev/reventless-core)
33
+ - 📋 [Changelog](./CHANGELOG.md)
34
+
35
+ ## License
36
+
37
+ [Apache-2.0](https://opensource.org/licenses/Apache-2.0)
package/package.json CHANGED
@@ -1,15 +1,8 @@
1
1
  {
2
2
  "name": "@reventlessdev/rescript-aws-sdk",
3
- "version": "2.2.0-alpha.20",
3
+ "version": "2.2.0-alpha.22",
4
4
  "description": "ReScript bindings for aws-sdk",
5
5
  "license": "Apache-2.0",
6
- "scripts": {
7
- "build": "rescript build",
8
- "start": "rescript watch",
9
- "clean": "rescript clean",
10
- "postpublish": "git checkout package.json & echo 'Please ensure the CHANGELOG is up to date!'",
11
- "test": "echo \"There are no tests for rescript-aws-sdk.\""
12
- },
13
6
  "dependencies": {
14
7
  "@aws-sdk/client-cloudwatch-events": "^3.1033.0",
15
8
  "@aws-sdk/client-cognito-identity-provider": "^3.1033.0",
@@ -23,14 +16,14 @@
23
16
  "@aws-sdk/client-sqs": "^3.1033.0",
24
17
  "@aws-sdk/lib-dynamodb": "^3.1033.0",
25
18
  "@aws-sdk/lib-storage": "^3.1033.0",
26
- "@reventlessdev/rescript-node-streams": "1.1.0-alpha.10",
27
- "@smithy/node-http-handler": "^4.5.3"
19
+ "@smithy/node-http-handler": "^4.5.3",
20
+ "@reventlessdev/rescript-node-streams": "1.1.0-alpha.12"
28
21
  },
29
22
  "devDependencies": {
30
- "rescript": "^12.3.0"
23
+ "rescript": "12.3.0"
31
24
  },
32
25
  "peerDependencies": {
33
- "rescript": "^12.3.0"
26
+ "rescript": "12.3.0"
34
27
  },
35
28
  "publishConfig": {
36
29
  "registry": "https://registry.npmjs.org"
@@ -40,5 +33,10 @@
40
33
  "url": "git+https://github.com/ReventlessDev/reventless-core.git",
41
34
  "directory": "rescript/rescript-aws-sdk"
42
35
  },
43
- "gitHead": "c85024f7b9724d4215d34ecc712a14b43eac289d"
44
- }
36
+ "scripts": {
37
+ "build": "rescript build",
38
+ "start": "rescript watch",
39
+ "clean": "rescript clean",
40
+ "test": "echo \"There are no tests for rescript-aws-sdk.\""
41
+ }
42
+ }