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

@singlestore/client

Package Overview
Dependencies
Maintainers
0
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@singlestore/client - npm Package Compare versions

Comparing version 0.0.41 to 0.0.42

2

dist/index.d.ts

@@ -7,3 +7,3 @@ import * as mysql2_promise from 'mysql2/promise';

interface ConnectionConfig extends Partial<Omit<PoolOptions, "name" | "database">> {
interface ConnectionConfig extends Partial<Omit<PoolOptions, "name">> {
}

@@ -10,0 +10,0 @@ type ConnectionClient = Pool;

{
"name": "@singlestore/client",
"version": "0.0.41",
"version": "0.0.42",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "sideEffects": false,

@@ -44,2 +44,3 @@ # SingleStore Client

- [Using Workspace Group](#using-workspace-group)
- [Free Tier](#free-tier)
- [Get Workspace](#get-workspace)

@@ -445,2 +446,17 @@ - [All Workspaces](#all-workspaces)

##### Free Tier
To connect to a free tier workspace, download the SSL certificate from this [link](https://portal.singlestore.com/static/ca/singlestore_bundle.pem), set the `port` and `database`, and place the SSL certificate in the root directory of your project.
```ts
const connection = client.connect({
host: "<WORKSPACE_HOST>",
user: "<WORKSPACE_USER>",
password: "<WORKSPACE_PASSWORD>",
port: <WORKSPACE_PORT>
database: "<DATABASE_NAME>",
ssl: { ca: readFileSync(resolve(process.cwd(), "singlestore_bundle.pem")) },
});
```
---

@@ -447,0 +463,0 @@

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