@gradientedge/cdk-utils 9.75.0 → 9.77.0

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.
@@ -200,7 +200,7 @@ class AzureApiManagementManager {
200
200
  // Construct final cache key (no Accept header needed for JSON-only APIs)
201
201
  return $"{apiName}:{apiVersion}:{fullPath}:{query}";
202
202
  }" />
203
- <set-variable name="bypassCache" value="@(context.Request.Headers.GetValueOrDefault("X-Bypass-Cache", "false").ToLower())" />`;
203
+ <set-variable name="bypassCache" value="@(context.Request.Headers.GetValueOrDefault("X-Cache-Bypass", "false").ToLower())" />`;
204
204
  if (operation.caching.enableCacheSet) {
205
205
  cacheSetInboundPolicy = `<choose>
206
206
  <when condition="@((string)context.Variables["bypassCache"] != "true")">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.75.0",
3
+ "version": "9.77.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -51,12 +51,12 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "@aws-sdk/client-secrets-manager": "^3.817.0",
54
- "@aws-sdk/credential-providers": "^3.817.0",
54
+ "@aws-sdk/credential-providers": "^3.886.0",
55
55
  "@aws-sdk/types": "^3.804.0",
56
56
  "@cdktf/provider-aws": "^19.63.0",
57
- "@cdktf/provider-azurerm": "^14.4.0",
58
- "@cdktf/provider-cloudflare": "^13.1.0",
59
- "@types/lodash": "^4.17.16",
57
+ "@cdktf/provider-azurerm": "^14.12.0",
58
+ "@cdktf/provider-cloudflare": "^13.4.0",
59
+ "@types/lodash": "^4.17.20",
60
60
  "@types/node": "^22.15.17",
61
61
  "@types/uuid": "^10.0.0",
62
62
  "app-root-path": "^3.1.0",
@@ -72,8 +72,8 @@
72
72
  "uuid": "^11.1.0"
73
73
  },
74
74
  "devDependencies": {
75
- "@babel/core": "^7.27.1",
76
- "@babel/eslint-parser": "^7.27.1",
75
+ "@babel/core": "^7.28.4",
76
+ "@babel/eslint-parser": "^7.28.4",
77
77
  "@babel/plugin-proposal-class-properties": "^7.18.6",
78
78
  "@eslint/config-array": "^0.20.0",
79
79
  "@eslint/object-schema": "^2.1.6",
@@ -246,7 +246,7 @@ export class AzureApiManagementManager {
246
246
  // Construct final cache key (no Accept header needed for JSON-only APIs)
247
247
  return $"{apiName}:{apiVersion}:{fullPath}:{query}";
248
248
  }" />
249
- <set-variable name="bypassCache" value="@(context.Request.Headers.GetValueOrDefault("X-Bypass-Cache", "false").ToLower())" />`
249
+ <set-variable name="bypassCache" value="@(context.Request.Headers.GetValueOrDefault("X-Cache-Bypass", "false").ToLower())" />`
250
250
 
251
251
  if (operation.caching.enableCacheSet) {
252
252
  cacheSetInboundPolicy = `<choose>