@aws-lite/apigatewayv2-types 0.0.8 → 0.0.9
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 +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ declare interface AwsLiteAPIGatewayV2 {
|
|
|
51
51
|
* - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/domainnames-domainname-apimappings.html#GetApiMappings API Gateway V2: GetApiMappings}
|
|
52
52
|
* - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetApiMappings API Gateway V2: GetApiMappings}
|
|
53
53
|
*/
|
|
54
|
-
GetApiMappings: (input: { DomainName: string, MaxResults?: number, NextToken?: string, paginate?: boolean }) => Promise<GetApiMappingsResponse>
|
|
54
|
+
GetApiMappings: (input: { DomainName: string, MaxResults?: number, NextToken?: string, paginate?: boolean | string }) => Promise<GetApiMappingsResponse>
|
|
55
55
|
/**
|
|
56
56
|
* @description
|
|
57
57
|
* - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-deployments-deploymentid.html#GetDeployment API Gateway V2: GetDeployment}
|
|
@@ -63,7 +63,7 @@ declare interface AwsLiteAPIGatewayV2 {
|
|
|
63
63
|
* - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-deployments.html#GetDeployments API Gateway V2: GetDeployments}
|
|
64
64
|
* - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetDeployments API Gateway V2: GetDeployments}
|
|
65
65
|
*/
|
|
66
|
-
GetDeployments: (input: { ApiId: string, NextToken?: string, MaxResults?: number, paginate?: boolean }) => Promise<GetDeploymentsResponse>
|
|
66
|
+
GetDeployments: (input: { ApiId: string, NextToken?: string, MaxResults?: number, paginate?: boolean | string }) => Promise<GetDeploymentsResponse>
|
|
67
67
|
/**
|
|
68
68
|
* @description
|
|
69
69
|
* - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-stages-stagename.html#UpdateStage API Gateway V2: UpdateStage}
|
package/package.json
CHANGED