@nsshunt/stsconfig 1.25.99 → 1.25.101
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.
- package/dist/stsconfig.mjs +0 -12
- package/dist/stsconfig.mjs.map +1 -1
- package/dist/stsconfig.umd.js +0 -12
- package/dist/stsconfig.umd.js.map +1 -1
- package/package.json +1 -1
- package/types/stsconfig.d.ts.map +1 -1
- package/types/stsoptions.d.ts +0 -32
- package/types/stsoptions.d.ts.map +1 -1
package/dist/stsconfig.mjs
CHANGED
|
@@ -1489,10 +1489,6 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1489
1489
|
imprometheusclusterport: process.env.IM_PROM_CLUSTER_PORT === void 0 ? "3011" : process.env.IM_PROM_CLUSTER_PORT,
|
|
1490
1490
|
imservicename: process.env.IM_SERVICE_NAME === void 0 ? "STSInstrumentManager" : process.env.IM_SERVICE_NAME,
|
|
1491
1491
|
imserviceversion: process.env.IM_SERVICE_VERSION === void 0 ? "1.0.0" : process.env.IM_SERVICE_VERSION,
|
|
1492
|
-
imclientid: process.env.IM_CLIENT_ID,
|
|
1493
|
-
imclientidfile: process.env.IM_CLIENT_ID_FILE,
|
|
1494
|
-
imclientsecret: process.env.IM_CLIENT_SECRET,
|
|
1495
|
-
imclientsecretfile: process.env.IM_CLIENT_SECRET_FILE,
|
|
1496
1492
|
toendpoint: process.env.TO_ENDPOINT === void 0 ? "https://localhost" : process.env.TO_ENDPOINT,
|
|
1497
1493
|
tohostport: process.env.TO_HOST_PORT === void 0 ? "3004" : process.env.TO_HOST_PORT,
|
|
1498
1494
|
toport: process.env.TO_PORT === void 0 ? "3004" : process.env.TO_PORT,
|
|
@@ -1501,10 +1497,6 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1501
1497
|
toprometheusclusterport: process.env.TO_PROM_CLUSTER_PORT === void 0 ? "3014" : process.env.TO_PROM_CLUSTER_PORT,
|
|
1502
1498
|
toservicename: process.env.TO_SERVICE_NAME === void 0 ? "STSTestOrchestrator" : process.env.TO_SERVICE_NAME,
|
|
1503
1499
|
toserviceversion: process.env.TO_SERVICE_VERSION === void 0 ? "1.0.0" : process.env.TO_SERVICE_VERSION,
|
|
1504
|
-
toclientid: process.env.TO_CLIENT_ID,
|
|
1505
|
-
toclientidfile: process.env.TO_CLIENT_ID_FILE,
|
|
1506
|
-
toclientsecret: process.env.TO_CLIENT_SECRET,
|
|
1507
|
-
toclientsecretfile: process.env.TO_CLIENT_SECRET_FILE,
|
|
1508
1500
|
asendpoint: process.env.AS_ENDPOINT === void 0 ? "https://localhost" : process.env.AS_ENDPOINT,
|
|
1509
1501
|
ashostport: process.env.AS_HOST_PORT === void 0 ? "3002" : process.env.AS_HOST_PORT,
|
|
1510
1502
|
asport: process.env.AS_PORT === void 0 ? "3002" : process.env.AS_PORT,
|
|
@@ -1635,13 +1627,9 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1635
1627
|
const fileconfig = [
|
|
1636
1628
|
{ fileprop: "dbpasswordfile", prop: "dbpassword" },
|
|
1637
1629
|
// Client ID file processing
|
|
1638
|
-
{ fileprop: "toclientidfile", prop: "toclientid" },
|
|
1639
|
-
{ fileprop: "imclientidfile", prop: "imclientid" },
|
|
1640
1630
|
{ fileprop: "trclientidfile", prop: "trclientid" },
|
|
1641
1631
|
{ fileprop: "lambdaclientidfile", prop: "lambdaclientid" },
|
|
1642
1632
|
// Client secret file processing
|
|
1643
|
-
{ fileprop: "toclientsecretfile", prop: "toclientsecret" },
|
|
1644
|
-
{ fileprop: "imclientsecretfile", prop: "imclientsecret" },
|
|
1645
1633
|
{ fileprop: "trclientsecretfile", prop: "trclientsecret" },
|
|
1646
1634
|
{ fileprop: "lambdaclientsecretfile", prop: "lambdaclientsecret" },
|
|
1647
1635
|
// JWKS secret file processing
|