@xata.io/client 0.0.0-beta.fef71a6 → 0.0.0-next.v43b83f3e3d703ba85a9c6790259cc93a43f69e98
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/.turbo/turbo-add-version.log +4 -0
- package/.turbo/turbo-build.log +13 -0
- package/CHANGELOG.md +828 -0
- package/README.md +7 -1
- package/dist/index.cjs +3653 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +9685 -3
- package/dist/index.mjs +3466 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +23 -10
- package/dist/api/client.d.ts +0 -95
- package/dist/api/client.js +0 -235
- package/dist/api/components.d.ts +0 -1440
- package/dist/api/components.js +0 -1001
- package/dist/api/fetcher.d.ts +0 -25
- package/dist/api/fetcher.js +0 -78
- package/dist/api/index.d.ts +0 -7
- package/dist/api/index.js +0 -21
- package/dist/api/parameters.d.ts +0 -16
- package/dist/api/parameters.js +0 -2
- package/dist/api/providers.d.ts +0 -8
- package/dist/api/providers.js +0 -29
- package/dist/api/responses.d.ts +0 -44
- package/dist/api/responses.js +0 -2
- package/dist/api/schemas.d.ts +0 -311
- package/dist/api/schemas.js +0 -2
- package/dist/index.js +0 -26
- package/dist/schema/filters.d.ts +0 -20
- package/dist/schema/filters.js +0 -24
- package/dist/schema/index.d.ts +0 -5
- package/dist/schema/index.js +0 -25
- package/dist/schema/operators.d.ts +0 -72
- package/dist/schema/operators.js +0 -91
- package/dist/schema/pagination.d.ts +0 -79
- package/dist/schema/pagination.js +0 -90
- package/dist/schema/query.d.ts +0 -128
- package/dist/schema/query.js +0 -253
- package/dist/schema/record.d.ts +0 -41
- package/dist/schema/record.js +0 -2
- package/dist/schema/repository.d.ts +0 -109
- package/dist/schema/repository.js +0 -272
- package/dist/schema/selection.d.ts +0 -14
- package/dist/schema/selection.js +0 -2
- package/dist/util/lang.d.ts +0 -2
- package/dist/util/lang.js +0 -10
- package/dist/util/types.d.ts +0 -3
- package/dist/util/types.js +0 -2
- package/tsconfig.json +0 -21
package/README.md
CHANGED
@@ -1 +1,7 @@
|
|
1
|
-
|
1
|
+
# Xata SDK for TypeScript and JavaScript
|
2
|
+
|
3
|
+
The Xata SDK supports typescript definitions for your Xata database schema. It also works with JavaScript.
|
4
|
+
|
5
|
+
It has zero dependencies and runs in Node.js, V8, Deno and Bun.
|
6
|
+
|
7
|
+
You can find the SDK documentation [here](https://xata.io/docs/typescript-client/overview).
|