windmill-client 1.607.0 → 1.608.0
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/client.js +1 -3
- package/dist/core/OpenAPI.js +1 -1
- package/package.json +1 -1
package/dist/client.js
CHANGED
|
@@ -914,9 +914,7 @@ function writeS3File(s3object_1, fileContent_1) {
|
|
|
914
914
|
contentType,
|
|
915
915
|
contentDisposition,
|
|
916
916
|
});
|
|
917
|
-
return {
|
|
918
|
-
s3: response.file_key,
|
|
919
|
-
};
|
|
917
|
+
return Object.assign({ s3: response.file_key }, ((s3Obj === null || s3Obj === void 0 ? void 0 : s3Obj.storage) && { storage: s3Obj === null || s3Obj === void 0 ? void 0 : s3Obj.storage }));
|
|
920
918
|
});
|
|
921
919
|
}
|
|
922
920
|
/**
|
package/dist/core/OpenAPI.js
CHANGED