@awboost/cfntypes 1.0.0-beta.53 → 1.0.0-beta.55

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.
@@ -288,7 +288,7 @@ export type AwsResourceDefinition = {
288
288
  [K in ResourceType]: AwsResourceDefinitionType<K>;
289
289
  }[ResourceType];
290
290
  /**
291
- * The base type of custom resource properties. All custom resource defintions
291
+ * The base type of custom resource properties. All custom resource definitions
292
292
  * must specify a `ServiceToken`, which is the ARN of the Lambda function or SNS
293
293
  * topic which handles this custom resource.
294
294
  */
@@ -302,7 +302,7 @@ export type CustomResourceType<T extends string = string> = `Custom::${T}`;
302
302
  /**
303
303
  * Represents a custom resource definition.
304
304
  */
305
- export type CustomResourceDefinition<P extends CustomResourcePropertiesBase = CustomResourcePropertiesBase, T extends string = string> = ResourceDefinitionBase<P, CustomResourceType<T>>;
305
+ export type CustomResourceDefinition<P = unknown, T extends string = string> = ResourceDefinitionBase<P & CustomResourcePropertiesBase, CustomResourceType<T>>;
306
306
  /**
307
307
  * Represents an AWS or custom resource definition.
308
308
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfntypes",
3
- "version": "1.0.0-beta.53",
3
+ "version": "1.0.0-beta.55",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"