@gradientedge/cdk-utils 9.43.0 → 9.43.1

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.
@@ -6,6 +6,7 @@ import { ApiManagementApiOperationPolicyConfig } from '@cdktf/provider-azurerm/l
6
6
  export interface ApiManagementProps extends ApiManagementConfig {
7
7
  }
8
8
  export interface ApiManagementBackendProps extends ApiManagementBackendConfig {
9
+ backendUrlPath?: string;
9
10
  }
10
11
  export interface ApiManagementApiProps extends ApiManagementApiConfig {
11
12
  operations: ApiManagementApiOperationConfig[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.43.0",
3
+ "version": "9.43.1",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -6,7 +6,9 @@ import { ApiManagementApiOperationPolicyConfig } from '@cdktf/provider-azurerm/l
6
6
 
7
7
  export interface ApiManagementProps extends ApiManagementConfig {}
8
8
 
9
- export interface ApiManagementBackendProps extends ApiManagementBackendConfig {}
9
+ export interface ApiManagementBackendProps extends ApiManagementBackendConfig {
10
+ backendUrlPath?: string
11
+ }
10
12
 
11
13
  export interface ApiManagementApiProps extends ApiManagementApiConfig {
12
14
  operations: ApiManagementApiOperationConfig[]