@xata.io/client 0.0.0-alpha.ved00a04 → 0.0.0-alpha.vefd1713
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/dist/index.cjs +0 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +57 -121
- package/dist/index.mjs +1 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -280,17 +280,6 @@ const getBranchMetadata = (variables) => fetch$1({
|
|
|
280
280
|
const getBranchMigrationHistory = (variables) => fetch$1({ url: "/db/{dbBranchName}/migrations", method: "get", ...variables });
|
|
281
281
|
const executeBranchMigrationPlan = (variables) => fetch$1({ url: "/db/{dbBranchName}/migrations/execute", method: "post", ...variables });
|
|
282
282
|
const getBranchMigrationPlan = (variables) => fetch$1({ url: "/db/{dbBranchName}/migrations/plan", method: "post", ...variables });
|
|
283
|
-
const compareBranchSchema = (variables) => fetch$1({
|
|
284
|
-
url: "/db/{dbBranchName}/schema/compare/{branchName}",
|
|
285
|
-
method: "post",
|
|
286
|
-
...variables
|
|
287
|
-
});
|
|
288
|
-
const updateBranchSchema = (variables) => fetch$1({
|
|
289
|
-
url: "/db/{dbBranchName}/schema/update",
|
|
290
|
-
method: "post",
|
|
291
|
-
...variables
|
|
292
|
-
});
|
|
293
|
-
const getBranchSchemaHistory = (variables) => fetch$1({ url: "/db/{dbBranchName}/schema/history", method: "post", ...variables });
|
|
294
283
|
const getBranchStats = (variables) => fetch$1({
|
|
295
284
|
url: "/db/{dbBranchName}/stats",
|
|
296
285
|
method: "get",
|
|
@@ -402,9 +391,6 @@ const operationsByTag = {
|
|
|
402
391
|
getBranchMigrationHistory,
|
|
403
392
|
executeBranchMigrationPlan,
|
|
404
393
|
getBranchMigrationPlan,
|
|
405
|
-
compareBranchSchema,
|
|
406
|
-
updateBranchSchema,
|
|
407
|
-
getBranchSchemaHistory,
|
|
408
394
|
getBranchStats
|
|
409
395
|
},
|
|
410
396
|
table: {
|
|
@@ -1843,7 +1829,6 @@ exports.addTableColumn = addTableColumn;
|
|
|
1843
1829
|
exports.buildClient = buildClient;
|
|
1844
1830
|
exports.bulkInsertTableRecords = bulkInsertTableRecords;
|
|
1845
1831
|
exports.cancelWorkspaceMemberInvite = cancelWorkspaceMemberInvite;
|
|
1846
|
-
exports.compareBranchSchema = compareBranchSchema;
|
|
1847
1832
|
exports.contains = contains;
|
|
1848
1833
|
exports.createBranch = createBranch;
|
|
1849
1834
|
exports.createDatabase = createDatabase;
|
|
@@ -1868,7 +1853,6 @@ exports.getBranchList = getBranchList;
|
|
|
1868
1853
|
exports.getBranchMetadata = getBranchMetadata;
|
|
1869
1854
|
exports.getBranchMigrationHistory = getBranchMigrationHistory;
|
|
1870
1855
|
exports.getBranchMigrationPlan = getBranchMigrationPlan;
|
|
1871
|
-
exports.getBranchSchemaHistory = getBranchSchemaHistory;
|
|
1872
1856
|
exports.getBranchStats = getBranchStats;
|
|
1873
1857
|
exports.getColumn = getColumn;
|
|
1874
1858
|
exports.getCurrentBranchDetails = getCurrentBranchDetails;
|
|
@@ -1909,7 +1893,6 @@ exports.searchBranch = searchBranch;
|
|
|
1909
1893
|
exports.setTableSchema = setTableSchema;
|
|
1910
1894
|
exports.startsWith = startsWith;
|
|
1911
1895
|
exports.updateBranchMetadata = updateBranchMetadata;
|
|
1912
|
-
exports.updateBranchSchema = updateBranchSchema;
|
|
1913
1896
|
exports.updateColumn = updateColumn;
|
|
1914
1897
|
exports.updateRecordWithID = updateRecordWithID;
|
|
1915
1898
|
exports.updateTable = updateTable;
|