@xata.io/client 0.0.0-alpha.vfaca77b → 0.0.0-alpha.vfb22b4f
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/CHANGELOG.md +48 -0
- package/README.md +65 -52
- package/Usage.md +395 -0
- package/dist/index.cjs +244 -119
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +152 -38
- package/dist/index.mjs +226 -120
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
package/dist/index.mjs
CHANGED
@@ -17,39 +17,86 @@ function toBase64(value) {
|
|
17
17
|
try {
|
18
18
|
return btoa(value);
|
19
19
|
} catch (err) {
|
20
|
-
|
20
|
+
const buf = Buffer;
|
21
|
+
return buf.from(value).toString("base64");
|
21
22
|
}
|
22
23
|
}
|
23
24
|
|
24
|
-
function
|
25
|
+
function getEnvironment() {
|
25
26
|
try {
|
26
|
-
if (isObject(process) &&
|
27
|
-
return
|
27
|
+
if (isObject(process) && isObject(process.env)) {
|
28
|
+
return {
|
29
|
+
apiKey: process.env.XATA_API_KEY ?? getGlobalApiKey(),
|
30
|
+
databaseURL: process.env.XATA_DATABASE_URL ?? getGlobalDatabaseURL(),
|
31
|
+
branch: process.env.XATA_BRANCH ?? getGlobalBranch(),
|
32
|
+
envBranch: process.env.VERCEL_GIT_COMMIT_REF ?? process.env.CF_PAGES_BRANCH ?? process.env.BRANCH,
|
33
|
+
fallbackBranch: process.env.XATA_FALLBACK_BRANCH ?? getGlobalFallbackBranch()
|
34
|
+
};
|
28
35
|
}
|
29
36
|
} catch (err) {
|
30
37
|
}
|
31
38
|
try {
|
32
|
-
if (isObject(Deno) &&
|
33
|
-
return
|
39
|
+
if (isObject(Deno) && isObject(Deno.env)) {
|
40
|
+
return {
|
41
|
+
apiKey: Deno.env.get("XATA_API_KEY") ?? getGlobalApiKey(),
|
42
|
+
databaseURL: Deno.env.get("XATA_DATABASE_URL") ?? getGlobalDatabaseURL(),
|
43
|
+
branch: Deno.env.get("XATA_BRANCH") ?? getGlobalBranch(),
|
44
|
+
envBranch: Deno.env.get("VERCEL_GIT_COMMIT_REF") ?? Deno.env.get("CF_PAGES_BRANCH") ?? Deno.env.get("BRANCH"),
|
45
|
+
fallbackBranch: Deno.env.get("XATA_FALLBACK_BRANCH") ?? getGlobalFallbackBranch()
|
46
|
+
};
|
34
47
|
}
|
35
48
|
} catch (err) {
|
36
49
|
}
|
50
|
+
return {
|
51
|
+
apiKey: getGlobalApiKey(),
|
52
|
+
databaseURL: getGlobalDatabaseURL(),
|
53
|
+
branch: getGlobalBranch(),
|
54
|
+
envBranch: void 0,
|
55
|
+
fallbackBranch: getGlobalFallbackBranch()
|
56
|
+
};
|
57
|
+
}
|
58
|
+
function getGlobalApiKey() {
|
59
|
+
try {
|
60
|
+
return XATA_API_KEY;
|
61
|
+
} catch (err) {
|
62
|
+
return void 0;
|
63
|
+
}
|
64
|
+
}
|
65
|
+
function getGlobalDatabaseURL() {
|
66
|
+
try {
|
67
|
+
return XATA_DATABASE_URL;
|
68
|
+
} catch (err) {
|
69
|
+
return void 0;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
function getGlobalBranch() {
|
73
|
+
try {
|
74
|
+
return XATA_BRANCH;
|
75
|
+
} catch (err) {
|
76
|
+
return void 0;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
function getGlobalFallbackBranch() {
|
80
|
+
try {
|
81
|
+
return XATA_FALLBACK_BRANCH;
|
82
|
+
} catch (err) {
|
83
|
+
return void 0;
|
84
|
+
}
|
37
85
|
}
|
38
86
|
async function getGitBranch() {
|
87
|
+
const cmd = ["git", "branch", "--show-current"];
|
88
|
+
const nodeModule = ["child", "process"].join("_");
|
39
89
|
try {
|
40
90
|
if (typeof require === "function") {
|
41
|
-
|
42
|
-
return req("child_process").execSync("git branch --show-current", { encoding: "utf-8" }).trim();
|
91
|
+
return require(nodeModule).execSync(cmd.join(" "), { encoding: "utf-8" }).trim();
|
43
92
|
}
|
93
|
+
const { execSync } = await import(nodeModule);
|
94
|
+
return execSync(cmd.join(" "), { encoding: "utf-8" }).toString().trim();
|
44
95
|
} catch (err) {
|
45
96
|
}
|
46
97
|
try {
|
47
98
|
if (isObject(Deno)) {
|
48
|
-
const process2 = Deno.run({
|
49
|
-
cmd: ["git", "branch", "--show-current"],
|
50
|
-
stdout: "piped",
|
51
|
-
stderr: "piped"
|
52
|
-
});
|
99
|
+
const process2 = Deno.run({ cmd, stdout: "piped", stderr: "piped" });
|
53
100
|
return new TextDecoder().decode(await process2.output()).trim();
|
54
101
|
}
|
55
102
|
} catch (err) {
|
@@ -58,7 +105,8 @@ async function getGitBranch() {
|
|
58
105
|
|
59
106
|
function getAPIKey() {
|
60
107
|
try {
|
61
|
-
|
108
|
+
const { apiKey } = getEnvironment();
|
109
|
+
return apiKey;
|
62
110
|
} catch (err) {
|
63
111
|
return void 0;
|
64
112
|
}
|
@@ -73,21 +121,28 @@ function getFetchImplementation(userFetch) {
|
|
73
121
|
return fetchImpl;
|
74
122
|
}
|
75
123
|
|
124
|
+
const VERSION = "0.0.0-alpha.vfb22b4f";
|
125
|
+
|
76
126
|
class ErrorWithCause extends Error {
|
77
127
|
constructor(message, options) {
|
78
128
|
super(message, options);
|
79
129
|
}
|
80
130
|
}
|
81
131
|
class FetcherError extends ErrorWithCause {
|
82
|
-
constructor(status, data) {
|
132
|
+
constructor(status, data, requestId) {
|
83
133
|
super(getMessage(data));
|
84
134
|
this.status = status;
|
85
135
|
this.errors = isBulkError(data) ? data.errors : void 0;
|
136
|
+
this.requestId = requestId;
|
86
137
|
if (data instanceof Error) {
|
87
138
|
this.stack = data.stack;
|
88
139
|
this.cause = data.cause;
|
89
140
|
}
|
90
141
|
}
|
142
|
+
toString() {
|
143
|
+
const error = super.toString();
|
144
|
+
return `[${this.status}] (${this.requestId ?? "Unknown"}): ${error}`;
|
145
|
+
}
|
91
146
|
}
|
92
147
|
function isBulkError(error) {
|
93
148
|
return isObject(error) && Array.isArray(error.errors);
|
@@ -110,7 +165,12 @@ function getMessage(data) {
|
|
110
165
|
}
|
111
166
|
|
112
167
|
const resolveUrl = (url, queryParams = {}, pathParams = {}) => {
|
113
|
-
const
|
168
|
+
const cleanQueryParams = Object.entries(queryParams).reduce((acc, [key, value]) => {
|
169
|
+
if (value === void 0 || value === null)
|
170
|
+
return acc;
|
171
|
+
return { ...acc, [key]: value };
|
172
|
+
}, {});
|
173
|
+
const query = new URLSearchParams(cleanQueryParams).toString();
|
114
174
|
const queryString = query.length > 0 ? `?${query}` : "";
|
115
175
|
return url.replace(/\{\w*\}/g, (key) => pathParams[key.slice(1, -1)]) + queryString;
|
116
176
|
};
|
@@ -150,6 +210,7 @@ async function fetch$1({
|
|
150
210
|
body: body ? JSON.stringify(body) : void 0,
|
151
211
|
headers: {
|
152
212
|
"Content-Type": "application/json",
|
213
|
+
"User-Agent": `Xata client-ts/${VERSION}`,
|
153
214
|
...headers,
|
154
215
|
...hostHeader(fullUrl),
|
155
216
|
Authorization: `Bearer ${apiKey}`
|
@@ -158,14 +219,15 @@ async function fetch$1({
|
|
158
219
|
if (response.status === 204) {
|
159
220
|
return {};
|
160
221
|
}
|
222
|
+
const requestId = response.headers?.get("x-request-id") ?? void 0;
|
161
223
|
try {
|
162
224
|
const jsonResponse = await response.json();
|
163
225
|
if (response.ok) {
|
164
226
|
return jsonResponse;
|
165
227
|
}
|
166
|
-
throw new FetcherError(response.status, jsonResponse);
|
228
|
+
throw new FetcherError(response.status, jsonResponse, requestId);
|
167
229
|
} catch (error) {
|
168
|
-
throw new FetcherError(response.status, error);
|
230
|
+
throw new FetcherError(response.status, error, requestId);
|
169
231
|
}
|
170
232
|
}
|
171
233
|
|
@@ -485,7 +547,7 @@ var __privateAdd$7 = (obj, member, value) => {
|
|
485
547
|
throw TypeError("Cannot add the same private member more than once");
|
486
548
|
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
487
549
|
};
|
488
|
-
var __privateSet$
|
550
|
+
var __privateSet$7 = (obj, member, value, setter) => {
|
489
551
|
__accessCheck$7(obj, member, "write to private field");
|
490
552
|
setter ? setter.call(obj, value) : member.set(obj, value);
|
491
553
|
return value;
|
@@ -500,7 +562,7 @@ class XataApiClient {
|
|
500
562
|
if (!apiKey) {
|
501
563
|
throw new Error("Could not resolve a valid apiKey");
|
502
564
|
}
|
503
|
-
__privateSet$
|
565
|
+
__privateSet$7(this, _extraProps, {
|
504
566
|
apiUrl: getHostUrl(provider, "main"),
|
505
567
|
workspacesApiUrl: getHostUrl(provider, "workspaces"),
|
506
568
|
fetchImpl: getFetchImplementation(options.fetch),
|
@@ -689,10 +751,10 @@ class DatabaseApi {
|
|
689
751
|
...this.extraProps
|
690
752
|
});
|
691
753
|
}
|
692
|
-
resolveBranch(workspace, dbName, gitBranch) {
|
754
|
+
resolveBranch(workspace, dbName, gitBranch, fallbackBranch) {
|
693
755
|
return operationsByTag.database.resolveBranch({
|
694
756
|
pathParams: { workspace, dbName },
|
695
|
-
queryParams: { gitBranch },
|
757
|
+
queryParams: { gitBranch, fallbackBranch },
|
696
758
|
...this.extraProps
|
697
759
|
});
|
698
760
|
}
|
@@ -937,18 +999,18 @@ var __privateAdd$6 = (obj, member, value) => {
|
|
937
999
|
throw TypeError("Cannot add the same private member more than once");
|
938
1000
|
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
939
1001
|
};
|
940
|
-
var __privateSet$
|
1002
|
+
var __privateSet$6 = (obj, member, value, setter) => {
|
941
1003
|
__accessCheck$6(obj, member, "write to private field");
|
942
1004
|
setter ? setter.call(obj, value) : member.set(obj, value);
|
943
1005
|
return value;
|
944
1006
|
};
|
945
|
-
var _query;
|
1007
|
+
var _query, _page;
|
946
1008
|
class Page {
|
947
1009
|
constructor(query, meta, records = []) {
|
948
1010
|
__privateAdd$6(this, _query, void 0);
|
949
|
-
__privateSet$
|
1011
|
+
__privateSet$6(this, _query, query);
|
950
1012
|
this.meta = meta;
|
951
|
-
this.records = records;
|
1013
|
+
this.records = new RecordArray(this, records);
|
952
1014
|
}
|
953
1015
|
async nextPage(size, offset) {
|
954
1016
|
return __privateGet$6(this, _query).getPaginated({ pagination: { size, offset, after: this.meta.page.cursor } });
|
@@ -968,12 +1030,56 @@ class Page {
|
|
968
1030
|
}
|
969
1031
|
_query = new WeakMap();
|
970
1032
|
const PAGINATION_MAX_SIZE = 200;
|
971
|
-
const PAGINATION_DEFAULT_SIZE =
|
1033
|
+
const PAGINATION_DEFAULT_SIZE = 20;
|
972
1034
|
const PAGINATION_MAX_OFFSET = 800;
|
973
1035
|
const PAGINATION_DEFAULT_OFFSET = 0;
|
974
1036
|
function isCursorPaginationOptions(options) {
|
975
1037
|
return isDefined(options) && (isDefined(options.first) || isDefined(options.last) || isDefined(options.after) || isDefined(options.before));
|
976
1038
|
}
|
1039
|
+
const _RecordArray = class extends Array {
|
1040
|
+
constructor(...args) {
|
1041
|
+
super(..._RecordArray.parseConstructorParams(...args));
|
1042
|
+
__privateAdd$6(this, _page, void 0);
|
1043
|
+
__privateSet$6(this, _page, isObject(args[0]?.meta) ? args[0] : { meta: { page: { cursor: "", more: false } }, records: [] });
|
1044
|
+
}
|
1045
|
+
static parseConstructorParams(...args) {
|
1046
|
+
if (args.length === 1 && typeof args[0] === "number") {
|
1047
|
+
return new Array(args[0]);
|
1048
|
+
}
|
1049
|
+
if (args.length <= 2 && isObject(args[0]?.meta) && Array.isArray(args[1] ?? [])) {
|
1050
|
+
const result = args[1] ?? args[0].records ?? [];
|
1051
|
+
return new Array(...result);
|
1052
|
+
}
|
1053
|
+
return new Array(...args);
|
1054
|
+
}
|
1055
|
+
toArray() {
|
1056
|
+
return new Array(...this);
|
1057
|
+
}
|
1058
|
+
map(callbackfn, thisArg) {
|
1059
|
+
return this.toArray().map(callbackfn, thisArg);
|
1060
|
+
}
|
1061
|
+
async nextPage(size, offset) {
|
1062
|
+
const newPage = await __privateGet$6(this, _page).nextPage(size, offset);
|
1063
|
+
return new _RecordArray(newPage);
|
1064
|
+
}
|
1065
|
+
async previousPage(size, offset) {
|
1066
|
+
const newPage = await __privateGet$6(this, _page).previousPage(size, offset);
|
1067
|
+
return new _RecordArray(newPage);
|
1068
|
+
}
|
1069
|
+
async firstPage(size, offset) {
|
1070
|
+
const newPage = await __privateGet$6(this, _page).firstPage(size, offset);
|
1071
|
+
return new _RecordArray(newPage);
|
1072
|
+
}
|
1073
|
+
async lastPage(size, offset) {
|
1074
|
+
const newPage = await __privateGet$6(this, _page).lastPage(size, offset);
|
1075
|
+
return new _RecordArray(newPage);
|
1076
|
+
}
|
1077
|
+
hasNextPage() {
|
1078
|
+
return __privateGet$6(this, _page).meta.page.more;
|
1079
|
+
}
|
1080
|
+
};
|
1081
|
+
let RecordArray = _RecordArray;
|
1082
|
+
_page = new WeakMap();
|
977
1083
|
|
978
1084
|
var __accessCheck$5 = (obj, member, msg) => {
|
979
1085
|
if (!member.has(obj))
|
@@ -988,7 +1094,7 @@ var __privateAdd$5 = (obj, member, value) => {
|
|
988
1094
|
throw TypeError("Cannot add the same private member more than once");
|
989
1095
|
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
990
1096
|
};
|
991
|
-
var __privateSet$
|
1097
|
+
var __privateSet$5 = (obj, member, value, setter) => {
|
992
1098
|
__accessCheck$5(obj, member, "write to private field");
|
993
1099
|
setter ? setter.call(obj, value) : member.set(obj, value);
|
994
1100
|
return value;
|
@@ -1000,12 +1106,12 @@ const _Query = class {
|
|
1000
1106
|
__privateAdd$5(this, _repository, void 0);
|
1001
1107
|
__privateAdd$5(this, _data, { filter: {} });
|
1002
1108
|
this.meta = { page: { cursor: "start", more: true } };
|
1003
|
-
this.records = [];
|
1004
|
-
__privateSet$
|
1109
|
+
this.records = new RecordArray(this, []);
|
1110
|
+
__privateSet$5(this, _table$1, table);
|
1005
1111
|
if (repository) {
|
1006
|
-
__privateSet$
|
1112
|
+
__privateSet$5(this, _repository, repository);
|
1007
1113
|
} else {
|
1008
|
-
__privateSet$
|
1114
|
+
__privateSet$5(this, _repository, this);
|
1009
1115
|
}
|
1010
1116
|
const parent = cleanParent(data, rawParent);
|
1011
1117
|
__privateGet$5(this, _data).filter = data.filter ?? parent?.filter ?? {};
|
@@ -1089,8 +1195,11 @@ const _Query = class {
|
|
1089
1195
|
}
|
1090
1196
|
}
|
1091
1197
|
async getMany(options = {}) {
|
1092
|
-
const
|
1093
|
-
|
1198
|
+
const page = await this.getPaginated(options);
|
1199
|
+
if (page.hasNextPage() && options.pagination?.size === void 0) {
|
1200
|
+
console.trace("Calling getMany does not return all results. Paginate to get all results or call getAll.");
|
1201
|
+
}
|
1202
|
+
return page.records;
|
1094
1203
|
}
|
1095
1204
|
async getAll(options = {}) {
|
1096
1205
|
const { batchSize = PAGINATION_MAX_SIZE, ...rest } = options;
|
@@ -1179,7 +1288,7 @@ var __privateAdd$4 = (obj, member, value) => {
|
|
1179
1288
|
throw TypeError("Cannot add the same private member more than once");
|
1180
1289
|
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
1181
1290
|
};
|
1182
|
-
var __privateSet$
|
1291
|
+
var __privateSet$4 = (obj, member, value, setter) => {
|
1183
1292
|
__accessCheck$4(obj, member, "write to private field");
|
1184
1293
|
setter ? setter.call(obj, value) : member.set(obj, value);
|
1185
1294
|
return value;
|
@@ -1188,7 +1297,7 @@ var __privateMethod$2 = (obj, member, method) => {
|
|
1188
1297
|
__accessCheck$4(obj, member, "access private method");
|
1189
1298
|
return method;
|
1190
1299
|
};
|
1191
|
-
var _table, _getFetchProps, _cache,
|
1300
|
+
var _table, _getFetchProps, _cache, _schemaTables$2, _insertRecordWithoutId, insertRecordWithoutId_fn, _insertRecordWithId, insertRecordWithId_fn, _bulkInsertTableRecords, bulkInsertTableRecords_fn, _updateRecordWithID, updateRecordWithID_fn, _upsertRecordWithID, upsertRecordWithID_fn, _deleteRecord, deleteRecord_fn, _invalidateCache, invalidateCache_fn, _setCacheRecord, setCacheRecord_fn, _getCacheRecord, getCacheRecord_fn, _setCacheQuery, setCacheQuery_fn, _getCacheQuery, getCacheQuery_fn, _getSchemaTables$1, getSchemaTables_fn$1;
|
1192
1301
|
class Repository extends Query {
|
1193
1302
|
}
|
1194
1303
|
class RestRepository extends Query {
|
@@ -1205,15 +1314,16 @@ class RestRepository extends Query {
|
|
1205
1314
|
__privateAdd$4(this, _getCacheRecord);
|
1206
1315
|
__privateAdd$4(this, _setCacheQuery);
|
1207
1316
|
__privateAdd$4(this, _getCacheQuery);
|
1208
|
-
__privateAdd$4(this,
|
1317
|
+
__privateAdd$4(this, _getSchemaTables$1);
|
1209
1318
|
__privateAdd$4(this, _table, void 0);
|
1210
1319
|
__privateAdd$4(this, _getFetchProps, void 0);
|
1211
1320
|
__privateAdd$4(this, _cache, void 0);
|
1212
|
-
__privateAdd$4(this,
|
1213
|
-
__privateSet$
|
1214
|
-
__privateSet$
|
1321
|
+
__privateAdd$4(this, _schemaTables$2, void 0);
|
1322
|
+
__privateSet$4(this, _table, options.table);
|
1323
|
+
__privateSet$4(this, _getFetchProps, options.pluginOptions.getFetchProps);
|
1215
1324
|
this.db = options.db;
|
1216
|
-
__privateSet$
|
1325
|
+
__privateSet$4(this, _cache, options.pluginOptions.cache);
|
1326
|
+
__privateSet$4(this, _schemaTables$2, options.schemaTables);
|
1217
1327
|
}
|
1218
1328
|
async create(a, b) {
|
1219
1329
|
if (Array.isArray(a)) {
|
@@ -1248,20 +1358,22 @@ class RestRepository extends Query {
|
|
1248
1358
|
if (Array.isArray(a)) {
|
1249
1359
|
if (a.length === 0)
|
1250
1360
|
return [];
|
1251
|
-
|
1361
|
+
const ids = a.map((item) => isString(item) ? item : item.id).filter((id2) => isString(id2));
|
1362
|
+
return this.getAll({ filter: { id: { $any: ids } } });
|
1252
1363
|
}
|
1253
|
-
|
1254
|
-
|
1364
|
+
const id = isString(a) ? a : a.id;
|
1365
|
+
if (isString(id)) {
|
1366
|
+
const cacheRecord = await __privateMethod$2(this, _getCacheRecord, getCacheRecord_fn).call(this, id);
|
1255
1367
|
if (cacheRecord)
|
1256
1368
|
return cacheRecord;
|
1257
1369
|
const fetchProps = await __privateGet$4(this, _getFetchProps).call(this);
|
1258
1370
|
try {
|
1259
1371
|
const response = await getRecord({
|
1260
|
-
pathParams: { workspace: "{workspaceId}", dbBranchName: "{dbBranch}", tableName: __privateGet$4(this, _table), recordId:
|
1372
|
+
pathParams: { workspace: "{workspaceId}", dbBranchName: "{dbBranch}", tableName: __privateGet$4(this, _table), recordId: id },
|
1261
1373
|
...fetchProps
|
1262
1374
|
});
|
1263
|
-
const
|
1264
|
-
return initObject(this.db,
|
1375
|
+
const schemaTables = await __privateMethod$2(this, _getSchemaTables$1, getSchemaTables_fn$1).call(this);
|
1376
|
+
return initObject(this.db, schemaTables, __privateGet$4(this, _table), response);
|
1265
1377
|
} catch (e) {
|
1266
1378
|
if (isObject(e) && e.status === 404) {
|
1267
1379
|
return null;
|
@@ -1350,8 +1462,8 @@ class RestRepository extends Query {
|
|
1350
1462
|
},
|
1351
1463
|
...fetchProps
|
1352
1464
|
});
|
1353
|
-
const
|
1354
|
-
return records.map((item) => initObject(this.db,
|
1465
|
+
const schemaTables = await __privateMethod$2(this, _getSchemaTables$1, getSchemaTables_fn$1).call(this);
|
1466
|
+
return records.map((item) => initObject(this.db, schemaTables, __privateGet$4(this, _table), item));
|
1355
1467
|
}
|
1356
1468
|
async query(query) {
|
1357
1469
|
const cacheQuery = await __privateMethod$2(this, _getCacheQuery, getCacheQuery_fn).call(this, query);
|
@@ -1370,8 +1482,8 @@ class RestRepository extends Query {
|
|
1370
1482
|
body,
|
1371
1483
|
...fetchProps
|
1372
1484
|
});
|
1373
|
-
const
|
1374
|
-
const records = objects.map((record) => initObject(this.db,
|
1485
|
+
const schemaTables = await __privateMethod$2(this, _getSchemaTables$1, getSchemaTables_fn$1).call(this);
|
1486
|
+
const records = objects.map((record) => initObject(this.db, schemaTables, __privateGet$4(this, _table), record));
|
1375
1487
|
await __privateMethod$2(this, _setCacheQuery, setCacheQuery_fn).call(this, query, meta, records);
|
1376
1488
|
return new Page(query, meta, records);
|
1377
1489
|
}
|
@@ -1379,7 +1491,7 @@ class RestRepository extends Query {
|
|
1379
1491
|
_table = new WeakMap();
|
1380
1492
|
_getFetchProps = new WeakMap();
|
1381
1493
|
_cache = new WeakMap();
|
1382
|
-
|
1494
|
+
_schemaTables$2 = new WeakMap();
|
1383
1495
|
_insertRecordWithoutId = new WeakSet();
|
1384
1496
|
insertRecordWithoutId_fn = async function(object) {
|
1385
1497
|
const fetchProps = await __privateGet$4(this, _getFetchProps).call(this);
|
@@ -1424,16 +1536,20 @@ _bulkInsertTableRecords = new WeakSet();
|
|
1424
1536
|
bulkInsertTableRecords_fn = async function(objects) {
|
1425
1537
|
const fetchProps = await __privateGet$4(this, _getFetchProps).call(this);
|
1426
1538
|
const records = objects.map((object) => transformObjectLinks(object));
|
1427
|
-
const
|
1539
|
+
const { recordIDs } = await bulkInsertTableRecords({
|
1428
1540
|
pathParams: { workspace: "{workspaceId}", dbBranchName: "{dbBranch}", tableName: __privateGet$4(this, _table) },
|
1429
1541
|
body: { records },
|
1430
1542
|
...fetchProps
|
1431
1543
|
});
|
1432
|
-
const finalObjects = await this.
|
1544
|
+
const finalObjects = await this.read(recordIDs);
|
1433
1545
|
if (finalObjects.length !== objects.length) {
|
1434
1546
|
throw new Error("The server failed to save some records");
|
1435
1547
|
}
|
1436
|
-
|
1548
|
+
const dictionary = finalObjects.reduce((acc, object) => {
|
1549
|
+
acc[object.id] = object;
|
1550
|
+
return acc;
|
1551
|
+
}, {});
|
1552
|
+
return recordIDs.map((id) => dictionary[id]);
|
1437
1553
|
};
|
1438
1554
|
_updateRecordWithID = new WeakSet();
|
1439
1555
|
updateRecordWithID_fn = async function(recordId, object) {
|
@@ -1509,17 +1625,17 @@ getCacheQuery_fn = async function(query) {
|
|
1509
1625
|
const hasExpired = result.date.getTime() + ttl < Date.now();
|
1510
1626
|
return hasExpired ? null : result;
|
1511
1627
|
};
|
1512
|
-
|
1513
|
-
|
1514
|
-
if (__privateGet$4(this,
|
1515
|
-
return __privateGet$4(this,
|
1628
|
+
_getSchemaTables$1 = new WeakSet();
|
1629
|
+
getSchemaTables_fn$1 = async function() {
|
1630
|
+
if (__privateGet$4(this, _schemaTables$2))
|
1631
|
+
return __privateGet$4(this, _schemaTables$2);
|
1516
1632
|
const fetchProps = await __privateGet$4(this, _getFetchProps).call(this);
|
1517
1633
|
const { schema } = await getBranchDetails({
|
1518
1634
|
pathParams: { workspace: "{workspaceId}", dbBranchName: "{dbBranch}" },
|
1519
1635
|
...fetchProps
|
1520
1636
|
});
|
1521
|
-
__privateSet$
|
1522
|
-
return schema;
|
1637
|
+
__privateSet$4(this, _schemaTables$2, schema.tables);
|
1638
|
+
return schema.tables;
|
1523
1639
|
};
|
1524
1640
|
const transformObjectLinks = (object) => {
|
1525
1641
|
return Object.entries(object).reduce((acc, [key, value]) => {
|
@@ -1528,11 +1644,11 @@ const transformObjectLinks = (object) => {
|
|
1528
1644
|
return { ...acc, [key]: isIdentifiable(value) ? value.id : value };
|
1529
1645
|
}, {});
|
1530
1646
|
};
|
1531
|
-
const initObject = (db,
|
1647
|
+
const initObject = (db, schemaTables, table, object) => {
|
1532
1648
|
const result = {};
|
1533
1649
|
const { xata, ...rest } = object ?? {};
|
1534
1650
|
Object.assign(result, rest);
|
1535
|
-
const { columns } =
|
1651
|
+
const { columns } = schemaTables.find(({ name }) => name === table) ?? {};
|
1536
1652
|
if (!columns)
|
1537
1653
|
console.error(`Table ${table} not found in schema`);
|
1538
1654
|
for (const column of columns ?? []) {
|
@@ -1552,7 +1668,7 @@ const initObject = (db, schema, table, object) => {
|
|
1552
1668
|
if (!linkTable) {
|
1553
1669
|
console.error(`Failed to parse link for field ${column.name}`);
|
1554
1670
|
} else if (isObject(value)) {
|
1555
|
-
result[column.name] = initObject(db,
|
1671
|
+
result[column.name] = initObject(db, schemaTables, linkTable, value);
|
1556
1672
|
}
|
1557
1673
|
break;
|
1558
1674
|
}
|
@@ -1599,7 +1715,7 @@ var __privateAdd$3 = (obj, member, value) => {
|
|
1599
1715
|
throw TypeError("Cannot add the same private member more than once");
|
1600
1716
|
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
1601
1717
|
};
|
1602
|
-
var __privateSet$
|
1718
|
+
var __privateSet$3 = (obj, member, value, setter) => {
|
1603
1719
|
__accessCheck$3(obj, member, "write to private field");
|
1604
1720
|
setter ? setter.call(obj, value) : member.set(obj, value);
|
1605
1721
|
return value;
|
@@ -1608,7 +1724,7 @@ var _map;
|
|
1608
1724
|
class SimpleCache {
|
1609
1725
|
constructor(options = {}) {
|
1610
1726
|
__privateAdd$3(this, _map, void 0);
|
1611
|
-
__privateSet$
|
1727
|
+
__privateSet$3(this, _map, /* @__PURE__ */ new Map());
|
1612
1728
|
this.capacity = options.max ?? 500;
|
1613
1729
|
this.cacheRecords = options.cacheRecords ?? true;
|
1614
1730
|
this.defaultQueryTTL = options.defaultQueryTTL ?? 60 * 1e3;
|
@@ -1668,12 +1784,18 @@ var __privateAdd$2 = (obj, member, value) => {
|
|
1668
1784
|
throw TypeError("Cannot add the same private member more than once");
|
1669
1785
|
member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
1670
1786
|
};
|
1671
|
-
var
|
1787
|
+
var __privateSet$2 = (obj, member, value, setter) => {
|
1788
|
+
__accessCheck$2(obj, member, "write to private field");
|
1789
|
+
setter ? setter.call(obj, value) : member.set(obj, value);
|
1790
|
+
return value;
|
1791
|
+
};
|
1792
|
+
var _tables, _schemaTables$1;
|
1672
1793
|
class SchemaPlugin extends XataPlugin {
|
1673
|
-
constructor(
|
1794
|
+
constructor(schemaTables) {
|
1674
1795
|
super();
|
1675
|
-
this.tableNames = tableNames;
|
1676
1796
|
__privateAdd$2(this, _tables, {});
|
1797
|
+
__privateAdd$2(this, _schemaTables$1, void 0);
|
1798
|
+
__privateSet$2(this, _schemaTables$1, schemaTables);
|
1677
1799
|
}
|
1678
1800
|
build(pluginOptions) {
|
1679
1801
|
const db = new Proxy({}, {
|
@@ -1686,13 +1808,15 @@ class SchemaPlugin extends XataPlugin {
|
|
1686
1808
|
return __privateGet$2(this, _tables)[table];
|
1687
1809
|
}
|
1688
1810
|
});
|
1689
|
-
|
1690
|
-
|
1811
|
+
const tableNames = __privateGet$2(this, _schemaTables$1)?.map(({ name }) => name) ?? [];
|
1812
|
+
for (const table of tableNames) {
|
1813
|
+
db[table] = new RestRepository({ db, pluginOptions, table, schemaTables: __privateGet$2(this, _schemaTables$1) });
|
1691
1814
|
}
|
1692
1815
|
return db;
|
1693
1816
|
}
|
1694
1817
|
}
|
1695
1818
|
_tables = new WeakMap();
|
1819
|
+
_schemaTables$1 = new WeakMap();
|
1696
1820
|
|
1697
1821
|
var __accessCheck$1 = (obj, member, msg) => {
|
1698
1822
|
if (!member.has(obj))
|
@@ -1716,39 +1840,40 @@ var __privateMethod$1 = (obj, member, method) => {
|
|
1716
1840
|
__accessCheck$1(obj, member, "access private method");
|
1717
1841
|
return method;
|
1718
1842
|
};
|
1719
|
-
var
|
1843
|
+
var _schemaTables, _search, search_fn, _getSchemaTables, getSchemaTables_fn;
|
1720
1844
|
class SearchPlugin extends XataPlugin {
|
1721
|
-
constructor(db) {
|
1845
|
+
constructor(db, schemaTables) {
|
1722
1846
|
super();
|
1723
1847
|
this.db = db;
|
1724
1848
|
__privateAdd$1(this, _search);
|
1725
|
-
__privateAdd$1(this,
|
1726
|
-
__privateAdd$1(this,
|
1849
|
+
__privateAdd$1(this, _getSchemaTables);
|
1850
|
+
__privateAdd$1(this, _schemaTables, void 0);
|
1851
|
+
__privateSet$1(this, _schemaTables, schemaTables);
|
1727
1852
|
}
|
1728
1853
|
build({ getFetchProps }) {
|
1729
1854
|
return {
|
1730
1855
|
all: async (query, options = {}) => {
|
1731
1856
|
const records = await __privateMethod$1(this, _search, search_fn).call(this, query, options, getFetchProps);
|
1732
|
-
const
|
1857
|
+
const schemaTables = await __privateMethod$1(this, _getSchemaTables, getSchemaTables_fn).call(this, getFetchProps);
|
1733
1858
|
return records.map((record) => {
|
1734
1859
|
const { table = "orphan" } = record.xata;
|
1735
|
-
return { table, record: initObject(this.db,
|
1860
|
+
return { table, record: initObject(this.db, schemaTables, table, record) };
|
1736
1861
|
});
|
1737
1862
|
},
|
1738
1863
|
byTable: async (query, options = {}) => {
|
1739
1864
|
const records = await __privateMethod$1(this, _search, search_fn).call(this, query, options, getFetchProps);
|
1740
|
-
const
|
1865
|
+
const schemaTables = await __privateMethod$1(this, _getSchemaTables, getSchemaTables_fn).call(this, getFetchProps);
|
1741
1866
|
return records.reduce((acc, record) => {
|
1742
1867
|
const { table = "orphan" } = record.xata;
|
1743
1868
|
const items = acc[table] ?? [];
|
1744
|
-
const item = initObject(this.db,
|
1869
|
+
const item = initObject(this.db, schemaTables, table, record);
|
1745
1870
|
return { ...acc, [table]: [...items, item] };
|
1746
1871
|
}, {});
|
1747
1872
|
}
|
1748
1873
|
};
|
1749
1874
|
}
|
1750
1875
|
}
|
1751
|
-
|
1876
|
+
_schemaTables = new WeakMap();
|
1752
1877
|
_search = new WeakSet();
|
1753
1878
|
search_fn = async function(query, options, getFetchProps) {
|
1754
1879
|
const fetchProps = await getFetchProps();
|
@@ -1760,38 +1885,32 @@ search_fn = async function(query, options, getFetchProps) {
|
|
1760
1885
|
});
|
1761
1886
|
return records;
|
1762
1887
|
};
|
1763
|
-
|
1764
|
-
|
1765
|
-
if (__privateGet$1(this,
|
1766
|
-
return __privateGet$1(this,
|
1888
|
+
_getSchemaTables = new WeakSet();
|
1889
|
+
getSchemaTables_fn = async function(getFetchProps) {
|
1890
|
+
if (__privateGet$1(this, _schemaTables))
|
1891
|
+
return __privateGet$1(this, _schemaTables);
|
1767
1892
|
const fetchProps = await getFetchProps();
|
1768
1893
|
const { schema } = await getBranchDetails({
|
1769
1894
|
pathParams: { workspace: "{workspaceId}", dbBranchName: "{dbBranch}" },
|
1770
1895
|
...fetchProps
|
1771
1896
|
});
|
1772
|
-
__privateSet$1(this,
|
1773
|
-
return schema;
|
1897
|
+
__privateSet$1(this, _schemaTables, schema.tables);
|
1898
|
+
return schema.tables;
|
1774
1899
|
};
|
1775
1900
|
|
1776
1901
|
const isBranchStrategyBuilder = (strategy) => {
|
1777
1902
|
return typeof strategy === "function";
|
1778
1903
|
};
|
1779
1904
|
|
1780
|
-
const envBranchNames = [
|
1781
|
-
"XATA_BRANCH",
|
1782
|
-
"VERCEL_GIT_COMMIT_REF",
|
1783
|
-
"CF_PAGES_BRANCH",
|
1784
|
-
"BRANCH"
|
1785
|
-
];
|
1786
1905
|
async function getCurrentBranchName(options) {
|
1787
|
-
const
|
1788
|
-
if (
|
1789
|
-
const details = await getDatabaseBranch(
|
1906
|
+
const { branch, envBranch } = getEnvironment();
|
1907
|
+
if (branch) {
|
1908
|
+
const details = await getDatabaseBranch(branch, options);
|
1790
1909
|
if (details)
|
1791
|
-
return
|
1792
|
-
console.warn(`Branch ${
|
1910
|
+
return branch;
|
1911
|
+
console.warn(`Branch ${branch} not found in Xata. Ignoring...`);
|
1793
1912
|
}
|
1794
|
-
const gitBranch = await getGitBranch();
|
1913
|
+
const gitBranch = envBranch || await getGitBranch();
|
1795
1914
|
return resolveXataBranch(gitBranch, options);
|
1796
1915
|
}
|
1797
1916
|
async function getCurrentBranchDetails(options) {
|
@@ -1807,13 +1926,14 @@ async function resolveXataBranch(gitBranch, options) {
|
|
1807
1926
|
throw new Error("An API key was not defined. Either set the XATA_API_KEY env variable or pass the argument explicitely");
|
1808
1927
|
const [protocol, , host, , dbName] = databaseURL.split("/");
|
1809
1928
|
const [workspace] = host.split(".");
|
1929
|
+
const { fallbackBranch } = getEnvironment();
|
1810
1930
|
const { branch } = await resolveBranch({
|
1811
1931
|
apiKey,
|
1812
1932
|
apiUrl: databaseURL,
|
1813
1933
|
fetchImpl: getFetchImplementation(options?.fetchImpl),
|
1814
1934
|
workspacesApiUrl: `${protocol}//${host}`,
|
1815
1935
|
pathParams: { dbName, workspace },
|
1816
|
-
queryParams: { gitBranch, fallbackBranch
|
1936
|
+
queryParams: { gitBranch, fallbackBranch }
|
1817
1937
|
});
|
1818
1938
|
return branch;
|
1819
1939
|
}
|
@@ -1833,10 +1953,7 @@ async function getDatabaseBranch(branch, options) {
|
|
1833
1953
|
apiUrl: databaseURL,
|
1834
1954
|
fetchImpl: getFetchImplementation(options?.fetchImpl),
|
1835
1955
|
workspacesApiUrl: `${protocol}//${host}`,
|
1836
|
-
pathParams: {
|
1837
|
-
dbBranchName,
|
1838
|
-
workspace
|
1839
|
-
}
|
1956
|
+
pathParams: { dbBranchName, workspace }
|
1840
1957
|
});
|
1841
1958
|
} catch (err) {
|
1842
1959
|
if (isObject(err) && err.status === 404)
|
@@ -1844,21 +1961,10 @@ async function getDatabaseBranch(branch, options) {
|
|
1844
1961
|
throw err;
|
1845
1962
|
}
|
1846
1963
|
}
|
1847
|
-
function getBranchByEnvVariable() {
|
1848
|
-
for (const name of envBranchNames) {
|
1849
|
-
const value = getEnvVariable(name);
|
1850
|
-
if (value) {
|
1851
|
-
return value;
|
1852
|
-
}
|
1853
|
-
}
|
1854
|
-
try {
|
1855
|
-
return XATA_BRANCH;
|
1856
|
-
} catch (err) {
|
1857
|
-
}
|
1858
|
-
}
|
1859
1964
|
function getDatabaseURL() {
|
1860
1965
|
try {
|
1861
|
-
|
1966
|
+
const { databaseURL } = getEnvironment();
|
1967
|
+
return databaseURL;
|
1862
1968
|
} catch (err) {
|
1863
1969
|
return void 0;
|
1864
1970
|
}
|
@@ -1889,7 +1995,7 @@ var __privateMethod = (obj, member, method) => {
|
|
1889
1995
|
const buildClient = (plugins) => {
|
1890
1996
|
var _branch, _parseOptions, parseOptions_fn, _getFetchProps, getFetchProps_fn, _evaluateBranch, evaluateBranch_fn, _a;
|
1891
1997
|
return _a = class {
|
1892
|
-
constructor(options = {},
|
1998
|
+
constructor(options = {}, schemaTables) {
|
1893
1999
|
__privateAdd(this, _parseOptions);
|
1894
2000
|
__privateAdd(this, _getFetchProps);
|
1895
2001
|
__privateAdd(this, _evaluateBranch);
|
@@ -1899,8 +2005,8 @@ const buildClient = (plugins) => {
|
|
1899
2005
|
getFetchProps: () => __privateMethod(this, _getFetchProps, getFetchProps_fn).call(this, safeOptions),
|
1900
2006
|
cache: safeOptions.cache
|
1901
2007
|
};
|
1902
|
-
const db = new SchemaPlugin(
|
1903
|
-
const search = new SearchPlugin(db).build(pluginOptions);
|
2008
|
+
const db = new SchemaPlugin(schemaTables).build(pluginOptions);
|
2009
|
+
const search = new SearchPlugin(db, schemaTables).build(pluginOptions);
|
1904
2010
|
this.db = db;
|
1905
2011
|
this.search = search;
|
1906
2012
|
for (const [key, namespace] of Object.entries(plugins ?? {})) {
|
@@ -1973,5 +2079,5 @@ class XataError extends Error {
|
|
1973
2079
|
}
|
1974
2080
|
}
|
1975
2081
|
|
1976
|
-
export { BaseClient, operationsByTag as Operations, PAGINATION_DEFAULT_OFFSET, PAGINATION_DEFAULT_SIZE, PAGINATION_MAX_OFFSET, PAGINATION_MAX_SIZE, Page, Query, Repository, RestRepository, SchemaPlugin, SearchPlugin, SimpleCache, XataApiClient, XataApiPlugin, XataError, XataPlugin, acceptWorkspaceMemberInvite, addGitBranchesEntry, addTableColumn, buildClient, bulkInsertTableRecords, cancelWorkspaceMemberInvite, contains, createBranch, createDatabase, createTable, createUserAPIKey, createWorkspace, deleteBranch, deleteColumn, deleteDatabase, deleteRecord, deleteTable, deleteUser, deleteUserAPIKey, deleteWorkspace, endsWith, executeBranchMigrationPlan, exists, ge, getAPIKey, getBranchDetails, getBranchList, getBranchMetadata, getBranchMigrationHistory, getBranchMigrationPlan, getBranchStats, getColumn, getCurrentBranchDetails, getCurrentBranchName, getDatabaseList, getDatabaseURL, getGitBranchesMapping, getRecord, getTableColumns, getTableSchema, getUser, getUserAPIKeys, getWorkspace, getWorkspaceMembersList, getWorkspacesList, gt, gte, includes, includesAll, includesAny, includesNone, insertRecord, insertRecordWithID, inviteWorkspaceMember, is, isCursorPaginationOptions, isIdentifiable, isNot, isXataRecord, le, lt, lte, notExists, operationsByTag, pattern, queryTable, removeGitBranchesEntry, removeWorkspaceMember, resendWorkspaceMemberInvite, resolveBranch, searchBranch, searchTable, setTableSchema, startsWith, updateBranchMetadata, updateColumn, updateRecordWithID, updateTable, updateUser, updateWorkspace, updateWorkspaceMemberRole, upsertRecordWithID };
|
2082
|
+
export { BaseClient, operationsByTag as Operations, PAGINATION_DEFAULT_OFFSET, PAGINATION_DEFAULT_SIZE, PAGINATION_MAX_OFFSET, PAGINATION_MAX_SIZE, Page, Query, RecordArray, Repository, RestRepository, SchemaPlugin, SearchPlugin, SimpleCache, XataApiClient, XataApiPlugin, XataError, XataPlugin, acceptWorkspaceMemberInvite, addGitBranchesEntry, addTableColumn, buildClient, bulkInsertTableRecords, cancelWorkspaceMemberInvite, contains, createBranch, createDatabase, createTable, createUserAPIKey, createWorkspace, deleteBranch, deleteColumn, deleteDatabase, deleteRecord, deleteTable, deleteUser, deleteUserAPIKey, deleteWorkspace, endsWith, executeBranchMigrationPlan, exists, ge, getAPIKey, getBranchDetails, getBranchList, getBranchMetadata, getBranchMigrationHistory, getBranchMigrationPlan, getBranchStats, getColumn, getCurrentBranchDetails, getCurrentBranchName, getDatabaseList, getDatabaseURL, getGitBranchesMapping, getRecord, getTableColumns, getTableSchema, getUser, getUserAPIKeys, getWorkspace, getWorkspaceMembersList, getWorkspacesList, gt, gte, includes, includesAll, includesAny, includesNone, insertRecord, insertRecordWithID, inviteWorkspaceMember, is, isCursorPaginationOptions, isIdentifiable, isNot, isXataRecord, le, lt, lte, notExists, operationsByTag, pattern, queryTable, removeGitBranchesEntry, removeWorkspaceMember, resendWorkspaceMemberInvite, resolveBranch, searchBranch, searchTable, setTableSchema, startsWith, updateBranchMetadata, updateColumn, updateRecordWithID, updateTable, updateUser, updateWorkspace, updateWorkspaceMemberRole, upsertRecordWithID };
|
1977
2083
|
//# sourceMappingURL=index.mjs.map
|