New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@prisma/adapter-libsql

Package Overview
Dependencies
Maintainers
10
Versions
2154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prisma/adapter-libsql - npm Package Compare versions

Comparing version 5.7.0-integration-refactor-consistently-use-binarytarget-term.1 to 5.7.0-integration-wasm-0-0-8.1

dist/index.d.mts

5

dist/index.js

@@ -32,3 +32,2 @@ "use strict";

// src/conversion.ts
var import_types = require("util/types");
var import_driver_adapter_utils = require("@prisma/driver-adapter-utils");

@@ -132,3 +131,3 @@ var debug = (0, import_driver_adapter_utils.Debug)("prisma:driver-adapter:libsql:conversion");

function inferObjectType(value) {
if ((0, import_types.isArrayBuffer)(value)) {
if (value instanceof ArrayBuffer) {
return import_driver_adapter_utils.ColumnTypeEnum.Bytes;

@@ -150,3 +149,3 @@ }

const value = result[i];
if ((0, import_types.isArrayBuffer)(value)) {
if (value instanceof ArrayBuffer) {
result[i] = Array.from(new Uint8Array(value));

@@ -153,0 +152,0 @@ continue;

16

package.json
{
"name": "@prisma/adapter-libsql",
"version": "5.7.0-integration-refactor-consistently-use-binarytarget-term.1",
"version": "5.7.0-integration-wasm-0-0-8.1",
"description": "Prisma's driver adapter for libSQL and Turso",

@@ -8,2 +8,14 @@ "main": "dist/index.js",

"types": "dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
}
},
"repository": {

@@ -24,3 +36,3 @@ "type": "git",

"async-mutex": "0.4.0",
"@prisma/driver-adapter-utils": "5.7.0-integration-refactor-consistently-use-binarytarget-term.1"
"@prisma/driver-adapter-utils": "5.7.0-integration-wasm-0-0-8.1"
},

@@ -27,0 +39,0 @@ "devDependencies": {

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