@xata.io/client 0.0.0-next.v1f1a768eac2fc9114d060fbfdfd78d099944cd7c → 0.0.0-next.v34f1d64a4f4c1ffd896bbb285ab38efd8315b259

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.
@@ -4,10 +4,10 @@
4
4
 
5
5
  
6
6
  src/index.ts → dist/index.cjs...
7
- created dist/index.cjs in 1s
7
+ created dist/index.cjs in 891ms
8
8
  
9
9
  src/index.ts → dist/index.mjs...
10
- created dist/index.mjs in 684ms
10
+ created dist/index.mjs in 762ms
11
11
  
12
12
  src/index.ts → dist/index.d.ts...
13
- created dist/index.d.ts in 4.4s
13
+ created dist/index.d.ts in 4.2s
package/CHANGELOG.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # @xata.io/client
2
2
 
3
- ## 0.0.0-next.v1f1a768eac2fc9114d060fbfdfd78d099944cd7c
3
+ ## 0.0.0-next.v34f1d64a4f4c1ffd896bbb285ab38efd8315b259
4
4
 
5
5
  ### Major Changes
6
6
 
7
- - [`db53fd6`](https://github.com/xataio/client-ts/commit/db53fd6680912cf50af0616e6e8be15fc19dfeb8) Thanks [@SferaDev](https://github.com/SferaDev)! - Make XataApiClient to use ES Proxies
7
+ - [`e20389d`](https://github.com/xataio/client-ts/commit/e20389df9b07bd257e1d1d88839cc5c344c7783e) Thanks [@SferaDev](https://github.com/SferaDev)! - Make XataApiClient to use ES Proxies
8
8
 
9
- - [`6bdaca3`](https://github.com/xataio/client-ts/commit/6bdaca34fd1c987289cd948ccf920bf883c3fba9) Thanks [@SferaDev](https://github.com/SferaDev)! - Version 1.0
9
+ - [`72a64e0`](https://github.com/xataio/client-ts/commit/72a64e0fe1fce956a48a6a5f22cc67419b107da3) Thanks [@SferaDev](https://github.com/SferaDev)! - Version 1.0
10
10
 
11
11
  ## 0.29.3
12
12
 
package/dist/index.cjs CHANGED
@@ -856,6 +856,12 @@ const adaptTable = (variables, signal) => dataPlaneFetch({
856
856
  ...variables,
857
857
  signal
858
858
  });
859
+ const adaptAllTables = (variables, signal) => dataPlaneFetch({
860
+ url: "/db/{dbBranchName}/migrations/adapt",
861
+ method: "post",
862
+ ...variables,
863
+ signal
864
+ });
859
865
  const getBranchMigrationJobStatus = (variables, signal) => dataPlaneFetch({ url: "/db/{dbBranchName}/migrations/status", method: "get", ...variables, signal });
860
866
  const getMigrationJobStatus = (variables, signal) => dataPlaneFetch({ url: "/db/{dbBranchName}/migrations/jobs/{jobId}", method: "get", ...variables, signal });
861
867
  const getMigrationHistory = (variables, signal) => dataPlaneFetch({ url: "/db/{dbBranchName}/migrations/history", method: "get", ...variables, signal });
@@ -1088,6 +1094,7 @@ const operationsByTag$2 = {
1088
1094
  migrations: {
1089
1095
  applyMigration,
1090
1096
  adaptTable,
1097
+ adaptAllTables,
1091
1098
  getBranchMigrationJobStatus,
1092
1099
  getMigrationJobStatus,
1093
1100
  getMigrationHistory,
@@ -3519,6 +3526,7 @@ exports.XataError = XataError;
3519
3526
  exports.XataFile = XataFile;
3520
3527
  exports.XataPlugin = XataPlugin;
3521
3528
  exports.acceptWorkspaceMemberInvite = acceptWorkspaceMemberInvite;
3529
+ exports.adaptAllTables = adaptAllTables;
3522
3530
  exports.adaptTable = adaptTable;
3523
3531
  exports.addGitBranchesEntry = addGitBranchesEntry;
3524
3532
  exports.addTableColumn = addTableColumn;