@reventlessdev/rescript-pulumi-aws 2.4.0-alpha.62 → 2.4.0-alpha.64

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.64 (2026-08-02)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
9
+
10
+
11
+
12
+
13
+
14
+ # 2.4.0-alpha.63 (2026-08-02)
15
+
16
+ ### Features
17
+
18
+ * **aws,core,spec,seed-aws:** expire uploads nobody committed a reference to ([f63e84c](https://github.com/ReventlessDev/reventless-core/commit/f63e84c1a11cc350b799a6f69a2e7427cf1ea6e9))
19
+
20
+
6
21
  # 2.4.0-alpha.62 (2026-07-31)
7
22
 
8
23
  **Note:** Version bump only for package @reventlessdev/rescript-pulumi-aws
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/rescript-pulumi-aws",
3
- "version": "2.4.0-alpha.62",
3
+ "version": "2.4.0-alpha.64",
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": "3.0.0-alpha.0",
26
- "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18"
25
+ "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
26
+ "@reventlessdev/rescript-aws-sdk": "3.0.0-alpha.2"
27
27
  },
28
28
  "devDependencies": {
29
29
  "esbuild": "^0.25.12",
@@ -19,10 +19,13 @@ type corsRule = {
19
19
 
20
20
  type corsRules = array<corsRule>
21
21
 
22
+ // Optional throughout: the provider accepts (and mostly requires) exactly one
23
+ // of `date` / `days`, so a record forcing both would be unconstructible without
24
+ // writing a value the API rejects.
22
25
  type lifecycleRuleExpiration = {
23
- date: string,
24
- days: int,
25
- expiredObjectDeleteMarker: bool,
26
+ date?: string,
27
+ days?: int,
28
+ expiredObjectDeleteMarker?: bool,
26
29
  }
27
30
 
28
31
  type lifecycleRuleNoncurrentVersionExpiration = {days: int}
@@ -38,16 +41,18 @@ type lifecycleRuleTransition = {
38
41
  storageClass: string,
39
42
  }
40
43
 
44
+ /** `enabled` is the only required field. `prefix` and `tags` together are the
45
+ rule's filter — a rule carrying both matches objects satisfying both. */
41
46
  type lifecycleRule = {
42
- abortIncompleteMultipartUploadDays: int,
47
+ abortIncompleteMultipartUploadDays?: int,
43
48
  enabled: bool,
44
- expiration: lifecycleRuleExpiration,
45
- id: string,
46
- noncurrentVersionExpiration: lifecycleRuleNoncurrentVersionExpiration,
47
- noncurrentVersionTransitions: array<lifecycleRuleNoncurrentVersionTransition>,
48
- prefix: string,
49
- tags: Aws.tags,
50
- transitions: array<lifecycleRuleTransition>,
49
+ expiration?: lifecycleRuleExpiration,
50
+ id?: string,
51
+ noncurrentVersionExpiration?: lifecycleRuleNoncurrentVersionExpiration,
52
+ noncurrentVersionTransitions?: array<lifecycleRuleNoncurrentVersionTransition>,
53
+ prefix?: string,
54
+ tags?: Aws.tags,
55
+ transitions?: array<lifecycleRuleTransition>,
51
56
  }
52
57
 
53
58
  type lifecycleRules = array<lifecycleRule>