@aws-sdk/client-connect 3.731.0 → 3.732.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/README.md +8 -0
- package/dist-cjs/index.js +46 -5
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/DeleteContactFlowVersionCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +22 -0
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/AssociateUserProficienciesCommand.d.ts +1 -1
- package/dist-types/commands/CreateContactFlowCommand.d.ts +1 -1
- package/dist-types/commands/CreateContactFlowVersionCommand.d.ts +5 -5
- package/dist-types/commands/DeleteContactFlowVersionCommand.d.ts +89 -0
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecurityProfileCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +3 -1
- package/dist-types/commands/ListContactFlowsCommand.d.ts +2 -2
- package/dist-types/commands/ListQuickConnectsCommand.d.ts +2 -1
- package/dist-types/commands/SearchContactFlowsCommand.d.ts +3 -3
- package/dist-types/commands/UpdateRoutingProfileNameCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRoutingProfileQueuesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +32 -31
- package/dist-types/models/models_1.d.ts +30 -27
- package/dist-types/models/models_2.d.ts +29 -49
- package/dist-types/models/models_3.d.ts +48 -1
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/DeleteContactFlowVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteSecurityProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListQuickConnectsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateRoutingProfileNameCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRoutingProfileQueuesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -8
- package/dist-types/ts3.4/models/models_1.d.ts +8 -10
- package/dist-types/ts3.4/models/models_2.d.ts +11 -13
- package/dist-types/ts3.4/models/models_3.d.ts +12 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +2 -2
|
@@ -28,7 +28,6 @@ import {
|
|
|
28
28
|
QuickConnectConfig,
|
|
29
29
|
Reference,
|
|
30
30
|
RehydrationType,
|
|
31
|
-
RoutingProfileQueueConfig,
|
|
32
31
|
RulePublishStatus,
|
|
33
32
|
StringComparisonType,
|
|
34
33
|
StringCondition,
|
|
@@ -61,11 +60,21 @@ import {
|
|
|
61
60
|
Queue,
|
|
62
61
|
QueueStatus,
|
|
63
62
|
QuickConnect,
|
|
64
|
-
|
|
63
|
+
QuickConnectSummary,
|
|
65
64
|
RoutingProfile,
|
|
66
65
|
SortOrder,
|
|
67
66
|
TrafficDistributionGroupStatus,
|
|
68
67
|
} from "./models_1";
|
|
68
|
+
export interface ListQuickConnectsResponse {
|
|
69
|
+
QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
|
|
70
|
+
NextToken?: string | undefined;
|
|
71
|
+
}
|
|
72
|
+
export declare const RealTimeContactAnalysisOutputType: {
|
|
73
|
+
readonly Raw: "Raw";
|
|
74
|
+
readonly Redacted: "Redacted";
|
|
75
|
+
};
|
|
76
|
+
export type RealTimeContactAnalysisOutputType =
|
|
77
|
+
(typeof RealTimeContactAnalysisOutputType)[keyof typeof RealTimeContactAnalysisOutputType];
|
|
69
78
|
export declare const RealTimeContactAnalysisSegmentType: {
|
|
70
79
|
readonly Attachments: "Attachments";
|
|
71
80
|
readonly Categories: "Categories";
|
|
@@ -1748,17 +1757,6 @@ export interface UpdateRoutingProfileDefaultOutboundQueueRequest {
|
|
|
1748
1757
|
RoutingProfileId: string | undefined;
|
|
1749
1758
|
DefaultOutboundQueueId: string | undefined;
|
|
1750
1759
|
}
|
|
1751
|
-
export interface UpdateRoutingProfileNameRequest {
|
|
1752
|
-
InstanceId: string | undefined;
|
|
1753
|
-
RoutingProfileId: string | undefined;
|
|
1754
|
-
Name?: string | undefined;
|
|
1755
|
-
Description?: string | undefined;
|
|
1756
|
-
}
|
|
1757
|
-
export interface UpdateRoutingProfileQueuesRequest {
|
|
1758
|
-
InstanceId: string | undefined;
|
|
1759
|
-
RoutingProfileId: string | undefined;
|
|
1760
|
-
QueueConfigs: RoutingProfileQueueConfig[] | undefined;
|
|
1761
|
-
}
|
|
1762
1760
|
export declare const ViewSummaryFilterSensitiveLog: (obj: ViewSummary) => any;
|
|
1763
1761
|
export declare const ListViewsResponseFilterSensitiveLog: (
|
|
1764
1762
|
obj: ListViewsResponse
|
|
@@ -14,6 +14,7 @@ import {
|
|
|
14
14
|
EvaluationFormScoringStrategy,
|
|
15
15
|
InitiateAs,
|
|
16
16
|
Reference,
|
|
17
|
+
RoutingProfileQueueConfig,
|
|
17
18
|
RuleAction,
|
|
18
19
|
RulePublishStatus,
|
|
19
20
|
StringCondition,
|
|
@@ -75,6 +76,17 @@ import {
|
|
|
75
76
|
UserHierarchyGroupSearchFilter,
|
|
76
77
|
UserSearchFilter,
|
|
77
78
|
} from "./models_2";
|
|
79
|
+
export interface UpdateRoutingProfileNameRequest {
|
|
80
|
+
InstanceId: string | undefined;
|
|
81
|
+
RoutingProfileId: string | undefined;
|
|
82
|
+
Name?: string | undefined;
|
|
83
|
+
Description?: string | undefined;
|
|
84
|
+
}
|
|
85
|
+
export interface UpdateRoutingProfileQueuesRequest {
|
|
86
|
+
InstanceId: string | undefined;
|
|
87
|
+
RoutingProfileId: string | undefined;
|
|
88
|
+
QueueConfigs: RoutingProfileQueueConfig[] | undefined;
|
|
89
|
+
}
|
|
78
90
|
export interface UpdateRuleRequest {
|
|
79
91
|
RuleId: string | undefined;
|
|
80
92
|
InstanceId: string | undefined;
|
|
@@ -227,6 +227,10 @@ import {
|
|
|
227
227
|
DeleteContactFlowModuleCommandInput,
|
|
228
228
|
DeleteContactFlowModuleCommandOutput,
|
|
229
229
|
} from "../commands/DeleteContactFlowModuleCommand";
|
|
230
|
+
import {
|
|
231
|
+
DeleteContactFlowVersionCommandInput,
|
|
232
|
+
DeleteContactFlowVersionCommandOutput,
|
|
233
|
+
} from "../commands/DeleteContactFlowVersionCommand";
|
|
230
234
|
import {
|
|
231
235
|
DeleteEmailAddressCommandInput,
|
|
232
236
|
DeleteEmailAddressCommandOutput,
|
|
@@ -1347,6 +1351,10 @@ export declare const se_DeleteContactFlowModuleCommand: (
|
|
|
1347
1351
|
input: DeleteContactFlowModuleCommandInput,
|
|
1348
1352
|
context: __SerdeContext
|
|
1349
1353
|
) => Promise<__HttpRequest>;
|
|
1354
|
+
export declare const se_DeleteContactFlowVersionCommand: (
|
|
1355
|
+
input: DeleteContactFlowVersionCommandInput,
|
|
1356
|
+
context: __SerdeContext
|
|
1357
|
+
) => Promise<__HttpRequest>;
|
|
1350
1358
|
export declare const se_DeleteEmailAddressCommand: (
|
|
1351
1359
|
input: DeleteEmailAddressCommandInput,
|
|
1352
1360
|
context: __SerdeContext
|
|
@@ -2467,6 +2475,10 @@ export declare const de_DeleteContactFlowModuleCommand: (
|
|
|
2467
2475
|
output: __HttpResponse,
|
|
2468
2476
|
context: __SerdeContext
|
|
2469
2477
|
) => Promise<DeleteContactFlowModuleCommandOutput>;
|
|
2478
|
+
export declare const de_DeleteContactFlowVersionCommand: (
|
|
2479
|
+
output: __HttpResponse,
|
|
2480
|
+
context: __SerdeContext
|
|
2481
|
+
) => Promise<DeleteContactFlowVersionCommandOutput>;
|
|
2470
2482
|
export declare const de_DeleteEmailAddressCommand: (
|
|
2471
2483
|
output: __HttpResponse,
|
|
2472
2484
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Connect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.732.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.731.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.731.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.731.1",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.731.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.731.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.731.0",
|