@twin.org/engine-server 0.0.1-next.17 → 0.0.1-next.19

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.
@@ -272,7 +272,6 @@ class EngineServer {
272
272
  * @returns The the config for the core and the server.
273
273
  */
274
274
  function buildEngineServerConfiguration(envVars, coreEngineConfig, serverInfo) {
275
- envVars.adminUsername ??= "admin@node";
276
275
  envVars.authSigningKeyId ??= "auth-signing";
277
276
  const webServerOptions = {
278
277
  port: core.Coerce.number(envVars.port),
@@ -270,7 +270,6 @@ class EngineServer {
270
270
  * @returns The the config for the core and the server.
271
271
  */
272
272
  function buildEngineServerConfiguration(envVars, coreEngineConfig, serverInfo) {
273
- envVars.adminUsername ??= "admin@node";
274
273
  envVars.authSigningKeyId ??= "auth-signing";
275
274
  const webServerOptions = {
276
275
  port: Coerce.number(envVars.port),
@@ -2,10 +2,6 @@
2
2
  * The engine server environment variables.
3
3
  */
4
4
  export interface IEngineServerEnvironmentVariables {
5
- /**
6
- * The name of the admin user.
7
- */
8
- adminUsername?: string;
9
5
  /**
10
6
  * The port to serve the API from.
11
7
  */
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/engine-server - Changelog
2
2
 
3
- ## v0.0.1-next.17
3
+ ## v0.0.1-next.19
4
4
 
5
5
  - Initial Release
@@ -4,14 +4,6 @@ The engine server environment variables.
4
4
 
5
5
  ## Properties
6
6
 
7
- ### adminUsername?
8
-
9
- > `optional` **adminUsername**: `string`
10
-
11
- The name of the admin user.
12
-
13
- ***
14
-
15
7
  ### port?
16
8
 
17
9
  > `optional` **port**: `string`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine-server",
3
- "version": "0.0.1-next.17",
3
+ "version": "0.0.1-next.19",
4
4
  "description": "Engine implementation for a server.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,9 +17,9 @@
17
17
  "@twin.org/api-models": "next",
18
18
  "@twin.org/api-server-fastify": "next",
19
19
  "@twin.org/core": "next",
20
- "@twin.org/engine-core": "0.0.1-next.17",
21
- "@twin.org/engine-models": "0.0.1-next.17",
22
- "@twin.org/engine-server-types": "0.0.1-next.17",
20
+ "@twin.org/engine-core": "0.0.1-next.19",
21
+ "@twin.org/engine-models": "0.0.1-next.19",
22
+ "@twin.org/engine-server-types": "0.0.1-next.19",
23
23
  "@twin.org/modules": "next",
24
24
  "@twin.org/nameof": "next"
25
25
  },