@distilled.cloud/aws 1.0.0-rc.6 → 1.0.0-rc.7
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/lib/services/s3.d.ts +1 -1
- package/lib/services/s3.d.ts.map +1 -1
- package/lib/services/s3.js +1 -1
- package/lib/services/s3.js.map +1 -1
- package/package.json +4 -4
- package/src/services/s3.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@distilled.cloud/aws",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.7",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/alchemy-run/distilled",
|
|
@@ -101,17 +101,17 @@
|
|
|
101
101
|
"@smithy/util-base64": "^4.3.0",
|
|
102
102
|
"aws4fetch": "^1.0.20",
|
|
103
103
|
"fast-xml-parser": "^5.3.4",
|
|
104
|
-
"@distilled.cloud/core": "1.0.0-rc.
|
|
104
|
+
"@distilled.cloud/core": "1.0.0-rc.7"
|
|
105
105
|
},
|
|
106
106
|
"devDependencies": {
|
|
107
|
-
"@effect/platform-bun": ">=4.0.0-rc.
|
|
107
|
+
"@effect/platform-bun": ">=4.0.0-rc.111 || >=4.0.0",
|
|
108
108
|
"@types/bun": "latest",
|
|
109
109
|
"@types/node": "latest",
|
|
110
110
|
"dedent": "^1.7.0",
|
|
111
111
|
"pathe": "^2.0.3"
|
|
112
112
|
},
|
|
113
113
|
"peerDependencies": {
|
|
114
|
-
"effect": ">=4.0.0-rc.
|
|
114
|
+
"effect": ">=4.0.0-rc.111 || >=4.0.0"
|
|
115
115
|
},
|
|
116
116
|
"scripts": {
|
|
117
117
|
"typecheck": "tsc",
|
package/src/services/s3.ts
CHANGED
|
@@ -14820,8 +14820,8 @@ export type DeleteObjectError =
|
|
|
14820
14820
|
| RequestLimitExceeded
|
|
14821
14821
|
| SlowDown
|
|
14822
14822
|
| NoSuchBucket
|
|
14823
|
+
| NoSuchKey
|
|
14823
14824
|
| PermanentRedirect
|
|
14824
|
-
| NotFound
|
|
14825
14825
|
| CommonErrors;
|
|
14826
14826
|
/**
|
|
14827
14827
|
* Removes an object from a bucket. The behavior depends on the bucket's versioning state:
|
|
@@ -14925,8 +14925,8 @@ export const deleteObject: API.OperationMethod<
|
|
|
14925
14925
|
RequestLimitExceeded,
|
|
14926
14926
|
SlowDown,
|
|
14927
14927
|
NoSuchBucket,
|
|
14928
|
+
NoSuchKey,
|
|
14928
14929
|
PermanentRedirect,
|
|
14929
|
-
NotFound,
|
|
14930
14930
|
],
|
|
14931
14931
|
protocol: AwsProtocol,
|
|
14932
14932
|
retry: Retry,
|