@libsql/core
Advanced tools
Comparing version 0.4.3 to 0.5.0
@@ -15,2 +15,3 @@ "use strict"; | ||
let authToken = config.authToken; | ||
let encryptionKey = config.encryptionKey; | ||
let syncUrl = config.syncUrl; | ||
@@ -31,2 +32,3 @@ const intMode = "" + (config.intMode ?? "number"); | ||
authToken: undefined, | ||
encryptionKey: undefined, | ||
authority: undefined, | ||
@@ -90,2 +92,3 @@ }; | ||
authToken, | ||
encryptionKey, | ||
syncUrl, | ||
@@ -92,0 +95,0 @@ intMode, |
@@ -13,2 +13,4 @@ /** Configuration object for {@link createClient}. */ | ||
authToken?: string; | ||
/** Encryption key for the database. */ | ||
encryptionKey?: string; | ||
/** URL of a remote server to synchronize database with. */ | ||
@@ -15,0 +17,0 @@ syncUrl?: string; |
@@ -9,2 +9,3 @@ import type { Config, IntMode } from "./api.js"; | ||
authToken: string | undefined; | ||
encryptionKey: string | undefined; | ||
syncUrl: string | undefined; | ||
@@ -11,0 +12,0 @@ intMode: IntMode; |
@@ -12,2 +12,3 @@ import { LibsqlError } from "./api.js"; | ||
let authToken = config.authToken; | ||
let encryptionKey = config.encryptionKey; | ||
let syncUrl = config.syncUrl; | ||
@@ -28,2 +29,3 @@ const intMode = "" + (config.intMode ?? "number"); | ||
authToken: undefined, | ||
encryptionKey: undefined, | ||
authority: undefined, | ||
@@ -87,2 +89,3 @@ }; | ||
authToken, | ||
encryptionKey, | ||
syncUrl, | ||
@@ -89,0 +92,0 @@ intMode, |
{ | ||
"name": "@libsql/core", | ||
"version": "0.4.3", | ||
"version": "0.5.0", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "libsql", |
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
42371
1034