@aws-lite/route53-types 0.0.2 → 0.0.3

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 +1 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -20,7 +20,7 @@ declare interface AwsLiteRoute53 {
20
20
  * - AWS docs: {@link https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListResourceRecordSets.html Route 53: ListResourceRecordSets}
21
21
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/route53/readme.md#ListResourceRecordSets Route 53: ListResourceRecordSets}
22
22
  */
23
- ListResourceRecordSets: (input: { HostedZoneId: string, MaxItems?: number, StartRecordIdentifier?: string, StartRecordName?: string, StartRecordType?: string, paginate?: boolean }) => Promise<ListResourceRecordSetsResponse>
23
+ ListResourceRecordSets: (input: { HostedZoneId: string, MaxItems?: number, StartRecordIdentifier?: string, StartRecordName?: string, StartRecordType?: string, paginate?: boolean | string }) => Promise<ListResourceRecordSetsResponse>
24
24
  // $METHODS_END
25
25
  }
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-lite/route53-types",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Type definitions for the `@aws-lite/route53` plugin",
5
5
  "homepage": "https://aws-lite.org/services/route53",
6
6
  "repository": {