@aws-sdk/client-apigatewaymanagementapi 3.1077.0 → 3.1078.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.
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -68,7 +69,7 @@ const commonParams = {
68
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
69
70
  };
70
71
 
71
- var version = "3.1076.0";
72
+ var version = "3.1077.0";
72
73
  var packageInfo = {
73
74
  version: version};
74
75
 
@@ -434,40 +435,17 @@ class ApiGatewayManagementApiClient extends Client {
434
435
  }
435
436
  }
436
437
 
437
- class DeleteConnectionCommand extends Command
438
- .classBuilder()
439
- .ep(commonParams)
440
- .m(function (Command, cs, config, o) {
441
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
442
- })
443
- .s("ApiGatewayManagementApi", "DeleteConnection", {})
444
- .n("ApiGatewayManagementApiClient", "DeleteConnectionCommand")
445
- .sc(DeleteConnection$)
446
- .build() {
438
+ const command = makeBuilder(commonParams, "ApiGatewayManagementApi", "ApiGatewayManagementApiClient", getEndpointPlugin);
439
+ const _ep0 = {};
440
+ const _mw0 = (Command, cs, config, o) => [];
441
+
442
+ class DeleteConnectionCommand extends command(_ep0, _mw0, "DeleteConnection", DeleteConnection$) {
447
443
  }
448
444
 
449
- class GetConnectionCommand extends Command
450
- .classBuilder()
451
- .ep(commonParams)
452
- .m(function (Command, cs, config, o) {
453
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
454
- })
455
- .s("ApiGatewayManagementApi", "GetConnection", {})
456
- .n("ApiGatewayManagementApiClient", "GetConnectionCommand")
457
- .sc(GetConnection$)
458
- .build() {
445
+ class GetConnectionCommand extends command(_ep0, _mw0, "GetConnection", GetConnection$) {
459
446
  }
460
447
 
461
- class PostToConnectionCommand extends Command
462
- .classBuilder()
463
- .ep(commonParams)
464
- .m(function (Command, cs, config, o) {
465
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
466
- })
467
- .s("ApiGatewayManagementApi", "PostToConnection", {})
468
- .n("ApiGatewayManagementApiClient", "PostToConnectionCommand")
469
- .sc(PostToConnection$)
470
- .build() {
448
+ class PostToConnectionCommand extends command(_ep0, _mw0, "PostToConnection", PostToConnection$) {
471
449
  }
472
450
 
473
451
  const commands = {
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "ApiGatewayManagementApi", "ApiGatewayManagementApiClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteConnection$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteConnectionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("ApiGatewayManagementApi", "DeleteConnection", {})
13
- .n("ApiGatewayManagementApiClient", "DeleteConnectionCommand")
14
- .sc(DeleteConnection$)
15
- .build() {
3
+ export class DeleteConnectionCommand extends command(_ep0, _mw0, "DeleteConnection", DeleteConnection$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetConnection$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetConnectionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("ApiGatewayManagementApi", "GetConnection", {})
13
- .n("ApiGatewayManagementApiClient", "GetConnectionCommand")
14
- .sc(GetConnection$)
15
- .build() {
3
+ export class GetConnectionCommand extends command(_ep0, _mw0, "GetConnection", GetConnection$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { PostToConnection$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class PostToConnectionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("ApiGatewayManagementApi", "PostToConnection", {})
13
- .n("ApiGatewayManagementApiClient", "PostToConnectionCommand")
14
- .sc(PostToConnection$)
15
- .build() {
3
+ export class PostToConnectionCommand extends command(_ep0, _mw0, "PostToConnection", PostToConnection$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./ApiGatewayManagementApiClient";
2
2
  export * from "./ApiGatewayManagementApi";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./models/errors";
6
7
  export * from "./models/models_0";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./ApiGatewayManagementApiClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayManagementApiClient";
4
2
  import type { DeleteConnectionRequest } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteConnectionCommandInput extends DeleteConnectionRequest {
22
19
  export interface DeleteConnectionCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const DeleteConnectionCommand_base: {
25
- new (input: DeleteConnectionCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteConnectionCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteConnectionCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, import("..").ApiGatewayManagementApiClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteConnectionCommandInput): import("@smithy/core/client").CommandImpl<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, import("..").ApiGatewayManagementApiClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Delete the connection with the provided id.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayManagementApiClient";
4
2
  import type { GetConnectionRequest, GetConnectionResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetConnectionCommandInput extends GetConnectionRequest {
22
19
  export interface GetConnectionCommandOutput extends GetConnectionResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetConnectionCommand_base: {
25
- new (input: GetConnectionCommandInput): import("@smithy/core/client").CommandImpl<GetConnectionCommandInput, GetConnectionCommandOutput, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetConnectionCommandInput): import("@smithy/core/client").CommandImpl<GetConnectionCommandInput, GetConnectionCommandOutput, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetConnectionCommandInput): import("@smithy/core/client").CommandImpl<GetConnectionCommandInput, GetConnectionCommandOutput, import("..").ApiGatewayManagementApiClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetConnectionCommandInput): import("@smithy/core/client").CommandImpl<GetConnectionCommandInput, GetConnectionCommandOutput, import("..").ApiGatewayManagementApiClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Get information about the connection with the provided id.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayManagementApiClient";
4
2
  import type { PostToConnectionRequest } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  */
@@ -28,11 +25,9 @@ export interface PostToConnectionCommandInput extends PostToConnectionCommandInp
28
25
  export interface PostToConnectionCommandOutput extends __MetadataBearer {
29
26
  }
30
27
  declare const PostToConnectionCommand_base: {
31
- new (input: PostToConnectionCommandInput): import("@smithy/core/client").CommandImpl<PostToConnectionCommandInput, PostToConnectionCommandOutput, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
32
- new (input: PostToConnectionCommandInput): import("@smithy/core/client").CommandImpl<PostToConnectionCommandInput, PostToConnectionCommandOutput, ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
33
- getEndpointParameterInstructions(): {
34
- [x: string]: unknown;
35
- };
28
+ new (input: PostToConnectionCommandInput): import("@smithy/core/client").CommandImpl<PostToConnectionCommandInput, PostToConnectionCommandOutput, import("..").ApiGatewayManagementApiClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
29
+ new (input: PostToConnectionCommandInput): import("@smithy/core/client").CommandImpl<PostToConnectionCommandInput, PostToConnectionCommandOutput, import("..").ApiGatewayManagementApiClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
36
31
  };
37
32
  /**
38
33
  * <p>Sends the provided data to the specified connection.</p>
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { ApiGatewayManagementApiExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./models/errors";
14
15
  export * from "./models/models_0";
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ApiGatewayManagementApiClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./ApiGatewayManagementApiClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ ApiGatewayManagementApiClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ ApiGatewayManagementApiClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ApiGatewayManagementApiClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApiGatewayManagementApiClient";
8
2
  import { DeleteConnectionRequest } from "../models/models_0";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteConnectionCommandInput extends DeleteConnectionRequest {}
12
5
  export interface DeleteConnectionCommandOutput extends __MetadataBearer {}
13
6
  declare const DeleteConnectionCommand_base: {
@@ -16,22 +9,20 @@ declare const DeleteConnectionCommand_base: {
16
9
  ): import("@smithy/core/client").CommandImpl<
17
10
  DeleteConnectionCommandInput,
18
11
  DeleteConnectionCommandOutput,
19
- ApiGatewayManagementApiClientResolvedConfig,
20
- ServiceInputTypes,
21
- ServiceOutputTypes
12
+ import("..").ApiGatewayManagementApiClientResolvedConfig,
13
+ import("..").ServiceInputTypes,
14
+ import("..").ServiceOutputTypes
22
15
  >;
23
16
  new (
24
17
  input: DeleteConnectionCommandInput
25
18
  ): import("@smithy/core/client").CommandImpl<
26
19
  DeleteConnectionCommandInput,
27
20
  DeleteConnectionCommandOutput,
28
- ApiGatewayManagementApiClientResolvedConfig,
29
- ServiceInputTypes,
30
- ServiceOutputTypes
21
+ import("..").ApiGatewayManagementApiClientResolvedConfig,
22
+ import("..").ServiceInputTypes,
23
+ import("..").ServiceOutputTypes
31
24
  >;
32
- getEndpointParameterInstructions(): {
33
- [x: string]: unknown;
34
- };
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
35
26
  };
36
27
  export declare class DeleteConnectionCommand extends DeleteConnectionCommand_base {
37
28
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ApiGatewayManagementApiClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../ApiGatewayManagementApiClient";
8
2
  import {
9
3
  GetConnectionRequest,
10
4
  GetConnectionResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetConnectionCommandInput extends GetConnectionRequest {}
15
8
  export interface GetConnectionCommandOutput
16
9
  extends GetConnectionResponse,
@@ -21,22 +14,20 @@ declare const GetConnectionCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetConnectionCommandInput,
23
16
  GetConnectionCommandOutput,
24
- ApiGatewayManagementApiClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").ApiGatewayManagementApiClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: GetConnectionCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetConnectionCommandInput,
32
25
  GetConnectionCommandOutput,
33
- ApiGatewayManagementApiClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").ApiGatewayManagementApiClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetConnectionCommand extends GetConnectionCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import {
3
2
  BlobPayloadInputTypes,
4
3
  MetadataBearer as __MetadataBearer,
5
4
  } from "@smithy/types";
6
- import {
7
- ApiGatewayManagementApiClientResolvedConfig,
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- } from "../ApiGatewayManagementApiClient";
11
5
  import { PostToConnectionRequest } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export type PostToConnectionCommandInputType = Pick<
15
8
  PostToConnectionRequest,
16
9
  Exclude<keyof PostToConnectionRequest, "Data">
@@ -26,22 +19,20 @@ declare const PostToConnectionCommand_base: {
26
19
  ): import("@smithy/core/client").CommandImpl<
27
20
  PostToConnectionCommandInput,
28
21
  PostToConnectionCommandOutput,
29
- ApiGatewayManagementApiClientResolvedConfig,
30
- ServiceInputTypes,
31
- ServiceOutputTypes
22
+ import("..").ApiGatewayManagementApiClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
32
25
  >;
33
26
  new (
34
27
  input: PostToConnectionCommandInput
35
28
  ): import("@smithy/core/client").CommandImpl<
36
29
  PostToConnectionCommandInput,
37
30
  PostToConnectionCommandOutput,
38
- ApiGatewayManagementApiClientResolvedConfig,
39
- ServiceInputTypes,
40
- ServiceOutputTypes
31
+ import("..").ApiGatewayManagementApiClientResolvedConfig,
32
+ import("..").ServiceInputTypes,
33
+ import("..").ServiceOutputTypes
41
34
  >;
42
- getEndpointParameterInstructions(): {
43
- [x: string]: unknown;
44
- };
35
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
45
36
  };
46
37
  export declare class PostToConnectionCommand extends PostToConnectionCommand_base {
47
38
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { ApiGatewayManagementApiExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./models/errors";
9
10
  export * from "./models/models_0";
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.1077.0",
4
+ "version": "3.1078.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.25",
23
- "@aws-sdk/credential-provider-node": "^3.972.60",
24
- "@aws-sdk/types": "^3.973.14",
25
- "@smithy/core": "^3.28.0",
26
- "@smithy/fetch-http-handler": "^5.6.1",
27
- "@smithy/node-http-handler": "^4.9.1",
28
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.26",
23
+ "@aws-sdk/credential-provider-node": "^3.972.61",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {