@aws-lite/route53-types 0.0.3 → 0.0.5

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 -2
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -12,13 +12,13 @@ declare interface AwsLiteRoute53 {
12
12
  /**
13
13
  * @description
14
14
  * - AWS docs: {@link https://docs.aws.amazon.com/Route53/latest/APIReference/API_ChangeResourceRecordSets.html Route 53: ChangeResourceRecordSets}
15
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/route53/readme.md#ChangeResourceRecordSets Route 53: ChangeResourceRecordSets}
15
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/route53/readme.md#ChangeResourceRecordSets Route 53: ChangeResourceRecordSets}
16
16
  */
17
17
  ChangeResourceRecordSets: (input: { HostedZoneId: string, ChangeBatch?: Record<string, any> }) => Promise<ChangeResourceRecordSetsResponse>
18
18
  /**
19
19
  * @description
20
20
  * - AWS docs: {@link https://docs.aws.amazon.com/Route53/latest/APIReference/API_ListResourceRecordSets.html Route 53: ListResourceRecordSets}
21
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/route53/readme.md#ListResourceRecordSets Route 53: ListResourceRecordSets}
21
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/route53/readme.md#ListResourceRecordSets Route 53: ListResourceRecordSets}
22
22
  */
23
23
  ListResourceRecordSets: (input: { HostedZoneId: string, MaxItems?: number, StartRecordIdentifier?: string, StartRecordName?: string, StartRecordType?: string, paginate?: boolean | string }) => Promise<ListResourceRecordSetsResponse>
24
24
  // $METHODS_END
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@aws-lite/route53-types",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "description": "Type definitions for the `@aws-lite/route53` plugin",
5
5
  "homepage": "https://aws-lite.org/services/route53",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/architect/aws-lite.git",
8
+ "url": "git+https://github.com/aws-lite/aws-lite.git",
9
9
  "directory": "plugins/route53/types"
10
10
  },
11
- "bugs": "https://github.com/architect/aws-lite/issues",
11
+ "bugs": "https://github.com/aws-lite/aws-lite/issues",
12
12
  "main": "",
13
13
  "engines": {
14
14
  "node": ">=16"