@xata.io/kysely
Advanced tools
Comparing version 0.0.0-alpha.v3b0ed28 to 0.0.0-alpha.v40d1619
# @xata.io/kysely | ||
## 0.0.0-alpha.v3b0ed28 | ||
## 0.0.0-alpha.v40d1619 | ||
### Patch Changes | ||
- Updated dependencies []: | ||
- @xata.io/client@0.0.0-alpha.v3b0ed28 | ||
- Updated dependencies [[`922e6e54`](https://github.com/xataio/client-ts/commit/922e6e54e8b31641770a36b6b4ff8f4fa65d304d), [`13f6f3e4`](https://github.com/xataio/client-ts/commit/13f6f3e4b1a2f925d50a5380b62ef1057f5c3893), [`f02fc165`](https://github.com/xataio/client-ts/commit/f02fc165bf6558e4377eb9f8e1d0f4222f004c70)]: | ||
- @xata.io/client@0.0.0-alpha.v40d1619 | ||
@@ -10,0 +10,0 @@ ## 0.1.0 |
@@ -1,12 +0,43 @@ | ||
import { XataRecord, XataPlugin, XataPluginOptions, EditableData } from '@xata.io/client'; | ||
import { Kysely } from 'kysely'; | ||
import { SQLPluginResult, XataRecord, XataPlugin, XataPluginOptions, EditableData } from '@xata.io/client'; | ||
import { Dialect, PostgresAdapter, Driver, QueryCompiler, Kysely, DatabaseIntrospector, DatabaseConnection, CompiledQuery, QueryResult } from 'kysely'; | ||
type KyselyPluginResult<Schemas extends Record<string, XataRecord>> = Kysely<TransformSchema<Schemas>>; | ||
type XataDialectConfig = { | ||
xata: { | ||
sql: SQLPluginResult; | ||
}; | ||
}; | ||
declare class XataDialect implements Dialect { | ||
private config; | ||
constructor(config: XataDialectConfig); | ||
createAdapter(): PostgresAdapter; | ||
createDriver(): Driver; | ||
createQueryCompiler(): QueryCompiler; | ||
createIntrospector(db: Kysely<any>): DatabaseIntrospector; | ||
} | ||
declare class XataDriver implements Driver { | ||
private config; | ||
constructor(config: XataDialectConfig); | ||
init(): Promise<void>; | ||
acquireConnection(): Promise<DatabaseConnection>; | ||
beginTransaction(): Promise<void>; | ||
commitTransaction(): Promise<void>; | ||
rollbackTransaction(): Promise<void>; | ||
releaseConnection(_conn: XataConnection): Promise<void>; | ||
destroy(): Promise<void>; | ||
} | ||
declare class XataConnection implements DatabaseConnection { | ||
#private; | ||
constructor(config: XataDialectConfig); | ||
executeQuery<O>(compiledQuery: CompiledQuery): Promise<QueryResult<O>>; | ||
streamQuery<O>(_compiledQuery: CompiledQuery, _chunkSize: number): AsyncIterableIterator<QueryResult<O>>; | ||
} | ||
type KyselyPluginResult<Schemas extends Record<string, XataRecord>> = Kysely<Model<Schemas>>; | ||
declare class KyselyPlugin<Schemas extends Record<string, XataRecord>> extends XataPlugin { | ||
build(pluginOptions: XataPluginOptions): KyselyPluginResult<Schemas>; | ||
} | ||
type TransformSchema<Schemas extends Record<string, XataRecord>> = { | ||
type Model<Schemas extends Record<string, XataRecord>> = { | ||
[Model in keyof Schemas]: EditableData<Schemas[Model]>; | ||
}; | ||
export { KyselyPlugin, type KyselyPluginResult }; | ||
export { KyselyPlugin, type KyselyPluginResult, type Model, XataConnection, XataDialect, type XataDialectConfig, XataDriver }; |
{ | ||
"name": "@xata.io/kysely", | ||
"version": "0.0.0-alpha.v3b0ed28", | ||
"version": "0.0.0-alpha.v40d1619", | ||
"description": "", | ||
@@ -21,3 +21,3 @@ "main": "./dist/index.cjs", | ||
"dependencies": { | ||
"@xata.io/client": "0.0.0-alpha.v3b0ed28" | ||
"@xata.io/client": "0.0.0-alpha.v40d1619" | ||
}, | ||
@@ -24,0 +24,0 @@ "devDependencies": { |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33992
240
+ Added@xata.io/client@0.0.0-alpha.v40d1619(transitive)
- Removed@xata.io/client@0.0.0-alpha.v3b0ed28(transitive)