@reventlessdev/reventless-infra 3.0.0-alpha.140 → 3.0.0-alpha.141
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 +7 -0
- package/package.json +3 -3
- package/src/components/Api.res +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
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
|
+
# 3.0.0-alpha.141 (2026-08-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **core:** one contract for which refusal a platform gave ([7705c13](https://github.com/ReventlessDev/reventless-core/commit/7705c13ec63f41a3a659bc98cfb45b880fd5b222))
|
|
11
|
+
|
|
12
|
+
|
|
6
13
|
# 3.0.0-alpha.140 (2026-08-14)
|
|
7
14
|
|
|
8
15
|
**Note:** Version bump only for package @reventlessdev/reventless-infra
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reventlessdev/reventless-infra",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.141",
|
|
4
4
|
"description": "Infrastructure types for Reventless framework",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"jest": {
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"uuid": "^13.0.0",
|
|
19
19
|
"@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.19",
|
|
20
20
|
"@reventlessdev/rescript-effect": "0.1.0-alpha.32",
|
|
21
|
-
"@reventlessdev/
|
|
22
|
-
"@reventlessdev/
|
|
21
|
+
"@reventlessdev/rescript-uuid": "2.0.0-alpha.0",
|
|
22
|
+
"@reventlessdev/reventless-spec": "3.0.0-alpha.113"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"rescript": "12.3.0",
|
package/src/components/Api.res
CHANGED
|
@@ -53,7 +53,7 @@ type mutationSchemaEntry = {
|
|
|
53
53
|
authorization?: Reventless.ReadModel.authorization,
|
|
54
54
|
/** Spec-level per-field authorization derived from `Spec.commandAuthorization`,
|
|
55
55
|
keyed by mutation field name. Used by AWS to inject
|
|
56
|
-
`@
|
|
56
|
+
`@aws_cognito_user_pools(cognito_groups: ...)` per field (Stage E2 in
|
|
57
57
|
`docs/plans/host-ui-login-core.md`). In-memory enforcement still happens
|
|
58
58
|
at the resolver layer via the same `commandAuthorization` function. */
|
|
59
59
|
fieldPermissions?: dict<Reventless.Authorization.permission>,
|
|
@@ -106,7 +106,7 @@ type querySchemaEntry = {
|
|
|
106
106
|
authorization: option<Reventless.ReadModel.authorization>,
|
|
107
107
|
/** Spec-level read-model authorization derived from `Spec.authorization`.
|
|
108
108
|
Applies to both the single-id and list query fields. Used by AWS to
|
|
109
|
-
inject `@
|
|
109
|
+
inject `@aws_cognito_user_pools(cognito_groups: ...)` (Stage E2 in
|
|
110
110
|
`docs/plans/host-ui-login-core.md`). In-memory enforcement happens at
|
|
111
111
|
the QueryDb resolver via the same field. */
|
|
112
112
|
permission?: Reventless.Authorization.permission,
|