Postgres: Make securejson password optional (#75801)

make securejson password optional
This commit is contained in:
Gareth Dawson 2023-10-02 11:36:51 +01:00 committed by GitHub
parent 73be9449d1
commit 8331523679
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,5 +23,5 @@ export interface PostgresOptions extends SQLOptions {
}
export interface SecureJsonData {
password: string;
password?: string;
}