@openhi/constructs 0.0.128 → 0.0.130
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/lib/index.d.mts +145 -11
- package/lib/index.d.ts +145 -11
- package/lib/index.js +132 -11
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +129 -11
- package/lib/index.mjs.map +1 -1
- package/lib/rest-api-lambda.handler.js +2 -2
- package/lib/rest-api-lambda.handler.js.map +1 -1
- package/lib/rest-api-lambda.handler.mjs +2 -2
- package/lib/rest-api-lambda.handler.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -2494,7 +2494,7 @@ import express5 from "express";
|
|
|
2494
2494
|
var ENV_VAR_NAMES = [
|
|
2495
2495
|
"OPENHI_RUNTIME_CONFIG_COGNITO_USER_POOL_ID",
|
|
2496
2496
|
"OPENHI_RUNTIME_CONFIG_COGNITO_USER_POOL_CLIENT_ID",
|
|
2497
|
-
"
|
|
2497
|
+
"OPENHI_RUNTIME_CONFIG_COGNITO_DOMAIN_URL",
|
|
2498
2498
|
"OPENHI_RUNTIME_CONFIG_COGNITO_REDIRECT_URI",
|
|
2499
2499
|
"OPENHI_RUNTIME_CONFIG_API_BASE_URL"
|
|
2500
2500
|
];
|
|
@@ -2511,7 +2511,7 @@ function runtimeConfigGetRoute(_req, res) {
|
|
|
2511
2511
|
const body = {
|
|
2512
2512
|
cognitoUserPoolId: process.env.OPENHI_RUNTIME_CONFIG_COGNITO_USER_POOL_ID,
|
|
2513
2513
|
cognitoUserPoolClientId: process.env.OPENHI_RUNTIME_CONFIG_COGNITO_USER_POOL_CLIENT_ID,
|
|
2514
|
-
|
|
2514
|
+
cognitoDomainUrl: process.env.OPENHI_RUNTIME_CONFIG_COGNITO_DOMAIN_URL,
|
|
2515
2515
|
cognitoRedirectUri: process.env.OPENHI_RUNTIME_CONFIG_COGNITO_REDIRECT_URI,
|
|
2516
2516
|
apiBaseUrl: process.env.OPENHI_RUNTIME_CONFIG_API_BASE_URL
|
|
2517
2517
|
};
|