@aws-sdk/client-apigatewaymanagementapi 3.312.0 → 3.316.0

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.
@@ -1,52 +1,17 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ApiGatewayManagementApi = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
4
5
  const ApiGatewayManagementApiClient_1 = require("./ApiGatewayManagementApiClient");
5
6
  const DeleteConnectionCommand_1 = require("./commands/DeleteConnectionCommand");
6
7
  const GetConnectionCommand_1 = require("./commands/GetConnectionCommand");
7
8
  const PostToConnectionCommand_1 = require("./commands/PostToConnectionCommand");
9
+ const commands = {
10
+ DeleteConnectionCommand: DeleteConnectionCommand_1.DeleteConnectionCommand,
11
+ GetConnectionCommand: GetConnectionCommand_1.GetConnectionCommand,
12
+ PostToConnectionCommand: PostToConnectionCommand_1.PostToConnectionCommand,
13
+ };
8
14
  class ApiGatewayManagementApi extends ApiGatewayManagementApiClient_1.ApiGatewayManagementApiClient {
9
- deleteConnection(args, optionsOrCb, cb) {
10
- const command = new DeleteConnectionCommand_1.DeleteConnectionCommand(args);
11
- if (typeof optionsOrCb === "function") {
12
- this.send(command, optionsOrCb);
13
- }
14
- else if (typeof cb === "function") {
15
- if (typeof optionsOrCb !== "object")
16
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
17
- this.send(command, optionsOrCb || {}, cb);
18
- }
19
- else {
20
- return this.send(command, optionsOrCb);
21
- }
22
- }
23
- getConnection(args, optionsOrCb, cb) {
24
- const command = new GetConnectionCommand_1.GetConnectionCommand(args);
25
- if (typeof optionsOrCb === "function") {
26
- this.send(command, optionsOrCb);
27
- }
28
- else if (typeof cb === "function") {
29
- if (typeof optionsOrCb !== "object")
30
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
31
- this.send(command, optionsOrCb || {}, cb);
32
- }
33
- else {
34
- return this.send(command, optionsOrCb);
35
- }
36
- }
37
- postToConnection(args, optionsOrCb, cb) {
38
- const command = new PostToConnectionCommand_1.PostToConnectionCommand(args);
39
- if (typeof optionsOrCb === "function") {
40
- this.send(command, optionsOrCb);
41
- }
42
- else if (typeof cb === "function") {
43
- if (typeof optionsOrCb !== "object")
44
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
45
- this.send(command, optionsOrCb || {}, cb);
46
- }
47
- else {
48
- return this.send(command, optionsOrCb);
49
- }
50
- }
51
15
  }
52
16
  exports.ApiGatewayManagementApi = ApiGatewayManagementApi;
17
+ (0, smithy_client_1.createAggregatedClient)(commands, ApiGatewayManagementApi);
@@ -65,7 +65,7 @@ const de_DeleteConnectionCommand = async (output, context) => {
65
65
  if (output.statusCode !== 204 && output.statusCode >= 300) {
66
66
  return de_DeleteConnectionCommandError(output, context);
67
67
  }
68
- const contents = map({
68
+ const contents = (0, smithy_client_1.map)({
69
69
  $metadata: deserializeMetadata(output),
70
70
  });
71
71
  await collectBody(output.body, context);
@@ -90,10 +90,9 @@ const de_DeleteConnectionCommandError = async (output, context) => {
90
90
  throw await de_LimitExceededExceptionRes(parsedOutput, context);
91
91
  default:
92
92
  const parsedBody = parsedOutput.body;
93
- (0, smithy_client_1.throwDefaultError)({
93
+ return throwDefaultError({
94
94
  output,
95
95
  parsedBody,
96
- exceptionCtor: ApiGatewayManagementApiServiceException_1.ApiGatewayManagementApiServiceException,
97
96
  errorCode,
98
97
  });
99
98
  }
@@ -102,19 +101,16 @@ const de_GetConnectionCommand = async (output, context) => {
102
101
  if (output.statusCode !== 200 && output.statusCode >= 300) {
103
102
  return de_GetConnectionCommandError(output, context);
104
103
  }
105
- const contents = map({
104
+ const contents = (0, smithy_client_1.map)({
106
105
  $metadata: deserializeMetadata(output),
107
106
  });
108
107
  const data = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.expectObject)(await parseBody(output.body, context)), "body");
109
- if (data.connectedAt != null) {
110
- contents.ConnectedAt = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(data.connectedAt));
111
- }
112
- if (data.identity != null) {
113
- contents.Identity = de_Identity(data.identity, context);
114
- }
115
- if (data.lastActiveAt != null) {
116
- contents.LastActiveAt = (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(data.lastActiveAt));
117
- }
108
+ const doc = (0, smithy_client_1.take)(data, {
109
+ ConnectedAt: [, (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)), `connectedAt`],
110
+ Identity: [, (_) => de_Identity(_, context), `identity`],
111
+ LastActiveAt: [, (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseRfc3339DateTimeWithOffset)(_)), `lastActiveAt`],
112
+ });
113
+ Object.assign(contents, doc);
118
114
  return contents;
119
115
  };
120
116
  exports.de_GetConnectionCommand = de_GetConnectionCommand;
@@ -136,10 +132,9 @@ const de_GetConnectionCommandError = async (output, context) => {
136
132
  throw await de_LimitExceededExceptionRes(parsedOutput, context);
137
133
  default:
138
134
  const parsedBody = parsedOutput.body;
139
- (0, smithy_client_1.throwDefaultError)({
135
+ return throwDefaultError({
140
136
  output,
141
137
  parsedBody,
142
- exceptionCtor: ApiGatewayManagementApiServiceException_1.ApiGatewayManagementApiServiceException,
143
138
  errorCode,
144
139
  });
145
140
  }
@@ -148,7 +143,7 @@ const de_PostToConnectionCommand = async (output, context) => {
148
143
  if (output.statusCode !== 200 && output.statusCode >= 300) {
149
144
  return de_PostToConnectionCommandError(output, context);
150
145
  }
151
- const contents = map({
146
+ const contents = (0, smithy_client_1.map)({
152
147
  $metadata: deserializeMetadata(output),
153
148
  });
154
149
  await collectBody(output.body, context);
@@ -176,18 +171,19 @@ const de_PostToConnectionCommandError = async (output, context) => {
176
171
  throw await de_PayloadTooLargeExceptionRes(parsedOutput, context);
177
172
  default:
178
173
  const parsedBody = parsedOutput.body;
179
- (0, smithy_client_1.throwDefaultError)({
174
+ return throwDefaultError({
180
175
  output,
181
176
  parsedBody,
182
- exceptionCtor: ApiGatewayManagementApiServiceException_1.ApiGatewayManagementApiServiceException,
183
177
  errorCode,
184
178
  });
185
179
  }
186
180
  };
187
- const map = smithy_client_1.map;
181
+ const throwDefaultError = (0, smithy_client_1.withBaseException)(ApiGatewayManagementApiServiceException_1.ApiGatewayManagementApiServiceException);
188
182
  const de_ForbiddenExceptionRes = async (parsedOutput, context) => {
189
- const contents = map({});
183
+ const contents = (0, smithy_client_1.map)({});
190
184
  const data = parsedOutput.body;
185
+ const doc = (0, smithy_client_1.take)(data, {});
186
+ Object.assign(contents, doc);
191
187
  const exception = new models_0_1.ForbiddenException({
192
188
  $metadata: deserializeMetadata(parsedOutput),
193
189
  ...contents,
@@ -195,8 +191,10 @@ const de_ForbiddenExceptionRes = async (parsedOutput, context) => {
195
191
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
196
192
  };
197
193
  const de_GoneExceptionRes = async (parsedOutput, context) => {
198
- const contents = map({});
194
+ const contents = (0, smithy_client_1.map)({});
199
195
  const data = parsedOutput.body;
196
+ const doc = (0, smithy_client_1.take)(data, {});
197
+ Object.assign(contents, doc);
200
198
  const exception = new models_0_1.GoneException({
201
199
  $metadata: deserializeMetadata(parsedOutput),
202
200
  ...contents,
@@ -204,8 +202,10 @@ const de_GoneExceptionRes = async (parsedOutput, context) => {
204
202
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
205
203
  };
206
204
  const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
207
- const contents = map({});
205
+ const contents = (0, smithy_client_1.map)({});
208
206
  const data = parsedOutput.body;
207
+ const doc = (0, smithy_client_1.take)(data, {});
208
+ Object.assign(contents, doc);
209
209
  const exception = new models_0_1.LimitExceededException({
210
210
  $metadata: deserializeMetadata(parsedOutput),
211
211
  ...contents,
@@ -213,11 +213,12 @@ const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
213
213
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
214
214
  };
215
215
  const de_PayloadTooLargeExceptionRes = async (parsedOutput, context) => {
216
- const contents = map({});
216
+ const contents = (0, smithy_client_1.map)({});
217
217
  const data = parsedOutput.body;
218
- if (data.message != null) {
219
- contents.Message = (0, smithy_client_1.expectString)(data.message);
220
- }
218
+ const doc = (0, smithy_client_1.take)(data, {
219
+ Message: [, smithy_client_1.expectString, `message`],
220
+ });
221
+ Object.assign(contents, doc);
221
222
  const exception = new models_0_1.PayloadTooLargeException({
222
223
  $metadata: deserializeMetadata(parsedOutput),
223
224
  ...contents,
@@ -225,10 +226,10 @@ const de_PayloadTooLargeExceptionRes = async (parsedOutput, context) => {
225
226
  return (0, smithy_client_1.decorateServiceException)(exception, parsedOutput.body);
226
227
  };
227
228
  const de_Identity = (output, context) => {
228
- return {
229
- SourceIp: (0, smithy_client_1.expectString)(output.sourceIp),
230
- UserAgent: (0, smithy_client_1.expectString)(output.userAgent),
231
- };
229
+ return (0, smithy_client_1.take)(output, {
230
+ SourceIp: [, smithy_client_1.expectString, `sourceIp`],
231
+ UserAgent: [, smithy_client_1.expectString, `userAgent`],
232
+ });
232
233
  };
233
234
  const deserializeMetadata = (output) => ({
234
235
  httpStatusCode: output.statusCode,
@@ -1,48 +1,13 @@
1
+ import { createAggregatedClient } from "@aws-sdk/smithy-client";
1
2
  import { ApiGatewayManagementApiClient } from "./ApiGatewayManagementApiClient";
2
3
  import { DeleteConnectionCommand, } from "./commands/DeleteConnectionCommand";
3
4
  import { GetConnectionCommand, } from "./commands/GetConnectionCommand";
4
5
  import { PostToConnectionCommand, } from "./commands/PostToConnectionCommand";
6
+ const commands = {
7
+ DeleteConnectionCommand,
8
+ GetConnectionCommand,
9
+ PostToConnectionCommand,
10
+ };
5
11
  export class ApiGatewayManagementApi extends ApiGatewayManagementApiClient {
6
- deleteConnection(args, optionsOrCb, cb) {
7
- const command = new DeleteConnectionCommand(args);
8
- if (typeof optionsOrCb === "function") {
9
- this.send(command, optionsOrCb);
10
- }
11
- else if (typeof cb === "function") {
12
- if (typeof optionsOrCb !== "object")
13
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
14
- this.send(command, optionsOrCb || {}, cb);
15
- }
16
- else {
17
- return this.send(command, optionsOrCb);
18
- }
19
- }
20
- getConnection(args, optionsOrCb, cb) {
21
- const command = new GetConnectionCommand(args);
22
- if (typeof optionsOrCb === "function") {
23
- this.send(command, optionsOrCb);
24
- }
25
- else if (typeof cb === "function") {
26
- if (typeof optionsOrCb !== "object")
27
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
28
- this.send(command, optionsOrCb || {}, cb);
29
- }
30
- else {
31
- return this.send(command, optionsOrCb);
32
- }
33
- }
34
- postToConnection(args, optionsOrCb, cb) {
35
- const command = new PostToConnectionCommand(args);
36
- if (typeof optionsOrCb === "function") {
37
- this.send(command, optionsOrCb);
38
- }
39
- else if (typeof cb === "function") {
40
- if (typeof optionsOrCb !== "object")
41
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
42
- this.send(command, optionsOrCb || {}, cb);
43
- }
44
- else {
45
- return this.send(command, optionsOrCb);
46
- }
47
- }
48
12
  }
13
+ createAggregatedClient(commands, ApiGatewayManagementApi);
@@ -1,5 +1,5 @@
1
1
  import { HttpRequest as __HttpRequest } from "@aws-sdk/protocol-http";
2
- import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map as __map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, throwDefaultError, } from "@aws-sdk/smithy-client";
2
+ import { decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, resolvedPath as __resolvedPath, take, withBaseException, } from "@aws-sdk/smithy-client";
3
3
  import { ApiGatewayManagementApiServiceException as __BaseException } from "../models/ApiGatewayManagementApiServiceException";
4
4
  import { ForbiddenException, GoneException, LimitExceededException, PayloadTooLargeException, } from "../models/models_0";
5
5
  export const se_DeleteConnectionCommand = async (input, context) => {
@@ -83,10 +83,9 @@ const de_DeleteConnectionCommandError = async (output, context) => {
83
83
  throw await de_LimitExceededExceptionRes(parsedOutput, context);
84
84
  default:
85
85
  const parsedBody = parsedOutput.body;
86
- throwDefaultError({
86
+ return throwDefaultError({
87
87
  output,
88
88
  parsedBody,
89
- exceptionCtor: __BaseException,
90
89
  errorCode,
91
90
  });
92
91
  }
@@ -99,15 +98,12 @@ export const de_GetConnectionCommand = async (output, context) => {
99
98
  $metadata: deserializeMetadata(output),
100
99
  });
101
100
  const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
102
- if (data.connectedAt != null) {
103
- contents.ConnectedAt = __expectNonNull(__parseRfc3339DateTimeWithOffset(data.connectedAt));
104
- }
105
- if (data.identity != null) {
106
- contents.Identity = de_Identity(data.identity, context);
107
- }
108
- if (data.lastActiveAt != null) {
109
- contents.LastActiveAt = __expectNonNull(__parseRfc3339DateTimeWithOffset(data.lastActiveAt));
110
- }
101
+ const doc = take(data, {
102
+ ConnectedAt: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `connectedAt`],
103
+ Identity: [, (_) => de_Identity(_, context), `identity`],
104
+ LastActiveAt: [, (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)), `lastActiveAt`],
105
+ });
106
+ Object.assign(contents, doc);
111
107
  return contents;
112
108
  };
113
109
  const de_GetConnectionCommandError = async (output, context) => {
@@ -128,10 +124,9 @@ const de_GetConnectionCommandError = async (output, context) => {
128
124
  throw await de_LimitExceededExceptionRes(parsedOutput, context);
129
125
  default:
130
126
  const parsedBody = parsedOutput.body;
131
- throwDefaultError({
127
+ return throwDefaultError({
132
128
  output,
133
129
  parsedBody,
134
- exceptionCtor: __BaseException,
135
130
  errorCode,
136
131
  });
137
132
  }
@@ -167,18 +162,19 @@ const de_PostToConnectionCommandError = async (output, context) => {
167
162
  throw await de_PayloadTooLargeExceptionRes(parsedOutput, context);
168
163
  default:
169
164
  const parsedBody = parsedOutput.body;
170
- throwDefaultError({
165
+ return throwDefaultError({
171
166
  output,
172
167
  parsedBody,
173
- exceptionCtor: __BaseException,
174
168
  errorCode,
175
169
  });
176
170
  }
177
171
  };
178
- const map = __map;
172
+ const throwDefaultError = withBaseException(__BaseException);
179
173
  const de_ForbiddenExceptionRes = async (parsedOutput, context) => {
180
174
  const contents = map({});
181
175
  const data = parsedOutput.body;
176
+ const doc = take(data, {});
177
+ Object.assign(contents, doc);
182
178
  const exception = new ForbiddenException({
183
179
  $metadata: deserializeMetadata(parsedOutput),
184
180
  ...contents,
@@ -188,6 +184,8 @@ const de_ForbiddenExceptionRes = async (parsedOutput, context) => {
188
184
  const de_GoneExceptionRes = async (parsedOutput, context) => {
189
185
  const contents = map({});
190
186
  const data = parsedOutput.body;
187
+ const doc = take(data, {});
188
+ Object.assign(contents, doc);
191
189
  const exception = new GoneException({
192
190
  $metadata: deserializeMetadata(parsedOutput),
193
191
  ...contents,
@@ -197,6 +195,8 @@ const de_GoneExceptionRes = async (parsedOutput, context) => {
197
195
  const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
198
196
  const contents = map({});
199
197
  const data = parsedOutput.body;
198
+ const doc = take(data, {});
199
+ Object.assign(contents, doc);
200
200
  const exception = new LimitExceededException({
201
201
  $metadata: deserializeMetadata(parsedOutput),
202
202
  ...contents,
@@ -206,9 +206,10 @@ const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
206
206
  const de_PayloadTooLargeExceptionRes = async (parsedOutput, context) => {
207
207
  const contents = map({});
208
208
  const data = parsedOutput.body;
209
- if (data.message != null) {
210
- contents.Message = __expectString(data.message);
211
- }
209
+ const doc = take(data, {
210
+ Message: [, __expectString, `message`],
211
+ });
212
+ Object.assign(contents, doc);
212
213
  const exception = new PayloadTooLargeException({
213
214
  $metadata: deserializeMetadata(parsedOutput),
214
215
  ...contents,
@@ -216,10 +217,10 @@ const de_PayloadTooLargeExceptionRes = async (parsedOutput, context) => {
216
217
  return __decorateServiceException(exception, parsedOutput.body);
217
218
  };
218
219
  const de_Identity = (output, context) => {
219
- return {
220
- SourceIp: __expectString(output.sourceIp),
221
- UserAgent: __expectString(output.userAgent),
222
- };
220
+ return take(output, {
221
+ SourceIp: [, __expectString, `sourceIp`],
222
+ UserAgent: [, __expectString, `userAgent`],
223
+ });
223
224
  };
224
225
  const deserializeMetadata = (output) => ({
225
226
  httpStatusCode: output.statusCode,
@@ -3,30 +3,29 @@ import { ApiGatewayManagementApiClient } from "./ApiGatewayManagementApiClient";
3
3
  import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
4
4
  import { GetConnectionCommandInput, GetConnectionCommandOutput } from "./commands/GetConnectionCommand";
5
5
  import { PostToConnectionCommandInput, PostToConnectionCommandOutput } from "./commands/PostToConnectionCommand";
6
- /**
7
- * @public
8
- * <p>The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://\{api-id\}.execute-api.\{region\}.amazonaws.com/\{stage\}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable.</p>
9
- */
10
- export declare class ApiGatewayManagementApi extends ApiGatewayManagementApiClient {
6
+ export interface ApiGatewayManagementApi {
11
7
  /**
12
- * @public
13
- * <p>Delete the connection with the provided id.</p>
8
+ * @see {@link DeleteConnectionCommand}
14
9
  */
15
10
  deleteConnection(args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectionCommandOutput>;
16
11
  deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
17
12
  deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
18
13
  /**
19
- * @public
20
- * <p>Get information about the connection with the provided id.</p>
14
+ * @see {@link GetConnectionCommand}
21
15
  */
22
16
  getConnection(args: GetConnectionCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectionCommandOutput>;
23
17
  getConnection(args: GetConnectionCommandInput, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
24
18
  getConnection(args: GetConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectionCommandOutput) => void): void;
25
19
  /**
26
- * @public
27
- * <p>Sends the provided data to the specified connection.</p>
20
+ * @see {@link PostToConnectionCommand}
28
21
  */
29
22
  postToConnection(args: PostToConnectionCommandInput, options?: __HttpHandlerOptions): Promise<PostToConnectionCommandOutput>;
30
23
  postToConnection(args: PostToConnectionCommandInput, cb: (err: any, data?: PostToConnectionCommandOutput) => void): void;
31
24
  postToConnection(args: PostToConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PostToConnectionCommandOutput) => void): void;
32
25
  }
26
+ /**
27
+ * @public
28
+ * <p>The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://\{api-id\}.execute-api.\{region\}.amazonaws.com/\{stage\}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable.</p>
29
+ */
30
+ export declare class ApiGatewayManagementApi extends ApiGatewayManagementApiClient implements ApiGatewayManagementApi {
31
+ }
@@ -12,7 +12,7 @@ import {
12
12
  PostToConnectionCommandInput,
13
13
  PostToConnectionCommandOutput,
14
14
  } from "./commands/PostToConnectionCommand";
15
- export declare class ApiGatewayManagementApi extends ApiGatewayManagementApiClient {
15
+ export interface ApiGatewayManagementApi {
16
16
  deleteConnection(
17
17
  args: DeleteConnectionCommandInput,
18
18
  options?: __HttpHandlerOptions
@@ -53,3 +53,6 @@ export declare class ApiGatewayManagementApi extends ApiGatewayManagementApiClie
53
53
  cb: (err: any, data?: PostToConnectionCommandOutput) => void
54
54
  ): void;
55
55
  }
56
+ export declare class ApiGatewayManagementApi
57
+ extends ApiGatewayManagementApiClient
58
+ implements ApiGatewayManagementApi {}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-apigatewaymanagementapi",
3
3
  "description": "AWS SDK for JavaScript Apigatewaymanagementapi Client for Node.js, Browser and React Native",
4
- "version": "3.312.0",
4
+ "version": "3.316.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.312.0",
24
+ "@aws-sdk/client-sts": "3.316.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.310.0",
26
+ "@aws-sdk/credential-provider-node": "3.316.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -40,14 +40,14 @@
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.310.0",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.310.0",
43
+ "@aws-sdk/smithy-client": "3.316.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.310.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.310.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.316.0",
51
51
  "@aws-sdk/util-endpoints": "3.310.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",