@aws-lite/cloudfront-types 0.0.10 → 0.0.12

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.
Files changed (2) hide show
  1. package/index.d.ts +2 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -49,7 +49,7 @@ declare interface AwsLiteCloudFront {
49
49
  * - AWS docs: {@link https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_ListDistributions.html CloudFront: ListDistributions}
50
50
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/cloudfront/readme.md#ListDistributions CloudFront: ListDistributions}
51
51
  */
52
- ListDistributions: (input: { Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListDistributionsResponse>
52
+ ListDistributions: (input: { Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListDistributionsResponse>
53
53
  /**
54
54
  * @description
55
55
  * - AWS docs: {@link https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistribution.html CloudFront: UpdateDistribution}
@@ -66,6 +66,7 @@ declare module "@aws-lite/client" {
66
66
  }
67
67
 
68
68
  export type {
69
+ AwsLiteCloudFront,
69
70
  /* ! Do not remove EXPORT_START / EXPORT_END ! */
70
71
  // $EXPORT_START
71
72
  CreateDistributionResponse,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-lite/cloudfront-types",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "Type definitions for the `@aws-lite/cloudfront` plugin",
5
5
  "homepage": "https://aws-lite.org/services/cloudfront",
6
6
  "repository": {