@tstdl/base 0.90.63 → 0.90.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.
|
@@ -99,7 +99,7 @@ let S3ObjectStorage = class S3ObjectStorage extends ObjectStorage {
|
|
|
99
99
|
async getDownloadUrl(key, expirationTimestamp, responseHeaders) {
|
|
100
100
|
const bucketKey = this.getBucketKey(key);
|
|
101
101
|
const { date, expiration } = getDateAndExpiration(expirationTimestamp);
|
|
102
|
-
return this.client.presignedGetObject(this.bucket, bucketKey, expiration, responseHeaders, date);
|
|
102
|
+
return this.client.presignedGetObject(this.bucket, bucketKey, expiration, responseHeaders ?? {}, date);
|
|
103
103
|
}
|
|
104
104
|
async getUploadUrl(key, expirationTimestamp) {
|
|
105
105
|
const bucketKey = this.getBucketKey(key);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tstdl/base",
|
|
3
|
-
"version": "0.90.
|
|
3
|
+
"version": "0.90.64",
|
|
4
4
|
"author": "Patrick Hein",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"./utils/string": "./utils/object/index.js"
|
|
106
106
|
},
|
|
107
107
|
"dependencies": {
|
|
108
|
-
"core-js": "3.
|
|
108
|
+
"core-js": "3.37",
|
|
109
109
|
"luxon": "^3.4",
|
|
110
110
|
"reflect-metadata": "^0.2",
|
|
111
111
|
"rxjs": "^7.8",
|