@nsshunt/stsconfig 1.25.85 → 1.25.87
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 +17 -0
- package/dist/stsconfig.mjs.map +1 -1
- package/dist/stsconfig.umd.js +17 -0
- package/dist/stsconfig.umd.js.map +1 -1
- package/package.json +1 -3
- package/types/stsconfig.d.ts.map +1 -1
- package/types/stsoptions.d.ts +58 -0
- package/types/stsoptions.d.ts.map +1 -1
package/dist/stsconfig.mjs
CHANGED
|
@@ -1584,6 +1584,20 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1584
1584
|
trclientidfile: process.env.TR_CLIENT_ID_FILE,
|
|
1585
1585
|
trclientsecret: process.env.TR_CLIENT_SECRET,
|
|
1586
1586
|
trclientsecretfile: process.env.TR_CLIENT_SECRET_FILE,
|
|
1587
|
+
lambdaendpoint: process.env.LAMBDA_ENDPOINT === void 0 ? "https://localhost" : process.env.LAMBDA_ENDPOINT,
|
|
1588
|
+
lambdahostport: process.env.LAMBDA_HOST_PORT === void 0 ? "3009" : process.env.LAMBDA_HOST_PORT,
|
|
1589
|
+
lambdaport: process.env.LAMBDA_PORT === void 0 ? "3009" : process.env.LAMBDA_PORT,
|
|
1590
|
+
lambdaapiroot: process.env.LAMBDA_APIROOT === void 0 ? "/stslambda/v1.0" : process.env.LAMBDA_APIROOT,
|
|
1591
|
+
lambdaapiidentifier: process.env.LAMBDA_API_IDENTIFIER,
|
|
1592
|
+
lambdaapiidentifierfile: process.env.LAMBDA_API_IDENTIFIER_FILE,
|
|
1593
|
+
lambdaprometheussupport: process.env.LAMBDA_PROM_SUPPORT === void 0 ? true : process.env.LAMBDA_PROM_SUPPORT === "true" ? true : false,
|
|
1594
|
+
lambdaprometheusclusterport: process.env.LAMBDA_PROM_CLUSTER_PORT === void 0 ? "3019" : process.env.LAMBDA_PROM_CLUSTER_PORT,
|
|
1595
|
+
lambdaservicename: process.env.LAMBDA_SERVICE_NAME === void 0 ? "STSLambda" : process.env.LAMBDA_SERVICE_NAME,
|
|
1596
|
+
lambdaserviceversion: process.env.LAMBDA_SERVICE_VERSION === void 0 ? "1.0.0" : process.env.LAMBDA_SERVICE_VERSION,
|
|
1597
|
+
lambdaclientid: process.env.LAMBDA_CLIENT_ID,
|
|
1598
|
+
lambdaclientidfile: process.env.LAMBDA_CLIENT_ID_FILE,
|
|
1599
|
+
lambdaclientsecret: process.env.LAMBDA_CLIENT_SECRET,
|
|
1600
|
+
lambdaclientsecretfile: process.env.LAMBDA_CLIENT_SECRET_FILE,
|
|
1587
1601
|
publishinterval: process.env.PUBLISH_INTERVAL === void 0 ? 1e3 : parseInt(process.env.PUBLISH_INTERVAL),
|
|
1588
1602
|
publishtimeout: process.env.PUBLISH_TIMEOUT === void 0 ? 750 : parseInt(process.env.PUBLISH_TIMEOUT),
|
|
1589
1603
|
publishdebug: process.env.PUBLISH_DEBUG === void 0 ? false : process.env.PUBLISH_DEBUG === "true" ? true : false,
|
|
@@ -1668,6 +1682,7 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1668
1682
|
{ fileprop: "toapiidentifierfile", prop: "toapiidentifier" },
|
|
1669
1683
|
{ fileprop: "imapiidentifierfile", prop: "imapiidentifier" },
|
|
1670
1684
|
{ fileprop: "trnapiidentifierfile", prop: "trnapiidentifier" },
|
|
1685
|
+
{ fileprop: "lambdaapiidentifierfile", prop: "lambdaapiidentifier" },
|
|
1671
1686
|
// Client ID file processing
|
|
1672
1687
|
{ fileprop: "asclientidfile", prop: "asclientid" },
|
|
1673
1688
|
{ fileprop: "rest01clientidfile", prop: "rest01clientid" },
|
|
@@ -1676,6 +1691,7 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1676
1691
|
{ fileprop: "imclientidfile", prop: "imclientid" },
|
|
1677
1692
|
{ fileprop: "trclientidfile", prop: "trclientid" },
|
|
1678
1693
|
{ fileprop: "trnclientidfile", prop: "trnclientid" },
|
|
1694
|
+
{ fileprop: "lambdaclientidfile", prop: "lambdaclientid" },
|
|
1679
1695
|
// Client secret file processing
|
|
1680
1696
|
{ fileprop: "asclientsecretfile", prop: "asclientsecret" },
|
|
1681
1697
|
{ fileprop: "rest01clientsecretfile", prop: "rest01clientsecret" },
|
|
@@ -1684,6 +1700,7 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1684
1700
|
{ fileprop: "imclientsecretfile", prop: "imclientsecret" },
|
|
1685
1701
|
{ fileprop: "trclientsecretfile", prop: "trclientsecret" },
|
|
1686
1702
|
{ fileprop: "trnclientsecretfile", prop: "trnclientsecret" },
|
|
1703
|
+
{ fileprop: "lambdaclientsecretfile", prop: "lambdaclientsecret" },
|
|
1687
1704
|
// JWKS secret file processing
|
|
1688
1705
|
{ fileprop: "tsjwksstorepathfile", prop: "tsjwksstorepath" },
|
|
1689
1706
|
// InfluxDB file processing
|