1 Commits

Author SHA1 Message Date
renovate[bot] fcce3c9b3e Update dependency typescript to v7 2026-09-03 01:11:52 +00:00
6 changed files with 3629 additions and 1820 deletions
+2024 -97
View File
File diff suppressed because it is too large Load Diff
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@showbridge/docs",
"type": "module",
"version": "0.7.0",
"version": "0.6.0",
"files": [
"dist"
],
@@ -15,9 +15,9 @@
},
"devDependencies": {
"@astrojs/check": "0.9.10",
"@astrojs/starlight": "0.42.0",
"astro": "7.3.1",
"@astrojs/starlight": "0.41.10",
"astro": "7.2.10",
"sharp": "0.35.4",
"typescript": "6.0.3"
"typescript": "7.0.2"
}
}
-24
View File
@@ -1,24 +0,0 @@
---
title: MySQL
sidebar:
order: 1
---
import SchemaInfo from '../../../../components/SchemaInfo.astro';
The `db.mysql` module can open a connection to MySQL databases
<SchemaInfo type="module" id="db.mysql"></SchemaInfo>
This module implements the `DatabaseModule` interface.
### Example
Opens a connection to a MySQL database
```yaml
- id: myDatabase
type: db.mysql
params:
dsn: "user:password@tcp(localhost:3306)/mydatabase"
```
-24
View File
@@ -1,24 +0,0 @@
---
title: PostgreSQL
sidebar:
order: 1
---
import SchemaInfo from '../../../../components/SchemaInfo.astro';
The `db.postgres` module can open a connection to PostgreSQL databases
<SchemaInfo type="module" id="db.postgres"></SchemaInfo>
This module implements the `DatabaseModule` interface.
### Example
Opens a connection to a PostgreSQL database
```yaml
- id: myDatabase
type: db.postgres
params:
url: "postgresql://user:password@localhost:5432/mydatabase"
```
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff