@aws-sdk/client-connect 3.1111.0 → 3.1113.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 +35 -0
- package/dist-cjs/index.js +206 -9
- package/dist-es/Connect.js +12 -0
- package/dist-es/commands/CreateExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/DeleteExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/DescribeExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/ListExtractionDefinitionsCommand.js +4 -0
- package/dist-es/commands/UpdateExtractionDefinitionCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +7 -0
- package/dist-es/pagination/ListExtractionDefinitionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +146 -8
- package/dist-types/Connect.d.ts +42 -0
- package/dist-types/ConnectClient.d.ts +7 -2
- package/dist-types/commands/CreateExtractionDefinitionCommand.d.ts +111 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +9 -2
- package/dist-types/commands/CreateTestCaseCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
- package/dist-types/commands/CreateUseCaseCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExtractionDefinitionCommand.d.ts +85 -0
- package/dist-types/commands/DescribeExtractionDefinitionCommand.d.ts +107 -0
- package/dist-types/commands/DescribeRuleCommand.d.ts +9 -2
- package/dist-types/commands/GetCurrentMetricDataCommand.d.ts +1 -1
- package/dist-types/commands/GetCurrentUserDataCommand.d.ts +1 -2
- package/dist-types/commands/ListExtractionDefinitionsCommand.d.ts +98 -0
- package/dist-types/commands/ListRulesCommand.d.ts +3 -3
- package/dist-types/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/commands/SearchContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/commands/SearchRulesCommand.d.ts +2 -2
- package/dist-types/commands/StartAssistantContactCommand.d.ts +4 -1
- package/dist-types/commands/UpdateExtractionDefinitionCommand.d.ts +100 -0
- package/dist-types/commands/UpdateRuleCommand.d.ts +8 -1
- package/dist-types/commands/UpdateViewMetadataCommand.d.ts +2 -1
- package/dist-types/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspacePageCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +128 -188
- package/dist-types/models/models_1.d.ts +285 -492
- package/dist-types/models/models_2.d.ts +1736 -1606
- package/dist-types/models/models_3.d.ts +2192 -2081
- package/dist-types/models/models_4.d.ts +367 -7
- package/dist-types/pagination/ListExtractionDefinitionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/Connect.d.ts +92 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTestCaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrafficDistributionGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUseCaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetCurrentMetricDataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCurrentUserDataCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListExtractionDefinitionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/SearchContactEvaluationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateExtractionDefinitionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateViewMetadataCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceMetadataCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspacePageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceThemeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkspaceVisibilityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +31 -46
- package/dist-types/ts3.4/models/models_1.d.ts +72 -72
- package/dist-types/ts3.4/models/models_2.d.ts +89 -102
- package/dist-types/ts3.4/models/models_3.d.ts +112 -104
- package/dist-types/ts3.4/models/models_4.d.ts +109 -14
- package/dist-types/ts3.4/pagination/ListExtractionDefinitionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -521,6 +521,13 @@ CreateEvaluationForm
|
|
|
521
521
|
</details>
|
|
522
522
|
<details>
|
|
523
523
|
<summary>
|
|
524
|
+
CreateExtractionDefinition
|
|
525
|
+
</summary>
|
|
526
|
+
|
|
527
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/CreateExtractionDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreateExtractionDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreateExtractionDefinitionCommandOutput/)
|
|
528
|
+
</details>
|
|
529
|
+
<details>
|
|
530
|
+
<summary>
|
|
524
531
|
CreateHoursOfOperation
|
|
525
532
|
</summary>
|
|
526
533
|
|
|
@@ -801,6 +808,13 @@ DeleteEvaluationForm
|
|
|
801
808
|
</details>
|
|
802
809
|
<details>
|
|
803
810
|
<summary>
|
|
811
|
+
DeleteExtractionDefinition
|
|
812
|
+
</summary>
|
|
813
|
+
|
|
814
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DeleteExtractionDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteExtractionDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteExtractionDefinitionCommandOutput/)
|
|
815
|
+
</details>
|
|
816
|
+
<details>
|
|
817
|
+
<summary>
|
|
804
818
|
DeleteHoursOfOperation
|
|
805
819
|
</summary>
|
|
806
820
|
|
|
@@ -1074,6 +1088,13 @@ DescribeEvaluationForm
|
|
|
1074
1088
|
</details>
|
|
1075
1089
|
<details>
|
|
1076
1090
|
<summary>
|
|
1091
|
+
DescribeExtractionDefinition
|
|
1092
|
+
</summary>
|
|
1093
|
+
|
|
1094
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DescribeExtractionDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DescribeExtractionDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DescribeExtractionDefinitionCommandOutput/)
|
|
1095
|
+
</details>
|
|
1096
|
+
<details>
|
|
1097
|
+
<summary>
|
|
1077
1098
|
DescribeHoursOfOperation
|
|
1078
1099
|
</summary>
|
|
1079
1100
|
|
|
@@ -1662,6 +1683,13 @@ ListEvaluationFormVersions
|
|
|
1662
1683
|
</details>
|
|
1663
1684
|
<details>
|
|
1664
1685
|
<summary>
|
|
1686
|
+
ListExtractionDefinitions
|
|
1687
|
+
</summary>
|
|
1688
|
+
|
|
1689
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/ListExtractionDefinitionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListExtractionDefinitionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/ListExtractionDefinitionsCommandOutput/)
|
|
1690
|
+
</details>
|
|
1691
|
+
<details>
|
|
1692
|
+
<summary>
|
|
1665
1693
|
ListFlowAssociations
|
|
1666
1694
|
</summary>
|
|
1667
1695
|
|
|
@@ -2593,6 +2621,13 @@ UpdateEvaluationForm
|
|
|
2593
2621
|
</details>
|
|
2594
2622
|
<details>
|
|
2595
2623
|
<summary>
|
|
2624
|
+
UpdateExtractionDefinition
|
|
2625
|
+
</summary>
|
|
2626
|
+
|
|
2627
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/UpdateExtractionDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateExtractionDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/UpdateExtractionDefinitionCommandOutput/)
|
|
2628
|
+
</details>
|
|
2629
|
+
<details>
|
|
2630
|
+
<summary>
|
|
2596
2631
|
UpdateHoursOfOperation
|
|
2597
2632
|
</summary>
|
|
2598
2633
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1112.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -944,6 +944,9 @@ const _CEAR = "CreateEmailAddressRequest";
|
|
|
944
944
|
const _CEARr = "CreateEmailAddressResponse";
|
|
945
945
|
const _CEAV = "ContactEvaluationAttributeValue";
|
|
946
946
|
const _CEAr = "CreateEmailAddress";
|
|
947
|
+
const _CED = "CreateExtractionDefinition";
|
|
948
|
+
const _CEDR = "CreateExtractionDefinitionRequest";
|
|
949
|
+
const _CEDRr = "CreateExtractionDefinitionResponse";
|
|
947
950
|
const _CEF = "CreateEvaluationForm";
|
|
948
951
|
const _CEFR = "CreateEvaluationFormRequest";
|
|
949
952
|
const _CEFRr = "CreateEvaluationFormResponse";
|
|
@@ -1258,6 +1261,12 @@ const _DEARes = "DescribeEmailAddressRequest";
|
|
|
1258
1261
|
const _DEAResc = "DescribeEmailAddressResponse";
|
|
1259
1262
|
const _DEAe = "DeleteEmailAddress";
|
|
1260
1263
|
const _DEAes = "DescribeEmailAddress";
|
|
1264
|
+
const _DED = "DeleteExtractionDefinition";
|
|
1265
|
+
const _DEDR = "DeleteExtractionDefinitionRequest";
|
|
1266
|
+
const _DEDRe = "DeleteExtractionDefinitionResponse";
|
|
1267
|
+
const _DEDRes = "DescribeExtractionDefinitionRequest";
|
|
1268
|
+
const _DEDResc = "DescribeExtractionDefinitionResponse";
|
|
1269
|
+
const _DEDe = "DescribeExtractionDefinition";
|
|
1261
1270
|
const _DEF = "DeactivateEvaluationForm";
|
|
1262
1271
|
const _DEFR = "DeactivateEvaluationFormRequest";
|
|
1263
1272
|
const _DEFRe = "DeactivateEvaluationFormResponse";
|
|
@@ -1509,7 +1518,8 @@ const _Del = "Delay";
|
|
|
1509
1518
|
const _Des = "Destination";
|
|
1510
1519
|
const _Di = "Distributions";
|
|
1511
1520
|
const _Dim = "Dimensions";
|
|
1512
|
-
const _Dis = "
|
|
1521
|
+
const _Dis = "Display";
|
|
1522
|
+
const _Dist = "Distribution";
|
|
1513
1523
|
const _E = "Email";
|
|
1514
1524
|
const _EA = "EmailAddress";
|
|
1515
1525
|
const _EAA = "EmailAddressArn";
|
|
@@ -1554,11 +1564,19 @@ const _ECLAAD = "EvaluationContactLensAnswerAnalysisDetails";
|
|
|
1554
1564
|
const _ECP = "EvaluationContactParticipant";
|
|
1555
1565
|
const _ECn = "EncryptionConfig";
|
|
1556
1566
|
const _ECx = "ExtensionConfiguration";
|
|
1557
|
-
const
|
|
1567
|
+
const _ECxt = "ExtractionConfiguration";
|
|
1568
|
+
const _ED = "ExtractionDefinition";
|
|
1569
|
+
const _EDA = "ExtractionDefinitionArn";
|
|
1570
|
+
const _EDD = "ExtractionDefinitionDisplay";
|
|
1571
|
+
const _EDI = "ExtractionDefinitionId";
|
|
1558
1572
|
const _EDIM = "ExpiryDurationInMinutes";
|
|
1573
|
+
const _EDNFB = "ExtractionDefinitionNotFoundBehavior";
|
|
1574
|
+
const _EDS = "ExtractionDefinitionSummary";
|
|
1575
|
+
const _EDSL = "ExtractionDefinitionSummaryList";
|
|
1559
1576
|
const _EDTV = "EvaluateDataTableValues";
|
|
1560
1577
|
const _EDTVR = "EvaluateDataTableValuesRequest";
|
|
1561
1578
|
const _EDTVRv = "EvaluateDataTableValuesResponse";
|
|
1579
|
+
const _EDl = "EligibilityDays";
|
|
1562
1580
|
const _EDr = "ErrorDescription";
|
|
1563
1581
|
const _EF = "EffectiveFrom";
|
|
1564
1582
|
const _EFA = "EvaluationFormArn";
|
|
@@ -1625,6 +1643,8 @@ const _EGAIAAD = "EvaluationGenAIAnswerAnalysisDetails";
|
|
|
1625
1643
|
const _EHOO = "EffectiveHoursOfOperations";
|
|
1626
1644
|
const _EHOOL = "EffectiveHoursOfOperationList";
|
|
1627
1645
|
const _EI = "EntityId";
|
|
1646
|
+
const _EIA = "ExtractInformationAction";
|
|
1647
|
+
const _EIAD = "ExtractInformationActionDefinition";
|
|
1628
1648
|
const _EIC = "ExternalInvocationConfiguration";
|
|
1629
1649
|
const _EIU = "EventIngestionUrl";
|
|
1630
1650
|
const _EIn = "EndpointInfo";
|
|
@@ -1934,6 +1954,7 @@ const _ITn = "IntegrationType";
|
|
|
1934
1954
|
const _IWM = "ImportWorkspaceMedia";
|
|
1935
1955
|
const _IWMR = "ImportWorkspaceMediaRequest";
|
|
1936
1956
|
const _IWMRm = "ImportWorkspaceMediaResponse";
|
|
1957
|
+
const _Id = "Identifier";
|
|
1937
1958
|
const _Im = "Images";
|
|
1938
1959
|
const _In = "Instance";
|
|
1939
1960
|
const _Ind = "Index";
|
|
@@ -2024,6 +2045,9 @@ const _LDTVRi = "ListDataTableValuesResponse";
|
|
|
2024
2045
|
const _LDV = "ListDefaultVocabularies";
|
|
2025
2046
|
const _LDVR = "ListDefaultVocabulariesRequest";
|
|
2026
2047
|
const _LDVRi = "ListDefaultVocabulariesResponse";
|
|
2048
|
+
const _LED = "ListExtractionDefinitions";
|
|
2049
|
+
const _LEDR = "ListExtractionDefinitionsRequest";
|
|
2050
|
+
const _LEDRi = "ListExtractionDefinitionsResponse";
|
|
2027
2051
|
const _LEE = "LimitExceededException";
|
|
2028
2052
|
const _LEF = "ListEvaluationForms";
|
|
2029
2053
|
const _LEFR = "ListEvaluationFormsRequest";
|
|
@@ -2319,6 +2343,7 @@ const _NCE = "NextContactEntry";
|
|
|
2319
2343
|
const _NCM = "NextContactMetadata";
|
|
2320
2344
|
const _NCa = "NameCriteria";
|
|
2321
2345
|
const _NCe = "NextContacts";
|
|
2346
|
+
const _NFB = "NotFoundBehavior";
|
|
2322
2347
|
const _NI = "NotificationId";
|
|
2323
2348
|
const _NOAMAQ = "NumberOfAssociatedManualAssignmentQueues";
|
|
2324
2349
|
const _NOAQ = "NumberOfAssociatedQueues";
|
|
@@ -2437,13 +2462,14 @@ const _PES = "PrimaryEventSource";
|
|
|
2437
2462
|
const _PESETT = "PrimaryEventSourceEffectiveTimestampType";
|
|
2438
2463
|
const _PET = "PreviewEndTimestamp";
|
|
2439
2464
|
const _PGI = "ParentGroupId";
|
|
2440
|
-
const _PH = "
|
|
2465
|
+
const _PH = "PromptHint";
|
|
2441
2466
|
const _PHOO = "ParentHoursOfOperations";
|
|
2442
2467
|
const _PHOOC = "ParentHoursOfOperationConfigs";
|
|
2443
2468
|
const _PHOOCL = "ParentHoursOfOperationConfigList";
|
|
2444
2469
|
const _PHOOCa = "ParentHoursOfOperationConfig";
|
|
2445
2470
|
const _PHOOI = "ParentHoursOfOperationIds";
|
|
2446
2471
|
const _PHOOL = "ParentHoursOfOperationsList";
|
|
2472
|
+
const _PHa = "PaletteHeader";
|
|
2447
2473
|
const _PI = "ParticipantId";
|
|
2448
2474
|
const _PIr = "PromptId";
|
|
2449
2475
|
const _PIro = "ProfileId";
|
|
@@ -2602,6 +2628,9 @@ const _RCev = "ReviewConfiguration";
|
|
|
2602
2628
|
const _RCo = "RoutingCriteria";
|
|
2603
2629
|
const _RCu = "RulesConfiguration";
|
|
2604
2630
|
const _RCul = "RuleCategory";
|
|
2631
|
+
const _RED = "RulesExtractionDefinitions";
|
|
2632
|
+
const _REDI = "RulesExtractionDefinitionIdentifier";
|
|
2633
|
+
const _REDIL = "RulesExtractionDefinitionIdentifierList";
|
|
2605
2634
|
const _RF = "RequiredFields";
|
|
2606
2635
|
const _RFI = "RequiredFieldInfo";
|
|
2607
2636
|
const _RI = "ResourceId";
|
|
@@ -3247,6 +3276,9 @@ const _UE = "UrlExpiry";
|
|
|
3247
3276
|
const _UEAM = "UpdateEmailAddressMetadata";
|
|
3248
3277
|
const _UEAMR = "UpdateEmailAddressMetadataRequest";
|
|
3249
3278
|
const _UEAMRp = "UpdateEmailAddressMetadataResponse";
|
|
3279
|
+
const _UED = "UpdateExtractionDefinition";
|
|
3280
|
+
const _UEDR = "UpdateExtractionDefinitionRequest";
|
|
3281
|
+
const _UEDRp = "UpdateExtractionDefinitionResponse";
|
|
3250
3282
|
const _UEF = "UpdateEvaluationForm";
|
|
3251
3283
|
const _UEFR = "UpdateEvaluationFormRequest";
|
|
3252
3284
|
const _UEFRp = "UpdateEvaluationFormResponse";
|
|
@@ -4720,6 +4752,16 @@ var CreateEvaluationFormResponse$ = [3, n0, _CEFRr,
|
|
|
4720
4752
|
[_EFI, _EFA],
|
|
4721
4753
|
[0, 0], 2
|
|
4722
4754
|
];
|
|
4755
|
+
var CreateExtractionDefinitionRequest$ = [3, n0, _CEDR,
|
|
4756
|
+
0,
|
|
4757
|
+
[_II, _N, _ECxt, _CT, _Dis, _Ta],
|
|
4758
|
+
[[0, 1], 0, () => ExtractionConfiguration$, [0, 4], () => ExtractionDefinitionDisplay$, 128 | 0], 3
|
|
4759
|
+
];
|
|
4760
|
+
var CreateExtractionDefinitionResponse$ = [3, n0, _CEDRr,
|
|
4761
|
+
0,
|
|
4762
|
+
[_EDA, _EDI],
|
|
4763
|
+
[0, 0], 2
|
|
4764
|
+
];
|
|
4723
4765
|
var CreateHoursOfOperationOverrideRequest$ = [3, n0, _CHOOOR,
|
|
4724
4766
|
0,
|
|
4725
4767
|
[_II, _HOOI, _N, _Conf, _EF, _ETf, _D, _RCec, _OT],
|
|
@@ -5240,6 +5282,16 @@ var DeleteEvaluationFormRequest$ = [3, n0, _DEFRel,
|
|
|
5240
5282
|
[_II, _EFI, _EFV],
|
|
5241
5283
|
[[0, 1], [0, 1], [1, { [_hQ]: _v }]], 2
|
|
5242
5284
|
];
|
|
5285
|
+
var DeleteExtractionDefinitionRequest$ = [3, n0, _DEDR,
|
|
5286
|
+
0,
|
|
5287
|
+
[_II, _EDI],
|
|
5288
|
+
[[0, 1], [0, 1]], 2
|
|
5289
|
+
];
|
|
5290
|
+
var DeleteExtractionDefinitionResponse$ = [3, n0, _DEDRe,
|
|
5291
|
+
0,
|
|
5292
|
+
[],
|
|
5293
|
+
[]
|
|
5294
|
+
];
|
|
5243
5295
|
var DeleteHoursOfOperationOverrideRequest$ = [3, n0, _DHOOOR,
|
|
5244
5296
|
0,
|
|
5245
5297
|
[_II, _HOOI, _HOOOI],
|
|
@@ -5560,6 +5612,16 @@ var DescribeEvaluationFormResponse$ = [3, n0, _DEFResc,
|
|
|
5560
5612
|
[_EFv],
|
|
5561
5613
|
[() => EvaluationForm$], 1
|
|
5562
5614
|
];
|
|
5615
|
+
var DescribeExtractionDefinitionRequest$ = [3, n0, _DEDRes,
|
|
5616
|
+
0,
|
|
5617
|
+
[_II, _EDI],
|
|
5618
|
+
[[0, 1], [0, 1]], 2
|
|
5619
|
+
];
|
|
5620
|
+
var DescribeExtractionDefinitionResponse$ = [3, n0, _DEDResc,
|
|
5621
|
+
0,
|
|
5622
|
+
[_ED],
|
|
5623
|
+
[() => ExtractionDefinition$], 1
|
|
5624
|
+
];
|
|
5563
5625
|
var DescribeHoursOfOperationOverrideRequest$ = [3, n0, _DHOOORe,
|
|
5564
5626
|
0,
|
|
5565
5627
|
[_II, _HOOI, _HOOOI],
|
|
@@ -5930,7 +5992,7 @@ var DismissUserContactResponse$ = [3, n0, _DUCRis,
|
|
|
5930
5992
|
[],
|
|
5931
5993
|
[]
|
|
5932
5994
|
];
|
|
5933
|
-
var Distribution$ = [3, n0,
|
|
5995
|
+
var Distribution$ = [3, n0, _Dist,
|
|
5934
5996
|
0,
|
|
5935
5997
|
[_Reg, _Per],
|
|
5936
5998
|
[0, 1], 2
|
|
@@ -6267,7 +6329,7 @@ var EvaluationQuestionInputDetails$ = [3, n0, _EQID,
|
|
|
6267
6329
|
];
|
|
6268
6330
|
var EvaluationReviewConfiguration$ = [3, n0, _ERC,
|
|
6269
6331
|
0,
|
|
6270
|
-
[_RNR,
|
|
6332
|
+
[_RNR, _EDl],
|
|
6271
6333
|
[() => EvaluationReviewNotificationRecipientList, 1], 1
|
|
6272
6334
|
];
|
|
6273
6335
|
var EvaluationReviewMetadata$ = [3, n0, _ERM,
|
|
@@ -6365,6 +6427,36 @@ var ExternalInvocationConfiguration$ = [3, n0, _EIC,
|
|
|
6365
6427
|
[_En],
|
|
6366
6428
|
[2]
|
|
6367
6429
|
];
|
|
6430
|
+
var ExtractInformationActionDefinition$ = [3, n0, _EIAD,
|
|
6431
|
+
0,
|
|
6432
|
+
[_RED],
|
|
6433
|
+
[() => RulesExtractionDefinitionIdentifierList], 1
|
|
6434
|
+
];
|
|
6435
|
+
var ExtractionConfiguration$ = [3, n0, _ECxt,
|
|
6436
|
+
0,
|
|
6437
|
+
[_PH, _NFB],
|
|
6438
|
+
[0, () => ExtractionDefinitionNotFoundBehavior$], 1
|
|
6439
|
+
];
|
|
6440
|
+
var ExtractionDefinition$ = [3, n0, _ED,
|
|
6441
|
+
0,
|
|
6442
|
+
[_N, _EDI, _EDA, _ECxt, _CTre, _LUTa, _LUB, _Dis, _Ta],
|
|
6443
|
+
[0, 0, 0, () => ExtractionConfiguration$, 4, 4, 0, () => ExtractionDefinitionDisplay$, 128 | 0], 7
|
|
6444
|
+
];
|
|
6445
|
+
var ExtractionDefinitionDisplay$ = [3, n0, _EDD,
|
|
6446
|
+
0,
|
|
6447
|
+
[_La],
|
|
6448
|
+
[0]
|
|
6449
|
+
];
|
|
6450
|
+
var ExtractionDefinitionNotFoundBehavior$ = [3, n0, _EDNFB,
|
|
6451
|
+
0,
|
|
6452
|
+
[_Be, _DVe],
|
|
6453
|
+
[0, 0], 1
|
|
6454
|
+
];
|
|
6455
|
+
var ExtractionDefinitionSummary$ = [3, n0, _EDS,
|
|
6456
|
+
0,
|
|
6457
|
+
[_N, _EDI, _EDA, _CTre, _LUTa, _LUB],
|
|
6458
|
+
[0, 0, 0, 4, 4, 0], 6
|
|
6459
|
+
];
|
|
6368
6460
|
var FailedBatchAssociationSummary$ = [3, n0, _FBAS,
|
|
6369
6461
|
0,
|
|
6370
6462
|
[_RAe, _EC, _EM],
|
|
@@ -7060,6 +7152,16 @@ var ListEvaluationFormVersionsResponse$ = [3, n0, _LEFVRi,
|
|
|
7060
7152
|
[_EFVSL, _NT],
|
|
7061
7153
|
[() => EvaluationFormVersionSummaryList, 0], 1
|
|
7062
7154
|
];
|
|
7155
|
+
var ListExtractionDefinitionsRequest$ = [3, n0, _LEDR,
|
|
7156
|
+
0,
|
|
7157
|
+
[_II, _MR, _NT],
|
|
7158
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
7159
|
+
];
|
|
7160
|
+
var ListExtractionDefinitionsResponse$ = [3, n0, _LEDRi,
|
|
7161
|
+
0,
|
|
7162
|
+
[_EDSL, _NT],
|
|
7163
|
+
[() => ExtractionDefinitionSummaryList, 0], 1
|
|
7164
|
+
];
|
|
7063
7165
|
var ListFlowAssociationsRequest$ = [3, n0, _LFAR,
|
|
7064
7166
|
0,
|
|
7065
7167
|
[_II, _RT, _NT, _MR],
|
|
@@ -7755,7 +7857,7 @@ var PaletteCanvas$ = [3, n0, _PCa,
|
|
|
7755
7857
|
[_CBo, _PB, _ABc],
|
|
7756
7858
|
[0, 0, 0]
|
|
7757
7859
|
];
|
|
7758
|
-
var PaletteHeader$ = [3, n0,
|
|
7860
|
+
var PaletteHeader$ = [3, n0, _PHa,
|
|
7759
7861
|
0,
|
|
7760
7862
|
[_Ba, _Te, _TH, _IAC],
|
|
7761
7863
|
[0, 0, 0, 2]
|
|
@@ -8277,8 +8379,8 @@ var Rule$ = [3, n0, _Ru,
|
|
|
8277
8379
|
];
|
|
8278
8380
|
var RuleAction$ = [3, n0, _RAul,
|
|
8279
8381
|
0,
|
|
8280
|
-
[_AT, _TAa, _EBA, _ACCA, _SNAe, _CCA, _UCAp, _ASA, _EATA, _SAEA],
|
|
8281
|
-
[0, () => TaskActionDefinition$, () => EventBridgeActionDefinition$, () => AssignContactCategoryActionDefinition$, () => SendNotificationActionDefinition$, () => CreateCaseActionDefinition$, () => UpdateCaseActionDefinition$, () => AssignSlaActionDefinition$, () => EndAssociatedTasksActionDefinition$, () => SubmitAutoEvaluationActionDefinition$], 1
|
|
8382
|
+
[_AT, _TAa, _EBA, _ACCA, _SNAe, _CCA, _UCAp, _ASA, _EATA, _SAEA, _EIA],
|
|
8383
|
+
[0, () => TaskActionDefinition$, () => EventBridgeActionDefinition$, () => AssignContactCategoryActionDefinition$, () => SendNotificationActionDefinition$, () => CreateCaseActionDefinition$, () => UpdateCaseActionDefinition$, () => AssignSlaActionDefinition$, () => EndAssociatedTasksActionDefinition$, () => SubmitAutoEvaluationActionDefinition$, () => ExtractInformationActionDefinition$], 1
|
|
8282
8384
|
];
|
|
8283
8385
|
var RuleAttributeAndCondition$ = [3, n0, _RAAC,
|
|
8284
8386
|
0,
|
|
@@ -8300,6 +8402,11 @@ var RuleSearchSummary$ = [3, n0, _RSSu,
|
|
|
8300
8402
|
[_N, _RIu, _RAu, _TES, _ASc, _PS, _CTre, _LUTa, _LUB, _RCT, _Ta],
|
|
8301
8403
|
[0, 0, 0, () => RuleTriggerEventSource$, () => ActionSummaries, 0, 4, 4, 0, 64 | 0, 128 | 0], 9
|
|
8302
8404
|
];
|
|
8405
|
+
var RulesExtractionDefinitionIdentifier$ = [3, n0, _REDI,
|
|
8406
|
+
0,
|
|
8407
|
+
[_Id],
|
|
8408
|
+
[0], 1
|
|
8409
|
+
];
|
|
8303
8410
|
var RulesSearchCriteria$ = [3, n0, _RSC,
|
|
8304
8411
|
0,
|
|
8305
8412
|
[_OC, _ACn, _SC],
|
|
@@ -9425,6 +9532,16 @@ var UpdateEvaluationFormResponse$ = [3, n0, _UEFRp,
|
|
|
9425
9532
|
[_EFI, _EFA, _EFV],
|
|
9426
9533
|
[0, 0, 1], 3
|
|
9427
9534
|
];
|
|
9535
|
+
var UpdateExtractionDefinitionRequest$ = [3, n0, _UEDR,
|
|
9536
|
+
0,
|
|
9537
|
+
[_EDI, _II, _N, _ECxt, _CT, _Dis],
|
|
9538
|
+
[[0, 1], [0, 1], 0, () => ExtractionConfiguration$, [0, 4], () => ExtractionDefinitionDisplay$], 4
|
|
9539
|
+
];
|
|
9540
|
+
var UpdateExtractionDefinitionResponse$ = [3, n0, _UEDRp,
|
|
9541
|
+
0,
|
|
9542
|
+
[],
|
|
9543
|
+
[]
|
|
9544
|
+
];
|
|
9428
9545
|
var UpdateHoursOfOperationOverrideRequest$ = [3, n0, _UHOOOR,
|
|
9429
9546
|
0,
|
|
9430
9547
|
[_II, _HOOI, _HOOOI, _N, _D, _Conf, _EF, _ETf, _RCec, _OT],
|
|
@@ -10326,6 +10443,9 @@ var ExecutionRecordList = [1, n0, _ERLx,
|
|
|
10326
10443
|
var Expressions = [1, n0, _Expre,
|
|
10327
10444
|
0, () => Expression$
|
|
10328
10445
|
];
|
|
10446
|
+
var ExtractionDefinitionSummaryList = [1, n0, _EDSL,
|
|
10447
|
+
0, () => ExtractionDefinitionSummary$
|
|
10448
|
+
];
|
|
10329
10449
|
var FailedBatchAssociationSummaryList = [1, n0, _FBASL,
|
|
10330
10450
|
0, () => FailedBatchAssociationSummary$
|
|
10331
10451
|
];
|
|
@@ -10592,6 +10712,9 @@ var RuleAttributeOrConditionList = [1, n0, _RAOCL,
|
|
|
10592
10712
|
var RuleSearchSummaryList = [1, n0, _RSSLu,
|
|
10593
10713
|
0, () => RuleSearchSummary$
|
|
10594
10714
|
];
|
|
10715
|
+
var RulesExtractionDefinitionIdentifierList = [1, n0, _REDIL,
|
|
10716
|
+
0, () => RulesExtractionDefinitionIdentifier$
|
|
10717
|
+
];
|
|
10595
10718
|
var RulesSearchConditionList = [1, n0, _RSCL,
|
|
10596
10719
|
0, () => RulesSearchCriteria$
|
|
10597
10720
|
];
|
|
@@ -11048,6 +11171,9 @@ var CreateEmailAddress$ = [9, n0, _CEAr,
|
|
|
11048
11171
|
var CreateEvaluationForm$ = [9, n0, _CEF,
|
|
11049
11172
|
{ [_h]: ["PUT", "/evaluation-forms/{InstanceId}", 200] }, () => CreateEvaluationFormRequest$, () => CreateEvaluationFormResponse$
|
|
11050
11173
|
];
|
|
11174
|
+
var CreateExtractionDefinition$ = [9, n0, _CED,
|
|
11175
|
+
{ [_h]: ["POST", "/extraction-definitions/{InstanceId}", 200] }, () => CreateExtractionDefinitionRequest$, () => CreateExtractionDefinitionResponse$
|
|
11176
|
+
];
|
|
11051
11177
|
var CreateHoursOfOperation$ = [9, n0, _CHOO,
|
|
11052
11178
|
{ [_h]: ["PUT", "/hours-of-operations/{InstanceId}", 200] }, () => CreateHoursOfOperationRequest$, () => CreateHoursOfOperationResponse$
|
|
11053
11179
|
];
|
|
@@ -11168,6 +11294,9 @@ var DeleteEmailAddress$ = [9, n0, _DEAe,
|
|
|
11168
11294
|
var DeleteEvaluationForm$ = [9, n0, _DEFe,
|
|
11169
11295
|
{ [_h]: ["DELETE", "/evaluation-forms/{InstanceId}/{EvaluationFormId}", 200] }, () => DeleteEvaluationFormRequest$, () => __Unit
|
|
11170
11296
|
];
|
|
11297
|
+
var DeleteExtractionDefinition$ = [9, n0, _DED,
|
|
11298
|
+
{ [_h]: ["DELETE", "/extraction-definitions/{InstanceId}/{ExtractionDefinitionId}", 200] }, () => DeleteExtractionDefinitionRequest$, () => DeleteExtractionDefinitionResponse$
|
|
11299
|
+
];
|
|
11171
11300
|
var DeleteHoursOfOperation$ = [9, n0, _DHOO,
|
|
11172
11301
|
{ [_h]: ["DELETE", "/hours-of-operations/{InstanceId}/{HoursOfOperationId}", 200] }, () => DeleteHoursOfOperationRequest$, () => __Unit
|
|
11173
11302
|
];
|
|
@@ -11285,6 +11414,9 @@ var DescribeEmailAddress$ = [9, n0, _DEAes,
|
|
|
11285
11414
|
var DescribeEvaluationForm$ = [9, n0, _DEFes,
|
|
11286
11415
|
{ [_h]: ["GET", "/evaluation-forms/{InstanceId}/{EvaluationFormId}", 200] }, () => DescribeEvaluationFormRequest$, () => DescribeEvaluationFormResponse$
|
|
11287
11416
|
];
|
|
11417
|
+
var DescribeExtractionDefinition$ = [9, n0, _DEDe,
|
|
11418
|
+
{ [_h]: ["GET", "/extraction-definitions/{InstanceId}/{ExtractionDefinitionId}", 200] }, () => DescribeExtractionDefinitionRequest$, () => DescribeExtractionDefinitionResponse$
|
|
11419
|
+
];
|
|
11288
11420
|
var DescribeHoursOfOperation$ = [9, n0, _DHOOe,
|
|
11289
11421
|
{ [_h]: ["GET", "/hours-of-operations/{InstanceId}/{HoursOfOperationId}", 200] }, () => DescribeHoursOfOperationRequest$, () => DescribeHoursOfOperationResponse$
|
|
11290
11422
|
];
|
|
@@ -11537,6 +11669,9 @@ var ListEvaluationForms$ = [9, n0, _LEF,
|
|
|
11537
11669
|
var ListEvaluationFormVersions$ = [9, n0, _LEFV,
|
|
11538
11670
|
{ [_h]: ["GET", "/evaluation-forms/{InstanceId}/{EvaluationFormId}/versions", 200] }, () => ListEvaluationFormVersionsRequest$, () => ListEvaluationFormVersionsResponse$
|
|
11539
11671
|
];
|
|
11672
|
+
var ListExtractionDefinitions$ = [9, n0, _LED,
|
|
11673
|
+
{ [_h]: ["GET", "/extraction-definitions/{InstanceId}", 200] }, () => ListExtractionDefinitionsRequest$, () => ListExtractionDefinitionsResponse$
|
|
11674
|
+
];
|
|
11540
11675
|
var ListFlowAssociations$ = [9, n0, _LFA,
|
|
11541
11676
|
{ [_h]: ["GET", "/flow-associations-summary/{InstanceId}", 200] }, () => ListFlowAssociationsRequest$, () => ListFlowAssociationsResponse$
|
|
11542
11677
|
];
|
|
@@ -11936,6 +12071,9 @@ var UpdateEmailAddressMetadata$ = [9, n0, _UEAM,
|
|
|
11936
12071
|
var UpdateEvaluationForm$ = [9, n0, _UEF,
|
|
11937
12072
|
{ [_h]: ["PUT", "/evaluation-forms/{InstanceId}/{EvaluationFormId}", 200] }, () => UpdateEvaluationFormRequest$, () => UpdateEvaluationFormResponse$
|
|
11938
12073
|
];
|
|
12074
|
+
var UpdateExtractionDefinition$ = [9, n0, _UED,
|
|
12075
|
+
{ [_h]: ["PUT", "/extraction-definitions/{InstanceId}/{ExtractionDefinitionId}", 200] }, () => UpdateExtractionDefinitionRequest$, () => UpdateExtractionDefinitionResponse$
|
|
12076
|
+
];
|
|
11939
12077
|
var UpdateHoursOfOperation$ = [9, n0, _UHOO,
|
|
11940
12078
|
{ [_h]: ["POST", "/hours-of-operations/{InstanceId}/{HoursOfOperationId}", 200] }, () => UpdateHoursOfOperationRequest$, () => __Unit
|
|
11941
12079
|
];
|
|
@@ -12363,6 +12501,9 @@ class CreateEmailAddressCommand extends command(_ep0, _mw0, "CreateEmailAddress"
|
|
|
12363
12501
|
class CreateEvaluationFormCommand extends command(_ep0, _mw0, "CreateEvaluationForm", CreateEvaluationForm$) {
|
|
12364
12502
|
}
|
|
12365
12503
|
|
|
12504
|
+
class CreateExtractionDefinitionCommand extends command(_ep0, _mw0, "CreateExtractionDefinition", CreateExtractionDefinition$) {
|
|
12505
|
+
}
|
|
12506
|
+
|
|
12366
12507
|
class CreateHoursOfOperationCommand extends command(_ep0, _mw0, "CreateHoursOfOperation", CreateHoursOfOperation$) {
|
|
12367
12508
|
}
|
|
12368
12509
|
|
|
@@ -12483,6 +12624,9 @@ class DeleteEmailAddressCommand extends command(_ep0, _mw0, "DeleteEmailAddress"
|
|
|
12483
12624
|
class DeleteEvaluationFormCommand extends command(_ep0, _mw0, "DeleteEvaluationForm", DeleteEvaluationForm$) {
|
|
12484
12625
|
}
|
|
12485
12626
|
|
|
12627
|
+
class DeleteExtractionDefinitionCommand extends command(_ep0, _mw0, "DeleteExtractionDefinition", DeleteExtractionDefinition$) {
|
|
12628
|
+
}
|
|
12629
|
+
|
|
12486
12630
|
class DeleteHoursOfOperationCommand extends command(_ep0, _mw0, "DeleteHoursOfOperation", DeleteHoursOfOperation$) {
|
|
12487
12631
|
}
|
|
12488
12632
|
|
|
@@ -12600,6 +12744,9 @@ class DescribeEmailAddressCommand extends command(_ep0, _mw0, "DescribeEmailAddr
|
|
|
12600
12744
|
class DescribeEvaluationFormCommand extends command(_ep0, _mw0, "DescribeEvaluationForm", DescribeEvaluationForm$) {
|
|
12601
12745
|
}
|
|
12602
12746
|
|
|
12747
|
+
class DescribeExtractionDefinitionCommand extends command(_ep0, _mw0, "DescribeExtractionDefinition", DescribeExtractionDefinition$) {
|
|
12748
|
+
}
|
|
12749
|
+
|
|
12603
12750
|
class DescribeHoursOfOperationCommand extends command(_ep0, _mw0, "DescribeHoursOfOperation", DescribeHoursOfOperation$) {
|
|
12604
12751
|
}
|
|
12605
12752
|
|
|
@@ -12852,6 +12999,9 @@ class ListEvaluationFormsCommand extends command(_ep0, _mw0, "ListEvaluationForm
|
|
|
12852
12999
|
class ListEvaluationFormVersionsCommand extends command(_ep0, _mw0, "ListEvaluationFormVersions", ListEvaluationFormVersions$) {
|
|
12853
13000
|
}
|
|
12854
13001
|
|
|
13002
|
+
class ListExtractionDefinitionsCommand extends command(_ep0, _mw0, "ListExtractionDefinitions", ListExtractionDefinitions$) {
|
|
13003
|
+
}
|
|
13004
|
+
|
|
12855
13005
|
class ListFlowAssociationsCommand extends command(_ep0, _mw0, "ListFlowAssociations", ListFlowAssociations$) {
|
|
12856
13006
|
}
|
|
12857
13007
|
|
|
@@ -13251,6 +13401,9 @@ class UpdateEmailAddressMetadataCommand extends command(_ep0, _mw0, "UpdateEmail
|
|
|
13251
13401
|
class UpdateEvaluationFormCommand extends command(_ep0, _mw0, "UpdateEvaluationForm", UpdateEvaluationForm$) {
|
|
13252
13402
|
}
|
|
13253
13403
|
|
|
13404
|
+
class UpdateExtractionDefinitionCommand extends command(_ep0, _mw0, "UpdateExtractionDefinition", UpdateExtractionDefinition$) {
|
|
13405
|
+
}
|
|
13406
|
+
|
|
13254
13407
|
class UpdateHoursOfOperationCommand extends command(_ep0, _mw0, "UpdateHoursOfOperation", UpdateHoursOfOperation$) {
|
|
13255
13408
|
}
|
|
13256
13409
|
|
|
@@ -13444,6 +13597,8 @@ const paginateListEvaluationForms = createPaginator(ConnectClient, ListEvaluatio
|
|
|
13444
13597
|
|
|
13445
13598
|
const paginateListEvaluationFormVersions = createPaginator(ConnectClient, ListEvaluationFormVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
13446
13599
|
|
|
13600
|
+
const paginateListExtractionDefinitions = createPaginator(ConnectClient, ListExtractionDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
13601
|
+
|
|
13447
13602
|
const paginateListFlowAssociations = createPaginator(ConnectClient, ListFlowAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
13448
13603
|
|
|
13449
13604
|
const paginateListHoursOfOperationOverrides = createPaginator(ConnectClient, ListHoursOfOperationOverridesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -13616,6 +13771,7 @@ const commands = {
|
|
|
13616
13771
|
CreateDataTableAttributeCommand,
|
|
13617
13772
|
CreateEmailAddressCommand,
|
|
13618
13773
|
CreateEvaluationFormCommand,
|
|
13774
|
+
CreateExtractionDefinitionCommand,
|
|
13619
13775
|
CreateHoursOfOperationCommand,
|
|
13620
13776
|
CreateHoursOfOperationOverrideCommand,
|
|
13621
13777
|
CreateInstanceCommand,
|
|
@@ -13656,6 +13812,7 @@ const commands = {
|
|
|
13656
13812
|
DeleteDataTableAttributeCommand,
|
|
13657
13813
|
DeleteEmailAddressCommand,
|
|
13658
13814
|
DeleteEvaluationFormCommand,
|
|
13815
|
+
DeleteExtractionDefinitionCommand,
|
|
13659
13816
|
DeleteHoursOfOperationCommand,
|
|
13660
13817
|
DeleteHoursOfOperationOverrideCommand,
|
|
13661
13818
|
DeleteInstanceCommand,
|
|
@@ -13695,6 +13852,7 @@ const commands = {
|
|
|
13695
13852
|
DescribeDataTableAttributeCommand,
|
|
13696
13853
|
DescribeEmailAddressCommand,
|
|
13697
13854
|
DescribeEvaluationFormCommand,
|
|
13855
|
+
DescribeExtractionDefinitionCommand,
|
|
13698
13856
|
DescribeHoursOfOperationCommand,
|
|
13699
13857
|
DescribeHoursOfOperationOverrideCommand,
|
|
13700
13858
|
DescribeInstanceCommand,
|
|
@@ -13779,6 +13937,7 @@ const commands = {
|
|
|
13779
13937
|
ListEntitySecurityProfilesCommand,
|
|
13780
13938
|
ListEvaluationFormsCommand,
|
|
13781
13939
|
ListEvaluationFormVersionsCommand,
|
|
13940
|
+
ListExtractionDefinitionsCommand,
|
|
13782
13941
|
ListFlowAssociationsCommand,
|
|
13783
13942
|
ListHoursOfOperationOverridesCommand,
|
|
13784
13943
|
ListHoursOfOperationsCommand,
|
|
@@ -13912,6 +14071,7 @@ const commands = {
|
|
|
13912
14071
|
UpdateDataTablePrimaryValuesCommand,
|
|
13913
14072
|
UpdateEmailAddressMetadataCommand,
|
|
13914
14073
|
UpdateEvaluationFormCommand,
|
|
14074
|
+
UpdateExtractionDefinitionCommand,
|
|
13915
14075
|
UpdateHoursOfOperationCommand,
|
|
13916
14076
|
UpdateHoursOfOperationOverrideCommand,
|
|
13917
14077
|
UpdateInstanceAttributeCommand,
|
|
@@ -13987,6 +14147,7 @@ const paginators = {
|
|
|
13987
14147
|
paginateListEntitySecurityProfiles,
|
|
13988
14148
|
paginateListEvaluationForms,
|
|
13989
14149
|
paginateListEvaluationFormVersions,
|
|
14150
|
+
paginateListExtractionDefinitions,
|
|
13990
14151
|
paginateListFlowAssociations,
|
|
13991
14152
|
paginateListHoursOfOperationOverrides,
|
|
13992
14153
|
paginateListHoursOfOperations,
|
|
@@ -14064,6 +14225,7 @@ const ActionType = {
|
|
|
14064
14225
|
CREATE_CASE: "CREATE_CASE",
|
|
14065
14226
|
CREATE_TASK: "CREATE_TASK",
|
|
14066
14227
|
END_ASSOCIATED_TASKS: "END_ASSOCIATED_TASKS",
|
|
14228
|
+
EXTRACT_INFORMATION: "EXTRACT_INFORMATION",
|
|
14067
14229
|
GENERATE_EVENTBRIDGE_EVENT: "GENERATE_EVENTBRIDGE_EVENT",
|
|
14068
14230
|
SEND_NOTIFICATION: "SEND_NOTIFICATION",
|
|
14069
14231
|
SUBMIT_AUTO_EVALUATION: "SUBMIT_AUTO_EVALUATION",
|
|
@@ -14430,6 +14592,10 @@ const ContactInteractionType = {
|
|
|
14430
14592
|
AUTOMATED: "AUTOMATED",
|
|
14431
14593
|
CUSTOMER: "CUSTOMER",
|
|
14432
14594
|
};
|
|
14595
|
+
const NotFoundBehaviorType = {
|
|
14596
|
+
OMIT: "OMIT",
|
|
14597
|
+
USE_DEFAULT_VALUE: "USE_DEFAULT_VALUE",
|
|
14598
|
+
};
|
|
14433
14599
|
const HoursOfOperationDays = {
|
|
14434
14600
|
FRIDAY: "FRIDAY",
|
|
14435
14601
|
MONDAY: "MONDAY",
|
|
@@ -14574,6 +14740,8 @@ const RulePublishStatus = {
|
|
|
14574
14740
|
PUBLISHED: "PUBLISHED",
|
|
14575
14741
|
};
|
|
14576
14742
|
const EventSourceName = {
|
|
14743
|
+
OnAfterCallWorkAvailable: "OnAfterCallWorkAvailable",
|
|
14744
|
+
OnAfterChatWorkAvailable: "OnAfterChatWorkAvailable",
|
|
14577
14745
|
OnAlertUpdate: "OnAlertUpdate",
|
|
14578
14746
|
OnCaseCreate: "OnCaseCreate",
|
|
14579
14747
|
OnCaseUpdate: "OnCaseUpdate",
|
|
@@ -15785,6 +15953,10 @@ exports.CreateEvaluationForm$ = CreateEvaluationForm$;
|
|
|
15785
15953
|
exports.CreateEvaluationFormCommand = CreateEvaluationFormCommand;
|
|
15786
15954
|
exports.CreateEvaluationFormRequest$ = CreateEvaluationFormRequest$;
|
|
15787
15955
|
exports.CreateEvaluationFormResponse$ = CreateEvaluationFormResponse$;
|
|
15956
|
+
exports.CreateExtractionDefinition$ = CreateExtractionDefinition$;
|
|
15957
|
+
exports.CreateExtractionDefinitionCommand = CreateExtractionDefinitionCommand;
|
|
15958
|
+
exports.CreateExtractionDefinitionRequest$ = CreateExtractionDefinitionRequest$;
|
|
15959
|
+
exports.CreateExtractionDefinitionResponse$ = CreateExtractionDefinitionResponse$;
|
|
15788
15960
|
exports.CreateHoursOfOperation$ = CreateHoursOfOperation$;
|
|
15789
15961
|
exports.CreateHoursOfOperationCommand = CreateHoursOfOperationCommand;
|
|
15790
15962
|
exports.CreateHoursOfOperationOverride$ = CreateHoursOfOperationOverride$;
|
|
@@ -15977,6 +16149,10 @@ exports.DeleteEmailAddressResponse$ = DeleteEmailAddressResponse$;
|
|
|
15977
16149
|
exports.DeleteEvaluationForm$ = DeleteEvaluationForm$;
|
|
15978
16150
|
exports.DeleteEvaluationFormCommand = DeleteEvaluationFormCommand;
|
|
15979
16151
|
exports.DeleteEvaluationFormRequest$ = DeleteEvaluationFormRequest$;
|
|
16152
|
+
exports.DeleteExtractionDefinition$ = DeleteExtractionDefinition$;
|
|
16153
|
+
exports.DeleteExtractionDefinitionCommand = DeleteExtractionDefinitionCommand;
|
|
16154
|
+
exports.DeleteExtractionDefinitionRequest$ = DeleteExtractionDefinitionRequest$;
|
|
16155
|
+
exports.DeleteExtractionDefinitionResponse$ = DeleteExtractionDefinitionResponse$;
|
|
15980
16156
|
exports.DeleteHoursOfOperation$ = DeleteHoursOfOperation$;
|
|
15981
16157
|
exports.DeleteHoursOfOperationCommand = DeleteHoursOfOperationCommand;
|
|
15982
16158
|
exports.DeleteHoursOfOperationOverride$ = DeleteHoursOfOperationOverride$;
|
|
@@ -16119,6 +16295,10 @@ exports.DescribeEvaluationForm$ = DescribeEvaluationForm$;
|
|
|
16119
16295
|
exports.DescribeEvaluationFormCommand = DescribeEvaluationFormCommand;
|
|
16120
16296
|
exports.DescribeEvaluationFormRequest$ = DescribeEvaluationFormRequest$;
|
|
16121
16297
|
exports.DescribeEvaluationFormResponse$ = DescribeEvaluationFormResponse$;
|
|
16298
|
+
exports.DescribeExtractionDefinition$ = DescribeExtractionDefinition$;
|
|
16299
|
+
exports.DescribeExtractionDefinitionCommand = DescribeExtractionDefinitionCommand;
|
|
16300
|
+
exports.DescribeExtractionDefinitionRequest$ = DescribeExtractionDefinitionRequest$;
|
|
16301
|
+
exports.DescribeExtractionDefinitionResponse$ = DescribeExtractionDefinitionResponse$;
|
|
16122
16302
|
exports.DescribeHoursOfOperation$ = DescribeHoursOfOperation$;
|
|
16123
16303
|
exports.DescribeHoursOfOperationCommand = DescribeHoursOfOperationCommand;
|
|
16124
16304
|
exports.DescribeHoursOfOperationOverride$ = DescribeHoursOfOperationOverride$;
|
|
@@ -16409,6 +16589,12 @@ exports.Expiry$ = Expiry$;
|
|
|
16409
16589
|
exports.Expression$ = Expression$;
|
|
16410
16590
|
exports.ExtensionConfiguration$ = ExtensionConfiguration$;
|
|
16411
16591
|
exports.ExternalInvocationConfiguration$ = ExternalInvocationConfiguration$;
|
|
16592
|
+
exports.ExtractInformationActionDefinition$ = ExtractInformationActionDefinition$;
|
|
16593
|
+
exports.ExtractionConfiguration$ = ExtractionConfiguration$;
|
|
16594
|
+
exports.ExtractionDefinition$ = ExtractionDefinition$;
|
|
16595
|
+
exports.ExtractionDefinitionDisplay$ = ExtractionDefinitionDisplay$;
|
|
16596
|
+
exports.ExtractionDefinitionNotFoundBehavior$ = ExtractionDefinitionNotFoundBehavior$;
|
|
16597
|
+
exports.ExtractionDefinitionSummary$ = ExtractionDefinitionSummary$;
|
|
16412
16598
|
exports.FailedBatchAssociationSummary$ = FailedBatchAssociationSummary$;
|
|
16413
16599
|
exports.FailedRequest$ = FailedRequest$;
|
|
16414
16600
|
exports.FailureReasonCode = FailureReasonCode;
|
|
@@ -16669,6 +16855,10 @@ exports.ListEvaluationForms$ = ListEvaluationForms$;
|
|
|
16669
16855
|
exports.ListEvaluationFormsCommand = ListEvaluationFormsCommand;
|
|
16670
16856
|
exports.ListEvaluationFormsRequest$ = ListEvaluationFormsRequest$;
|
|
16671
16857
|
exports.ListEvaluationFormsResponse$ = ListEvaluationFormsResponse$;
|
|
16858
|
+
exports.ListExtractionDefinitions$ = ListExtractionDefinitions$;
|
|
16859
|
+
exports.ListExtractionDefinitionsCommand = ListExtractionDefinitionsCommand;
|
|
16860
|
+
exports.ListExtractionDefinitionsRequest$ = ListExtractionDefinitionsRequest$;
|
|
16861
|
+
exports.ListExtractionDefinitionsResponse$ = ListExtractionDefinitionsResponse$;
|
|
16672
16862
|
exports.ListFlowAssociationResourceType = ListFlowAssociationResourceType;
|
|
16673
16863
|
exports.ListFlowAssociations$ = ListFlowAssociations$;
|
|
16674
16864
|
exports.ListFlowAssociationsCommand = ListFlowAssociationsCommand;
|
|
@@ -16901,6 +17091,7 @@ exports.NewSessionDetails$ = NewSessionDetails$;
|
|
|
16901
17091
|
exports.NextContactEntry$ = NextContactEntry$;
|
|
16902
17092
|
exports.NextContactMetadata$ = NextContactMetadata$;
|
|
16903
17093
|
exports.NextContactType = NextContactType;
|
|
17094
|
+
exports.NotFoundBehaviorType = NotFoundBehaviorType;
|
|
16904
17095
|
exports.Notification$ = Notification$;
|
|
16905
17096
|
exports.NotificationContentType = NotificationContentType;
|
|
16906
17097
|
exports.NotificationDeliveryType = NotificationDeliveryType;
|
|
@@ -17109,6 +17300,7 @@ exports.RuleSearchSummary$ = RuleSearchSummary$;
|
|
|
17109
17300
|
exports.RuleSummary$ = RuleSummary$;
|
|
17110
17301
|
exports.RuleTriggerEventSource$ = RuleTriggerEventSource$;
|
|
17111
17302
|
exports.RulesConfiguration$ = RulesConfiguration$;
|
|
17303
|
+
exports.RulesExtractionDefinitionIdentifier$ = RulesExtractionDefinitionIdentifier$;
|
|
17112
17304
|
exports.RulesSearchCriteria$ = RulesSearchCriteria$;
|
|
17113
17305
|
exports.RulesSearchFilter$ = RulesSearchFilter$;
|
|
17114
17306
|
exports.S3Config$ = S3Config$;
|
|
@@ -17526,6 +17718,10 @@ exports.UpdateEvaluationForm$ = UpdateEvaluationForm$;
|
|
|
17526
17718
|
exports.UpdateEvaluationFormCommand = UpdateEvaluationFormCommand;
|
|
17527
17719
|
exports.UpdateEvaluationFormRequest$ = UpdateEvaluationFormRequest$;
|
|
17528
17720
|
exports.UpdateEvaluationFormResponse$ = UpdateEvaluationFormResponse$;
|
|
17721
|
+
exports.UpdateExtractionDefinition$ = UpdateExtractionDefinition$;
|
|
17722
|
+
exports.UpdateExtractionDefinitionCommand = UpdateExtractionDefinitionCommand;
|
|
17723
|
+
exports.UpdateExtractionDefinitionRequest$ = UpdateExtractionDefinitionRequest$;
|
|
17724
|
+
exports.UpdateExtractionDefinitionResponse$ = UpdateExtractionDefinitionResponse$;
|
|
17529
17725
|
exports.UpdateHoursOfOperation$ = UpdateHoursOfOperation$;
|
|
17530
17726
|
exports.UpdateHoursOfOperationCommand = UpdateHoursOfOperationCommand;
|
|
17531
17727
|
exports.UpdateHoursOfOperationOverride$ = UpdateHoursOfOperationOverride$;
|
|
@@ -17777,6 +17973,7 @@ exports.paginateListDefaultVocabularies = paginateListDefaultVocabularies;
|
|
|
17777
17973
|
exports.paginateListEntitySecurityProfiles = paginateListEntitySecurityProfiles;
|
|
17778
17974
|
exports.paginateListEvaluationFormVersions = paginateListEvaluationFormVersions;
|
|
17779
17975
|
exports.paginateListEvaluationForms = paginateListEvaluationForms;
|
|
17976
|
+
exports.paginateListExtractionDefinitions = paginateListExtractionDefinitions;
|
|
17780
17977
|
exports.paginateListFlowAssociations = paginateListFlowAssociations;
|
|
17781
17978
|
exports.paginateListHoursOfOperationOverrides = paginateListHoursOfOperationOverrides;
|
|
17782
17979
|
exports.paginateListHoursOfOperations = paginateListHoursOfOperations;
|