@aws-lite/acm-types 0.0.1 → 0.0.2

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 +4 -4
  2. package/package.json +3 -3
package/index.d.ts CHANGED
@@ -14,25 +14,25 @@ declare interface AwsLiteACM {
14
14
  /**
15
15
  * @description
16
16
  * - AWS docs: {@link https://docs.aws.amazon.com/acm/latest/APIReference/API_DeleteCertificate.html ACM: DeleteCertificate}
17
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/acm/readme.md#DeleteCertificate ACM: DeleteCertificate}
17
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/acm/readme.md#DeleteCertificate ACM: DeleteCertificate}
18
18
  */
19
19
  DeleteCertificate: (input: { CertificateArn: string }) => Promise<DeleteCertificateResponse>
20
20
  /**
21
21
  * @description
22
22
  * - AWS docs: {@link https://docs.aws.amazon.com/acm/latest/APIReference/API_DescribeCertificate.html ACM: DescribeCertificate}
23
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/acm/readme.md#DescribeCertificate ACM: DescribeCertificate}
23
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/acm/readme.md#DescribeCertificate ACM: DescribeCertificate}
24
24
  */
25
25
  DescribeCertificate: (input: { CertificateArn: string }) => Promise<DescribeCertificateResponse>
26
26
  /**
27
27
  * @description
28
28
  * - AWS docs: {@link https://docs.aws.amazon.com/acm/latest/APIReference/API_ListCertificates.html ACM: ListCertificates}
29
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/acm/readme.md#ListCertificates ACM: ListCertificates}
29
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/acm/readme.md#ListCertificates ACM: ListCertificates}
30
30
  */
31
31
  ListCertificates: (input: { CertificateStatuses?: any[], Includes?: Record<string, any>, MaxItems?: number, NextToken?: string, SortBy?: string, SortOrder?: string, paginate?: boolean | string }) => Promise<ListCertificatesResponse>
32
32
  /**
33
33
  * @description
34
34
  * - AWS docs: {@link https://docs.aws.amazon.com/acm/latest/APIReference/API_RequestCertificate.html ACM: RequestCertificate}
35
- * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/acm/readme.md#RequestCertificate ACM: RequestCertificate}
35
+ * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/acm/readme.md#RequestCertificate ACM: RequestCertificate}
36
36
  */
37
37
  RequestCertificate: (input: { DomainName: string, CertificateAuthorityArn?: string, DomainValidationOptions?: any[], IdempotencyToken?: string, KeyAlgorithm?: string, Options?: Record<string, any>, SubjectAlternativeNames?: any[], Tags?: any[], ValidationMethod?: string }) => Promise<RequestCertificateResponse>
38
38
  // $METHODS_END
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@aws-lite/acm-types",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Type definitions for the `@aws-lite/acm` plugin",
5
5
  "homepage": "https://aws-lite.org/services/acm",
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/acm/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"