@xata.io/client 0.0.0-beta.642c07f → 0.0.0-beta.645c53a

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.
@@ -26,21 +26,24 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
26
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
27
  function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
28
28
  };
29
- var _RestRepository_instances, _RestRepository_client, _RestRepository_fetch, _RestRepository_table, _RestRepository_getFetchProps, _BaseClient_links, _BaseClient_branch;
29
+ var _RestRepository_instances, _RestRepository_client, _RestRepository_fetch, _RestRepository_table, _RestRepository_getFetchProps, _RestRepository_insertRecordWithoutId, _RestRepository_insertRecordWithId, _BaseClient_links, _BaseClient_branch;
30
30
  Object.defineProperty(exports, "__esModule", { value: true });
31
31
  exports.BaseClient = exports.RestRespositoryFactory = exports.RestRepository = exports.Repository = void 0;
32
32
  const api_1 = require("../api");
33
+ const lang_1 = require("../util/lang");
33
34
  const filters_1 = require("./filters");
34
35
  const pagination_1 = require("./pagination");
35
36
  const query_1 = require("./query");
37
+ const record_1 = require("./record");
36
38
  /**
37
39
  * Common interface for performing operations on a table.
38
40
  */
39
41
  class Repository extends query_1.Query {
40
42
  }
41
43
  exports.Repository = Repository;
42
- class RestRepository extends Repository {
44
+ class RestRepository extends query_1.Query {
43
45
  constructor(client, table) {
46
+ var _a;
44
47
  super(null, table, {});
45
48
  _RestRepository_instances.add(this);
46
49
  _RestRepository_client.set(this, void 0);
@@ -49,26 +52,32 @@ class RestRepository extends Repository {
49
52
  __classPrivateFieldSet(this, _RestRepository_client, client, "f");
50
53
  __classPrivateFieldSet(this, _RestRepository_table, table, "f");
51
54
  // TODO: Remove when integrating with API client
52
- const fetchImpl = typeof fetch !== 'undefined' ? fetch : __classPrivateFieldGet(this, _RestRepository_client, "f").options.fetch;
55
+ const globalFetch = typeof fetch !== 'undefined' ? fetch : undefined;
56
+ const fetchImpl = (_a = __classPrivateFieldGet(this, _RestRepository_client, "f").options.fetch) !== null && _a !== void 0 ? _a : globalFetch;
53
57
  if (!fetchImpl) {
58
+ /** @todo add a link after docs exist */
54
59
  throw new Error(`The \`fetch\` option passed to the Xata client is resolving to a falsy value and may not be correctly imported.`);
55
60
  }
56
61
  __classPrivateFieldSet(this, _RestRepository_fetch, fetchImpl, "f");
57
62
  }
58
- create(object) {
63
+ create(a, b) {
59
64
  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');
65
+ if ((0, lang_1.isString)(a) && (0, lang_1.isObject)(b)) {
66
+ if (a === '')
67
+ throw new Error("The id can't be empty");
68
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_insertRecordWithId).call(this, a, b);
69
+ }
70
+ else if ((0, lang_1.isObject)(a) && (0, lang_1.isString)(a.id)) {
71
+ if (a.id === '')
72
+ throw new Error("The id can't be empty");
73
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_insertRecordWithId).call(this, a.id, Object.assign(Object.assign({}, a), { id: undefined }));
74
+ }
75
+ else if ((0, lang_1.isObject)(a)) {
76
+ return __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_insertRecordWithoutId).call(this, a);
77
+ }
78
+ else {
79
+ throw new Error('Invalid arguments for create method');
70
80
  }
71
- return finalObject;
72
81
  });
73
82
  }
74
83
  createMany(objects) {
@@ -76,14 +85,14 @@ class RestRepository extends Repository {
76
85
  const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
77
86
  const records = objects.map((object) => transformObjectLinks(object));
78
87
  const response = yield (0, api_1.bulkInsertTableRecords)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f") }, body: { records } }, fetchProps));
79
- // TODO: Use filer.$any() to get all the records
80
- const finalObjects = yield Promise.all(response.recordIDs.map((id) => this.read(id)));
81
- if (finalObjects.some((object) => !object)) {
82
- throw new Error('The server failed to save the record');
88
+ const finalObjects = yield this.any(...response.recordIDs.map((id) => this.filter('id', id))).getAll();
89
+ if (finalObjects.length !== objects.length) {
90
+ throw new Error('The server failed to save some records');
83
91
  }
84
92
  return finalObjects;
85
93
  });
86
94
  }
95
+ // TODO: Add column support: https://github.com/xataio/openapi/issues/139
87
96
  read(recordId) {
88
97
  return __awaiter(this, void 0, void 0, function* () {
89
98
  const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
@@ -94,31 +103,15 @@ class RestRepository extends Repository {
94
103
  update(recordId, object) {
95
104
  return __awaiter(this, void 0, void 0, function* () {
96
105
  const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
97
- const response = yield (0, api_1.updateRecordWithID)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId }, body: object }, fetchProps));
106
+ const record = transformObjectLinks(object);
107
+ const response = yield (0, api_1.updateRecordWithID)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId }, body: record }, fetchProps));
98
108
  const item = yield this.read(response.id);
99
109
  if (!item)
100
110
  throw new Error('The server failed to save the record');
101
111
  return item;
102
112
  });
103
113
  }
104
- insert(recordId, object) {
105
- return __awaiter(this, void 0, void 0, function* () {
106
- const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
107
- const record = transformObjectLinks(object);
108
- const response = yield (0, api_1.insertRecordWithID)(Object.assign({ pathParams: {
109
- workspace: '{workspaceId}',
110
- dbBranchName: '{dbBranch}',
111
- tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"),
112
- recordId
113
- }, body: record }, fetchProps));
114
- const finalObject = yield this.read(response.id);
115
- if (!finalObject) {
116
- throw new Error('The server failed to save the record');
117
- }
118
- return finalObject;
119
- });
120
- }
121
- updateOrInsert(recordId, object) {
114
+ createOrUpdate(recordId, object) {
122
115
  return __awaiter(this, void 0, void 0, function* () {
123
116
  const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
124
117
  const response = yield (0, api_1.upsertRecordWithID)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId }, body: object }, fetchProps));
@@ -134,20 +127,19 @@ class RestRepository extends Repository {
134
127
  yield (0, api_1.deleteRecord)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"), recordId } }, fetchProps));
135
128
  });
136
129
  }
137
- query(query, options = {}) {
138
- var _a, _b, _c;
130
+ query(query) {
131
+ var _a;
139
132
  return __awaiter(this, void 0, void 0, function* () {
140
133
  const data = query.getQueryOptions();
141
134
  const body = {
142
- filter: Object.values(data.filter).some(Boolean) ? data.filter : undefined,
143
- sort: (_a = (0, filters_1.buildSortFilter)(options === null || options === void 0 ? void 0 : options.sort)) !== null && _a !== void 0 ? _a : data.sort,
144
- page: (_b = options === null || options === void 0 ? void 0 : options.page) !== null && _b !== void 0 ? _b : data.page,
145
- columns: (_c = options === null || options === void 0 ? void 0 : options.columns) !== null && _c !== void 0 ? _c : data.columns
135
+ filter: Object.values((_a = data.filter) !== null && _a !== void 0 ? _a : {}).some(Boolean) ? data.filter : undefined,
136
+ sort: (0, filters_1.buildSortFilter)(data.sort),
137
+ page: data.page,
138
+ columns: data.columns
146
139
  };
147
140
  const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
148
141
  const { meta, records: objects } = yield (0, api_1.queryTable)(Object.assign({ pathParams: { workspace: '{workspaceId}', dbBranchName: '{dbBranch}', tableName: __classPrivateFieldGet(this, _RestRepository_table, "f") }, body }, fetchProps));
149
142
  const records = objects.map((record) => __classPrivateFieldGet(this, _RestRepository_client, "f").initObject(__classPrivateFieldGet(this, _RestRepository_table, "f"), record));
150
- // TODO: We should properly type this any
151
143
  return new pagination_1.Page(query, meta, records);
152
144
  });
153
145
  }
@@ -170,6 +162,37 @@ _RestRepository_client = new WeakMap(), _RestRepository_fetch = new WeakMap(), _
170
162
  }
171
163
  };
172
164
  });
165
+ }, _RestRepository_insertRecordWithoutId = function _RestRepository_insertRecordWithoutId(object) {
166
+ return __awaiter(this, void 0, void 0, function* () {
167
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
168
+ const record = transformObjectLinks(object);
169
+ const response = yield (0, api_1.insertRecord)(Object.assign({ pathParams: {
170
+ workspace: '{workspaceId}',
171
+ dbBranchName: '{dbBranch}',
172
+ tableName: __classPrivateFieldGet(this, _RestRepository_table, "f")
173
+ }, body: record }, fetchProps));
174
+ const finalObject = yield this.read(response.id);
175
+ if (!finalObject) {
176
+ throw new Error('The server failed to save the record');
177
+ }
178
+ return finalObject;
179
+ });
180
+ }, _RestRepository_insertRecordWithId = function _RestRepository_insertRecordWithId(recordId, object) {
181
+ return __awaiter(this, void 0, void 0, function* () {
182
+ const fetchProps = yield __classPrivateFieldGet(this, _RestRepository_instances, "m", _RestRepository_getFetchProps).call(this);
183
+ const record = transformObjectLinks(object);
184
+ const response = yield (0, api_1.insertRecordWithID)(Object.assign({ pathParams: {
185
+ workspace: '{workspaceId}',
186
+ dbBranchName: '{dbBranch}',
187
+ tableName: __classPrivateFieldGet(this, _RestRepository_table, "f"),
188
+ recordId
189
+ }, body: record, queryParams: { createOnly: true } }, fetchProps));
190
+ const finalObject = yield this.read(response.id);
191
+ if (!finalObject) {
192
+ throw new Error('The server failed to save the record');
193
+ }
194
+ return finalObject;
195
+ });
173
196
  };
174
197
  class RestRespositoryFactory {
175
198
  createRepository(client, table) {
@@ -186,45 +209,41 @@ class BaseClient {
186
209
  }
187
210
  this.options = options;
188
211
  __classPrivateFieldSet(this, _BaseClient_links, links, "f");
212
+ const factory = options.repositoryFactory || new RestRespositoryFactory();
213
+ this.db = new Proxy({}, {
214
+ get: (_target, prop) => {
215
+ if (typeof prop !== 'string')
216
+ throw new Error('Invalid table name');
217
+ return factory.createRepository(this, prop);
218
+ }
219
+ });
189
220
  }
190
221
  initObject(table, object) {
191
- const o = {};
192
- Object.assign(o, object);
222
+ const result = {};
223
+ Object.assign(result, object);
193
224
  const tableLinks = __classPrivateFieldGet(this, _BaseClient_links, "f")[table] || [];
194
225
  for (const link of tableLinks) {
195
226
  const [field, linkTable] = link;
196
- const value = o[field];
197
- if (value && typeof value === 'object') {
198
- const { id } = value;
199
- if (Object.keys(value).find((col) => col === 'id')) {
200
- o[field] = this.initObject(linkTable, value);
201
- }
202
- else if (id) {
203
- o[field] = {
204
- id,
205
- get: () => {
206
- this.db[linkTable].read(id);
207
- }
208
- };
209
- }
227
+ const value = result[field];
228
+ if (value && (0, lang_1.isObject)(value)) {
229
+ result[field] = this.initObject(linkTable, value);
210
230
  }
211
231
  }
212
232
  const db = this.db;
213
- o.read = function () {
214
- return db[table].read(o['id']);
233
+ result.read = function () {
234
+ return db[table].read(result['id']);
215
235
  };
216
- o.update = function (data) {
217
- return db[table].update(o['id'], data);
236
+ result.update = function (data) {
237
+ return db[table].update(result['id'], data);
218
238
  };
219
- o.delete = function () {
220
- return db[table].delete(o['id']);
239
+ result.delete = function () {
240
+ return db[table].delete(result['id']);
221
241
  };
222
242
  for (const prop of ['read', 'update', 'delete']) {
223
- Object.defineProperty(o, prop, { enumerable: false });
243
+ Object.defineProperty(result, prop, { enumerable: false });
224
244
  }
225
- // TODO: links and rev links
226
- Object.freeze(o);
227
- return o;
245
+ Object.freeze(result);
246
+ return result;
228
247
  }
229
248
  getBranch() {
230
249
  var e_1, _a;
@@ -262,12 +281,8 @@ _BaseClient_links = new WeakMap(), _BaseClient_branch = new WeakMap();
262
281
  const isBranchStrategyBuilder = (strategy) => {
263
282
  return typeof strategy === 'function';
264
283
  };
265
- // TODO: We can find a better implementation for links
266
284
  const transformObjectLinks = (object) => {
267
285
  return Object.entries(object).reduce((acc, [key, value]) => {
268
- if (value && typeof value === 'object' && typeof value.id === 'string') {
269
- return Object.assign(Object.assign({}, acc), { [key]: value.id });
270
- }
271
- return Object.assign(Object.assign({}, acc), { [key]: value });
286
+ return Object.assign(Object.assign({}, acc), { [key]: (0, record_1.isIdentifiable)(value) ? value.id : value });
272
287
  }, {});
273
288
  };
@@ -1,13 +1,25 @@
1
- import { XataRecord } from '..';
2
- import { StringKeys, UnionToIntersection, Values } from '../util/types';
3
- import { Query } from './query';
4
- declare type Queries<T> = {
5
- [key in keyof T as T[key] extends Query<any> ? key : never]: T[key];
6
- };
7
- declare type InternalProperties = keyof XataRecord;
8
- export declare type Selectable<T extends XataRecord> = Omit<T, InternalProperties>;
9
- export declare type SelectableColumn<O> = '*' | (O extends Array<unknown> ? never : O extends Record<string, any> ? '*' | Values<{
10
- [K in StringKeys<O>]: O[K] extends Record<string, any> ? `${K}.${SelectableColumn<O[K]>}` : K;
11
- }> : '');
12
- 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 extends XataRecord, 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;
13
25
  export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,203 @@
1
+ "use strict";
2
+ /* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-floating-promises */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ // SelectableColumn<O> //
5
+ // --------------------------------------------------------------------------- //
6
+ const validTeamColumns = [
7
+ '*',
8
+ 'id',
9
+ 'name',
10
+ 'owner.*',
11
+ 'owner.address.*',
12
+ 'owner.address',
13
+ 'owner.address.street'
14
+ ];
15
+ // @ts-expect-error
16
+ const invalidFullNameTeamColumn = 'full_name';
17
+ // @ts-expect-error
18
+ const invalidPartialTeamColumn = 'owner.address.';
19
+ // @ts-expect-error
20
+ const invalidDeleteTeamColumn = 'owner.delete';
21
+ // @ts-expect-error
22
+ const invalidReadTeamColumn = 'owner.read.*';
23
+ // ValueAtColumn<O, P> //
24
+ // --------------------------------------------------------------------------- //
25
+ const labelsValue = ['foo'];
26
+ // @ts-expect-error
27
+ const invalidLabelsValue = [1];
28
+ // SelectedRecordPick<O, Key> //
29
+ // ---------------------------------------------------------------------------- //
30
+ function test1(user) {
31
+ var _a, _b, _c, _d;
32
+ user.id;
33
+ user.read();
34
+ user.full_name;
35
+ (_a = user.address) === null || _a === void 0 ? void 0 : _a.street;
36
+ // @ts-expect-error
37
+ user.team.id;
38
+ (_b = user.team) === null || _b === void 0 ? void 0 : _b.id;
39
+ (_c = user.team) === null || _c === void 0 ? void 0 : _c.read();
40
+ // @ts-expect-error
41
+ (_d = user.team) === null || _d === void 0 ? void 0 : _d.name;
42
+ user.partner.id;
43
+ user.partner.read();
44
+ // @ts-expect-error
45
+ user.partner.full_name;
46
+ user.team = null;
47
+ // @ts-expect-error
48
+ user.partner = null;
49
+ }
50
+ function test2(user) {
51
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
52
+ user.id;
53
+ user.read();
54
+ user.full_name;
55
+ (_a = user.team) === null || _a === void 0 ? void 0 : _a.id;
56
+ (_b = user.team) === null || _b === void 0 ? void 0 : _b.read();
57
+ (_c = user.team) === null || _c === void 0 ? void 0 : _c.name;
58
+ (_d = user.team) === null || _d === void 0 ? void 0 : _d.owner;
59
+ (_f = (_e = user.team) === null || _e === void 0 ? void 0 : _e.owner) === null || _f === void 0 ? void 0 : _f.id;
60
+ (_h = (_g = user.team) === null || _g === void 0 ? void 0 : _g.owner) === null || _h === void 0 ? void 0 : _h.read();
61
+ // @ts-expect-error
62
+ (_k = (_j = user.team) === null || _j === void 0 ? void 0 : _j.owner) === null || _k === void 0 ? void 0 : _k.full_name;
63
+ // @ts-expect-error
64
+ user.full_name = null;
65
+ user.email = null;
66
+ user.email = '';
67
+ // @ts-expect-error
68
+ user.email = 2;
69
+ if (user.team) {
70
+ // @ts-expect-error
71
+ user.team.name = null;
72
+ user.team.labels = null;
73
+ user.team.labels = ['foo'];
74
+ // @ts-expect-error
75
+ user.team.labels = [1];
76
+ }
77
+ }
78
+ function test3(user) {
79
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
80
+ user.id;
81
+ user.read();
82
+ // @ts-expect-error
83
+ user.full_name;
84
+ (_a = user.team) === null || _a === void 0 ? void 0 : _a.id;
85
+ (_b = user.team) === null || _b === void 0 ? void 0 : _b.read();
86
+ // @ts-expect-error
87
+ (_c = user.team) === null || _c === void 0 ? void 0 : _c.name;
88
+ (_e = (_d = user.team) === null || _d === void 0 ? void 0 : _d.owner) === null || _e === void 0 ? void 0 : _e.id;
89
+ (_g = (_f = user.team) === null || _f === void 0 ? void 0 : _f.owner) === null || _g === void 0 ? void 0 : _g.read();
90
+ (_j = (_h = user.team) === null || _h === void 0 ? void 0 : _h.owner) === null || _j === void 0 ? void 0 : _j.full_name;
91
+ }
92
+ function test4(user) {
93
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
94
+ user.id;
95
+ user.read();
96
+ // @ts-expect-error
97
+ user.full_name;
98
+ (_a = user.team) === null || _a === void 0 ? void 0 : _a.id;
99
+ (_b = user.team) === null || _b === void 0 ? void 0 : _b.read();
100
+ // @ts-expect-error
101
+ (_c = user.team) === null || _c === void 0 ? void 0 : _c.name;
102
+ (_e = (_d = user.team) === null || _d === void 0 ? void 0 : _d.owner) === null || _e === void 0 ? void 0 : _e.id;
103
+ (_g = (_f = user.team) === null || _f === void 0 ? void 0 : _f.owner) === null || _g === void 0 ? void 0 : _g.read();
104
+ // @ts-expect-error
105
+ (_j = (_h = user.team) === null || _h === void 0 ? void 0 : _h.owner) === null || _j === void 0 ? void 0 : _j.full_name;
106
+ (_l = (_k = user.team) === null || _k === void 0 ? void 0 : _k.owner) === null || _l === void 0 ? void 0 : _l.address;
107
+ (_p = (_o = (_m = user.team) === null || _m === void 0 ? void 0 : _m.owner) === null || _o === void 0 ? void 0 : _o.address) === null || _p === void 0 ? void 0 : _p.street;
108
+ (_s = (_r = (_q = user.team) === null || _q === void 0 ? void 0 : _q.owner) === null || _r === void 0 ? void 0 : _r.address) === null || _s === void 0 ? void 0 : _s.zipcode;
109
+ }
110
+ function test5(user) {
111
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
112
+ user.id;
113
+ user.read();
114
+ // @ts-expect-error
115
+ user.full_name;
116
+ user.settings;
117
+ (_a = user.settings) === null || _a === void 0 ? void 0 : _a.theme;
118
+ (_b = user.settings) === null || _b === void 0 ? void 0 : _b.language;
119
+ (_c = user.settings) === null || _c === void 0 ? void 0 : _c.signin;
120
+ (_e = (_d = user.settings) === null || _d === void 0 ? void 0 : _d.signin) === null || _e === void 0 ? void 0 : _e.email;
121
+ (_g = (_f = user.settings) === null || _f === void 0 ? void 0 : _f.signin) === null || _g === void 0 ? void 0 : _g.github;
122
+ // @ts-expect-error
123
+ (_h = user.settings) === null || _h === void 0 ? void 0 : _h.id;
124
+ // @ts-expect-error
125
+ (_j = user.settings) === null || _j === void 0 ? void 0 : _j.read();
126
+ // @ts-expect-error
127
+ (_l = (_k = user.settings) === null || _k === void 0 ? void 0 : _k.signin) === null || _l === void 0 ? void 0 : _l.id;
128
+ user.settings = null;
129
+ user.nonNullable.nested.value = 2;
130
+ // @ts-expect-error
131
+ user.nonNullable = null;
132
+ // @ts-expect-error
133
+ user.nonNullable.nested.value = null;
134
+ }
135
+ function test6(user) {
136
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
137
+ user.id;
138
+ user.read();
139
+ // @ts-expect-error
140
+ user.full_name;
141
+ user.settings;
142
+ (_a = user.settings) === null || _a === void 0 ? void 0 : _a.theme;
143
+ (_b = user.settings) === null || _b === void 0 ? void 0 : _b.language;
144
+ (_c = user.settings) === null || _c === void 0 ? void 0 : _c.signin;
145
+ (_e = (_d = user.settings) === null || _d === void 0 ? void 0 : _d.signin) === null || _e === void 0 ? void 0 : _e.email;
146
+ (_g = (_f = user.settings) === null || _f === void 0 ? void 0 : _f.signin) === null || _g === void 0 ? void 0 : _g.github;
147
+ // @ts-expect-error
148
+ (_h = user.settings) === null || _h === void 0 ? void 0 : _h.id;
149
+ // @ts-expect-error
150
+ (_j = user.settings) === null || _j === void 0 ? void 0 : _j.read();
151
+ // @ts-expect-error
152
+ (_l = (_k = user.settings) === null || _k === void 0 ? void 0 : _k.signin) === null || _l === void 0 ? void 0 : _l.id;
153
+ user.nonNullable.nested.value = 2;
154
+ user.nonNullable.nested.deep.depths.of.numbers = [1, 2, 3];
155
+ // @ts-expect-error
156
+ user.nonNullable.nested.deep.depths.of.numbers = 'invalid-string';
157
+ user.settings = null;
158
+ // @ts-expect-error
159
+ user.nonNullable = null;
160
+ // @ts-expect-error
161
+ user.nonNullable.nested.value = null;
162
+ }
163
+ function test7(user) {
164
+ var _a, _b;
165
+ user.partner;
166
+ user.partner.id;
167
+ user.partner.read();
168
+ user.partner.full_name;
169
+ // @ts-expect-error
170
+ user.partner.full_name = null;
171
+ user.partner.address;
172
+ // @ts-expect-error
173
+ user.team.id;
174
+ (_a = user.team) === null || _a === void 0 ? void 0 : _a.id;
175
+ // @ts-expect-error
176
+ user.team.read();
177
+ (_b = user.team) === null || _b === void 0 ? void 0 : _b.read();
178
+ // @ts-expect-error
179
+ user.partner = null;
180
+ user.team = null;
181
+ }
182
+ function test8(user) {
183
+ var _a, _b;
184
+ user.partner;
185
+ user.partner.id;
186
+ user.partner.read();
187
+ user.partner.full_name;
188
+ // @ts-expect-error
189
+ user.partner.full_name = null;
190
+ user.partner.address;
191
+ // @ts-expect-error
192
+ user.team.id;
193
+ (_a = user.team) === null || _a === void 0 ? void 0 : _a.id;
194
+ // @ts-expect-error
195
+ user.team.read();
196
+ (_b = user.team) === null || _b === void 0 ? void 0 : _b.read();
197
+ // @ts-expect-error
198
+ user.partner = null;
199
+ user.team = null;
200
+ }
201
+ test('fake test', () => {
202
+ // This is a fake test to make sure that the type definitions in this file are working
203
+ });
@@ -1,2 +1,5 @@
1
1
  export declare function compact<T>(arr: Array<T | null | undefined>): T[];
2
+ export declare function compactObject<T>(obj: Record<string, T | null | undefined>): Record<string, T>;
2
3
  export declare type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
4
+ export declare function isObject(value: any): value is object;
5
+ export declare function isString(value: any): value is string;
package/dist/util/lang.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.compact = void 0;
3
+ exports.isString = exports.isObject = exports.compactObject = exports.compact = void 0;
4
4
  function notEmpty(value) {
5
5
  return value !== null && value !== undefined;
6
6
  }
@@ -8,3 +8,15 @@ function compact(arr) {
8
8
  return arr.filter(notEmpty);
9
9
  }
10
10
  exports.compact = compact;
11
+ function compactObject(obj) {
12
+ return Object.fromEntries(Object.entries(obj).filter(([, value]) => notEmpty(value)));
13
+ }
14
+ exports.compactObject = compactObject;
15
+ function isObject(value) {
16
+ return value !== undefined && value !== null && typeof value === 'object';
17
+ }
18
+ exports.isObject = isObject;
19
+ function isString(value) {
20
+ return value !== undefined && value !== null && typeof value === 'string';
21
+ }
22
+ exports.isString = isString;
@@ -1,3 +1,13 @@
1
1
  export declare type StringKeys<O> = Extract<keyof O, string>;
2
- export declare type Values<O> = O[keyof O];
2
+ export declare type NumberKeys<O> = Extract<keyof O, number>;
3
+ export declare type Values<O> = O[StringKeys<O>];
3
4
  export declare type UnionToIntersection<T> = (T extends any ? (x: T) => any : never) extends (x: infer R) => any ? R : never;
5
+ export declare type If<Condition, Then, Else> = Condition extends true ? Then : Else;
6
+ export declare type IsObject<T> = T extends Record<string, any> ? true : false;
7
+ export declare type IsArray<T> = T extends Array<any> ? true : false;
8
+ export declare type NonEmptyArray<T> = T[] & {
9
+ 0: T;
10
+ };
11
+ export declare type RequiredBy<T, K extends keyof T> = T & {
12
+ [P in K]-?: NonNullable<T[P]>;
13
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xata.io/client",
3
- "version": "0.0.0-beta.642c07f",
3
+ "version": "0.0.0-beta.645c53a",
4
4
  "description": "Xata.io SDK for TypeScript and JavaScript",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -20,5 +20,5 @@
20
20
  "url": "https://github.com/xataio/client-ts/issues"
21
21
  },
22
22
  "homepage": "https://github.com/xataio/client-ts/blob/main/client/README.md",
23
- "gitHead": "642c07f154827444b201603388d4adc41c9e1d74"
23
+ "gitHead": "645c53ae51e00ea1d22a5663ce2fd4b75f8754f1"
24
24
  }