@aws-sdk/client-connect 3.936.0 → 3.937.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/index.js CHANGED
@@ -1312,6 +1312,7 @@ const _Err = "Error";
1312
1312
  const _Ev = "Evaluation";
1313
1313
  const _Eve = "Event";
1314
1314
  const _Ex = "Expiry";
1315
+ const _Exc = "Exclusion";
1315
1316
  const _Exp = "Expression";
1316
1317
  const _Expr = "Expressions";
1317
1318
  const _F = "Files";
@@ -8346,8 +8347,8 @@ var SendNotificationActionDefinition = [
8346
8347
  n0,
8347
8348
  _SNAD,
8348
8349
  0,
8349
- [_DM, _Su, _Co, _CTon, _Rec],
8350
- [0, 0, 0, 0, () => NotificationRecipientType],
8350
+ [_DM, _Su, _Co, _CTon, _Rec, _Exc],
8351
+ [0, 0, 0, 0, () => NotificationRecipientType, () => NotificationRecipientType],
8351
8352
  ];
8352
8353
  var SendOutboundEmailRequest = [
8353
8354
  3,
@@ -818,6 +818,7 @@ const _Err = "Error";
818
818
  const _Ev = "Evaluation";
819
819
  const _Eve = "Event";
820
820
  const _Ex = "Expiry";
821
+ const _Exc = "Exclusion";
821
822
  const _Exp = "Expression";
822
823
  const _Expr = "Expressions";
823
824
  const _F = "Files";
@@ -7855,8 +7856,8 @@ export var SendNotificationActionDefinition = [
7855
7856
  n0,
7856
7857
  _SNAD,
7857
7858
  0,
7858
- [_DM, _Su, _Co, _CTon, _Rec],
7859
- [0, 0, 0, 0, () => NotificationRecipientType],
7859
+ [_DM, _Su, _Co, _CTon, _Rec, _Exc],
7860
+ [0, 0, 0, 0, () => NotificationRecipientType, () => NotificationRecipientType],
7860
7861
  ];
7861
7862
  export var SendOutboundEmailRequest = [
7862
7863
  3,
@@ -80,6 +80,14 @@ declare const CreateRuleCommand_base: {
80
80
  * "STRING_VALUE",
81
81
  * ],
82
82
  * },
83
+ * Exclusion: {
84
+ * UserTags: {
85
+ * "<keys>": "STRING_VALUE",
86
+ * },
87
+ * UserIds: [
88
+ * "STRING_VALUE",
89
+ * ],
90
+ * },
83
91
  * },
84
92
  * CreateCaseAction: { // CreateCaseActionDefinition
85
93
  * Fields: [ // FieldValues // required
@@ -86,6 +86,14 @@ declare const DescribeRuleCommand_base: {
86
86
  * // "STRING_VALUE",
87
87
  * // ],
88
88
  * // },
89
+ * // Exclusion: {
90
+ * // UserTags: {
91
+ * // "<keys>": "STRING_VALUE",
92
+ * // },
93
+ * // UserIds: [
94
+ * // "STRING_VALUE",
95
+ * // ],
96
+ * // },
89
97
  * // },
90
98
  * // CreateCaseAction: { // CreateCaseActionDefinition
91
99
  * // Fields: [ // FieldValues // required
@@ -32,8 +32,7 @@ declare const StartOutboundVoiceContactCommand_base: {
32
32
  * <p>Agents do not initiate the outbound API, which means that they do not dial the contact. If
33
33
  * the flow places an outbound call to a contact, and then puts the contact in queue, the call is
34
34
  * then routed to the agent, like any other inbound case.</p>
35
- * <p>There is a 60-second dialing timeout for this operation. If the call is not connected after
36
- * 60 seconds, it fails.</p>
35
+ * <p>Dialing timeout for this operation can be configured with the “RingTimeoutInSeconds” parameter. If not specified, the default dialing timeout will be 60 seconds which means if the call is not connected within 60 seconds, it fails.</p>
37
36
  * <note>
38
37
  * <p>UK numbers with a 447 prefix are not allowed by default. Before you can dial these UK
39
38
  * mobile numbers, you must submit a service quota increase request. For more information, see
@@ -77,6 +77,14 @@ declare const UpdateRuleCommand_base: {
77
77
  * "STRING_VALUE",
78
78
  * ],
79
79
  * },
80
+ * Exclusion: {
81
+ * UserTags: {
82
+ * "<keys>": "STRING_VALUE",
83
+ * },
84
+ * UserIds: [
85
+ * "STRING_VALUE",
86
+ * ],
87
+ * },
80
88
  * },
81
89
  * CreateCaseAction: { // CreateCaseActionDefinition
82
90
  * Fields: [ // FieldValues // required
@@ -4195,6 +4195,11 @@ export interface SendNotificationActionDefinition {
4195
4195
  * @public
4196
4196
  */
4197
4197
  Recipient: NotificationRecipientType | undefined;
4198
+ /**
4199
+ * <p>Recipients to exclude from notification.</p>
4200
+ * @public
4201
+ */
4202
+ Exclusion?: NotificationRecipientType | undefined;
4198
4203
  }
4199
4204
  /**
4200
4205
  * <p>Information about the submit automated evaluation action.</p>
@@ -1082,6 +1082,7 @@ export interface SendNotificationActionDefinition {
1082
1082
  Content: string | undefined;
1083
1083
  ContentType: NotificationContentType | undefined;
1084
1084
  Recipient: NotificationRecipientType | undefined;
1085
+ Exclusion?: NotificationRecipientType | undefined;
1085
1086
  }
1086
1087
  export interface SubmitAutoEvaluationActionDefinition {
1087
1088
  EvaluationFormId: 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.936.0",
4
+ "version": "3.937.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",