@reventlessdev/rescript-aws-sdk 2.2.0-alpha.20 → 2.2.0-alpha.21
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 +9 -1
- package/README.md +29 -13
- package/package.json +10 -12
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
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.
|
|
6
|
+
# 2.2.0-alpha.21 (2026-07-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/rescript-aws-sdk
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 2.2.0-alpha.20 (2026-06-27)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @reventlessdev/rescript-aws-sdk
|
|
9
17
|
|
package/README.md
CHANGED
|
@@ -1,21 +1,37 @@
|
|
|
1
|
-
[](https://www.npmjs.com/package/@reventlessdev/rescript-aws-sdk)
|
|
2
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
3
|
+
[](https://docs.reventless.dev)
|
|
4
4
|
|
|
5
|
-
#
|
|
5
|
+
# @reventlessdev/rescript-aws-sdk
|
|
6
6
|
|
|
7
|
-
|
|
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
|
-
##
|
|
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
|
-
|
|
15
|
+
```bash
|
|
16
|
+
pnpm add @reventlessdev/rescript-aws-sdk aws-sdk
|
|
17
17
|
```
|
|
18
|
-
|
|
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
|
-
##
|
|
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.
|
|
3
|
+
"version": "2.2.0-alpha.21",
|
|
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,8 +16,8 @@
|
|
|
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
|
-
"@
|
|
27
|
-
"@
|
|
19
|
+
"@smithy/node-http-handler": "^4.5.3",
|
|
20
|
+
"@reventlessdev/rescript-node-streams": "1.1.0-alpha.11"
|
|
28
21
|
},
|
|
29
22
|
"devDependencies": {
|
|
30
23
|
"rescript": "^12.3.0"
|
|
@@ -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
|
-
"
|
|
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
|
+
}
|