@gradientedge/cdk-utils 10.6.0 → 10.7.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.
@@ -39,7 +39,7 @@ export class CommonAzureConstruct extends ComponentResource {
39
39
  servicebusManager;
40
40
  storageManager;
41
41
  constructor(name, props, options) {
42
- super(`custom:azure:Construct:${name}`, name, props, options);
42
+ super(`azure:${name}`, name, props, options);
43
43
  this.props = props;
44
44
  this.options = options;
45
45
  this.id = name;
@@ -18,7 +18,7 @@ export class CommonCloudflareConstruct extends ComponentResource {
18
18
  zoneManager;
19
19
  provider;
20
20
  constructor(name, props, options) {
21
- super(`custom:cloudflare:Construct:${name}`, name, props, options);
21
+ super(`cloudflare:${name}`, name, props, options);
22
22
  this.props = props;
23
23
  this.options = options;
24
24
  this.id = name;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "10.6.0",
3
+ "version": "10.7.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -60,7 +60,7 @@ export class CommonAzureConstruct extends ComponentResource {
60
60
  storageManager: AzureStorageManager
61
61
 
62
62
  constructor(name: string, props: CommonAzureStackProps, options?: ComponentResourceOptions) {
63
- super(`custom:azure:Construct:${name}`, name, props, options)
63
+ super(`azure:${name}`, name, props, options)
64
64
  this.props = props
65
65
  this.options = options
66
66
  this.id = name
@@ -34,7 +34,7 @@ export class CommonCloudflareConstruct extends ComponentResource {
34
34
  provider: CloudflareProvider
35
35
 
36
36
  constructor(name: string, props: CommonCloudflareStackProps, options?: ComponentResourceOptions) {
37
- super(`custom:cloudflare:Construct:${name}`, name, props, options)
37
+ super(`cloudflare:${name}`, name, props, options)
38
38
  this.props = props
39
39
  this.options = options
40
40
  this.id = name