@xata.io/client 0.26.1 → 0.26.2
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/.turbo/turbo-add-version.log +1 -1
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.mjs
CHANGED
@@ -527,7 +527,7 @@ function defaultOnOpen(response) {
|
|
527
527
|
}
|
528
528
|
}
|
529
529
|
|
530
|
-
const VERSION = "0.26.
|
530
|
+
const VERSION = "0.26.2";
|
531
531
|
|
532
532
|
var __defProp$7 = Object.defineProperty;
|
533
533
|
var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
@@ -2848,7 +2848,8 @@ class XataFile {
|
|
2848
2848
|
return {
|
2849
2849
|
url: transformImage(this.url, ...options),
|
2850
2850
|
signedUrl: transformImage(this.signedUrl, ...options),
|
2851
|
-
metadataUrl: transformImage(this.url, ...options, { format: "json" })
|
2851
|
+
metadataUrl: transformImage(this.url, ...options, { format: "json" }),
|
2852
|
+
metadataSignedUrl: transformImage(this.signedUrl, ...options, { format: "json" })
|
2852
2853
|
};
|
2853
2854
|
}
|
2854
2855
|
}
|