Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@xata.io/kysely

Package Overview
Dependencies
Maintainers
3
Versions
1351
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xata.io/kysely - npm Package Compare versions

Comparing version 0.0.0-alpha.vb5c7f31 to 0.0.0-alpha.vb88b7bd

6

CHANGELOG.md
# @xata.io/kysely
## 0.0.0-alpha.vb5c7f31
## 0.0.0-alpha.vb88b7bd
### Patch Changes
- Updated dependencies []:
- @xata.io/client@0.0.0-alpha.vb5c7f31
- Updated dependencies [[`922e6e54`](https://github.com/xataio/client-ts/commit/922e6e54e8b31641770a36b6b4ff8f4fa65d304d), [`f02fc165`](https://github.com/xataio/client-ts/commit/f02fc165bf6558e4377eb9f8e1d0f4222f004c70)]:
- @xata.io/client@0.0.0-alpha.vb88b7bd

@@ -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.vb5c7f31",
"version": "0.0.0-alpha.vb88b7bd",
"description": "",

@@ -21,6 +21,6 @@ "main": "./dist/index.cjs",

"dependencies": {
"@xata.io/client": "0.0.0-alpha.vb5c7f31"
"@xata.io/client": "0.0.0-alpha.vb88b7bd"
},
"devDependencies": {
"kysely": "^0.26.1"
"kysely": "^0.26.3"
},

@@ -27,0 +27,0 @@ "peerDependencies": {

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc