@aws-sdk/client-connect 3.421.0 → 3.424.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/models/models_1.js +9 -9
- package/dist-cjs/models/models_2.js +9 -1
- package/dist-cjs/protocols/Aws_restJson1.js +9 -0
- package/dist-es/models/models_1.js +8 -8
- package/dist-es/models/models_2.js +8 -0
- package/dist-es/protocols/Aws_restJson1.js +9 -0
- package/dist-types/commands/CreateSecurityProfileCommand.d.ts +1 -2
- package/dist-types/commands/CreateViewCommand.d.ts +7 -5
- package/dist-types/commands/CreateViewVersionCommand.d.ts +3 -3
- package/dist-types/commands/DeleteSecurityProfileCommand.d.ts +1 -2
- package/dist-types/commands/DeleteViewCommand.d.ts +2 -1
- package/dist-types/commands/DescribeSecurityProfileCommand.d.ts +1 -2
- package/dist-types/commands/DescribeViewCommand.d.ts +4 -4
- package/dist-types/commands/GetMetricDataV2Command.d.ts +12 -2
- package/dist-types/commands/ListSecurityProfilePermissionsCommand.d.ts +1 -2
- package/dist-types/commands/ListViewVersionsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateParticipantRoleConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityProfileCommand.d.ts +1 -2
- package/dist-types/commands/UpdateViewContentCommand.d.ts +6 -4
- package/dist-types/models/models_0.d.ts +40 -24
- package/dist-types/models/models_1.d.ts +223 -83
- package/dist-types/models/models_2.d.ts +65 -6
- package/dist-types/ts3.4/commands/UpdateParticipantRoleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +22 -27
- package/dist-types/ts3.4/models/models_2.d.ts +28 -0
- package/package.json +3 -3
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
ViewStatus,
|
|
25
25
|
} from "./models_0";
|
|
26
26
|
import {
|
|
27
|
+
ChatParticipantRoleConfig,
|
|
27
28
|
HierarchyGroupCondition,
|
|
28
29
|
HoursOfOperationSearchFilter,
|
|
29
30
|
PromptSearchFilter,
|
|
@@ -37,6 +38,33 @@ import {
|
|
|
37
38
|
TelephonyConfig,
|
|
38
39
|
UserSearchFilter,
|
|
39
40
|
} from "./models_1";
|
|
41
|
+
export type UpdateParticipantRoleConfigChannelInfo =
|
|
42
|
+
| UpdateParticipantRoleConfigChannelInfo.ChatMember
|
|
43
|
+
| UpdateParticipantRoleConfigChannelInfo.$UnknownMember;
|
|
44
|
+
export declare namespace UpdateParticipantRoleConfigChannelInfo {
|
|
45
|
+
interface ChatMember {
|
|
46
|
+
Chat: ChatParticipantRoleConfig;
|
|
47
|
+
$unknown?: never;
|
|
48
|
+
}
|
|
49
|
+
interface $UnknownMember {
|
|
50
|
+
Chat?: never;
|
|
51
|
+
$unknown: [string, any];
|
|
52
|
+
}
|
|
53
|
+
interface Visitor<T> {
|
|
54
|
+
Chat: (value: ChatParticipantRoleConfig) => T;
|
|
55
|
+
_: (name: string, value: any) => T;
|
|
56
|
+
}
|
|
57
|
+
const visit: <T>(
|
|
58
|
+
value: UpdateParticipantRoleConfigChannelInfo,
|
|
59
|
+
visitor: Visitor<T>
|
|
60
|
+
) => T;
|
|
61
|
+
}
|
|
62
|
+
export interface UpdateParticipantRoleConfigRequest {
|
|
63
|
+
InstanceId: string | undefined;
|
|
64
|
+
ContactId: string | undefined;
|
|
65
|
+
ChannelConfiguration: UpdateParticipantRoleConfigChannelInfo | undefined;
|
|
66
|
+
}
|
|
67
|
+
export interface UpdateParticipantRoleConfigResponse {}
|
|
40
68
|
export interface UpdatePhoneNumberRequest {
|
|
41
69
|
PhoneNumberId: string | undefined;
|
|
42
70
|
TargetArn: string | undefined;
|
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.424.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",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.423.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.423.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.418.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.418.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.418.0",
|