@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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +3 -3
- package/dist/index.cjs +8 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +44 -7
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
|
5
5
|
[36m
|
6
6
|
[1msrc/index.ts[22m → [1mdist/index.cjs[22m...[39m
|
7
|
-
[32mcreated [1mdist/index.cjs[22m in [
|
7
|
+
[32mcreated [1mdist/index.cjs[22m in [1m891ms[22m[39m
|
8
8
|
[36m
|
9
9
|
[1msrc/index.ts[22m → [1mdist/index.mjs[22m...[39m
|
10
|
-
[32mcreated [1mdist/index.mjs[22m in [
|
10
|
+
[32mcreated [1mdist/index.mjs[22m in [1m762ms[22m[39m
|
11
11
|
[36m
|
12
12
|
[1msrc/index.ts[22m → [1mdist/index.d.ts[22m...[39m
|
13
|
-
[32mcreated [1mdist/index.d.ts[22m in [1m4.
|
13
|
+
[32mcreated [1mdist/index.d.ts[22m in [1m4.2s[22m[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# @xata.io/client
|
2
2
|
|
3
|
-
## 0.0.0-next.
|
3
|
+
## 0.0.0-next.v34f1d64a4f4c1ffd896bbb285ab38efd8315b259
|
4
4
|
|
5
5
|
### Major Changes
|
6
6
|
|
7
|
-
- [`
|
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
|
-
- [`
|
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;
|