@xata.io/client 0.5.1 → 0.7.1
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/.eslintrc.cjs +13 -0
- package/CHANGELOG.md +35 -0
- package/dist/api/client.d.ts +1 -1
- package/dist/api/client.js +11 -9
- package/dist/api/components.d.ts +7 -6
- package/dist/api/components.js +7 -6
- package/dist/api/fetcher.d.ts +15 -0
- package/dist/api/fetcher.js +23 -22
- package/dist/api/providers.js +3 -2
- package/dist/api/responses.d.ts +6 -0
- package/dist/schema/config.d.ts +4 -0
- package/dist/schema/config.js +83 -0
- package/dist/schema/filters.d.ts +93 -17
- package/dist/schema/filters.js +0 -22
- package/dist/schema/filters.spec.d.ts +1 -0
- package/dist/schema/filters.spec.js +175 -0
- package/dist/schema/index.d.ts +1 -0
- package/dist/schema/index.js +4 -1
- package/dist/schema/operators.d.ts +26 -24
- package/dist/schema/operators.js +13 -11
- package/dist/schema/pagination.d.ts +13 -13
- package/dist/schema/pagination.js +0 -1
- package/dist/schema/query.d.ts +39 -50
- package/dist/schema/query.js +25 -37
- package/dist/schema/record.d.ts +25 -3
- package/dist/schema/record.js +11 -0
- package/dist/schema/repository.d.ts +79 -35
- package/dist/schema/repository.js +212 -114
- package/dist/schema/selection.d.ts +24 -11
- package/dist/schema/selection.spec.d.ts +1 -0
- package/dist/schema/selection.spec.js +203 -0
- package/dist/schema/sorting.d.ts +17 -0
- package/dist/schema/sorting.js +28 -0
- package/dist/schema/sorting.spec.d.ts +1 -0
- package/dist/schema/sorting.spec.js +9 -0
- package/dist/util/environment.d.ts +5 -0
- package/dist/util/environment.js +68 -0
- package/dist/util/fetch.d.ts +2 -0
- package/dist/util/fetch.js +13 -0
- package/dist/util/lang.d.ts +3 -0
- package/dist/util/lang.js +13 -1
- package/dist/util/types.d.ts +22 -1
- package/package.json +5 -2
@@ -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
|
+
});
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { SingleOrArray, Values } from '../util/types';
|
2
|
+
import { XataRecord } from './record';
|
3
|
+
import { SelectableColumn } from './selection';
|
4
|
+
export declare type SortDirection = 'asc' | 'desc';
|
5
|
+
export declare type SortFilterExtended<T extends XataRecord> = {
|
6
|
+
column: SelectableColumn<T>;
|
7
|
+
direction?: SortDirection;
|
8
|
+
};
|
9
|
+
export declare type SortFilter<T extends XataRecord> = SelectableColumn<T> | SortFilterExtended<T>;
|
10
|
+
export declare type ApiSortFilter<T extends XataRecord> = SingleOrArray<Values<{
|
11
|
+
[key in SelectableColumn<T>]: {
|
12
|
+
[K in key]: SortDirection;
|
13
|
+
};
|
14
|
+
}>>;
|
15
|
+
export declare function isSortFilterString<T extends XataRecord>(value: any): value is SelectableColumn<T>;
|
16
|
+
export declare function isSortFilterObject<T extends XataRecord>(filter: SortFilter<T>): filter is SortFilterExtended<T>;
|
17
|
+
export declare function buildSortFilter<T extends XataRecord>(filter: SingleOrArray<SortFilter<T>>): ApiSortFilter<T>;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.buildSortFilter = exports.isSortFilterObject = exports.isSortFilterString = void 0;
|
4
|
+
const lang_1 = require("../util/lang");
|
5
|
+
function isSortFilterString(value) {
|
6
|
+
return (0, lang_1.isString)(value);
|
7
|
+
}
|
8
|
+
exports.isSortFilterString = isSortFilterString;
|
9
|
+
function isSortFilterObject(filter) {
|
10
|
+
return (0, lang_1.isObject)(filter) && filter.column !== undefined;
|
11
|
+
}
|
12
|
+
exports.isSortFilterObject = isSortFilterObject;
|
13
|
+
function buildSortFilter(filter) {
|
14
|
+
var _a;
|
15
|
+
if (isSortFilterString(filter)) {
|
16
|
+
return { [filter]: 'asc' };
|
17
|
+
}
|
18
|
+
else if (Array.isArray(filter)) {
|
19
|
+
return filter.map((item) => buildSortFilter(item));
|
20
|
+
}
|
21
|
+
else if (isSortFilterObject(filter)) {
|
22
|
+
return { [filter.column]: (_a = filter.direction) !== null && _a !== void 0 ? _a : 'asc' };
|
23
|
+
}
|
24
|
+
else {
|
25
|
+
throw new Error(`Invalid sort filter: ${filter}`);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
exports.buildSortFilter = buildSortFilter;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
// Simple sorting
|
4
|
+
const simpleSorting = { name: 'asc' };
|
5
|
+
// Array of simple sorting
|
6
|
+
const arrayOfSimpleSorting = [{ name: 'asc' }, { age: 'desc' }];
|
7
|
+
test('fake test', () => {
|
8
|
+
// This is a fake test to make sure that the type definitions in this file are working
|
9
|
+
});
|
@@ -0,0 +1,5 @@
|
|
1
|
+
/// <reference path="../../src/types/global-node.d.ts" />
|
2
|
+
/// <reference path="../../src/types/global-variables.d.ts" />
|
3
|
+
/// <reference path="../../src/types/global-deno.d.ts" />
|
4
|
+
export declare function getEnvVariable(name: string): string | undefined;
|
5
|
+
export declare function getGitBranch(): Promise<string | undefined>;
|
@@ -0,0 +1,68 @@
|
|
1
|
+
"use strict";
|
2
|
+
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
3
|
+
///<reference path="../types/global-node.d.ts"/>
|
4
|
+
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
5
|
+
///<reference path="../types/global-variables.d.ts"/>
|
6
|
+
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
7
|
+
///<reference path="../types/global-deno.d.ts"/>
|
8
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
9
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
10
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
11
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
12
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
13
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
14
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
15
|
+
});
|
16
|
+
};
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
18
|
+
exports.getGitBranch = exports.getEnvVariable = void 0;
|
19
|
+
const lang_1 = require("./lang");
|
20
|
+
function getEnvVariable(name) {
|
21
|
+
var _a, _b;
|
22
|
+
// Node.js: process.env
|
23
|
+
try {
|
24
|
+
if ((0, lang_1.isObject)(process) && (0, lang_1.isString)((_a = process === null || process === void 0 ? void 0 : process.env) === null || _a === void 0 ? void 0 : _a[name])) {
|
25
|
+
return process.env[name];
|
26
|
+
}
|
27
|
+
}
|
28
|
+
catch (err) {
|
29
|
+
// Ignore: Should never happen
|
30
|
+
}
|
31
|
+
try {
|
32
|
+
// Deno: Deno.env.get
|
33
|
+
if ((0, lang_1.isObject)(Deno) && (0, lang_1.isString)((_b = Deno === null || Deno === void 0 ? void 0 : Deno.env) === null || _b === void 0 ? void 0 : _b.get(name))) {
|
34
|
+
return Deno.env.get(name);
|
35
|
+
}
|
36
|
+
}
|
37
|
+
catch (err) {
|
38
|
+
// Ignore: Will fail if not using --allow-env
|
39
|
+
}
|
40
|
+
}
|
41
|
+
exports.getEnvVariable = getEnvVariable;
|
42
|
+
function getGitBranch() {
|
43
|
+
return __awaiter(this, void 0, void 0, function* () {
|
44
|
+
// Node.js: child_process.execSync
|
45
|
+
try {
|
46
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
47
|
+
return require('child_process').execSync('git branch --show-current', { encoding: 'utf-8' }).trim();
|
48
|
+
}
|
49
|
+
catch (err) {
|
50
|
+
// Ignore
|
51
|
+
}
|
52
|
+
// Deno: Deno.run
|
53
|
+
try {
|
54
|
+
if ((0, lang_1.isObject)(Deno)) {
|
55
|
+
const process = Deno.run({
|
56
|
+
cmd: ['git', 'branch', '--show-current'],
|
57
|
+
stdout: 'piped',
|
58
|
+
stderr: 'piped'
|
59
|
+
});
|
60
|
+
return new TextDecoder().decode(yield process.output()).trim();
|
61
|
+
}
|
62
|
+
}
|
63
|
+
catch (err) {
|
64
|
+
// Ignore: Will fail if not using --allow-run
|
65
|
+
}
|
66
|
+
});
|
67
|
+
}
|
68
|
+
exports.getGitBranch = getGitBranch;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.getFetchImplementation = void 0;
|
4
|
+
function getFetchImplementation(userFetch) {
|
5
|
+
const globalFetch = typeof fetch !== 'undefined' ? fetch : undefined;
|
6
|
+
const fetchImpl = userFetch !== null && userFetch !== void 0 ? userFetch : globalFetch;
|
7
|
+
if (!fetchImpl) {
|
8
|
+
/** @todo add a link after docs exist */
|
9
|
+
throw new Error(`The \`fetch\` option passed to the Xata client is resolving to a falsy value and may not be correctly imported.`);
|
10
|
+
}
|
11
|
+
return fetchImpl;
|
12
|
+
}
|
13
|
+
exports.getFetchImplementation = getFetchImplementation;
|
package/dist/util/lang.d.ts
CHANGED
@@ -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 Record<string, unknown>;
|
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 Boolean(value) && typeof value === 'object' && !Array.isArray(value);
|
17
|
+
}
|
18
|
+
exports.isObject = isObject;
|
19
|
+
function isString(value) {
|
20
|
+
return value !== undefined && value !== null && typeof value === 'string';
|
21
|
+
}
|
22
|
+
exports.isString = isString;
|
package/dist/util/types.d.ts
CHANGED
@@ -1,3 +1,24 @@
|
|
1
1
|
export declare type StringKeys<O> = Extract<keyof O, string>;
|
2
|
-
export declare type
|
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
|
+
};
|
14
|
+
export declare type GetArrayInnerType<T extends readonly any[]> = T[number];
|
15
|
+
export declare type NonNullableValues<Obj> = {
|
16
|
+
[K in keyof Obj]: NonNullable<Obj[K]>;
|
17
|
+
};
|
18
|
+
export declare type KeysOfUnion<T> = T extends T ? keyof T : never;
|
19
|
+
declare type Impossible<K extends keyof any> = {
|
20
|
+
[P in K]: never;
|
21
|
+
};
|
22
|
+
export declare type Exactly<T, U extends T = T> = U & Impossible<Exclude<keyof U, keyof T>>;
|
23
|
+
export declare type SingleOrArray<T> = T | T[];
|
24
|
+
export {};
|
package/package.json
CHANGED
@@ -1,9 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@xata.io/client",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.7.1",
|
4
4
|
"description": "Xata.io SDK for TypeScript and JavaScript",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.ts",
|
7
|
+
"browser": {
|
8
|
+
"child_process": false
|
9
|
+
},
|
7
10
|
"scripts": {
|
8
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
9
12
|
"build": "tsc -p tsconfig.build.json",
|
@@ -20,5 +23,5 @@
|
|
20
23
|
"url": "https://github.com/xataio/client-ts/issues"
|
21
24
|
},
|
22
25
|
"homepage": "https://github.com/xataio/client-ts/blob/main/client/README.md",
|
23
|
-
"gitHead": "
|
26
|
+
"gitHead": "c817835c55f287286f4d30863e7bcfac0215f8f7"
|
24
27
|
}
|