@aws-sdk/client-connectparticipant 3.168.0 → 3.170.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.
Files changed (26) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ConnectParticipant.d.ts +148 -45
  3. package/dist-types/ts3.4/ConnectParticipantClient.d.ts +178 -81
  4. package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/SendEventCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/index.d.ts +8 -8
  13. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  14. package/dist-types/ts3.4/index.d.ts +6 -6
  15. package/dist-types/ts3.4/models/ConnectParticipantServiceException.d.ts +8 -6
  16. package/dist-types/ts3.4/models/index.d.ts +1 -1
  17. package/dist-types/ts3.4/models/models_0.d.ts +338 -310
  18. package/dist-types/ts3.4/pagination/GetTranscriptPaginator.d.ts +11 -4
  19. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  20. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  21. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -26
  22. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  23. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  24. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  25. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  26. package/package.json +34 -34
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
4
- import { GetAttachmentRequest, GetAttachmentResponse } from "../models/models_0";
5
- export interface GetAttachmentCommandInput extends GetAttachmentRequest {
6
- }
7
- export interface GetAttachmentCommandOutput extends GetAttachmentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAttachmentCommand extends $Command<GetAttachmentCommandInput, GetAttachmentCommandOutput, ConnectParticipantClientResolvedConfig> {
11
- readonly input: GetAttachmentCommandInput;
12
- constructor(input: GetAttachmentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttachmentCommandInput, GetAttachmentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import {
14
+ GetAttachmentRequest,
15
+ GetAttachmentResponse,
16
+ } from "../models/models_0";
17
+ export interface GetAttachmentCommandInput extends GetAttachmentRequest {}
18
+ export interface GetAttachmentCommandOutput
19
+ extends GetAttachmentResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetAttachmentCommand extends $Command<
23
+ GetAttachmentCommandInput,
24
+ GetAttachmentCommandOutput,
25
+ ConnectParticipantClientResolvedConfig
26
+ > {
27
+ readonly input: GetAttachmentCommandInput;
28
+ constructor(input: GetAttachmentCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ConnectParticipantClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetAttachmentCommandInput, GetAttachmentCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
4
- import { GetTranscriptRequest, GetTranscriptResponse } from "../models/models_0";
5
- export interface GetTranscriptCommandInput extends GetTranscriptRequest {
6
- }
7
- export interface GetTranscriptCommandOutput extends GetTranscriptResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetTranscriptCommand extends $Command<GetTranscriptCommandInput, GetTranscriptCommandOutput, ConnectParticipantClientResolvedConfig> {
11
- readonly input: GetTranscriptCommandInput;
12
- constructor(input: GetTranscriptCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTranscriptCommandInput, GetTranscriptCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import {
14
+ GetTranscriptRequest,
15
+ GetTranscriptResponse,
16
+ } from "../models/models_0";
17
+ export interface GetTranscriptCommandInput extends GetTranscriptRequest {}
18
+ export interface GetTranscriptCommandOutput
19
+ extends GetTranscriptResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetTranscriptCommand extends $Command<
23
+ GetTranscriptCommandInput,
24
+ GetTranscriptCommandOutput,
25
+ ConnectParticipantClientResolvedConfig
26
+ > {
27
+ readonly input: GetTranscriptCommandInput;
28
+ constructor(input: GetTranscriptCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ConnectParticipantClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetTranscriptCommandInput, GetTranscriptCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
4
- import { SendEventRequest, SendEventResponse } from "../models/models_0";
5
- export interface SendEventCommandInput extends SendEventRequest {
6
- }
7
- export interface SendEventCommandOutput extends SendEventResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SendEventCommand extends $Command<SendEventCommandInput, SendEventCommandOutput, ConnectParticipantClientResolvedConfig> {
11
- readonly input: SendEventCommandInput;
12
- constructor(input: SendEventCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendEventCommandInput, SendEventCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import { SendEventRequest, SendEventResponse } from "../models/models_0";
14
+ export interface SendEventCommandInput extends SendEventRequest {}
15
+ export interface SendEventCommandOutput
16
+ extends SendEventResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class SendEventCommand extends $Command<
20
+ SendEventCommandInput,
21
+ SendEventCommandOutput,
22
+ ConnectParticipantClientResolvedConfig
23
+ > {
24
+ readonly input: SendEventCommandInput;
25
+ constructor(input: SendEventCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ConnectParticipantClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<SendEventCommandInput, SendEventCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
4
- import { SendMessageRequest, SendMessageResponse } from "../models/models_0";
5
- export interface SendMessageCommandInput extends SendMessageRequest {
6
- }
7
- export interface SendMessageCommandOutput extends SendMessageResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class SendMessageCommand extends $Command<SendMessageCommandInput, SendMessageCommandOutput, ConnectParticipantClientResolvedConfig> {
11
- readonly input: SendMessageCommandInput;
12
- constructor(input: SendMessageCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendMessageCommandInput, SendMessageCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import { SendMessageRequest, SendMessageResponse } from "../models/models_0";
14
+ export interface SendMessageCommandInput extends SendMessageRequest {}
15
+ export interface SendMessageCommandOutput
16
+ extends SendMessageResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class SendMessageCommand extends $Command<
20
+ SendMessageCommandInput,
21
+ SendMessageCommandOutput,
22
+ ConnectParticipantClientResolvedConfig
23
+ > {
24
+ readonly input: SendMessageCommandInput;
25
+ constructor(input: SendMessageCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ConnectParticipantClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<SendMessageCommandInput, SendMessageCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectParticipantClient";
4
- import { StartAttachmentUploadRequest, StartAttachmentUploadResponse } from "../models/models_0";
5
- export interface StartAttachmentUploadCommandInput extends StartAttachmentUploadRequest {
6
- }
7
- export interface StartAttachmentUploadCommandOutput extends StartAttachmentUploadResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartAttachmentUploadCommand extends $Command<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig> {
11
- readonly input: StartAttachmentUploadCommandInput;
12
- constructor(input: StartAttachmentUploadCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ConnectParticipantClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ConnectParticipantClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ConnectParticipantClient";
13
+ import {
14
+ StartAttachmentUploadRequest,
15
+ StartAttachmentUploadResponse,
16
+ } from "../models/models_0";
17
+ export interface StartAttachmentUploadCommandInput
18
+ extends StartAttachmentUploadRequest {}
19
+ export interface StartAttachmentUploadCommandOutput
20
+ extends StartAttachmentUploadResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class StartAttachmentUploadCommand extends $Command<
24
+ StartAttachmentUploadCommandInput,
25
+ StartAttachmentUploadCommandOutput,
26
+ ConnectParticipantClientResolvedConfig
27
+ > {
28
+ readonly input: StartAttachmentUploadCommandInput;
29
+ constructor(input: StartAttachmentUploadCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ConnectParticipantClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ StartAttachmentUploadCommandInput,
37
+ StartAttachmentUploadCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,8 +1,8 @@
1
- export * from "./CompleteAttachmentUploadCommand";
2
- export * from "./CreateParticipantConnectionCommand";
3
- export * from "./DisconnectParticipantCommand";
4
- export * from "./GetAttachmentCommand";
5
- export * from "./GetTranscriptCommand";
6
- export * from "./SendEventCommand";
7
- export * from "./SendMessageCommand";
8
- export * from "./StartAttachmentUploadCommand";
1
+ export * from "./CompleteAttachmentUploadCommand";
2
+ export * from "./CreateParticipantConnectionCommand";
3
+ export * from "./DisconnectParticipantCommand";
4
+ export * from "./GetAttachmentCommand";
5
+ export * from "./GetTranscriptCommand";
6
+ export * from "./SendEventCommand";
7
+ export * from "./SendMessageCommand";
8
+ export * from "./StartAttachmentUploadCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./ConnectParticipant";
2
- export * from "./ConnectParticipantClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { ConnectParticipantServiceException } from "./models/ConnectParticipantServiceException";
1
+ export * from "./ConnectParticipant";
2
+ export * from "./ConnectParticipantClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { ConnectParticipantServiceException } from "./models/ConnectParticipantServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class ConnectParticipantServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class ConnectParticipantServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";