@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ConnectParticipant.d.ts +148 -45
- package/dist-types/ts3.4/ConnectParticipantClient.d.ts +178 -81
- package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SendEventCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ConnectParticipantServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +338 -310
- package/dist-types/ts3.4/pagination/GetTranscriptPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|