@xata.io/client 0.0.0-beta.2b5cc25 → 0.0.0-beta.343bbfe

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.
Files changed (53) hide show
  1. package/.eslintrc.cjs +13 -0
  2. package/CHANGELOG.md +74 -0
  3. package/dist/api/client.d.ts +2 -2
  4. package/dist/api/client.js +33 -17
  5. package/dist/api/components.d.ts +34 -37
  6. package/dist/api/components.js +34 -37
  7. package/dist/api/fetcher.d.ts +15 -0
  8. package/dist/api/fetcher.js +23 -22
  9. package/dist/api/providers.js +3 -2
  10. package/dist/api/responses.d.ts +6 -0
  11. package/dist/client.d.ts +39 -0
  12. package/dist/client.js +124 -0
  13. package/dist/index.d.ts +3 -0
  14. package/dist/index.js +3 -0
  15. package/dist/namespace.d.ts +7 -0
  16. package/dist/namespace.js +6 -0
  17. package/dist/schema/filters.d.ts +93 -17
  18. package/dist/schema/filters.js +0 -22
  19. package/dist/schema/filters.spec.d.ts +1 -0
  20. package/dist/schema/filters.spec.js +177 -0
  21. package/dist/schema/index.d.ts +17 -2
  22. package/dist/schema/index.js +29 -6
  23. package/dist/schema/operators.d.ts +26 -24
  24. package/dist/schema/operators.js +13 -11
  25. package/dist/schema/pagination.d.ts +14 -14
  26. package/dist/schema/pagination.js +0 -1
  27. package/dist/schema/query.d.ts +41 -51
  28. package/dist/schema/query.js +25 -37
  29. package/dist/schema/record.d.ts +28 -3
  30. package/dist/schema/record.js +11 -0
  31. package/dist/schema/repository.d.ts +90 -65
  32. package/dist/schema/repository.js +206 -202
  33. package/dist/schema/selection.d.ts +24 -13
  34. package/dist/schema/selection.spec.d.ts +1 -0
  35. package/dist/schema/selection.spec.js +204 -0
  36. package/dist/schema/sorting.d.ts +17 -0
  37. package/dist/schema/sorting.js +28 -0
  38. package/dist/schema/sorting.spec.d.ts +1 -0
  39. package/dist/schema/sorting.spec.js +11 -0
  40. package/dist/search/index.d.ts +20 -0
  41. package/dist/search/index.js +30 -0
  42. package/dist/util/branches.d.ts +5 -0
  43. package/dist/util/branches.js +7 -0
  44. package/dist/util/config.d.ts +11 -0
  45. package/dist/util/config.js +121 -0
  46. package/dist/util/environment.d.ts +5 -0
  47. package/dist/util/environment.js +68 -0
  48. package/dist/util/fetch.d.ts +2 -0
  49. package/dist/util/fetch.js +13 -0
  50. package/dist/util/lang.d.ts +3 -0
  51. package/dist/util/lang.js +13 -1
  52. package/dist/util/types.d.ts +23 -1
  53. package/package.json +5 -2
@@ -19,262 +19,266 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
19
19
  if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
20
20
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
21
21
  };
22
- var __asyncValues = (this && this.__asyncValues) || function (o) {
23
- if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
24
- var m = o[Symbol.asyncIterator], i;
25
- return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
26
- function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
27
- function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
28
- };
29
- var _RestRepository_instances, _RestRepository_client, _RestRepository_fetch, _RestRepository_table, _RestRepository_getFetchProps, _BaseClient_links, _BaseClient_branch;
22
+ var _RestRepository_instances, _RestRepository_table, _RestRepository_links, _RestRepository_getFetchProps, _RestRepository_schemaNamespace, _RestRepository_insertRecordWithoutId, _RestRepository_insertRecordWithId, _RestRepository_bulkInsertTableRecords, _RestRepository_updateRecordWithID, _RestRepository_upsertRecordWithID, _RestRepository_deleteRecord, _RestRepository_initObject;
30
23
  Object.defineProperty(exports, "__esModule", { value: true });
31
- exports.BaseClient = exports.RestRespositoryFactory = exports.RestRepository = exports.Repository = void 0;
24
+ exports.RestRepository = exports.Repository = void 0;
32
25
  const api_1 = require("../api");
33
- const filters_1 = require("./filters");
26
+ const lang_1 = require("../util/lang");
34
27
  const pagination_1 = require("./pagination");
35
28
  const query_1 = require("./query");
29
+ const record_1 = require("./record");
30
+ const sorting_1 = require("./sorting");
36
31
  /**
37
32
  * Common interface for performing operations on a table.
38
33
  */
39
34
  class Repository extends query_1.Query {
40
35
  }
41
36
  exports.Repository = Repository;
42
- class RestRepository extends Repository {
43
- constructor(client, table) {
44
- super(null, table, {});
37
+ class RestRepository extends query_1.Query {
38
+ constructor(options) {
39
+ var _a;
40
+ super(null, options.table, {});
45
41
  _RestRepository_instances.add(this);
46
- _RestRepository_client.set(this, void 0);
47
- _RestRepository_fetch.set(this, void 0);
48
42
  _RestRepository_table.set(this, void 0);
49
- __classPrivateFieldSet(this, _RestRepository_client, client, "f");
50
- __classPrivateFieldSet(this, _RestRepository_table, table, "f");
51
- // TODO: Remove when integrating with API client
52
- const fetchImpl = typeof fetch !== 'undefined' ? fetch : __classPrivateFieldGet(this, _RestRepository_client, "f").options.fetch;
53
- if (!fetchImpl) {
54
- throw new Error(`The \`fetch\` option passed to the Xata client is resolving to a falsy value and may not be correctly imported.`);
55
- }
56
- __classPrivateFieldSet(this, _RestRepository_fetch, fetchImpl, "f");
43
+ _RestRepository_links.set(this, void 0);
44
+ _RestRepository_getFetchProps.set(this, void 0);
45
+ _RestRepository_schemaNamespace.set(this, void 0);
46
+ __classPrivateFieldSet(this, _RestRepository_table, options.table, "f");
47
+ __classPrivateFieldSet(this, _RestRepository_links, (_a = options.links) !== null && _a !== void 0 ? _a : {}, "f");
48
+ __classPrivateFieldSet(this, _RestRepository_getFetchProps, options.getFetchProps, "f");
49
+ __classPrivateFieldSet(this, _RestRepository_schemaNamespace, options.schemaNamespace, "f");
57
50
  }
58
- create(object) {
51
+ create(a, b) {
59
52
  return __awaiter(this, void 0, void 0, function* () {
60
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
61
- const record = transformObjectLinks(object);
62
- const response = yield (0, api_1.insertRecord)(Object.assign({ pathParams: {
63
- workspace: '{workspaceId}',
64
- dbBranchName: '{dbBranch}',
65
- tableName: __classPrivateFieldGet(this, _RestRepository_table, "f")
66
- }, body: record }, fetchProps));
67
- const finalObject = yield this.read(response.id);
68
- if (!finalObject) {
69
- throw new Error('The server failed to save the record');
53
+ // Create many records
54
+ if (Array.isArray(a)) {
55
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_bulkInsertTableRecords).call(this, a);
70
56
  }
71
- return finalObject;
72
- });
73
- }
74
- createMany(objects) {
75
- return __awaiter(this, void 0, void 0, function* () {
76
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
77
- const records = objects.map((object) => transformObjectLinks(object));
78
- const response = yield (0, api_1.bulkInsertTableRecords)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f") }, body: { records } }, fetchProps));
79
- const finalObjects = yield this.any(...response.recordIDs.map((id) => this.filter('id', id))).getAll();
80
- if (finalObjects.length !== objects.length) {
81
- throw new Error('The server failed to save some records');
57
+ // Create one record with id as param
58
+ if ((0, lang_1.isString)(a) && (0, lang_1.isObject)(b)) {
59
+ if (a === '')
60
+ throw new Error("The id can't be empty");
61
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_insertRecordWithId).call(this, a, b);
62
+ }
63
+ // Create one record with id as property
64
+ if ((0, lang_1.isObject)(a) && (0, lang_1.isString)(a.id)) {
65
+ if (a.id === '')
66
+ throw new Error("The id can't be empty");
67
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_insertRecordWithId).call(this, a.id, Object.assign(Object.assign({}, a), { id: undefined }));
68
+ }
69
+ // Create one record without id
70
+ if ((0, lang_1.isObject)(a)) {
71
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_insertRecordWithoutId).call(this, a);
82
72
  }
83
- return finalObjects;
73
+ throw new Error('Invalid arguments for create method');
84
74
  });
85
75
  }
76
+ // TODO: Add column support: https://github.com/xataio/openapi/issues/139
86
77
  read(recordId) {
87
78
  return __awaiter(this, void 0, void 0, function* () {
88
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
89
- const response = yield (0, api_1.getRecord)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId } }, fetchProps));
90
- return __classPrivateFieldGet(this, _RestRepository_client, "f").initObject(__classPrivateFieldGet(this, _RestRepository_table, "f"), response);
79
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
80
+ try {
81
+ const response = yield (0, api_1.getRecord)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId } }, fetchProps));
82
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_initObject).call(this, __classPrivateFieldGet(this, _RestRepository_table, "f"), response);
83
+ }
84
+ catch (e) {
85
+ if ((0, lang_1.isObject)(e) && e.status === 404) {
86
+ return null;
87
+ }
88
+ throw e;
89
+ }
91
90
  });
92
91
  }
93
- update(recordId, object) {
92
+ update(a, b) {
94
93
  return __awaiter(this, void 0, void 0, function* () {
95
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
96
- const response = yield (0, api_1.updateRecordWithID)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId }, body: object }, fetchProps));
97
- const item = yield this.read(response.id);
98
- if (!item)
99
- throw new Error('The server failed to save the record');
100
- return item;
94
+ // Update many records
95
+ if (Array.isArray(a)) {
96
+ if (a.length > 100) {
97
+ // TODO: Implement bulk update when API has support for it
98
+ console.warn('Bulk update operation is not optimized in the Xata API yet, this request might be slow');
99
+ }
100
+ return Promise.all(a.map((object) => this.update(object)));
101
+ }
102
+ // Update one record with id as param
103
+ if ((0, lang_1.isString)(a) && (0, lang_1.isObject)(b)) {
104
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_updateRecordWithID).call(this, a, b);
105
+ }
106
+ // Update one record with id as property
107
+ if ((0, lang_1.isObject)(a) && (0, lang_1.isString)(a.id)) {
108
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_updateRecordWithID).call(this, a.id, Object.assign(Object.assign({}, a), { id: undefined }));
109
+ }
110
+ throw new Error('Invalid arguments for update method');
101
111
  });
102
112
  }
103
- insert(recordId, object) {
113
+ createOrUpdate(a, b) {
104
114
  return __awaiter(this, void 0, void 0, function* () {
105
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
106
- const record = transformObjectLinks(object);
107
- const response = yield (0, api_1.insertRecordWithID)(Object.assign({ pathParams: {
108
- workspace: '{workspaceId}',
109
- dbBranchName: '{dbBranch}',
110
- tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"),
111
- recordId
112
- }, body: record }, fetchProps));
113
- const finalObject = yield this.read(response.id);
114
- if (!finalObject) {
115
- throw new Error('The server failed to save the record');
115
+ // Create or update many records
116
+ if (Array.isArray(a)) {
117
+ if (a.length > 100) {
118
+ // TODO: Implement bulk update when API has support for it
119
+ console.warn('Bulk update operation is not optimized in the Xata API yet, this request might be slow');
120
+ }
121
+ return Promise.all(a.map((object) => this.createOrUpdate(object)));
122
+ }
123
+ // Create or update one record with id as param
124
+ if ((0, lang_1.isString)(a) && (0, lang_1.isObject)(b)) {
125
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_upsertRecordWithID).call(this, a, b);
126
+ }
127
+ // Create or update one record with id as property
128
+ if ((0, lang_1.isObject)(a) && (0, lang_1.isString)(a.id)) {
129
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_upsertRecordWithID).call(this, a.id, Object.assign(Object.assign({}, a), { id: undefined }));
116
130
  }
117
- return finalObject;
131
+ throw new Error('Invalid arguments for createOrUpdate method');
118
132
  });
119
133
  }
120
- updateOrInsert(recordId, object) {
134
+ delete(recordId) {
121
135
  return __awaiter(this, void 0, void 0, function* () {
122
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
123
- const response = yield (0, api_1.upsertRecordWithID)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId }, body: object }, fetchProps));
124
- const item = yield this.read(response.id);
125
- if (!item)
126
- throw new Error('The server failed to save the record');
127
- return item;
136
+ // Delete many records
137
+ if (Array.isArray(recordId)) {
138
+ if (recordId.length > 100) {
139
+ // TODO: Implement bulk delete when API has support for it
140
+ console.warn('Bulk delete operation is not optimized in the Xata API yet, this request might be slow');
141
+ }
142
+ yield Promise.all(recordId.map((id) => this.delete(id)));
143
+ return;
144
+ }
145
+ // Delete one record with id as param
146
+ if ((0, lang_1.isString)(recordId)) {
147
+ yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_deleteRecord).call(this, recordId);
148
+ return;
149
+ }
150
+ // Delete one record with id as property
151
+ if ((0, lang_1.isObject)(recordId) && (0, lang_1.isString)(recordId.id)) {
152
+ yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_deleteRecord).call(this, recordId.id);
153
+ return;
154
+ }
155
+ throw new Error('Invalid arguments for delete method');
128
156
  });
129
157
  }
130
- delete(recordId) {
158
+ search(query, options = {}) {
131
159
  return __awaiter(this, void 0, void 0, function* () {
132
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
133
- yield (0, api_1.deleteRecord)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId } }, fetchProps));
160
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
161
+ const { records } = yield (0, api_1.searchBranch)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}' }, body: { tables: [__classPrivateFieldGet(this, _RestRepository_table, "f")], query, fuzziness: options.fuzziness } }, fetchProps));
162
+ return records.map((item) => __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_initObject).call(this, __classPrivateFieldGet(this, _RestRepository_table, "f"), item));
134
163
  });
135
164
  }
136
- query(query, options = {}) {
137
- var _a, _b, _c;
165
+ query(query) {
166
+ var _a;
138
167
  return __awaiter(this, void 0, void 0, function* () {
139
168
  const data = query.getQueryOptions();
140
169
  const body = {
141
- filter: Object.values(data.filter).some(Boolean) ? data.filter : undefined,
142
- sort: (_a = (0, filters_1.buildSortFilter)(options === null || options === void 0 ? void 0 : options.sort)) !== null && _a !== void 0 ? _a : data.sort,
143
- page: (_b = options === null || options === void 0 ? void 0 : options.page) !== null && _b !== void 0 ? _b : data.page,
144
- columns: (_c = options === null || options === void 0 ? void 0 : options.columns) !== null && _c !== void 0 ? _c : data.columns
170
+ filter: Object.values((_a = data.filter) !== null && _a !== void 0 ? _a : {}).some(Boolean) ? data.filter : undefined,
171
+ sort: data.sort ? (0, sorting_1.buildSortFilter)(data.sort) : undefined,
172
+ page: data.page,
173
+ columns: data.columns
145
174
  };
146
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
175
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
147
176
  const { meta, records: objects } = yield (0, api_1.queryTable)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f") }, body }, fetchProps));
148
- const records = objects.map((record) => __classPrivateFieldGet(this, _RestRepository_client, "f").initObject(__classPrivateFieldGet(this, _RestRepository_table, "f"), record));
149
- // TODO: We should properly type this any
177
+ const records = objects.map((record) => __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_initObject).call(this, __classPrivateFieldGet(this, _RestRepository_table, "f"), record));
150
178
  return new pagination_1.Page(query, meta, records);
151
179
  });
152
180
  }
153
181
  }
154
182
  exports.RestRepository = RestRepository;
155
- _RestRepository_client = new WeakMap(), _RestRepository_fetch = new WeakMap(), _RestRepository_table = new WeakMap(), _RestRepository_instances = new WeakSet(), _RestRepository_getFetchProps = function _RestRepository_getFetchProps() {
183
+ _RestRepository_table = new WeakMap(), _RestRepository_links = new WeakMap(), _RestRepository_getFetchProps = new WeakMap(), _RestRepository_schemaNamespace = new WeakMap(), _RestRepository_instances = new WeakSet(), _RestRepository_insertRecordWithoutId = function _RestRepository_insertRecordWithoutId(object) {
156
184
  return __awaiter(this, void 0, void 0, function* () {
157
- const branch = yield __classPrivateFieldGet(this, _RestRepository_client, "f").getBranch();
158
- return {
159
- fetchImpl: __classPrivateFieldGet(this, _RestRepository_fetch, "f"),
160
- apiKey: __classPrivateFieldGet(this, _RestRepository_client, "f").options.apiKey,
161
- apiUrl: '',
162
- // Instead of using workspace and dbBranch, we inject a probably CNAME'd URL
163
- workspacesApiUrl: (path, params) => {
164
- var _a, _b;
165
- const baseUrl = (_a = __classPrivateFieldGet(this, _RestRepository_client, "f").options.databaseURL) !== null && _a !== void 0 ? _a : '';
166
- const hasBranch = (_b = params.dbBranchName) !== null && _b !== void 0 ? _b : params.branch;
167
- const newPath = path.replace(/^\/db\/[^/]+/, hasBranch ? `:${branch}` : '');
168
- return baseUrl + newPath;
169
- }
170
- };
185
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
186
+ const record = transformObjectLinks(object);
187
+ const response = yield (0, api_1.insertRecord)(Object.assign({ pathParams: {
188
+ workspace: '{workspaceId}',
189
+ dbBranchName: '{dbBranch}',
190
+ tableName: __classPrivateFieldGet(this, _RestRepository_table, "f")
191
+ }, body: record }, fetchProps));
192
+ const finalObject = yield this.read(response.id);
193
+ if (!finalObject) {
194
+ throw new Error('The server failed to save the record');
195
+ }
196
+ return finalObject;
171
197
  });
172
- };
173
- class RestRespositoryFactory {
174
- createRepository(client, table) {
175
- return new RestRepository(client, table);
176
- }
177
- }
178
- exports.RestRespositoryFactory = RestRespositoryFactory;
179
- class BaseClient {
180
- constructor(options, links = {}) {
181
- _BaseClient_links.set(this, void 0);
182
- _BaseClient_branch.set(this, void 0);
183
- if (!options.databaseURL || !options.apiKey || !options.branch) {
184
- throw new Error('Options databaseURL, apiKey and branch are required');
198
+ }, _RestRepository_insertRecordWithId = function _RestRepository_insertRecordWithId(recordId, object) {
199
+ return __awaiter(this, void 0, void 0, function* () {
200
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
201
+ const record = transformObjectLinks(object);
202
+ const response = yield (0, api_1.insertRecordWithID)(Object.assign({ pathParams: {
203
+ workspace: '{workspaceId}',
204
+ dbBranchName: '{dbBranch}',
205
+ tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"),
206
+ recordId
207
+ }, body: record, queryParams: { createOnly: true } }, fetchProps));
208
+ const finalObject = yield this.read(response.id);
209
+ if (!finalObject) {
210
+ throw new Error('The server failed to save the record');
185
211
  }
186
- this.options = options;
187
- __classPrivateFieldSet(this, _BaseClient_links, links, "f");
188
- const factory = options.repositoryFactory || new RestRespositoryFactory();
189
- this.db = new Proxy({}, {
190
- get: (_target, prop) => {
191
- if (typeof prop !== 'string')
192
- throw new Error('Invalid table name');
193
- return factory.createRepository(this, prop);
194
- }
195
- });
196
- }
197
- initObject(table, object) {
198
- const o = {};
199
- Object.assign(o, object);
200
- const tableLinks = __classPrivateFieldGet(this, _BaseClient_links, "f")[table] || [];
201
- for (const link of tableLinks) {
202
- const [field, linkTable] = link;
203
- const value = o[field];
204
- if (value && typeof value === 'object') {
205
- const { id } = value;
206
- if (Object.keys(value).find((col) => col === 'id')) {
207
- o[field] = this.initObject(linkTable, value);
208
- }
209
- else if (id) {
210
- o[field] = {
211
- id,
212
- get: () => {
213
- this.db[linkTable].read(id);
214
- }
215
- };
216
- }
217
- }
212
+ return finalObject;
213
+ });
214
+ }, _RestRepository_bulkInsertTableRecords = function _RestRepository_bulkInsertTableRecords(objects) {
215
+ return __awaiter(this, void 0, void 0, function* () {
216
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
217
+ const records = objects.map((object) => transformObjectLinks(object));
218
+ const response = yield (0, api_1.bulkInsertTableRecords)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f") }, body: { records } }, fetchProps));
219
+ const finalObjects = yield this.any(...response.recordIDs.map((id) => this.filter('id', id))).getAll();
220
+ if (finalObjects.length !== objects.length) {
221
+ throw new Error('The server failed to save some records');
218
222
  }
219
- const db = this.db;
220
- o.read = function () {
221
- return db[table].read(o['id']);
222
- };
223
- o.update = function (data) {
224
- return db[table].update(o['id'], data);
225
- };
226
- o.delete = function () {
227
- return db[table].delete(o['id']);
228
- };
229
- for (const prop of ['read', 'update', 'delete']) {
230
- Object.defineProperty(o, prop, { enumerable: false });
223
+ return finalObjects;
224
+ });
225
+ }, _RestRepository_updateRecordWithID = function _RestRepository_updateRecordWithID(recordId, object) {
226
+ return __awaiter(this, void 0, void 0, function* () {
227
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
228
+ const record = transformObjectLinks(object);
229
+ const response = yield (0, api_1.updateRecordWithID)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId }, body: record }, fetchProps));
230
+ const item = yield this.read(response.id);
231
+ if (!item)
232
+ throw new Error('The server failed to save the record');
233
+ return item;
234
+ });
235
+ }, _RestRepository_upsertRecordWithID = function _RestRepository_upsertRecordWithID(recordId, object) {
236
+ return __awaiter(this, void 0, void 0, function* () {
237
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
238
+ const response = yield (0, api_1.upsertRecordWithID)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId }, body: object }, fetchProps));
239
+ const item = yield this.read(response.id);
240
+ if (!item)
241
+ throw new Error('The server failed to save the record');
242
+ return item;
243
+ });
244
+ }, _RestRepository_deleteRecord = function _RestRepository_deleteRecord(recordId) {
245
+ return __awaiter(this, void 0, void 0, function* () {
246
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_getFetchProps, "f").call(this);
247
+ yield (0, api_1.deleteRecord)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId } }, fetchProps));
248
+ });
249
+ }, _RestRepository_initObject = function _RestRepository_initObject(table, object) {
250
+ const result = {};
251
+ Object.assign(result, object);
252
+ const tableLinks = __classPrivateFieldGet(this, _RestRepository_links, "f")[table] || [];
253
+ for (const link of tableLinks) {
254
+ const [field, linkTable] = link;
255
+ const value = result[field];
256
+ if (value && (0, lang_1.isObject)(value)) {
257
+ result[field] = __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_initObject).call(this, linkTable, value);
231
258
  }
232
- // TODO: links and rev links
233
- Object.freeze(o);
234
- return o;
235
259
  }
236
- getBranch() {
237
- var e_1, _a;
238
- return __awaiter(this, void 0, void 0, function* () {
239
- if (__classPrivateFieldGet(this, _BaseClient_branch, "f"))
240
- return __classPrivateFieldGet(this, _BaseClient_branch, "f");
241
- const { branch: param } = this.options;
242
- const strategies = Array.isArray(param) ? [...param] : [param];
243
- const evaluateBranch = (strategy) => __awaiter(this, void 0, void 0, function* () {
244
- return isBranchStrategyBuilder(strategy) ? yield strategy() : strategy;
245
- });
246
- try {
247
- for (var strategies_1 = __asyncValues(strategies), strategies_1_1; strategies_1_1 = yield strategies_1.next(), !strategies_1_1.done;) {
248
- const strategy = strategies_1_1.value;
249
- const branch = yield evaluateBranch(strategy);
250
- if (branch) {
251
- __classPrivateFieldSet(this, _BaseClient_branch, branch, "f");
252
- return branch;
253
- }
254
- }
255
- }
256
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
257
- finally {
258
- try {
259
- if (strategies_1_1 && !strategies_1_1.done && (_a = strategies_1.return)) yield _a.call(strategies_1);
260
- }
261
- finally { if (e_1) throw e_1.error; }
262
- }
263
- throw new Error('Unable to resolve branch value');
264
- });
260
+ const db = __classPrivateFieldGet(this, _RestRepository_schemaNamespace, "f");
261
+ result.read = function () {
262
+ return db[table].read(result['id']);
263
+ };
264
+ result.update = function (data) {
265
+ return db[table].update(result['id'], data);
266
+ };
267
+ result.delete = function () {
268
+ return db[table].delete(result['id']);
269
+ };
270
+ for (const prop of ['read', 'update', 'delete']) {
271
+ Object.defineProperty(result, prop, { enumerable: false });
265
272
  }
266
- }
267
- exports.BaseClient = BaseClient;
268
- _BaseClient_links = new WeakMap(), _BaseClient_branch = new WeakMap();
269
- const isBranchStrategyBuilder = (strategy) => {
270
- return typeof strategy === 'function';
273
+ Object.freeze(result);
274
+ return result;
271
275
  };
272
- // TODO: We can find a better implementation for links
273
276
  const transformObjectLinks = (object) => {
274
277
  return Object.entries(object).reduce((acc, [key, value]) => {
275
- if (value && typeof value === 'object' && typeof value.id === 'string') {
276
- return Object.assign(Object.assign({}, acc), { [key]: value.id });
277
- }
278
- return Object.assign(Object.assign({}, acc), { [key]: value });
278
+ // Ignore internal properties
279
+ if (key === 'xata')
280
+ return acc;
281
+ // Transform links to identifier
282
+ return Object.assign(Object.assign({}, acc), { [key]: (0, record_1.isIdentifiable)(value) ? value.id : value });
279
283
  }, {});
280
284
  };
@@ -1,14 +1,25 @@
1
- import { XataRecord } from '..';
2
- import { StringKeys, UnionToIntersection, Values } from '../util/types';
3
- import { Query } from './query';
4
- import { Identifiable } from './record';
5
- declare type Queries<T> = {
6
- [key in keyof T as T[key] extends Query<any> ? key : never]: T[key];
7
- };
8
- declare type InternalProperties = keyof XataRecord;
9
- export declare type Selectable<T extends XataRecord> = Omit<T, InternalProperties> & Identifiable;
10
- export declare type SelectableColumn<O> = '*' | (O extends Array<unknown> ? never : O extends Record<string, any> ? '*' | Values<{
11
- [K in StringKeys<O>]: O[K] extends Record<string, any> ? `${K}.${SelectableColumn<O[K]>}` : K;
12
- }> : '');
13
- export declare type Select<T, K extends SelectableColumn<T>> = UnionToIntersection<K extends keyof T ? Pick<T, K> : T> & Queries<T> & XataRecord;
1
+ import { If, IsArray, IsObject, StringKeys, UnionToIntersection, Values } from '../util/types';
2
+ import { Link, XataRecord } from './record';
3
+ export declare type SelectableColumn<O, RecursivePath extends any[] = []> = '*' | 'id' | DataProps<O> | NestedColumns<O, RecursivePath>;
4
+ export declare type SelectedPick<O extends XataRecord, Key extends SelectableColumn<O>[]> = XataRecord & UnionToIntersection<Values<{
5
+ [K in Key[number]]: NestedValueAtColumn<O, K> & XataRecord;
6
+ }>>;
7
+ export declare type ValueAtColumn<O, P extends SelectableColumn<O>> = P extends '*' ? Values<O> : P extends 'id' ? string : P extends keyof O ? O[P] : P extends `${infer K}.${infer V}` ? K extends keyof O ? Values<O[K] extends XataRecord ? (V extends SelectableColumn<O[K]> ? {
8
+ V: ValueAtColumn<O[K], V>;
9
+ } : never) : O[K]> : never : never;
10
+ declare type MAX_RECURSION = 5;
11
+ declare type NestedColumns<O, RecursivePath extends any[]> = RecursivePath['length'] extends MAX_RECURSION ? never : If<IsObject<O>, Values<{
12
+ [K in DataProps<O>]: If<IsArray<NonNullable<O[K]>>, K, // If the property is an array, we stop recursion. We don't support object arrays yet
13
+ If<IsObject<NonNullable<O[K]>>, NonNullable<O[K]> extends XataRecord ? SelectableColumn<NonNullable<O[K]>, [...RecursivePath, O[K]]> extends string ? K | `${K}.${SelectableColumn<NonNullable<O[K]>, [...RecursivePath, O[K]]>}` : never : `${K}.${StringKeys<NonNullable<O[K]>> | '*'}`, // This allows usage of objects that are not links
14
+ K>>;
15
+ }>, never>;
16
+ declare type DataProps<O> = Exclude<StringKeys<O>, StringKeys<XataRecord>>;
17
+ declare type NestedValueAtColumn<O, Key extends SelectableColumn<O>> = Key extends `${infer N}.${infer M}` ? N extends DataProps<O> ? {
18
+ [K in N]: M extends SelectableColumn<NonNullable<O[K]>> ? NonNullable<O[K]> extends XataRecord ? ForwardNullable<O[K], NestedValueAtColumn<NonNullable<O[K]>, M> & XataRecord> : ForwardNullable<O[K], NestedValueAtColumn<NonNullable<O[K]>, M>> : unknown;
19
+ } : unknown : Key extends DataProps<O> ? {
20
+ [K in Key]: NonNullable<O[K]> extends XataRecord ? ForwardNullable<O[K], SelectedPick<NonNullable<O[K]>, ['*']>> : O[K];
21
+ } : Key extends '*' ? {
22
+ [K in StringKeys<O>]: NonNullable<O[K]> extends XataRecord ? ForwardNullable<O[K], Link<NonNullable<O[K]>>> : O[K];
23
+ } : unknown;
24
+ declare type ForwardNullable<T, R> = T extends NonNullable<T> ? R : R | null;
14
25
  export {};
@@ -0,0 +1 @@
1
+ export {};