@explo-tech/fido-api 1.4.2 → 1.5.0-dan-fix-spurious-connection-error-msgs.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,6 @@ import type { Postgres } from './Postgres';
8
8
  import type { Tunnel } from './Tunnel';
9
9
 
10
10
  export type DataSourceConfiguration = (Postgres | MySql | MSS | {
11
- minimumLiveConnectionCount: number;
12
11
  tunnel: Tunnel;
13
12
  });
14
13
 
package/models/MSS.ts CHANGED
@@ -6,7 +6,6 @@ import type { MSSAuthentication } from './MSSAuthentication';
6
6
  import type { Tunnel } from './Tunnel';
7
7
 
8
8
  export type MSS = {
9
- minimumLiveConnectionCount: number;
10
9
  tunnel: Tunnel;
11
10
  '@type': 'mss';
12
11
  authentication: MSSAuthentication;
package/models/MySql.ts CHANGED
@@ -6,7 +6,6 @@ import type { MySqlAuthentication } from './MySqlAuthentication';
6
6
  import type { Tunnel } from './Tunnel';
7
7
 
8
8
  export type MySql = {
9
- minimumLiveConnectionCount: number;
10
9
  tunnel: Tunnel;
11
10
  '@type': 'mysql';
12
11
  authentication: MySqlAuthentication;
@@ -6,7 +6,6 @@ import type { PostgresAuthentication } from './PostgresAuthentication';
6
6
  import type { Tunnel } from './Tunnel';
7
7
 
8
8
  export type Postgres = {
9
- minimumLiveConnectionCount: number;
10
9
  tunnel: Tunnel;
11
10
  '@type': 'postgres';
12
11
  authentication: PostgresAuthentication;
package/models/Tenant.ts CHANGED
@@ -8,6 +8,7 @@ import type { TenantS3Configuration } from './TenantS3Configuration';
8
8
  export type Tenant = {
9
9
  id: string;
10
10
  keys?: Array<TenantKey>;
11
+ configurationOverrides?: Record<string, string>;
11
12
  s3Configuration: TenantS3Configuration | null;
12
13
  };
13
14
 
@@ -5,7 +5,7 @@
5
5
  import type { TenantS3Configuration } from './TenantS3Configuration';
6
6
 
7
7
  export type TenantRequest = {
8
- tenantOptions?: Record<string, any>;
8
+ configurationOverrides?: Record<string, string>;
9
9
  s3Configuration: TenantS3Configuration | null;
10
10
  };
11
11
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@explo-tech/fido-api",
3
3
  "description": "Fido api",
4
4
  "homepage": "https://github.com/trust-kaz/fido",
5
- "version": "1.4.2",
5
+ "version": "1.5.0-dan-fix-spurious-connection-error-msgs.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"