@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.
@@ -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
- "OPENHI_RUNTIME_CONFIG_COGNITO_DOMAIN",
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
- cognitoDomain: process.env.OPENHI_RUNTIME_CONFIG_COGNITO_DOMAIN,
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
  };