@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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @xata.io/client@0.26.1 add-version /home/runner/work/client-ts/client-ts/packages/client
2
+ > @xata.io/client@0.26.2 add-version /home/runner/work/client-ts/client-ts/packages/client
3
3
  > node ../../scripts/add-version-file.mjs
4
4
 
@@ -1,13 +1,13 @@
1
1
 
2
- > @xata.io/client@0.26.1 build /home/runner/work/client-ts/client-ts/packages/client
2
+ > @xata.io/client@0.26.2 build /home/runner/work/client-ts/client-ts/packages/client
3
3
  > rimraf dist && rollup -c
4
4
 
5
5
  
6
6
  src/index.ts → dist/index.cjs...
7
- created dist/index.cjs in 1.2s
7
+ created dist/index.cjs in 1.3s
8
8
  
9
9
  src/index.ts → dist/index.mjs...
10
- created dist/index.mjs in 840ms
10
+ created dist/index.mjs in 964ms
11
11
  
12
12
  src/index.ts → dist/index.d.ts...
13
- created dist/index.d.ts in 5.8s
13
+ created dist/index.d.ts in 6.8s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @xata.io/client
2
2
 
3
+ ## 0.26.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1147](https://github.com/xataio/client-ts/pull/1147) [`22fccb51`](https://github.com/xataio/client-ts/commit/22fccb51709749c319897702c15749b74ce4b820) Thanks [@SferaDev](https://github.com/SferaDev)! - Expose metadataSignedUrl
8
+
3
9
  ## 0.26.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -529,7 +529,7 @@ function defaultOnOpen(response) {
529
529
  }
530
530
  }
531
531
 
532
- const VERSION = "0.26.1";
532
+ const VERSION = "0.26.2";
533
533
 
534
534
  var __defProp$7 = Object.defineProperty;
535
535
  var __defNormalProp$7 = (obj, key, value) => key in obj ? __defProp$7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
@@ -2850,7 +2850,8 @@ class XataFile {
2850
2850
  return {
2851
2851
  url: transformImage(this.url, ...options),
2852
2852
  signedUrl: transformImage(this.signedUrl, ...options),
2853
- metadataUrl: transformImage(this.url, ...options, { format: "json" })
2853
+ metadataUrl: transformImage(this.url, ...options, { format: "json" }),
2854
+ metadataSignedUrl: transformImage(this.signedUrl, ...options, { format: "json" })
2854
2855
  };
2855
2856
  }
2856
2857
  }