@openhi/constructs 0.0.125 → 0.0.126

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.mjs CHANGED
@@ -2970,6 +2970,18 @@ var _OpenHiRestApiService = class _OpenHiRestApiService extends OpenHiService {
2970
2970
  integration: optionsIntegration,
2971
2971
  authorizer: noAuth
2972
2972
  });
2973
+ new HttpRoute(this, "runtime-config-get-route", {
2974
+ httpApi: this.rootHttpApi,
2975
+ routeKey: HttpRouteKey.with("/control/runtime-config", HttpMethod.GET),
2976
+ integration,
2977
+ authorizer: noAuth
2978
+ });
2979
+ new HttpRoute(this, "runtime-config-head-route", {
2980
+ httpApi: this.rootHttpApi,
2981
+ routeKey: HttpRouteKey.with("/control/runtime-config", HttpMethod.HEAD),
2982
+ integration,
2983
+ authorizer: noAuth
2984
+ });
2973
2985
  new HttpRoute(this, "proxy-route-root", {
2974
2986
  httpApi: this.rootHttpApi,
2975
2987
  routeKey: HttpRouteKey.with("/", HttpMethod.ANY),