@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.52 → 2.4.0-alpha.54
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 +15 -0
- package/package.json +5 -5
- package/src/AppSync/AppSync_GraphQLApi.res +20 -0
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.54 (2026-07-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 2.4.0-alpha.53 (2026-07-14)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* surface masked GraphQL resolver errors server-side (local + AWS) ([b3bca51](https://github.com/ReventlessDev/reventless-core/commit/b3bca51b539e40c604b3db338d570de6215ea837))
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
# 2.4.0-alpha.52 (2026-07-14)
|
|
7
22
|
|
|
8
23
|
### Features
|
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.54",
|
|
4
4
|
"description": "ReScript bindings for @pulumi/aws",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -22,16 +22,16 @@
|
|
|
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-pulumi-pulumi": "2.3.0-alpha.16",
|
|
26
|
+
"@reventlessdev/rescript-aws-sdk": "2.2.0-alpha.22"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"esbuild": "^0.25.12",
|
|
30
|
-
"rescript": "
|
|
30
|
+
"rescript": "12.3.0",
|
|
31
31
|
"sury-ppx": "11.0.0-alpha.2"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"rescript": "
|
|
34
|
+
"rescript": "12.3.0"
|
|
35
35
|
},
|
|
36
36
|
"gitHead": "ddea51534dc210635d7b11968089627b3b697ce2",
|
|
37
37
|
"publishConfig": {
|
|
@@ -42,6 +42,25 @@ type additionalAuthenticationProvider = {
|
|
|
42
42
|
userPoolConfig?: Pulumi.Input.t<userPoolConfig>,
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
/** Field-level CloudWatch log verbosity for resolver execution. `ERROR` logs
|
|
46
|
+
only field/resolver errors (e.g. a non-null coercion on a stale read-model
|
|
47
|
+
row) — the server-side capture point that AppSync otherwise swallows into the
|
|
48
|
+
client's `errors[]`; `ALL` also logs request-level tracing (high volume). */
|
|
49
|
+
type fieldLogLevel =
|
|
50
|
+
| NONE
|
|
51
|
+
| ERROR
|
|
52
|
+
| ALL
|
|
53
|
+
|
|
54
|
+
/** CloudWatch logging config. `cloudwatchLogsRoleArn` must be an IAM role
|
|
55
|
+
assumable by `appsync.amazonaws.com` carrying `AWSAppSyncPushToCloudWatchLogs`.
|
|
56
|
+
Resolvers run on the SOURCE APIs under the merged-API topology, so set this on
|
|
57
|
+
the source APIs to capture field-resolver errors. */
|
|
58
|
+
type logConfig = {
|
|
59
|
+
cloudwatchLogsRoleArn: Pulumi.Input.t<string>,
|
|
60
|
+
fieldLogLevel: Pulumi.Input.t<fieldLogLevel>,
|
|
61
|
+
excludeVerboseContent?: Pulumi.Input.t<bool>,
|
|
62
|
+
}
|
|
63
|
+
|
|
45
64
|
type args = {
|
|
46
65
|
authenticationType: Pulumi.Input.t<authenticationType>,
|
|
47
66
|
name?: Pulumi.Input.t<string>,
|
|
@@ -52,6 +71,7 @@ type args = {
|
|
|
52
71
|
>,
|
|
53
72
|
apiType?: Pulumi.Input.t<apiType>,
|
|
54
73
|
mergedApiExecutionRoleArn?: Pulumi.Input.t<string>,
|
|
74
|
+
logConfig?: Pulumi.Input.t<logConfig>,
|
|
55
75
|
}
|
|
56
76
|
|
|
57
77
|
@module("@pulumi/aws") @scope("appsync") @new
|