@budibase/backend-core 2.13.17 → 2.13.18
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/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/index.js.meta.json +1 -1
- package/dist/package.json +4 -4
- package/dist/src/objectStore/objectStore.d.ts +1 -1
- package/dist/src/objectStore/objectStore.js +2 -2
- package/dist/src/objectStore/objectStore.js.map +1 -1
- package/package.json +4 -4
- package/src/objectStore/objectStore.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -4897,7 +4897,7 @@ async function listAllObjects(bucketName, path2) {
|
|
|
4897
4897
|
} while (isTruncated);
|
|
4898
4898
|
return objects;
|
|
4899
4899
|
}
|
|
4900
|
-
function getPresignedUrl(bucketName, key, durationSeconds =
|
|
4900
|
+
function getPresignedUrl(bucketName, key, durationSeconds = 129600) {
|
|
4901
4901
|
const objectStore = ObjectStore(bucketName, { presigning: true });
|
|
4902
4902
|
const params2 = {
|
|
4903
4903
|
Bucket: sanitizeBucket(bucketName),
|