@xata.io/kysely
Advanced tools
Comparing version 0.0.0-alpha.v523e5e3c62fe7e6ea493c1b6ae5e6160336ee250 to 0.0.0-alpha.v5241c9668f48662ab21b3e2d1b9e7b57b83a01ba
# @xata.io/kysely | ||
## 0.0.0-alpha.v523e5e3c62fe7e6ea493c1b6ae5e6160336ee250 | ||
## 0.0.0-alpha.v5241c9668f48662ab21b3e2d1b9e7b57b83a01ba | ||
@@ -9,5 +9,57 @@ ### Patch Changes | ||
- Updated dependencies [[`212b53d`](https://github.com/xataio/client-ts/commit/212b53d07498def0d2ed8942691eff982e448969), [`9fd8c42`](https://github.com/xataio/client-ts/commit/9fd8c428d71b476f1951123c6cba5e803b983e54)]: | ||
- @xata.io/client@0.0.0-alpha.v523e5e3c62fe7e6ea493c1b6ae5e6160336ee250 | ||
- Updated dependencies []: | ||
- @xata.io/client@0.0.0-alpha.v5241c9668f48662ab21b3e2d1b9e7b57b83a01ba | ||
## 0.2.0 | ||
### Minor Changes | ||
- [#1535](https://github.com/xataio/client-ts/pull/1535) [`40f97d5`](https://github.com/xataio/client-ts/commit/40f97d53091af3d268fe40b4e027245270d42a26) Thanks [@SferaDev](https://github.com/SferaDev)! - Improve types | ||
### Patch Changes | ||
- Updated dependencies [[`cc673c9`](https://github.com/xataio/client-ts/commit/cc673c9a7885351082020e360630eab5db78c652)]: | ||
- @xata.io/client@0.30.0 | ||
## 0.1.22 | ||
### Patch Changes | ||
- [#1491](https://github.com/xataio/client-ts/pull/1491) [`f4a5ee7`](https://github.com/xataio/client-ts/commit/f4a5ee707dd04280f59919c97ff9cc0b1e9b01e6) Thanks [@SferaDev](https://github.com/SferaDev)! - [Kysely] Add consistency to client initialization | ||
## 0.1.21 | ||
### Patch Changes | ||
- Updated dependencies [[`6b754d2`](https://github.com/xataio/client-ts/commit/6b754d2f6a1f7b9378a96fe27502ff6c29ff5ed8)]: | ||
- @xata.io/client@0.29.5 | ||
## 0.1.20 | ||
### Patch Changes | ||
- Updated dependencies [[`2140a24`](https://github.com/xataio/client-ts/commit/2140a24f32a94f36bab8c8268033c7dcf235dddc), [`d8032f2`](https://github.com/xataio/client-ts/commit/d8032f2e07bdcc653db1606796d27f08d397cdbe)]: | ||
- @xata.io/client@0.29.4 | ||
## 0.1.19 | ||
### Patch Changes | ||
- Updated dependencies [[`02053fb`](https://github.com/xataio/client-ts/commit/02053fbb10479b8e9453691f957d3235762555aa), [`e27cb74`](https://github.com/xataio/client-ts/commit/e27cb74143aa9b6c654713878e5d3776858e5290)]: | ||
- @xata.io/client@0.29.3 | ||
## 0.1.18 | ||
### Patch Changes | ||
- Updated dependencies [[`e8db1cd`](https://github.com/xataio/client-ts/commit/e8db1cd394ccbed32403548bf9d09a5c3973d850)]: | ||
- @xata.io/client@0.29.2 | ||
## 0.1.17 | ||
### Patch Changes | ||
- Updated dependencies [[`d0f5d12`](https://github.com/xataio/client-ts/commit/d0f5d125e6c2f4c82f8a0a6b4a30d255c58e8326), [`212b53d`](https://github.com/xataio/client-ts/commit/212b53d07498def0d2ed8942691eff982e448969), [`9fd8c42`](https://github.com/xataio/client-ts/commit/9fd8c428d71b476f1951123c6cba5e803b983e54), [`368d4aa`](https://github.com/xataio/client-ts/commit/368d4aa16cd1cc1da93a142406c5d41bbc15b082)]: | ||
- @xata.io/client@0.29.1 | ||
## 0.1.16 | ||
@@ -14,0 +66,0 @@ |
@@ -1,2 +0,2 @@ | ||
import { SQLPluginResult, XataRecord, XataPlugin, XataPluginOptions, EditableData } from '@xata.io/client'; | ||
import { SQLPluginResult, XataRecord, XataPlugin, XataPluginOptions } from '@xata.io/client'; | ||
import { Dialect, PostgresAdapter, Driver, QueryCompiler, Kysely, DatabaseIntrospector, DatabaseConnection, CompiledQuery, QueryResult } from 'kysely'; | ||
@@ -8,2 +8,7 @@ | ||
}; | ||
/** | ||
* The consistency level to use when reading data. | ||
* @default 'strong' | ||
*/ | ||
consistency?: 'strong' | 'eventual'; | ||
}; | ||
@@ -40,6 +45,26 @@ declare class XataDialect implements Dialect { | ||
} | ||
type Model<Schemas extends Record<string, XataRecord>> = { | ||
[Model in keyof Schemas]: EditableData<Schemas[Model]>; | ||
type XataFilePgFields = { | ||
id?: string; | ||
mediaType?: string; | ||
size?: number; | ||
name?: string; | ||
enablePublicUrl?: boolean; | ||
signedUrlTimeout?: number; | ||
storageKey?: string; | ||
uploadKey?: string; | ||
uploadUrlTimeout?: number; | ||
version?: number; | ||
}; | ||
type RowTypeFields<T> = T extends { | ||
mediaType?: string; | ||
} ? XataFilePgFields : T extends Array<{ | ||
mediaType?: string; | ||
}> ? XataFilePgFields[] : T; | ||
type RowType<O> = { | ||
[K in keyof O]: RowTypeFields<NonNullable<O[K]>>; | ||
}; | ||
type Model<Schemas extends Record<string, any>> = { | ||
[Model in keyof Schemas]: RowType<Schemas[Model]>; | ||
}; | ||
export { KyselyPlugin, type KyselyPluginResult, type Model, XataConnection, XataDialect, type XataDialectConfig, XataDriver }; |
{ | ||
"name": "@xata.io/kysely", | ||
"version": "0.0.0-alpha.v523e5e3c62fe7e6ea493c1b6ae5e6160336ee250", | ||
"version": "0.0.0-alpha.v5241c9668f48662ab21b3e2d1b9e7b57b83a01ba", | ||
"description": "", | ||
@@ -21,9 +21,9 @@ "main": "./dist/index.cjs", | ||
"dependencies": { | ||
"@xata.io/client": "0.0.0-alpha.v523e5e3c62fe7e6ea493c1b6ae5e6160336ee250" | ||
"@xata.io/client": "0.0.0-alpha.v5241c9668f48662ab21b3e2d1b9e7b57b83a01ba" | ||
}, | ||
"devDependencies": { | ||
"kysely": "^0.27.2" | ||
"kysely": "^0.27.4" | ||
}, | ||
"peerDependencies": { | ||
"kysely": "^0.26.1" | ||
"kysely": "*" | ||
}, | ||
@@ -30,0 +30,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
47088
11
350
+ Added@xata.io/client@0.0.0-alpha.v5241c9668f48662ab21b3e2d1b9e7b57b83a01ba(transitive)
+ Addedkysely@0.27.5(transitive)
- Removed@xata.io/client@0.0.0-alpha.v523e5e3c62fe7e6ea493c1b6ae5e6160336ee250(transitive)
- Removedkysely@0.26.3(transitive)
Updated@xata.io/client@0.0.0-alpha.v5241c9668f48662ab21b3e2d1b9e7b57b83a01ba