Skip to content

Commit 962659c

Browse files
committed
progress
1 parent 749253d commit 962659c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

crates/pgls_analyser/src/options.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
use crate::lint;
44
pub type AddSerialColumn =
55
<lint::safety::add_serial_column::AddSerialColumn as pgls_analyse::Rule>::Options;
6-
pub type AddingFieldWithDefault =
7-
<lint::safety::adding_field_with_default::AddingFieldWithDefault as pgls_analyse::Rule>::Options;
6+
pub type AddingFieldWithDefault = < lint :: safety :: adding_field_with_default :: AddingFieldWithDefault as pgls_analyse :: Rule > :: Options ;
87
pub type AddingForeignKeyConstraint = < lint :: safety :: adding_foreign_key_constraint :: AddingForeignKeyConstraint as pgls_analyse :: Rule > :: Options ;
98
pub type AddingNotNullField =
109
<lint::safety::adding_not_null_field::AddingNotNullField as pgls_analyse::Rule>::Options;

packages/@postgrestools/backend-jsonrpc/src/workspace.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Generated file, do not edit by hand, see `xtask/codegen`
22
import type { Transport } from "./transport";
33
export interface IsPathIgnoredParams {
4-
pgt_path: PgTPath;
4+
pgls_path: PgTPath;
55
}
66
export interface PgTPath {
77
/**
@@ -305,6 +305,10 @@ export interface PartialDatabaseConfiguration {
305305
* The connection timeout in seconds.
306306
*/
307307
connTimeoutSecs?: number;
308+
/**
309+
* A connection string that encodes the full connection setup. When provided, it takes precedence over the individual fields.
310+
*/
311+
connectionString?: string;
308312
/**
309313
* The name of the database.
310314
*/

0 commit comments

Comments
 (0)