@aws-lite/acm-types 0.0.0 → 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.
- package/index.d.ts +5 -5
- 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/
|
|
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/
|
|
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/
|
|
29
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/acm/readme.md#ListCertificates ACM: ListCertificates}
|
|
30
30
|
*/
|
|
31
|
-
ListCertificates: (input: { CertificateStatuses?: any[], Includes?: Record<string, any>, MaxItems?: number, NextToken?: string, SortBy?: string, SortOrder?: string, paginate?: boolean }) => Promise<ListCertificatesResponse>
|
|
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/
|
|
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.
|
|
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/
|
|
8
|
+
"url": "git+https://github.com/aws-lite/aws-lite.git",
|
|
9
9
|
"directory": "plugins/acm/types"
|
|
10
10
|
},
|
|
11
|
-
"bugs": "https://github.com/
|
|
11
|
+
"bugs": "https://github.com/aws-lite/aws-lite/issues",
|
|
12
12
|
"main": "",
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=16"
|