@xata.io/client 0.28.1 → 1.0.0-next.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @xata.io/client@0.28.1 add-version /home/runner/work/client-ts/client-ts/packages/client
2
+ > @xata.io/client@0.28.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.28.1 build /home/runner/work/client-ts/client-ts/packages/client
2
+ > @xata.io/client@0.28.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 733ms
7
+ created dist/index.cjs in 784ms
8
8
  
9
9
  src/index.ts → dist/index.mjs...
10
- created dist/index.mjs in 474ms
10
+ created dist/index.mjs in 515ms
11
11
  
12
12
  src/index.ts → dist/index.d.ts...
13
- created dist/index.d.ts in 5.1s
13
+ created dist/index.d.ts in 5.3s
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @xata.io/client
2
2
 
3
+ ## 1.0.0-next.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`413b115`](https://github.com/xataio/client-ts/commit/413b115c9134e3a4ce3026f8bbab714204a6e666) Thanks [@SferaDev](https://github.com/SferaDev)! - Version 1.0
8
+
9
+ ## 0.28.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1288](https://github.com/xataio/client-ts/pull/1288) [`c9178e1`](https://github.com/xataio/client-ts/commit/c9178e1e3f2268513e78dcfce396a99a8fca5dfb) Thanks [@SferaDev](https://github.com/SferaDev)! - Update read to use `ReadonlyArray<Identifier>`
14
+
3
15
  ## 0.28.1
4
16
 
5
17
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -528,7 +528,7 @@ function defaultOnOpen(response) {
528
528
  }
529
529
  }
530
530
 
531
- const VERSION = "0.28.1";
531
+ const VERSION = "0.28.2";
532
532
 
533
533
  class ErrorWithCause extends Error {
534
534
  constructor(message, options) {
@@ -775,6 +775,12 @@ const pgRollStatus = (variables, signal) => dataPlaneFetch({
775
775
  ...variables,
776
776
  signal
777
777
  });
778
+ const pgRollJobStatus = (variables, signal) => dataPlaneFetch({
779
+ url: "/db/{dbBranchName}/pgroll/jobs/{jobId}",
780
+ method: "get",
781
+ ...variables,
782
+ signal
783
+ });
778
784
  const getBranchList = (variables, signal) => dataPlaneFetch({
779
785
  url: "/dbs/{dbName}",
780
786
  method: "get",
@@ -991,6 +997,7 @@ const operationsByTag$2 = {
991
997
  branch: {
992
998
  applyMigration,
993
999
  pgRollStatus,
1000
+ pgRollJobStatus,
994
1001
  getBranchList,
995
1002
  getBranchDetails,
996
1003
  createBranch,
@@ -4915,6 +4922,7 @@ exports.operationsByTag = operationsByTag;
4915
4922
  exports.parseProviderString = parseProviderString;
4916
4923
  exports.parseWorkspacesUrlParts = parseWorkspacesUrlParts;
4917
4924
  exports.pattern = pattern;
4925
+ exports.pgRollJobStatus = pgRollJobStatus;
4918
4926
  exports.pgRollStatus = pgRollStatus;
4919
4927
  exports.previewBranchSchemaEdit = previewBranchSchemaEdit;
4920
4928
  exports.pushBranchMigrations = pushBranchMigrations;