Skip to content

Commit 8201dcf

Browse files
committed
exported new methods used for development
1 parent b64e67b commit 8201dcf

File tree

3 files changed

+14
-20
lines changed

3 files changed

+14
-20
lines changed

package-lock.json

Lines changed: 3 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqlitecloud/drivers",
3-
"version": "1.0.276",
3+
"version": "1.0.289",
44
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",

src/index.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010
export { Database } from './drivers/database'
1111
export { Statement } from './drivers/statement'
1212
export { SQLiteCloudConnection } from './drivers/connection'
13-
export { type SQLiteCloudConfig, type SQLCloudRowsetMetadata, SQLiteCloudError, type ResultsCallback, type ErrorCallback } from './drivers/types'
13+
export {
14+
type SQLiteCloudConfig,
15+
type SQLCloudRowsetMetadata,
16+
SQLiteCloudError,
17+
type ResultsCallback,
18+
type ErrorCallback,
19+
type SQLiteCloudDataTypes
20+
} from './drivers/types'
1421
export { SQLiteCloudRowset, SQLiteCloudRow } from './drivers/rowset'
15-
export { escapeSqlParameter, prepareSql, parseconnectionstring, validateConfiguration } from './drivers/utilities'
22+
export { escapeSqlParameter, prepareSql, parseconnectionstring, validateConfiguration, getInitializationCommands } from './drivers/utilities'
23+
export * as protocol from './drivers/protocol'

0 commit comments

Comments
 (0)