@aws-sdk/client-connect 3.1022.0 → 3.1024.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 +5 -0
- package/dist-es/models/enums.js +5 -0
- package/dist-types/commands/CreateEvaluationFormCommand.d.ts +2 -2
- package/dist-types/commands/DescribeContactEvaluationCommand.d.ts +3 -3
- package/dist-types/commands/DescribeEvaluationFormCommand.d.ts +2 -2
- package/dist-types/commands/ListContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/commands/SearchEvaluationFormsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateEvaluationFormCommand.d.ts +2 -2
- package/dist-types/commands/UpdateTrafficDistributionCommand.d.ts +8 -0
- package/dist-types/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -5480,7 +5480,10 @@ const EvaluationFormLanguageCode = {
|
|
|
5480
5480
|
ES_ES: "es-ES",
|
|
5481
5481
|
FR_FR: "fr-FR",
|
|
5482
5482
|
IT_IT: "it-IT",
|
|
5483
|
+
JA_JP: "ja-JP",
|
|
5484
|
+
KO_KR: "ko-KR",
|
|
5483
5485
|
PT_BR: "pt-BR",
|
|
5486
|
+
ZH_CN: "zh-CN",
|
|
5484
5487
|
};
|
|
5485
5488
|
const EvaluationReviewNotificationRecipientType = {
|
|
5486
5489
|
USER_ID: "USER_ID",
|
|
@@ -5496,6 +5499,7 @@ const EvaluationFormScoringStatus = {
|
|
|
5496
5499
|
const ContactInteractionType = {
|
|
5497
5500
|
AGENT: "AGENT",
|
|
5498
5501
|
AUTOMATED: "AUTOMATED",
|
|
5502
|
+
CUSTOMER: "CUSTOMER",
|
|
5499
5503
|
};
|
|
5500
5504
|
const HoursOfOperationDays = {
|
|
5501
5505
|
FRIDAY: "FRIDAY",
|
|
@@ -5789,6 +5793,7 @@ const AutoEvaluationStatus = {
|
|
|
5789
5793
|
};
|
|
5790
5794
|
const ContactParticipantRole = {
|
|
5791
5795
|
AGENT: "AGENT",
|
|
5796
|
+
CUSTOMER: "CUSTOMER",
|
|
5792
5797
|
CUSTOM_BOT: "CUSTOM_BOT",
|
|
5793
5798
|
SYSTEM: "SYSTEM",
|
|
5794
5799
|
};
|
package/dist-es/models/enums.js
CHANGED
|
@@ -331,7 +331,10 @@ export const EvaluationFormLanguageCode = {
|
|
|
331
331
|
ES_ES: "es-ES",
|
|
332
332
|
FR_FR: "fr-FR",
|
|
333
333
|
IT_IT: "it-IT",
|
|
334
|
+
JA_JP: "ja-JP",
|
|
335
|
+
KO_KR: "ko-KR",
|
|
334
336
|
PT_BR: "pt-BR",
|
|
337
|
+
ZH_CN: "zh-CN",
|
|
335
338
|
};
|
|
336
339
|
export const EvaluationReviewNotificationRecipientType = {
|
|
337
340
|
USER_ID: "USER_ID",
|
|
@@ -347,6 +350,7 @@ export const EvaluationFormScoringStatus = {
|
|
|
347
350
|
export const ContactInteractionType = {
|
|
348
351
|
AGENT: "AGENT",
|
|
349
352
|
AUTOMATED: "AUTOMATED",
|
|
353
|
+
CUSTOMER: "CUSTOMER",
|
|
350
354
|
};
|
|
351
355
|
export const HoursOfOperationDays = {
|
|
352
356
|
FRIDAY: "FRIDAY",
|
|
@@ -640,6 +644,7 @@ export const AutoEvaluationStatus = {
|
|
|
640
644
|
};
|
|
641
645
|
export const ContactParticipantRole = {
|
|
642
646
|
AGENT: "AGENT",
|
|
647
|
+
CUSTOMER: "CUSTOMER",
|
|
643
648
|
CUSTOM_BOT: "CUSTOM_BOT",
|
|
644
649
|
SYSTEM: "SYSTEM",
|
|
645
650
|
};
|
|
@@ -324,10 +324,10 @@ declare const CreateEvaluationFormCommand_base: {
|
|
|
324
324
|
* EligibilityDays: Number("int"),
|
|
325
325
|
* },
|
|
326
326
|
* TargetConfiguration: { // EvaluationFormTargetConfiguration
|
|
327
|
-
* ContactInteractionType: "AGENT" || "AUTOMATED", // required
|
|
327
|
+
* ContactInteractionType: "AGENT" || "AUTOMATED" || "CUSTOMER", // required
|
|
328
328
|
* },
|
|
329
329
|
* LanguageConfiguration: { // EvaluationFormLanguageConfiguration
|
|
330
|
-
* FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR",
|
|
330
|
+
* FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
331
331
|
* },
|
|
332
332
|
* };
|
|
333
333
|
* const command = new CreateEvaluationFormCommand(input);
|
|
@@ -82,7 +82,7 @@ declare const DescribeContactEvaluationCommand_base: {
|
|
|
82
82
|
* // ],
|
|
83
83
|
* // },
|
|
84
84
|
* // ContactParticipant: { // EvaluationContactParticipant
|
|
85
|
-
* // ContactParticipantRole: "AGENT" || "SYSTEM" || "CUSTOM_BOT",
|
|
85
|
+
* // ContactParticipantRole: "AGENT" || "SYSTEM" || "CUSTOM_BOT" || "CUSTOMER",
|
|
86
86
|
* // ContactParticipantId: "STRING_VALUE",
|
|
87
87
|
* // },
|
|
88
88
|
* // SamplingJobId: "STRING_VALUE",
|
|
@@ -448,10 +448,10 @@ declare const DescribeContactEvaluationCommand_base: {
|
|
|
448
448
|
* // Enabled: true || false, // required
|
|
449
449
|
* // },
|
|
450
450
|
* // TargetConfiguration: { // EvaluationFormTargetConfiguration
|
|
451
|
-
* // ContactInteractionType: "AGENT" || "AUTOMATED", // required
|
|
451
|
+
* // ContactInteractionType: "AGENT" || "AUTOMATED" || "CUSTOMER", // required
|
|
452
452
|
* // },
|
|
453
453
|
* // LanguageConfiguration: { // EvaluationFormLanguageConfiguration
|
|
454
|
-
* // FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR",
|
|
454
|
+
* // FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
455
455
|
* // },
|
|
456
456
|
* // ReviewConfiguration: { // EvaluationReviewConfiguration
|
|
457
457
|
* // ReviewNotificationRecipients: [ // EvaluationReviewNotificationRecipientList // required
|
|
@@ -337,10 +337,10 @@ declare const DescribeEvaluationFormCommand_base: {
|
|
|
337
337
|
* // "<keys>": "STRING_VALUE",
|
|
338
338
|
* // },
|
|
339
339
|
* // TargetConfiguration: { // EvaluationFormTargetConfiguration
|
|
340
|
-
* // ContactInteractionType: "AGENT" || "AUTOMATED", // required
|
|
340
|
+
* // ContactInteractionType: "AGENT" || "AUTOMATED" || "CUSTOMER", // required
|
|
341
341
|
* // },
|
|
342
342
|
* // LanguageConfiguration: { // EvaluationFormLanguageConfiguration
|
|
343
|
-
* // FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR",
|
|
343
|
+
* // FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
344
344
|
* // },
|
|
345
345
|
* // },
|
|
346
346
|
* // };
|
|
@@ -70,7 +70,7 @@ declare const ListContactEvaluationsCommand_base: {
|
|
|
70
70
|
* // CreatedTime: new Date("TIMESTAMP"), // required
|
|
71
71
|
* // LastModifiedTime: new Date("TIMESTAMP"), // required
|
|
72
72
|
* // ContactParticipant: { // EvaluationContactParticipant
|
|
73
|
-
* // ContactParticipantRole: "AGENT" || "SYSTEM" || "CUSTOM_BOT",
|
|
73
|
+
* // ContactParticipantRole: "AGENT" || "SYSTEM" || "CUSTOM_BOT" || "CUSTOMER",
|
|
74
74
|
* // ContactParticipantId: "STRING_VALUE",
|
|
75
75
|
* // },
|
|
76
76
|
* // },
|
|
@@ -183,7 +183,7 @@ declare const SearchContactEvaluationsCommand_base: {
|
|
|
183
183
|
* // AcknowledgerComment: "STRING_VALUE",
|
|
184
184
|
* // SamplingJobId: "STRING_VALUE",
|
|
185
185
|
* // ReviewId: "STRING_VALUE",
|
|
186
|
-
* // ContactParticipantRole: "AGENT" || "SYSTEM" || "CUSTOM_BOT",
|
|
186
|
+
* // ContactParticipantRole: "AGENT" || "SYSTEM" || "CUSTOM_BOT" || "CUSTOMER",
|
|
187
187
|
* // ContactParticipantId: "STRING_VALUE",
|
|
188
188
|
* // },
|
|
189
189
|
* // Status: "DRAFT" || "SUBMITTED" || "REVIEW_REQUESTED" || "UNDER_REVIEW", // required
|
|
@@ -168,8 +168,8 @@ declare const SearchEvaluationFormsCommand_base: {
|
|
|
168
168
|
* // LatestVersion: Number("int"), // required
|
|
169
169
|
* // ActiveVersion: Number("int"),
|
|
170
170
|
* // AutoEvaluationEnabled: true || false,
|
|
171
|
-
* // EvaluationFormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR",
|
|
172
|
-
* // ContactInteractionType: "AGENT" || "AUTOMATED",
|
|
171
|
+
* // EvaluationFormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
172
|
+
* // ContactInteractionType: "AGENT" || "AUTOMATED" || "CUSTOMER",
|
|
173
173
|
* // Tags: { // TagMap
|
|
174
174
|
* // "<keys>": "STRING_VALUE",
|
|
175
175
|
* // },
|
|
@@ -324,10 +324,10 @@ declare const UpdateEvaluationFormCommand_base: {
|
|
|
324
324
|
* AsDraft: true || false,
|
|
325
325
|
* ClientToken: "STRING_VALUE",
|
|
326
326
|
* TargetConfiguration: { // EvaluationFormTargetConfiguration
|
|
327
|
-
* ContactInteractionType: "AGENT" || "AUTOMATED", // required
|
|
327
|
+
* ContactInteractionType: "AGENT" || "AUTOMATED" || "CUSTOMER", // required
|
|
328
328
|
* },
|
|
329
329
|
* LanguageConfiguration: { // EvaluationFormLanguageConfiguration
|
|
330
|
-
* FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR",
|
|
330
|
+
* FormLanguage: "de-DE" || "en-US" || "es-ES" || "fr-FR" || "it-IT" || "pt-BR" || "ja-JP" || "ko-KR" || "zh-CN",
|
|
331
331
|
* },
|
|
332
332
|
* };
|
|
333
333
|
* const command = new UpdateEvaluationFormCommand(input);
|
|
@@ -44,6 +44,14 @@ declare const UpdateTrafficDistributionCommand_base: {
|
|
|
44
44
|
* <p>For more information about updating a traffic distribution group, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/update-telephony-traffic-distribution.html">Update telephony traffic distribution
|
|
45
45
|
* across Amazon Web Services Regions
|
|
46
46
|
* </a> in the <i>Amazon Connect Administrator Guide</i>. </p>
|
|
47
|
+
* <p>
|
|
48
|
+
* <b>Important things to know</b>
|
|
49
|
+
* </p>
|
|
50
|
+
* <ul>
|
|
51
|
+
* <li>
|
|
52
|
+
* <p>Invoke the UpdateTrafficDistribution API in the region that should handle traffic.</p>
|
|
53
|
+
* </li>
|
|
54
|
+
* </ul>
|
|
47
55
|
* @example
|
|
48
56
|
* Use a bare-bones client and the command you need to make an API call.
|
|
49
57
|
* ```javascript
|
|
@@ -735,7 +735,10 @@ export declare const EvaluationFormLanguageCode: {
|
|
|
735
735
|
readonly ES_ES: "es-ES";
|
|
736
736
|
readonly FR_FR: "fr-FR";
|
|
737
737
|
readonly IT_IT: "it-IT";
|
|
738
|
+
readonly JA_JP: "ja-JP";
|
|
739
|
+
readonly KO_KR: "ko-KR";
|
|
738
740
|
readonly PT_BR: "pt-BR";
|
|
741
|
+
readonly ZH_CN: "zh-CN";
|
|
739
742
|
};
|
|
740
743
|
/**
|
|
741
744
|
* @public
|
|
@@ -783,6 +786,7 @@ export type EvaluationFormScoringStatus = (typeof EvaluationFormScoringStatus)[k
|
|
|
783
786
|
export declare const ContactInteractionType: {
|
|
784
787
|
readonly AGENT: "AGENT";
|
|
785
788
|
readonly AUTOMATED: "AUTOMATED";
|
|
789
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
786
790
|
};
|
|
787
791
|
/**
|
|
788
792
|
* @public
|
|
@@ -1468,6 +1472,7 @@ export type AutoEvaluationStatus = (typeof AutoEvaluationStatus)[keyof typeof Au
|
|
|
1468
1472
|
*/
|
|
1469
1473
|
export declare const ContactParticipantRole: {
|
|
1470
1474
|
readonly AGENT: "AGENT";
|
|
1475
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
1471
1476
|
readonly CUSTOM_BOT: "CUSTOM_BOT";
|
|
1472
1477
|
readonly SYSTEM: "SYSTEM";
|
|
1473
1478
|
};
|
|
@@ -421,7 +421,10 @@ export declare const EvaluationFormLanguageCode: {
|
|
|
421
421
|
readonly ES_ES: "es-ES";
|
|
422
422
|
readonly FR_FR: "fr-FR";
|
|
423
423
|
readonly IT_IT: "it-IT";
|
|
424
|
+
readonly JA_JP: "ja-JP";
|
|
425
|
+
readonly KO_KR: "ko-KR";
|
|
424
426
|
readonly PT_BR: "pt-BR";
|
|
427
|
+
readonly ZH_CN: "zh-CN";
|
|
425
428
|
};
|
|
426
429
|
export type EvaluationFormLanguageCode =
|
|
427
430
|
(typeof EvaluationFormLanguageCode)[keyof typeof EvaluationFormLanguageCode];
|
|
@@ -445,6 +448,7 @@ export type EvaluationFormScoringStatus =
|
|
|
445
448
|
export declare const ContactInteractionType: {
|
|
446
449
|
readonly AGENT: "AGENT";
|
|
447
450
|
readonly AUTOMATED: "AUTOMATED";
|
|
451
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
448
452
|
};
|
|
449
453
|
export type ContactInteractionType =
|
|
450
454
|
(typeof ContactInteractionType)[keyof typeof ContactInteractionType];
|
|
@@ -821,6 +825,7 @@ export type AutoEvaluationStatus =
|
|
|
821
825
|
(typeof AutoEvaluationStatus)[keyof typeof AutoEvaluationStatus];
|
|
822
826
|
export declare const ContactParticipantRole: {
|
|
823
827
|
readonly AGENT: "AGENT";
|
|
828
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
824
829
|
readonly CUSTOM_BOT: "CUSTOM_BOT";
|
|
825
830
|
readonly SYSTEM: "SYSTEM";
|
|
826
831
|
};
|
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.1024.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-connect",
|