@aws-lite/apigatewaymanagementapi-types 0.0.2 → 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.
Files changed (2) hide show
  1. package/index.d.ts +3 -3
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -15,19 +15,19 @@ declare interface AwsLiteApiGatewayManagementApi {
15
15
  * - AWS docs: {@link https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-how-to-call-websocket-api-connections.html API Gateway WebSocket Management API: PostToConnection}
16
16
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewaymanagementapi/readme.md#PostToConnection API Gateway WebSocket Management API: PostToConnection}
17
17
  */
18
- PostToConnection: (input: { ApiUrl?: string, ApiId?: string, Stage?: string, ConnectionId: string, Data?: string,object }) => Promise<PostToConnectionResponse>
18
+ PostToConnection: (input: { ConnectionId: string, ApiUrl?: string, ApiId?: string, Stage?: string, Data?: string,object }) => Promise<PostToConnectionResponse>
19
19
  /**
20
20
  * @description
21
21
  * - AWS docs: {@link https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-how-to-call-websocket-api-connections.html API Gateway WebSocket Management API: DeleteConnection}
22
22
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewaymanagementapi/readme.md#DeleteConnection API Gateway WebSocket Management API: DeleteConnection}
23
23
  */
24
- DeleteConnection: (input: { ApiUrl?: string, ApiId?: string, Stage?: string, ConnectionId: string }) => Promise<DeleteConnectionResponse>
24
+ DeleteConnection: (input: { ConnectionId: string, ApiUrl?: string, ApiId?: string, Stage?: string }) => Promise<DeleteConnectionResponse>
25
25
  /**
26
26
  * @description
27
27
  * - AWS docs: {@link https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-how-to-call-websocket-api-connections.html API Gateway WebSocket Management API: GetConnection}
28
28
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/apigatewaymanagementapi/readme.md#GetConnection API Gateway WebSocket Management API: GetConnection}
29
29
  */
30
- GetConnection: (input: { ApiUrl?: string, ApiId?: string, Stage?: string, ConnectionId: string }) => Promise<GetConnectionResponse>
30
+ GetConnection: (input: { ConnectionId: string, ApiUrl?: string, ApiId?: string, Stage?: string }) => Promise<GetConnectionResponse>
31
31
  // $METHODS_END
32
32
  }
33
33
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-lite/apigatewaymanagementapi-types",
3
3
  "description": "Type definitions for the @aws-lite/apigatewaymanagementapi plugin",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "main": "",
6
6
  "types": "index.d.ts",
7
7
  "files": [