@aws-lite/apigatewayv2-types 0.0.1 → 0.0.3
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 +7 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
// $IMPORTS_START
|
|
4
4
|
CreateDeploymentCommandOutput as CreateDeploymentResponse,
|
|
5
5
|
GetDeploymentCommandOutput as GetDeploymentResponse,
|
|
6
|
+
GetDeploymentsCommandOutput as GetDeploymentsResponse,
|
|
6
7
|
UpdateStageCommandOutput as UpdateStageResponse,
|
|
7
8
|
// $IMPORTS_END
|
|
8
9
|
} from "@aws-sdk/client-apigatewayv2";
|
|
@@ -22,6 +23,12 @@ declare interface AwsLiteAPIGatewayV2 {
|
|
|
22
23
|
* - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetDeployment API Gateway V2: GetDeployment}
|
|
23
24
|
*/
|
|
24
25
|
GetDeployment: (input: { ApiId: string, NextToken?: string, MaxResults?: number }) => Promise<GetDeploymentResponse>
|
|
26
|
+
/**
|
|
27
|
+
* @description
|
|
28
|
+
* - AWS docs: {@link https://docs.aws.amazon.com/apigatewayv2/latest/api-reference/apis-apiid-deployments.html#GetDeployments API Gateway V2: GetDeployments}
|
|
29
|
+
* - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewayv2/readme.md#GetDeployments API Gateway V2: GetDeployments}
|
|
30
|
+
*/
|
|
31
|
+
GetDeployments: (input: { ApiId: string, NextToken?: string, MaxResults?: number, paginate?: boolean }) => Promise<GetDeploymentsResponse>
|
|
25
32
|
/**
|
|
26
33
|
* @description
|
|
27
34
|
* - 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