@aws-lite/acm-types 0.0.0 → 0.0.1
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 +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ declare interface AwsLiteACM {
|
|
|
28
28
|
* - AWS docs: {@link https://docs.aws.amazon.com/acm/latest/APIReference/API_ListCertificates.html ACM: ListCertificates}
|
|
29
29
|
* - aws-lite docs: {@link https://github.com/architect/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}
|