@niledatabase/server 2.3.2 → 2.4.0-alpha.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.
@@ -12,5 +12,6 @@ export declare const getToken: (cfg: EnvConfig) => string | undefined;
12
12
  export declare const getDatabaseName: (cfg: EnvConfig) => string | null;
13
13
  export declare const getTenantId: (cfg: EnvConfig) => string | null;
14
14
  export declare const getBasePath: (cfg: EnvConfig) => string;
15
+ export declare const getControlPlane: (cfg: EnvConfig) => string;
15
16
  export declare function getDbHost(cfg: EnvConfig): string;
16
17
  export declare function getDbPort(cfg: EnvConfig): number;
@@ -25,7 +25,7 @@ export declare class Config {
25
25
  set tenantId(value: string | undefined | null);
26
26
  get userId(): string | undefined | null;
27
27
  set userId(value: string | undefined | null);
28
- constructor(config?: ServerConfig);
28
+ constructor(config?: ServerConfig, logger?: string);
29
29
  configure: (config: ServerConfig) => Promise<Config>;
30
30
  }
31
31
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@niledatabase/server",
3
- "version": "2.3.2",
3
+ "version": "2.4.0-alpha.1",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/server.esm.js",
@@ -72,5 +72,5 @@
72
72
  "jose": "^4.15.4",
73
73
  "pg": "^8.11.3"
74
74
  },
75
- "gitHead": "3d3813d59637f61e59e9241655d42120ca695425"
75
+ "gitHead": "239016bc1c73877c950c6031520cb32389fb90eb"
76
76
  }