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

@libsql/core

Package Overview
Dependencies
Maintainers
3
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@libsql/core - npm Package Compare versions

Comparing version 0.4.3 to 0.5.0

3

lib-cjs/config.js

@@ -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,

2

package.json
{
"name": "@libsql/core",
"version": "0.4.3",
"version": "0.5.0",
"keywords": [

@@ -5,0 +5,0 @@ "libsql",

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