@nsshunt/stsconfig 1.3.5 → 1.3.10

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,4 +8,4 @@ updates:
8
8
  - package-ecosystem: "npm" # See documentation for possible values
9
9
  directory: "/" # Location of package manifests
10
10
  schedule:
11
- interval: "daily"
11
+ interval: "weekly"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nsshunt/stsconfig",
3
- "version": "1.3.5",
3
+ "version": "1.3.10",
4
4
  "description": "",
5
5
  "main": "stsconfig.js",
6
6
  "dependencies": {
package/stsconfig.js CHANGED
@@ -124,6 +124,8 @@ const defconfig =
124
124
  ,rest01password: (process.env.REST01_PASSWORD === undefined ? "K6TestUserPassword" : process.env.REST01_PASSWORD)
125
125
  // STSREST01 Service Name
126
126
  ,rest01servicename: (process.env.REST01_SERVICE_NAME === undefined ? "STSRest01" : process.env.REST01_SERVICE_NAME)
127
+ // STSREST01 Service Version
128
+ ,rest01serviceversion: (process.env.REST01_SERVICE_VERSION === undefined ? "1.0.0" : process.env.REST01_SERVICE_VERSION)
127
129
 
128
130
  // UI Console Server (UICS) endpoint
129
131
  ,uicsendpoint: (process.env.UICS_ENDPOINT === undefined ? "http://localhost" : process.env.UICS_ENDPOINT)
@@ -146,6 +148,10 @@ const defconfig =
146
148
  ,asemail: (process.env.AS_EMAIL === undefined ? "K6TestUser@sts" : process.env.AS_EMAIL)
147
149
  // Auth Server (UICS) username password
148
150
  ,aspassword: (process.env.AS_PASSWORD === undefined ? "K6TestUserPassword" : process.env.AS_PASSWORD)
151
+ // STSAuth Service Name
152
+ ,asservicename: (process.env.AS_SERVICE_NAME === undefined ? "STSAuth" : process.env.AS_SERVICE_NAME)
153
+ // STSAuth Service Version
154
+ ,asserviceversion: (process.env.AS_SERVICE_VERSION === undefined ? "1.0.0" : process.env.AS_SERVICE_VERSION)
149
155
 
150
156
  // Auth Server - Private Key
151
157
  ,asprivatekeypath: (process.env.AS_PRIVATE_KEY_PATH === undefined ? "/var/lib/sts/stsglobalresources/keys/private.key" : process.env.AS_PRIVATE_KEY_PATH)