@aws-sdk/client-connectparticipant 3.170.0 → 3.172.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 +19 -0
- package/dist-cjs/endpoints.js +29 -1
- package/dist-es/endpoints.js +29 -1
- package/dist-types/ts3.4/ConnectParticipant.d.ts +0 -8
- package/dist-types/ts3.4/ConnectParticipantClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SendEventCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/ConnectParticipantServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.172.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.171.0...v3.172.0) (2022-09-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update client endpoints as of 2022-09-15 ([cae8d4c](https://github.com/aws/aws-sdk-js-v3/commit/cae8d4ce51817315227ec9699ed72d2bb0de5c11))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-connectparticipant
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @aws-sdk/client-connectparticipant
|
package/dist-cjs/endpoints.js
CHANGED
|
@@ -2,7 +2,33 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultRegionInfoProvider = void 0;
|
|
4
4
|
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
5
|
-
const regionHash = {
|
|
5
|
+
const regionHash = {
|
|
6
|
+
"us-east-1": {
|
|
7
|
+
variants: [
|
|
8
|
+
{
|
|
9
|
+
hostname: "participant.connect-fips.us-east-1.amazonaws.com",
|
|
10
|
+
tags: ["fips"],
|
|
11
|
+
},
|
|
12
|
+
],
|
|
13
|
+
},
|
|
14
|
+
"us-gov-west-1": {
|
|
15
|
+
variants: [
|
|
16
|
+
{
|
|
17
|
+
hostname: "participant.connect.us-gov-west-1.amazonaws.com",
|
|
18
|
+
tags: [],
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
signingRegion: "us-gov-west-1",
|
|
22
|
+
},
|
|
23
|
+
"us-west-2": {
|
|
24
|
+
variants: [
|
|
25
|
+
{
|
|
26
|
+
hostname: "participant.connect-fips.us-west-2.amazonaws.com",
|
|
27
|
+
tags: ["fips"],
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
},
|
|
31
|
+
};
|
|
6
32
|
const partitionHash = {
|
|
7
33
|
aws: {
|
|
8
34
|
regions: [
|
|
@@ -22,6 +48,8 @@ const partitionHash = {
|
|
|
22
48
|
"eu-west-1",
|
|
23
49
|
"eu-west-2",
|
|
24
50
|
"eu-west-3",
|
|
51
|
+
"fips-us-east-1",
|
|
52
|
+
"fips-us-west-2",
|
|
25
53
|
"me-central-1",
|
|
26
54
|
"me-south-1",
|
|
27
55
|
"sa-east-1",
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,6 +1,32 @@
|
|
|
1
1
|
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
3
|
-
var regionHash = {
|
|
3
|
+
var regionHash = {
|
|
4
|
+
"us-east-1": {
|
|
5
|
+
variants: [
|
|
6
|
+
{
|
|
7
|
+
hostname: "participant.connect-fips.us-east-1.amazonaws.com",
|
|
8
|
+
tags: ["fips"],
|
|
9
|
+
},
|
|
10
|
+
],
|
|
11
|
+
},
|
|
12
|
+
"us-gov-west-1": {
|
|
13
|
+
variants: [
|
|
14
|
+
{
|
|
15
|
+
hostname: "participant.connect.us-gov-west-1.amazonaws.com",
|
|
16
|
+
tags: [],
|
|
17
|
+
},
|
|
18
|
+
],
|
|
19
|
+
signingRegion: "us-gov-west-1",
|
|
20
|
+
},
|
|
21
|
+
"us-west-2": {
|
|
22
|
+
variants: [
|
|
23
|
+
{
|
|
24
|
+
hostname: "participant.connect-fips.us-west-2.amazonaws.com",
|
|
25
|
+
tags: ["fips"],
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
},
|
|
29
|
+
};
|
|
4
30
|
var partitionHash = {
|
|
5
31
|
aws: {
|
|
6
32
|
regions: [
|
|
@@ -20,6 +46,8 @@ var partitionHash = {
|
|
|
20
46
|
"eu-west-1",
|
|
21
47
|
"eu-west-2",
|
|
22
48
|
"eu-west-3",
|
|
49
|
+
"fips-us-east-1",
|
|
50
|
+
"fips-us-west-2",
|
|
23
51
|
"me-central-1",
|
|
24
52
|
"me-south-1",
|
|
25
53
|
"sa-east-1",
|
|
@@ -32,7 +32,6 @@ import {
|
|
|
32
32
|
StartAttachmentUploadCommandOutput,
|
|
33
33
|
} from "./commands/StartAttachmentUploadCommand";
|
|
34
34
|
import { ConnectParticipantClient } from "./ConnectParticipantClient";
|
|
35
|
-
|
|
36
35
|
export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
37
36
|
completeAttachmentUpload(
|
|
38
37
|
args: CompleteAttachmentUploadCommandInput,
|
|
@@ -47,7 +46,6 @@ export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
|
47
46
|
options: __HttpHandlerOptions,
|
|
48
47
|
cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void
|
|
49
48
|
): void;
|
|
50
|
-
|
|
51
49
|
createParticipantConnection(
|
|
52
50
|
args: CreateParticipantConnectionCommandInput,
|
|
53
51
|
options?: __HttpHandlerOptions
|
|
@@ -61,7 +59,6 @@ export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
|
61
59
|
options: __HttpHandlerOptions,
|
|
62
60
|
cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void
|
|
63
61
|
): void;
|
|
64
|
-
|
|
65
62
|
disconnectParticipant(
|
|
66
63
|
args: DisconnectParticipantCommandInput,
|
|
67
64
|
options?: __HttpHandlerOptions
|
|
@@ -75,7 +72,6 @@ export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
|
75
72
|
options: __HttpHandlerOptions,
|
|
76
73
|
cb: (err: any, data?: DisconnectParticipantCommandOutput) => void
|
|
77
74
|
): void;
|
|
78
|
-
|
|
79
75
|
getAttachment(
|
|
80
76
|
args: GetAttachmentCommandInput,
|
|
81
77
|
options?: __HttpHandlerOptions
|
|
@@ -89,7 +85,6 @@ export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
|
89
85
|
options: __HttpHandlerOptions,
|
|
90
86
|
cb: (err: any, data?: GetAttachmentCommandOutput) => void
|
|
91
87
|
): void;
|
|
92
|
-
|
|
93
88
|
getTranscript(
|
|
94
89
|
args: GetTranscriptCommandInput,
|
|
95
90
|
options?: __HttpHandlerOptions
|
|
@@ -103,7 +98,6 @@ export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
|
103
98
|
options: __HttpHandlerOptions,
|
|
104
99
|
cb: (err: any, data?: GetTranscriptCommandOutput) => void
|
|
105
100
|
): void;
|
|
106
|
-
|
|
107
101
|
sendEvent(
|
|
108
102
|
args: SendEventCommandInput,
|
|
109
103
|
options?: __HttpHandlerOptions
|
|
@@ -117,7 +111,6 @@ export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
|
117
111
|
options: __HttpHandlerOptions,
|
|
118
112
|
cb: (err: any, data?: SendEventCommandOutput) => void
|
|
119
113
|
): void;
|
|
120
|
-
|
|
121
114
|
sendMessage(
|
|
122
115
|
args: SendMessageCommandInput,
|
|
123
116
|
options?: __HttpHandlerOptions
|
|
@@ -131,7 +124,6 @@ export declare class ConnectParticipant extends ConnectParticipantClient {
|
|
|
131
124
|
options: __HttpHandlerOptions,
|
|
132
125
|
cb: (err: any, data?: SendMessageCommandOutput) => void
|
|
133
126
|
): void;
|
|
134
|
-
|
|
135
127
|
startAttachmentUpload(
|
|
136
128
|
args: StartAttachmentUploadCommandInput,
|
|
137
129
|
options?: __HttpHandlerOptions
|
|
@@ -95,47 +95,26 @@ export declare type ServiceOutputTypes =
|
|
|
95
95
|
export interface ClientDefaults
|
|
96
96
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
97
97
|
requestHandler?: __HttpHandler;
|
|
98
|
-
|
|
99
98
|
sha256?: __HashConstructor;
|
|
100
|
-
|
|
101
99
|
urlParser?: __UrlParser;
|
|
102
|
-
|
|
103
100
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
104
|
-
|
|
105
101
|
streamCollector?: __StreamCollector;
|
|
106
|
-
|
|
107
102
|
base64Decoder?: __Decoder;
|
|
108
|
-
|
|
109
103
|
base64Encoder?: __Encoder;
|
|
110
|
-
|
|
111
104
|
utf8Decoder?: __Decoder;
|
|
112
|
-
|
|
113
105
|
utf8Encoder?: __Encoder;
|
|
114
|
-
|
|
115
106
|
runtime?: string;
|
|
116
|
-
|
|
117
107
|
disableHostPrefix?: boolean;
|
|
118
|
-
|
|
119
108
|
maxAttempts?: number | __Provider<number>;
|
|
120
|
-
|
|
121
109
|
retryMode?: string | __Provider<string>;
|
|
122
|
-
|
|
123
110
|
logger?: __Logger;
|
|
124
|
-
|
|
125
111
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
126
|
-
|
|
127
112
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
128
|
-
|
|
129
113
|
serviceId?: string;
|
|
130
|
-
|
|
131
114
|
region?: string | __Provider<string>;
|
|
132
|
-
|
|
133
115
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
134
|
-
|
|
135
116
|
regionInfoProvider?: RegionInfoProvider;
|
|
136
|
-
|
|
137
117
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
138
|
-
|
|
139
118
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
140
119
|
}
|
|
141
120
|
declare type ConnectParticipantClientConfigType = Partial<
|
|
@@ -148,7 +127,6 @@ declare type ConnectParticipantClientConfigType = Partial<
|
|
|
148
127
|
HostHeaderInputConfig &
|
|
149
128
|
AwsAuthInputConfig &
|
|
150
129
|
UserAgentInputConfig;
|
|
151
|
-
|
|
152
130
|
export interface ConnectParticipantClientConfig
|
|
153
131
|
extends ConnectParticipantClientConfigType {}
|
|
154
132
|
declare type ConnectParticipantClientResolvedConfigType =
|
|
@@ -160,10 +138,8 @@ declare type ConnectParticipantClientResolvedConfigType =
|
|
|
160
138
|
HostHeaderResolvedConfig &
|
|
161
139
|
AwsAuthResolvedConfig &
|
|
162
140
|
UserAgentResolvedConfig;
|
|
163
|
-
|
|
164
141
|
export interface ConnectParticipantClientResolvedConfig
|
|
165
142
|
extends ConnectParticipantClientResolvedConfigType {}
|
|
166
|
-
|
|
167
143
|
export declare class ConnectParticipantClient extends __Client<
|
|
168
144
|
__HttpHandlerOptions,
|
|
169
145
|
ServiceInputTypes,
|
|
@@ -172,7 +148,6 @@ export declare class ConnectParticipantClient extends __Client<
|
|
|
172
148
|
> {
|
|
173
149
|
readonly config: ConnectParticipantClientResolvedConfig;
|
|
174
150
|
constructor(configuration: ConnectParticipantClientConfig);
|
|
175
|
-
|
|
176
151
|
destroy(): void;
|
|
177
152
|
}
|
|
178
153
|
export {};
|
|
@@ -19,7 +19,6 @@ export interface CompleteAttachmentUploadCommandInput
|
|
|
19
19
|
export interface CompleteAttachmentUploadCommandOutput
|
|
20
20
|
extends CompleteAttachmentUploadResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class CompleteAttachmentUploadCommand extends $Command<
|
|
24
23
|
CompleteAttachmentUploadCommandInput,
|
|
25
24
|
CompleteAttachmentUploadCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class CompleteAttachmentUploadCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: CompleteAttachmentUploadCommandInput;
|
|
29
28
|
constructor(input: CompleteAttachmentUploadCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface CreateParticipantConnectionCommandInput
|
|
|
19
19
|
export interface CreateParticipantConnectionCommandOutput
|
|
20
20
|
extends CreateParticipantConnectionResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class CreateParticipantConnectionCommand extends $Command<
|
|
24
23
|
CreateParticipantConnectionCommandInput,
|
|
25
24
|
CreateParticipantConnectionCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class CreateParticipantConnectionCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: CreateParticipantConnectionCommandInput;
|
|
29
28
|
constructor(input: CreateParticipantConnectionCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface DisconnectParticipantCommandInput
|
|
|
19
19
|
export interface DisconnectParticipantCommandOutput
|
|
20
20
|
extends DisconnectParticipantResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class DisconnectParticipantCommand extends $Command<
|
|
24
23
|
DisconnectParticipantCommandInput,
|
|
25
24
|
DisconnectParticipantCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class DisconnectParticipantCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: DisconnectParticipantCommandInput;
|
|
29
28
|
constructor(input: DisconnectParticipantCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface GetAttachmentCommandInput extends GetAttachmentRequest {}
|
|
|
18
18
|
export interface GetAttachmentCommandOutput
|
|
19
19
|
extends GetAttachmentResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class GetAttachmentCommand extends $Command<
|
|
23
22
|
GetAttachmentCommandInput,
|
|
24
23
|
GetAttachmentCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class GetAttachmentCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: GetAttachmentCommandInput;
|
|
28
27
|
constructor(input: GetAttachmentCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -18,7 +18,6 @@ export interface GetTranscriptCommandInput extends GetTranscriptRequest {}
|
|
|
18
18
|
export interface GetTranscriptCommandOutput
|
|
19
19
|
extends GetTranscriptResponse,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class GetTranscriptCommand extends $Command<
|
|
23
22
|
GetTranscriptCommandInput,
|
|
24
23
|
GetTranscriptCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class GetTranscriptCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: GetTranscriptCommandInput;
|
|
28
27
|
constructor(input: GetTranscriptCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface SendEventCommandInput extends SendEventRequest {}
|
|
|
15
15
|
export interface SendEventCommandOutput
|
|
16
16
|
extends SendEventResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class SendEventCommand extends $Command<
|
|
20
19
|
SendEventCommandInput,
|
|
21
20
|
SendEventCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class SendEventCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: SendEventCommandInput;
|
|
25
24
|
constructor(input: SendEventCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface SendMessageCommandInput extends SendMessageRequest {}
|
|
|
15
15
|
export interface SendMessageCommandOutput
|
|
16
16
|
extends SendMessageResponse,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class SendMessageCommand extends $Command<
|
|
20
19
|
SendMessageCommandInput,
|
|
21
20
|
SendMessageCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class SendMessageCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: SendMessageCommandInput;
|
|
25
24
|
constructor(input: SendMessageCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface StartAttachmentUploadCommandInput
|
|
|
19
19
|
export interface StartAttachmentUploadCommandOutput
|
|
20
20
|
extends StartAttachmentUploadResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class StartAttachmentUploadCommand extends $Command<
|
|
24
23
|
StartAttachmentUploadCommandInput,
|
|
25
24
|
StartAttachmentUploadCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class StartAttachmentUploadCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: StartAttachmentUploadCommandInput;
|
|
29
28
|
constructor(input: StartAttachmentUploadCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: ConnectParticipantClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class ConnectParticipantServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|
|
@@ -1,67 +1,53 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ConnectParticipantServiceException as __BaseException } from "./ConnectParticipantServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
Message: string | undefined;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
11
|
export interface CompleteAttachmentUploadRequest {
|
|
14
12
|
AttachmentIds: string[] | undefined;
|
|
15
|
-
|
|
16
13
|
ClientToken?: string;
|
|
17
|
-
|
|
18
14
|
ConnectionToken: string | undefined;
|
|
19
15
|
}
|
|
20
16
|
export interface CompleteAttachmentUploadResponse {}
|
|
21
|
-
|
|
22
17
|
export declare class ConflictException extends __BaseException {
|
|
23
18
|
readonly name: "ConflictException";
|
|
24
19
|
readonly $fault: "client";
|
|
25
20
|
Message: string | undefined;
|
|
26
|
-
|
|
27
21
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
22
|
}
|
|
29
|
-
|
|
30
23
|
export declare class InternalServerException extends __BaseException {
|
|
31
24
|
readonly name: "InternalServerException";
|
|
32
25
|
readonly $fault: "server";
|
|
33
26
|
Message: string | undefined;
|
|
34
|
-
|
|
35
27
|
constructor(
|
|
36
28
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
37
29
|
);
|
|
38
30
|
}
|
|
39
|
-
|
|
40
31
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
41
32
|
readonly name: "ServiceQuotaExceededException";
|
|
42
33
|
readonly $fault: "client";
|
|
43
34
|
Message: string | undefined;
|
|
44
|
-
|
|
45
35
|
constructor(
|
|
46
36
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
47
37
|
);
|
|
48
38
|
}
|
|
49
|
-
|
|
50
39
|
export declare class ThrottlingException extends __BaseException {
|
|
51
40
|
readonly name: "ThrottlingException";
|
|
52
41
|
readonly $fault: "client";
|
|
53
42
|
Message: string | undefined;
|
|
54
|
-
|
|
55
43
|
constructor(
|
|
56
44
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
57
45
|
);
|
|
58
46
|
}
|
|
59
|
-
|
|
60
47
|
export declare class ValidationException extends __BaseException {
|
|
61
48
|
readonly name: "ValidationException";
|
|
62
49
|
readonly $fault: "client";
|
|
63
50
|
Message: string | undefined;
|
|
64
|
-
|
|
65
51
|
constructor(
|
|
66
52
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
67
53
|
);
|
|
@@ -72,42 +58,32 @@ export declare enum ConnectionType {
|
|
|
72
58
|
}
|
|
73
59
|
export interface CreateParticipantConnectionRequest {
|
|
74
60
|
Type: (ConnectionType | string)[] | undefined;
|
|
75
|
-
|
|
76
61
|
ParticipantToken: string | undefined;
|
|
77
|
-
|
|
78
62
|
ConnectParticipant?: boolean;
|
|
79
63
|
}
|
|
80
|
-
|
|
81
64
|
export interface ConnectionCredentials {
|
|
82
65
|
ConnectionToken?: string;
|
|
83
|
-
|
|
84
66
|
Expiry?: string;
|
|
85
67
|
}
|
|
86
|
-
|
|
87
68
|
export interface Websocket {
|
|
88
69
|
Url?: string;
|
|
89
|
-
|
|
90
70
|
ConnectionExpiry?: string;
|
|
91
71
|
}
|
|
92
72
|
export interface CreateParticipantConnectionResponse {
|
|
93
73
|
Websocket?: Websocket;
|
|
94
|
-
|
|
95
74
|
ConnectionCredentials?: ConnectionCredentials;
|
|
96
75
|
}
|
|
97
76
|
export interface DisconnectParticipantRequest {
|
|
98
77
|
ClientToken?: string;
|
|
99
|
-
|
|
100
78
|
ConnectionToken: string | undefined;
|
|
101
79
|
}
|
|
102
80
|
export interface DisconnectParticipantResponse {}
|
|
103
81
|
export interface GetAttachmentRequest {
|
|
104
82
|
AttachmentId: string | undefined;
|
|
105
|
-
|
|
106
83
|
ConnectionToken: string | undefined;
|
|
107
84
|
}
|
|
108
85
|
export interface GetAttachmentResponse {
|
|
109
86
|
Url?: string;
|
|
110
|
-
|
|
111
87
|
UrlExpiry?: string;
|
|
112
88
|
}
|
|
113
89
|
export declare enum ScanDirection {
|
|
@@ -118,27 +94,18 @@ export declare enum SortKey {
|
|
|
118
94
|
ASCENDING = "ASCENDING",
|
|
119
95
|
DESCENDING = "DESCENDING",
|
|
120
96
|
}
|
|
121
|
-
|
|
122
97
|
export interface StartPosition {
|
|
123
98
|
Id?: string;
|
|
124
|
-
|
|
125
99
|
AbsoluteTime?: string;
|
|
126
|
-
|
|
127
100
|
MostRecent?: number;
|
|
128
101
|
}
|
|
129
102
|
export interface GetTranscriptRequest {
|
|
130
103
|
ContactId?: string;
|
|
131
|
-
|
|
132
104
|
MaxResults?: number;
|
|
133
|
-
|
|
134
105
|
NextToken?: string;
|
|
135
|
-
|
|
136
106
|
ScanDirection?: ScanDirection | string;
|
|
137
|
-
|
|
138
107
|
SortOrder?: SortKey | string;
|
|
139
|
-
|
|
140
108
|
StartPosition?: StartPosition;
|
|
141
|
-
|
|
142
109
|
ConnectionToken: string | undefined;
|
|
143
110
|
}
|
|
144
111
|
export declare enum ArtifactStatus {
|
|
@@ -146,14 +113,10 @@ export declare enum ArtifactStatus {
|
|
|
146
113
|
IN_PROGRESS = "IN_PROGRESS",
|
|
147
114
|
REJECTED = "REJECTED",
|
|
148
115
|
}
|
|
149
|
-
|
|
150
116
|
export interface AttachmentItem {
|
|
151
117
|
ContentType?: string;
|
|
152
|
-
|
|
153
118
|
AttachmentId?: string;
|
|
154
|
-
|
|
155
119
|
AttachmentName?: string;
|
|
156
|
-
|
|
157
120
|
Status?: ArtifactStatus | string;
|
|
158
121
|
}
|
|
159
122
|
export declare enum ParticipantRole {
|
|
@@ -173,166 +136,117 @@ export declare enum ChatItemType {
|
|
|
173
136
|
TRANSFER_SUCCEEDED = "TRANSFER_SUCCEEDED",
|
|
174
137
|
TYPING = "TYPING",
|
|
175
138
|
}
|
|
176
|
-
|
|
177
139
|
export interface Item {
|
|
178
140
|
AbsoluteTime?: string;
|
|
179
|
-
|
|
180
141
|
Content?: string;
|
|
181
|
-
|
|
182
142
|
ContentType?: string;
|
|
183
|
-
|
|
184
143
|
Id?: string;
|
|
185
|
-
|
|
186
144
|
Type?: ChatItemType | string;
|
|
187
|
-
|
|
188
145
|
ParticipantId?: string;
|
|
189
|
-
|
|
190
146
|
DisplayName?: string;
|
|
191
|
-
|
|
192
147
|
ParticipantRole?: ParticipantRole | string;
|
|
193
|
-
|
|
194
148
|
Attachments?: AttachmentItem[];
|
|
195
149
|
}
|
|
196
150
|
export interface GetTranscriptResponse {
|
|
197
151
|
InitialContactId?: string;
|
|
198
|
-
|
|
199
152
|
Transcript?: Item[];
|
|
200
|
-
|
|
201
153
|
NextToken?: string;
|
|
202
154
|
}
|
|
203
155
|
export interface SendEventRequest {
|
|
204
156
|
ContentType: string | undefined;
|
|
205
|
-
|
|
206
157
|
Content?: string;
|
|
207
|
-
|
|
208
158
|
ClientToken?: string;
|
|
209
|
-
|
|
210
159
|
ConnectionToken: string | undefined;
|
|
211
160
|
}
|
|
212
161
|
export interface SendEventResponse {
|
|
213
162
|
Id?: string;
|
|
214
|
-
|
|
215
163
|
AbsoluteTime?: string;
|
|
216
164
|
}
|
|
217
165
|
export interface SendMessageRequest {
|
|
218
166
|
ContentType: string | undefined;
|
|
219
|
-
|
|
220
167
|
Content: string | undefined;
|
|
221
|
-
|
|
222
168
|
ClientToken?: string;
|
|
223
|
-
|
|
224
169
|
ConnectionToken: string | undefined;
|
|
225
170
|
}
|
|
226
171
|
export interface SendMessageResponse {
|
|
227
172
|
Id?: string;
|
|
228
|
-
|
|
229
173
|
AbsoluteTime?: string;
|
|
230
174
|
}
|
|
231
175
|
export interface StartAttachmentUploadRequest {
|
|
232
176
|
ContentType: string | undefined;
|
|
233
|
-
|
|
234
177
|
AttachmentSizeInBytes: number | undefined;
|
|
235
|
-
|
|
236
178
|
AttachmentName: string | undefined;
|
|
237
|
-
|
|
238
179
|
ClientToken?: string;
|
|
239
|
-
|
|
240
180
|
ConnectionToken: string | undefined;
|
|
241
181
|
}
|
|
242
|
-
|
|
243
182
|
export interface UploadMetadata {
|
|
244
183
|
Url?: string;
|
|
245
|
-
|
|
246
184
|
UrlExpiry?: string;
|
|
247
|
-
|
|
248
185
|
HeadersToInclude?: Record<string, string>;
|
|
249
186
|
}
|
|
250
187
|
export interface StartAttachmentUploadResponse {
|
|
251
188
|
AttachmentId?: string;
|
|
252
|
-
|
|
253
189
|
UploadMetadata?: UploadMetadata;
|
|
254
190
|
}
|
|
255
|
-
|
|
256
191
|
export declare const CompleteAttachmentUploadRequestFilterSensitiveLog: (
|
|
257
192
|
obj: CompleteAttachmentUploadRequest
|
|
258
193
|
) => any;
|
|
259
|
-
|
|
260
194
|
export declare const CompleteAttachmentUploadResponseFilterSensitiveLog: (
|
|
261
195
|
obj: CompleteAttachmentUploadResponse
|
|
262
196
|
) => any;
|
|
263
|
-
|
|
264
197
|
export declare const CreateParticipantConnectionRequestFilterSensitiveLog: (
|
|
265
198
|
obj: CreateParticipantConnectionRequest
|
|
266
199
|
) => any;
|
|
267
|
-
|
|
268
200
|
export declare const ConnectionCredentialsFilterSensitiveLog: (
|
|
269
201
|
obj: ConnectionCredentials
|
|
270
202
|
) => any;
|
|
271
|
-
|
|
272
203
|
export declare const WebsocketFilterSensitiveLog: (obj: Websocket) => any;
|
|
273
|
-
|
|
274
204
|
export declare const CreateParticipantConnectionResponseFilterSensitiveLog: (
|
|
275
205
|
obj: CreateParticipantConnectionResponse
|
|
276
206
|
) => any;
|
|
277
|
-
|
|
278
207
|
export declare const DisconnectParticipantRequestFilterSensitiveLog: (
|
|
279
208
|
obj: DisconnectParticipantRequest
|
|
280
209
|
) => any;
|
|
281
|
-
|
|
282
210
|
export declare const DisconnectParticipantResponseFilterSensitiveLog: (
|
|
283
211
|
obj: DisconnectParticipantResponse
|
|
284
212
|
) => any;
|
|
285
|
-
|
|
286
213
|
export declare const GetAttachmentRequestFilterSensitiveLog: (
|
|
287
214
|
obj: GetAttachmentRequest
|
|
288
215
|
) => any;
|
|
289
|
-
|
|
290
216
|
export declare const GetAttachmentResponseFilterSensitiveLog: (
|
|
291
217
|
obj: GetAttachmentResponse
|
|
292
218
|
) => any;
|
|
293
|
-
|
|
294
219
|
export declare const StartPositionFilterSensitiveLog: (
|
|
295
220
|
obj: StartPosition
|
|
296
221
|
) => any;
|
|
297
|
-
|
|
298
222
|
export declare const GetTranscriptRequestFilterSensitiveLog: (
|
|
299
223
|
obj: GetTranscriptRequest
|
|
300
224
|
) => any;
|
|
301
|
-
|
|
302
225
|
export declare const AttachmentItemFilterSensitiveLog: (
|
|
303
226
|
obj: AttachmentItem
|
|
304
227
|
) => any;
|
|
305
|
-
|
|
306
228
|
export declare const ItemFilterSensitiveLog: (obj: Item) => any;
|
|
307
|
-
|
|
308
229
|
export declare const GetTranscriptResponseFilterSensitiveLog: (
|
|
309
230
|
obj: GetTranscriptResponse
|
|
310
231
|
) => any;
|
|
311
|
-
|
|
312
232
|
export declare const SendEventRequestFilterSensitiveLog: (
|
|
313
233
|
obj: SendEventRequest
|
|
314
234
|
) => any;
|
|
315
|
-
|
|
316
235
|
export declare const SendEventResponseFilterSensitiveLog: (
|
|
317
236
|
obj: SendEventResponse
|
|
318
237
|
) => any;
|
|
319
|
-
|
|
320
238
|
export declare const SendMessageRequestFilterSensitiveLog: (
|
|
321
239
|
obj: SendMessageRequest
|
|
322
240
|
) => any;
|
|
323
|
-
|
|
324
241
|
export declare const SendMessageResponseFilterSensitiveLog: (
|
|
325
242
|
obj: SendMessageResponse
|
|
326
243
|
) => any;
|
|
327
|
-
|
|
328
244
|
export declare const StartAttachmentUploadRequestFilterSensitiveLog: (
|
|
329
245
|
obj: StartAttachmentUploadRequest
|
|
330
246
|
) => any;
|
|
331
|
-
|
|
332
247
|
export declare const UploadMetadataFilterSensitiveLog: (
|
|
333
248
|
obj: UploadMetadata
|
|
334
249
|
) => any;
|
|
335
|
-
|
|
336
250
|
export declare const StartAttachmentUploadResponseFilterSensitiveLog: (
|
|
337
251
|
obj: StartAttachmentUploadResponse
|
|
338
252
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connectparticipant",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connectparticipant Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.172.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",
|
|
@@ -19,35 +19,35 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.171.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.171.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.171.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.171.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.171.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.171.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.171.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.171.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.171.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.171.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.171.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.171.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.171.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.171.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.171.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.171.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.171.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.171.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.171.0",
|
|
41
|
+
"@aws-sdk/types": "3.171.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.171.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.171.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.171.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.171.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.171.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1",
|