@aws-sdk/client-connect 3.1080.0 → 3.1082.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 +14 -0
- package/dist-cjs/index.js +119 -54
- package/dist-es/Connect.js +4 -0
- package/dist-es/commands/CreateAuthCodeCommand.js +4 -0
- package/dist-es/commands/DeleteSessionCommand.js +4 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +97 -53
- package/dist-types/Connect.d.ts +14 -0
- package/dist-types/ConnectClient.d.ts +4 -2
- package/dist-types/commands/CreateAuthCodeCommand.d.ts +103 -0
- package/dist-types/commands/CreateUserHierarchyGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateViewCommand.d.ts +1 -2
- package/dist-types/commands/DeleteSessionCommand.d.ts +88 -0
- package/dist-types/commands/GetFederationTokenCommand.d.ts +5 -2
- package/dist-types/commands/GetMetricDataCommand.d.ts +1 -2
- package/dist-types/commands/SearchDataTablesCommand.d.ts +1 -2
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +2 -1
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +2 -1
- package/dist-types/commands/SearchTestCasesCommand.d.ts +2 -1
- package/dist-types/commands/SearchUserHierarchyGroupsCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +80 -78
- package/dist-types/models/models_1.d.ts +106 -542
- package/dist-types/models/models_2.d.ts +535 -103
- package/dist-types/models/models_3.d.ts +105 -173
- package/dist-types/models/models_4.d.ts +171 -2
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/Connect.d.ts +34 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateAuthCodeCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/CreateUserHierarchyGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateViewCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DeleteSessionCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchDataTablesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/SearchQuickConnectsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchRoutingProfilesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchTestCasesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchUserHierarchyGroupsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +19 -18
- package/dist-types/ts3.4/models/models_1.d.ts +24 -33
- package/dist-types/ts3.4/models/models_2.d.ts +35 -23
- package/dist-types/ts3.4/models/models_3.d.ts +23 -38
- package/dist-types/ts3.4/models/models_4.d.ts +47 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -444,6 +444,13 @@ CreateAttachedFile
|
|
|
444
444
|
</details>
|
|
445
445
|
<details>
|
|
446
446
|
<summary>
|
|
447
|
+
CreateAuthCode
|
|
448
|
+
</summary>
|
|
449
|
+
|
|
450
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/CreateAuthCodeCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreateAuthCodeCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/CreateAuthCodeCommandOutput/)
|
|
451
|
+
</details>
|
|
452
|
+
<details>
|
|
453
|
+
<summary>
|
|
447
454
|
CreateContact
|
|
448
455
|
</summary>
|
|
449
456
|
|
|
@@ -871,6 +878,13 @@ DeleteSecurityProfile
|
|
|
871
878
|
</details>
|
|
872
879
|
<details>
|
|
873
880
|
<summary>
|
|
881
|
+
DeleteSession
|
|
882
|
+
</summary>
|
|
883
|
+
|
|
884
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/connect/command/DeleteSessionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteSessionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-connect/Interface/DeleteSessionCommandOutput/)
|
|
885
|
+
</details>
|
|
886
|
+
<details>
|
|
887
|
+
<summary>
|
|
874
888
|
DeleteTaskTemplate
|
|
875
889
|
</summary>
|
|
876
890
|
|
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.1081.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -571,7 +571,7 @@ const _ABAT = "AcceptedByAgentTimestamp";
|
|
|
571
571
|
const _ABR = "AssociateBotRequest";
|
|
572
572
|
const _ABc = "ActiveBackground";
|
|
573
573
|
const _ABs = "AssociateBot";
|
|
574
|
-
const _AC = "
|
|
574
|
+
const _AC = "AuthCode";
|
|
575
575
|
const _ACCA = "AssignContactCategoryAction";
|
|
576
576
|
const _ACCAD = "AssignContactCategoryActionDefinition";
|
|
577
577
|
const _ACL = "AliasConfigurationList";
|
|
@@ -603,6 +603,7 @@ const _ACnd = "AndCondition";
|
|
|
603
603
|
const _ACt = "AttributeCondition";
|
|
604
604
|
const _ACtt = "AttributeConditions";
|
|
605
605
|
const _ACttr = "AttributeConfiguration";
|
|
606
|
+
const _ACu = "AuthorizationCode";
|
|
606
607
|
const _AD = "AliasDescription";
|
|
607
608
|
const _ADAR = "AnalyticsDataAssociationResult";
|
|
608
609
|
const _ADARn = "AnalyticsDataAssociationResults";
|
|
@@ -744,6 +745,7 @@ const _ASg = "AgentStatus";
|
|
|
744
745
|
const _ASge = "AgentStatuses";
|
|
745
746
|
const _ASn = "AnswerSource";
|
|
746
747
|
const _ASt = "AttachmentScope";
|
|
748
|
+
const _ASu = "AuthScope";
|
|
747
749
|
const _AT = "ActionType";
|
|
748
750
|
const _ATC = "ApproximateTotalCount";
|
|
749
751
|
const _ATDGU = "AssociateTrafficDistributionGroupUser";
|
|
@@ -848,6 +850,9 @@ const _Be = "Behavior";
|
|
|
848
850
|
const _C = "Channel";
|
|
849
851
|
const _CA = "ContactArn";
|
|
850
852
|
const _CAAC = "CommonAttributeAndCondition";
|
|
853
|
+
const _CAC = "CreateAuthCode";
|
|
854
|
+
const _CACR = "CreateAuthCodeRequest";
|
|
855
|
+
const _CACRr = "CreateAuthCodeResponse";
|
|
851
856
|
const _CAF = "CreateAttachedFile";
|
|
852
857
|
const _CAFR = "CreateAttachedFileRequest";
|
|
853
858
|
const _CAFRr = "CreateAttachedFileResponse";
|
|
@@ -1268,7 +1273,7 @@ const _DLBR = "DisassociateLexBotRequest";
|
|
|
1268
1273
|
const _DLF = "DisassociateLambdaFunction";
|
|
1269
1274
|
const _DLFR = "DisassociateLambdaFunctionRequest";
|
|
1270
1275
|
const _DM = "DeliveryMethod";
|
|
1271
|
-
const _DN = "
|
|
1276
|
+
const _DN = "DomainName";
|
|
1272
1277
|
const _DNAE = "DestinationNotAllowedException";
|
|
1273
1278
|
const _DNR = "DeleteNotificationRequest";
|
|
1274
1279
|
const _DNRe = "DeleteNotificationResponse";
|
|
@@ -1276,7 +1281,7 @@ const _DNRes = "DescribeNotificationRequest";
|
|
|
1276
1281
|
const _DNResc = "DescribeNotificationResponse";
|
|
1277
1282
|
const _DNe = "DeleteNotification";
|
|
1278
1283
|
const _DNes = "DescribeNotification";
|
|
1279
|
-
const
|
|
1284
|
+
const _DNi = "DisplayName";
|
|
1280
1285
|
const _DO = "DisplayOrder";
|
|
1281
1286
|
const _DOCE = "DisconnectOnCustomerExit";
|
|
1282
1287
|
const _DOQI = "DefaultOutboundQueueId";
|
|
@@ -1332,6 +1337,7 @@ const _DRa = "DateReference";
|
|
|
1332
1337
|
const _DRe = "DeletionReason";
|
|
1333
1338
|
const _DRel = "DeleteRule";
|
|
1334
1339
|
const _DRes = "DescribeRule";
|
|
1340
|
+
const _DS = "DeleteSession";
|
|
1335
1341
|
const _DSI = "DataSetId";
|
|
1336
1342
|
const _DSIa = "DataSetIds";
|
|
1337
1343
|
const _DSK = "DisassociateSecurityKey";
|
|
@@ -1344,6 +1350,8 @@ const _DSPRes = "DescribeSecurityProfileResponse";
|
|
|
1344
1350
|
const _DSPRi = "DisassociateSecurityProfilesRequest";
|
|
1345
1351
|
const _DSPe = "DescribeSecurityProfile";
|
|
1346
1352
|
const _DSPi = "DisassociateSecurityProfiles";
|
|
1353
|
+
const _DSR = "DeleteSessionRequest";
|
|
1354
|
+
const _DSRe = "DeleteSessionResponse";
|
|
1347
1355
|
const _DST = "DataSnapshotTime";
|
|
1348
1356
|
const _DT = "DisconnectTimestamp";
|
|
1349
1357
|
const _DTA = "DataTableAttribute";
|
|
@@ -1575,10 +1583,11 @@ const _EFv = "EvaluationForm";
|
|
|
1575
1583
|
const _EGAIAAD = "EvaluationGenAIAnswerAnalysisDetails";
|
|
1576
1584
|
const _EHOO = "EffectiveHoursOfOperations";
|
|
1577
1585
|
const _EHOOL = "EffectiveHoursOfOperationList";
|
|
1578
|
-
const _EI = "
|
|
1586
|
+
const _EI = "EntityId";
|
|
1579
1587
|
const _EIC = "ExternalInvocationConfiguration";
|
|
1580
1588
|
const _EIU = "EventIngestionUrl";
|
|
1581
1589
|
const _EIn = "EndpointInfo";
|
|
1590
|
+
const _EIv = "EvaluationId";
|
|
1582
1591
|
const _EL = "ExportLocation";
|
|
1583
1592
|
const _EM = "ErrorMessage";
|
|
1584
1593
|
const _EMPT = "EmailMessagePlainText";
|
|
@@ -2209,6 +2218,7 @@ const _MRed = "MediaRegion";
|
|
|
2209
2218
|
const _MS = "MediaSource";
|
|
2210
2219
|
const _MSBC = "MaxSlotsByChannel";
|
|
2211
2220
|
const _MSD = "MaxSessionDuration";
|
|
2221
|
+
const _MSDM = "MaxSessionDurationMinutes";
|
|
2212
2222
|
const _MSLIB = "MaximumSizeLimitInBytes";
|
|
2213
2223
|
const _MSP = "MinScorePercentage";
|
|
2214
2224
|
const _MSPa = "MaxScorePercentage";
|
|
@@ -2773,14 +2783,15 @@ const _SHOOOR = "SearchHoursOfOperationOverridesRequest";
|
|
|
2773
2783
|
const _SHOOORe = "SearchHoursOfOperationOverridesResponse";
|
|
2774
2784
|
const _SHOOR = "SearchHoursOfOperationsRequest";
|
|
2775
2785
|
const _SHOORe = "SearchHoursOfOperationsResponse";
|
|
2776
|
-
const _SI = "
|
|
2786
|
+
const _SI = "SessionId";
|
|
2777
2787
|
const _SIC = "SignInConfig";
|
|
2778
2788
|
const _SID = "SessionInactivityDuration";
|
|
2779
2789
|
const _SIDL = "SignInDistributionList";
|
|
2790
|
+
const _SIDM = "SessionInactivityDurationMinutes";
|
|
2780
2791
|
const _SIDi = "SignInDistribution";
|
|
2781
2792
|
const _SIHE = "SessionInactivityHandlingEnabled";
|
|
2782
2793
|
const _SIU = "SignInUrl";
|
|
2783
|
-
const
|
|
2794
|
+
const _SIo = "SourceId";
|
|
2784
2795
|
const _SIt = "StreamingId";
|
|
2785
2796
|
const _SJI = "SamplingJobId";
|
|
2786
2797
|
const _SK = "SecurityKeys";
|
|
@@ -2818,8 +2829,8 @@ const _SPA = "SecurityProfileArn";
|
|
|
2818
2829
|
const _SPAR = "SearchPredefinedAttributesRequest";
|
|
2819
2830
|
const _SPARe = "SearchPredefinedAttributesResponse";
|
|
2820
2831
|
const _SPAe = "SearchPredefinedAttributes";
|
|
2821
|
-
const _SPI = "
|
|
2822
|
-
const _SPIe = "
|
|
2832
|
+
const _SPI = "SecurityProfileIds";
|
|
2833
|
+
const _SPIe = "SecurityProfileId";
|
|
2823
2834
|
const _SPIec = "SecurityProfileItem";
|
|
2824
2835
|
const _SPN = "SensitivePhoneNumber";
|
|
2825
2836
|
const _SPNA = "SourcePhoneNumberArn";
|
|
@@ -2935,8 +2946,9 @@ const _SWRTCC = "StartWebRTCContact";
|
|
|
2935
2946
|
const _SWRTCCR = "StartWebRTCContactRequest";
|
|
2936
2947
|
const _SWRTCCRt = "StartWebRTCContactResponse";
|
|
2937
2948
|
const _SWRe = "SearchWorkspacesResponse";
|
|
2938
|
-
const _Sc = "
|
|
2939
|
-
const _Sco = "
|
|
2949
|
+
const _Sc = "Scope";
|
|
2950
|
+
const _Sco = "Scores";
|
|
2951
|
+
const _Scor = "Score";
|
|
2940
2952
|
const _Se = "Settings";
|
|
2941
2953
|
const _Sec = "Section";
|
|
2942
2954
|
const _Seg = "Segments";
|
|
@@ -3615,9 +3627,10 @@ const errorTypeRegistries = [
|
|
|
3615
3627
|
];
|
|
3616
3628
|
var AgentFirstName = [0, n0, _AFN, 8, 0];
|
|
3617
3629
|
var AgentLastName = [0, n0, _ALN, 8, 0];
|
|
3630
|
+
var AuthCode = [0, n0, _AC, 8, 0];
|
|
3618
3631
|
var AuthenticationError = [0, n0, _AE, 8, 0];
|
|
3619
3632
|
var AuthenticationErrorDescription = [0, n0, _AED, 8, 0];
|
|
3620
|
-
var AuthorizationCode = [0, n0,
|
|
3633
|
+
var AuthorizationCode = [0, n0, _ACu, 8, 0];
|
|
3621
3634
|
var Body = [0, n0, _B, 8, 0];
|
|
3622
3635
|
var CustomerIdNonEmpty = [0, n0, _CINE, 8, 0];
|
|
3623
3636
|
var Description = [0, n0, _D, 8, 0];
|
|
@@ -4020,6 +4033,11 @@ var AuthenticationProfileSummary$ = [3, n0, _APS,
|
|
|
4020
4033
|
[_I, _A, _N, _ID, _LMT, _LMR],
|
|
4021
4034
|
[0, 0, 0, 2, 4, 0]
|
|
4022
4035
|
];
|
|
4036
|
+
var AuthScope$ = [3, n0, _ASu,
|
|
4037
|
+
0,
|
|
4038
|
+
[_ET, _SPI, _EI, _DN],
|
|
4039
|
+
[0, 64 | 0, 0, 0], 1
|
|
4040
|
+
];
|
|
4023
4041
|
var AutoAcceptConfig$ = [3, n0, _AACu,
|
|
4024
4042
|
0,
|
|
4025
4043
|
[_C, _AA, _AFCAA],
|
|
@@ -4470,6 +4488,16 @@ var CreateAttachedFileResponse$ = [3, n0, _CAFRr,
|
|
|
4470
4488
|
[_FAi, _FIi, _CTr, _FS],
|
|
4471
4489
|
[0, 0, 0, 0]
|
|
4472
4490
|
];
|
|
4491
|
+
var CreateAuthCodeRequest$ = [3, n0, _CACR,
|
|
4492
|
+
0,
|
|
4493
|
+
[_II, _Sc, _SIDM, _MSDM],
|
|
4494
|
+
[[0, 1], () => AuthScope$, 1, 1], 3
|
|
4495
|
+
];
|
|
4496
|
+
var CreateAuthCodeResponse$ = [3, n0, _CACRr,
|
|
4497
|
+
0,
|
|
4498
|
+
[_AC, _SI, _ET, _EI],
|
|
4499
|
+
[[() => AuthCode, 0], 0, 0, 0]
|
|
4500
|
+
];
|
|
4473
4501
|
var CreateCaseActionDefinition$ = [3, n0, _CCAD,
|
|
4474
4502
|
0,
|
|
4475
4503
|
[_Fie, _TI],
|
|
@@ -4557,7 +4585,7 @@ var CreateDataTableResponse$ = [3, n0, _CDTRr,
|
|
|
4557
4585
|
];
|
|
4558
4586
|
var CreateEmailAddressRequest$ = [3, n0, _CEAR,
|
|
4559
4587
|
0,
|
|
4560
|
-
[_II, _EA, _D,
|
|
4588
|
+
[_II, _EA, _D, _DNi, _Ta, _CT],
|
|
4561
4589
|
[[0, 1], [() => EmailAddress, 0], [() => Description, 0], [() => EmailAddressDisplayName, 0], 128 | 0, 0], 2
|
|
4562
4590
|
];
|
|
4563
4591
|
var CreateEmailAddressResponse$ = [3, n0, _CEARr,
|
|
@@ -4717,7 +4745,7 @@ var CreateSecurityProfileRequest$ = [3, n0, _CSPR,
|
|
|
4717
4745
|
];
|
|
4718
4746
|
var CreateSecurityProfileResponse$ = [3, n0, _CSPRr,
|
|
4719
4747
|
0,
|
|
4720
|
-
[
|
|
4748
|
+
[_SPIe, _SPA],
|
|
4721
4749
|
[0, 0]
|
|
4722
4750
|
];
|
|
4723
4751
|
var CreateTaskTemplateRequest$ = [3, n0, _CTTR,
|
|
@@ -4772,7 +4800,7 @@ var CreateUserHierarchyGroupResponse$ = [3, n0, _CUHGRr,
|
|
|
4772
4800
|
];
|
|
4773
4801
|
var CreateUserRequest$ = [3, n0, _CUR,
|
|
4774
4802
|
0,
|
|
4775
|
-
[_U,
|
|
4803
|
+
[_U, _SPI, _RPI, _II, _Pa, _IId, _PCh, _DUI, _HGI, _AACut, _ACWCf, _PNC, _PCC, _VEC, _Ta],
|
|
4776
4804
|
[0, 64 | 0, 0, [0, 1], [() => Password, 0], [() => UserIdentityInfo$, 0], [() => UserPhoneConfig$, 0], 0, 0, () => AutoAcceptConfigs, () => AfterContactWorkConfigs, [() => PhoneNumberConfigs, 0], () => PersistentConnectionConfigs, () => VoiceEnhancementConfigs, 128 | 0], 4
|
|
4777
4805
|
];
|
|
4778
4806
|
var CreateUserResponse$ = [3, n0, _CURr,
|
|
@@ -4987,7 +5015,7 @@ var DeleteAttachedFileResponse$ = [3, n0, _DAFRe,
|
|
|
4987
5015
|
];
|
|
4988
5016
|
var DeleteContactEvaluationRequest$ = [3, n0, _DCER,
|
|
4989
5017
|
0,
|
|
4990
|
-
[_II,
|
|
5018
|
+
[_II, _EIv],
|
|
4991
5019
|
[[0, 1], [0, 1]], 2
|
|
4992
5020
|
];
|
|
4993
5021
|
var DeleteContactFlowModuleAliasRequest$ = [3, n0, _DCFMAR,
|
|
@@ -5147,9 +5175,19 @@ var DeleteRuleRequest$ = [3, n0, _DRR,
|
|
|
5147
5175
|
];
|
|
5148
5176
|
var DeleteSecurityProfileRequest$ = [3, n0, _DSPR,
|
|
5149
5177
|
0,
|
|
5150
|
-
[_II,
|
|
5178
|
+
[_II, _SPIe],
|
|
5151
5179
|
[[0, 1], [0, 1]], 2
|
|
5152
5180
|
];
|
|
5181
|
+
var DeleteSessionRequest$ = [3, n0, _DSR,
|
|
5182
|
+
0,
|
|
5183
|
+
[_II, _SI],
|
|
5184
|
+
[[0, 1], [0, 1]], 2
|
|
5185
|
+
];
|
|
5186
|
+
var DeleteSessionResponse$ = [3, n0, _DSRe,
|
|
5187
|
+
0,
|
|
5188
|
+
[],
|
|
5189
|
+
[]
|
|
5190
|
+
];
|
|
5153
5191
|
var DeleteTaskTemplateRequest$ = [3, n0, _DTTR,
|
|
5154
5192
|
0,
|
|
5155
5193
|
[_II, _TTIa],
|
|
@@ -5287,7 +5325,7 @@ var DescribeAuthenticationProfileResponse$ = [3, n0, _DAPRe,
|
|
|
5287
5325
|
];
|
|
5288
5326
|
var DescribeContactEvaluationRequest$ = [3, n0, _DCERe,
|
|
5289
5327
|
0,
|
|
5290
|
-
[_II,
|
|
5328
|
+
[_II, _EIv],
|
|
5291
5329
|
[[0, 1], [0, 1]], 2
|
|
5292
5330
|
];
|
|
5293
5331
|
var DescribeContactEvaluationResponse$ = [3, n0, _DCERes,
|
|
@@ -5362,7 +5400,7 @@ var DescribeEmailAddressRequest$ = [3, n0, _DEARes,
|
|
|
5362
5400
|
];
|
|
5363
5401
|
var DescribeEmailAddressResponse$ = [3, n0, _DEAResc,
|
|
5364
5402
|
0,
|
|
5365
|
-
[_EAI, _EAA, _EA,
|
|
5403
|
+
[_EAI, _EAA, _EA, _DNi, _D, _CTrea, _MTo, _ACli, _Ta],
|
|
5366
5404
|
[0, 0, [() => EmailAddress, 0], [() => EmailAddressDisplayName, 0], [() => Description, 0], 0, 0, () => AliasConfigurationList, 128 | 0]
|
|
5367
5405
|
];
|
|
5368
5406
|
var DescribeEvaluationFormRequest$ = [3, n0, _DEFRes,
|
|
@@ -5507,7 +5545,7 @@ var DescribeRuleResponse$ = [3, n0, _DRRes,
|
|
|
5507
5545
|
];
|
|
5508
5546
|
var DescribeSecurityProfileRequest$ = [3, n0, _DSPRe,
|
|
5509
5547
|
0,
|
|
5510
|
-
[
|
|
5548
|
+
[_SPIe, _II],
|
|
5511
5549
|
[[0, 1], [0, 1]], 2
|
|
5512
5550
|
];
|
|
5513
5551
|
var DescribeSecurityProfileResponse$ = [3, n0, _DSPRes,
|
|
@@ -5762,12 +5800,12 @@ var EmailAddressConfig$ = [3, n0, _EACm,
|
|
|
5762
5800
|
];
|
|
5763
5801
|
var EmailAddressInfo$ = [3, n0, _EAIma,
|
|
5764
5802
|
0,
|
|
5765
|
-
[_EA,
|
|
5803
|
+
[_EA, _DNi],
|
|
5766
5804
|
[[() => EmailAddress, 0], [() => EmailAddressDisplayName, 0]], 1
|
|
5767
5805
|
];
|
|
5768
5806
|
var EmailAddressMetadata$ = [3, n0, _EAM,
|
|
5769
5807
|
0,
|
|
5770
|
-
[_EAI, _EAA, _EA, _D,
|
|
5808
|
+
[_EAI, _EAA, _EA, _D, _DNi, _ACli],
|
|
5771
5809
|
[0, 0, [() => EmailAddress, 0], [() => Description, 0], [() => EmailAddressDisplayName, 0], () => AliasConfigurationList]
|
|
5772
5810
|
];
|
|
5773
5811
|
var EmailAddressSearchCriteria$ = [3, n0, _EASC,
|
|
@@ -5797,7 +5835,7 @@ var EmailMessageReference$ = [3, n0, _EMR,
|
|
|
5797
5835
|
];
|
|
5798
5836
|
var EmailRecipient$ = [3, n0, _ERm,
|
|
5799
5837
|
0,
|
|
5800
|
-
[_Ad,
|
|
5838
|
+
[_Ad, _DNi],
|
|
5801
5839
|
[0, 0]
|
|
5802
5840
|
];
|
|
5803
5841
|
var EmailReference$ = [3, n0, _ERma,
|
|
@@ -5827,7 +5865,7 @@ var Endpoint$ = [3, n0, _End,
|
|
|
5827
5865
|
];
|
|
5828
5866
|
var EndpointInfo$ = [3, n0, _EIn,
|
|
5829
5867
|
0,
|
|
5830
|
-
[_T, _Ad,
|
|
5868
|
+
[_T, _Ad, _DNi],
|
|
5831
5869
|
[0, 0, 0]
|
|
5832
5870
|
];
|
|
5833
5871
|
var ErrorResult$ = [3, n0, _ERr,
|
|
@@ -5847,7 +5885,7 @@ var EvaluateDataTableValuesResponse$ = [3, n0, _EDTVRv,
|
|
|
5847
5885
|
];
|
|
5848
5886
|
var Evaluation$ = [3, n0, _Ev,
|
|
5849
5887
|
0,
|
|
5850
|
-
[
|
|
5888
|
+
[_EIv, _EAv, _Meta, _An, _Not, _St, _CTre, _LMT, _Sco, _ETv, _Ta],
|
|
5851
5889
|
[0, 0, () => EvaluationMetadata$, () => EvaluationAnswersOutputMap, () => EvaluationNotesMap, 0, 4, 4, () => EvaluationScoresMap, 0, 128 | 0], 8
|
|
5852
5890
|
];
|
|
5853
5891
|
var EvaluationAcknowledgement$ = [3, n0, _EAva,
|
|
@@ -5937,7 +5975,7 @@ var EvaluationFormMultiSelectQuestionAutomation$ = [3, n0, _EFMSQA,
|
|
|
5937
5975
|
];
|
|
5938
5976
|
var EvaluationFormMultiSelectQuestionOption$ = [3, n0, _EFMSQO,
|
|
5939
5977
|
0,
|
|
5940
|
-
[_RIef, _Te,
|
|
5978
|
+
[_RIef, _Te, _Scor, _AFut, _AFCu, _PCo],
|
|
5941
5979
|
[0, 0, 1, 2, () => AutomaticFailConfiguration$, () => QuestionOptionPointsConfiguration$], 2
|
|
5942
5980
|
];
|
|
5943
5981
|
var EvaluationFormMultiSelectQuestionProperties$ = [3, n0, _EFMSQP,
|
|
@@ -5947,7 +5985,7 @@ var EvaluationFormMultiSelectQuestionProperties$ = [3, n0, _EFMSQP,
|
|
|
5947
5985
|
];
|
|
5948
5986
|
var EvaluationFormNumericQuestionOption$ = [3, n0, _EFNQO,
|
|
5949
5987
|
0,
|
|
5950
|
-
[_MV, _MVa,
|
|
5988
|
+
[_MV, _MVa, _Scor, _AFut, _AFCu, _PCo],
|
|
5951
5989
|
[1, 1, 1, 2, () => AutomaticFailConfiguration$, () => QuestionOptionPointsConfiguration$], 2
|
|
5952
5990
|
];
|
|
5953
5991
|
var EvaluationFormNumericQuestionProperties$ = [3, n0, _EFNQP,
|
|
@@ -6007,7 +6045,7 @@ var EvaluationFormSingleSelectQuestionAutomation$ = [3, n0, _EFSSQA,
|
|
|
6007
6045
|
];
|
|
6008
6046
|
var EvaluationFormSingleSelectQuestionOption$ = [3, n0, _EFSSQO,
|
|
6009
6047
|
0,
|
|
6010
|
-
[_RIef, _Te,
|
|
6048
|
+
[_RIef, _Te, _Scor, _AFut, _AFCu, _PCo],
|
|
6011
6049
|
[0, 0, 1, 2, () => AutomaticFailConfiguration$, () => QuestionOptionPointsConfiguration$], 2
|
|
6012
6050
|
];
|
|
6013
6051
|
var EvaluationFormSingleSelectQuestionProperties$ = [3, n0, _EFSSQP,
|
|
@@ -6057,7 +6095,7 @@ var EvaluationGenAIAnswerAnalysisDetails$ = [3, n0, _EGAIAAD,
|
|
|
6057
6095
|
];
|
|
6058
6096
|
var EvaluationMetadata$ = [3, n0, _EMv,
|
|
6059
6097
|
0,
|
|
6060
|
-
[_CI, _EAval, _CAIo, _CSI,
|
|
6098
|
+
[_CI, _EAval, _CAIo, _CSI, _Scor, _AEu, _Ack, _Rev, _CP, _SJI],
|
|
6061
6099
|
[0, 0, 0, 0, () => EvaluationScore$, () => AutoEvaluationDetails$, () => EvaluationAcknowledgement$, () => EvaluationReviewMetadata$, () => EvaluationContactParticipant$, 0], 2
|
|
6062
6100
|
];
|
|
6063
6101
|
var EvaluationNote$ = [3, n0, _EN,
|
|
@@ -6117,7 +6155,7 @@ var EvaluationSearchMetadata$ = [3, n0, _ESM,
|
|
|
6117
6155
|
];
|
|
6118
6156
|
var EvaluationSearchSummary$ = [3, n0, _ESS,
|
|
6119
6157
|
0,
|
|
6120
|
-
[
|
|
6158
|
+
[_EIv, _EAv, _EFV, _Meta, _St, _CTre, _LMT, _EFI, _EFT, _ETv, _Ta],
|
|
6121
6159
|
[0, 0, 1, () => EvaluationSearchMetadata$, 0, 4, 4, 0, 0, 0, 128 | 0], 7
|
|
6122
6160
|
];
|
|
6123
6161
|
var EvaluationSuggestedAnswer$ = [3, n0, _ESA,
|
|
@@ -6132,7 +6170,7 @@ var EvaluationSuggestedAnswerTranscriptMillisecondOffsets$ = [3, n0, _ESATMO,
|
|
|
6132
6170
|
];
|
|
6133
6171
|
var EvaluationSummary$ = [3, n0, _ESv,
|
|
6134
6172
|
0,
|
|
6135
|
-
[
|
|
6173
|
+
[_EIv, _EAv, _EFT, _EFI, _St, _EAval, _CTre, _LMT, _CSI, _AEE, _AES, _Scor, _Ack, _ETv, _CP],
|
|
6136
6174
|
[0, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, () => EvaluationScore$, () => EvaluationAcknowledgementSummary$, 0, () => EvaluationContactParticipant$], 8
|
|
6137
6175
|
];
|
|
6138
6176
|
var EvaluationTranscriptPointOfInterest$ = [3, n0, _ETPOI,
|
|
@@ -6302,8 +6340,8 @@ var GetFederationTokenRequest$ = [3, n0, _GFTR,
|
|
|
6302
6340
|
];
|
|
6303
6341
|
var GetFederationTokenResponse$ = [3, n0, _GFTRe,
|
|
6304
6342
|
0,
|
|
6305
|
-
[
|
|
6306
|
-
[[() => Credentials$, 0], 0
|
|
6343
|
+
[_UI, _UA, _Cred, _SIU],
|
|
6344
|
+
[0, 0, [() => Credentials$, 0], 0]
|
|
6307
6345
|
];
|
|
6308
6346
|
var GetFlowAssociationRequest$ = [3, n0, _GFAR,
|
|
6309
6347
|
0,
|
|
@@ -7112,7 +7150,7 @@ var ListSecurityKeysResponse$ = [3, n0, _LSKRi,
|
|
|
7112
7150
|
];
|
|
7113
7151
|
var ListSecurityProfileApplicationsRequest$ = [3, n0, _LSPAR,
|
|
7114
7152
|
0,
|
|
7115
|
-
[
|
|
7153
|
+
[_SPIe, _II, _NT, _MR],
|
|
7116
7154
|
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
7117
7155
|
];
|
|
7118
7156
|
var ListSecurityProfileApplicationsResponse$ = [3, n0, _LSPARi,
|
|
@@ -7122,7 +7160,7 @@ var ListSecurityProfileApplicationsResponse$ = [3, n0, _LSPARi,
|
|
|
7122
7160
|
];
|
|
7123
7161
|
var ListSecurityProfileFlowModulesRequest$ = [3, n0, _LSPFMR,
|
|
7124
7162
|
0,
|
|
7125
|
-
[
|
|
7163
|
+
[_SPIe, _II, _NT, _MR],
|
|
7126
7164
|
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
7127
7165
|
];
|
|
7128
7166
|
var ListSecurityProfileFlowModulesResponse$ = [3, n0, _LSPFMRi,
|
|
@@ -7132,7 +7170,7 @@ var ListSecurityProfileFlowModulesResponse$ = [3, n0, _LSPFMRi,
|
|
|
7132
7170
|
];
|
|
7133
7171
|
var ListSecurityProfilePermissionsRequest$ = [3, n0, _LSPPR,
|
|
7134
7172
|
0,
|
|
7135
|
-
[
|
|
7173
|
+
[_SPIe, _II, _NT, _MR],
|
|
7136
7174
|
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
7137
7175
|
];
|
|
7138
7176
|
var ListSecurityProfilePermissionsResponse$ = [3, n0, _LSPPRi,
|
|
@@ -7537,12 +7575,12 @@ var ParticipantConfiguration$ = [3, n0, _PCart,
|
|
|
7537
7575
|
];
|
|
7538
7576
|
var ParticipantDetails$ = [3, n0, _PD,
|
|
7539
7577
|
0,
|
|
7540
|
-
[
|
|
7578
|
+
[_DNi],
|
|
7541
7579
|
[0], 1
|
|
7542
7580
|
];
|
|
7543
7581
|
var ParticipantDetailsToAdd$ = [3, n0, _PDTA,
|
|
7544
7582
|
0,
|
|
7545
|
-
[_PR,
|
|
7583
|
+
[_PR, _DNi, _PCar],
|
|
7546
7584
|
[0, 0, () => ParticipantCapabilities$]
|
|
7547
7585
|
];
|
|
7548
7586
|
var ParticipantMetrics$ = [3, n0, _PM,
|
|
@@ -7817,7 +7855,7 @@ var RealTimeContactAnalysisPointOfInterest$ = [3, n0, _RTCAPOI,
|
|
|
7817
7855
|
];
|
|
7818
7856
|
var RealTimeContactAnalysisSegmentAttachments$ = [3, n0, _RTCASA,
|
|
7819
7857
|
0,
|
|
7820
|
-
[_I, _PI, _PR, _Atta, _Time,
|
|
7858
|
+
[_I, _PI, _PR, _Atta, _Time, _DNi],
|
|
7821
7859
|
[0, 0, 0, () => RealTimeContactAnalysisAttachments, () => RealTimeContactAnalysisTimeData$, 0], 5
|
|
7822
7860
|
];
|
|
7823
7861
|
var RealTimeContactAnalysisSegmentCategories$ = [3, n0, _RTCASC,
|
|
@@ -7827,7 +7865,7 @@ var RealTimeContactAnalysisSegmentCategories$ = [3, n0, _RTCASC,
|
|
|
7827
7865
|
];
|
|
7828
7866
|
var RealTimeContactAnalysisSegmentEvent$ = [3, n0, _RTCASE,
|
|
7829
7867
|
0,
|
|
7830
|
-
[_I, _ETve, _Time, _PI, _PR,
|
|
7868
|
+
[_I, _ETve, _Time, _PI, _PR, _DNi],
|
|
7831
7869
|
[0, 0, () => RealTimeContactAnalysisTimeData$, 0, 0, 0], 3
|
|
7832
7870
|
];
|
|
7833
7871
|
var RealTimeContactAnalysisSegmentIssues$ = [3, n0, _RTCASI,
|
|
@@ -7842,7 +7880,7 @@ var RealTimeContactAnalysisSegmentPostContactSummary$ = [3, n0, _RTCASPCS,
|
|
|
7842
7880
|
];
|
|
7843
7881
|
var RealTimeContactAnalysisSegmentTranscript$ = [3, n0, _RTCAST,
|
|
7844
7882
|
0,
|
|
7845
|
-
[_I, _PI, _PR, _Co, _Time,
|
|
7883
|
+
[_I, _PI, _PR, _Co, _Time, _DNi, _CTon, _Red, _Sen],
|
|
7846
7884
|
[0, 0, 0, 0, () => RealTimeContactAnalysisTimeData$, 0, 0, () => RealTimeContactAnalysisTranscriptItemRedaction$, 0], 5
|
|
7847
7885
|
];
|
|
7848
7886
|
var RealTimeContactAnalysisTranscriptItemRedaction$ = [3, n0, _RTCATIR,
|
|
@@ -7862,7 +7900,7 @@ var RealTimeContactAnalysisTranscriptItemWithContent$ = [3, n0, _RTCATIWC,
|
|
|
7862
7900
|
];
|
|
7863
7901
|
var RecommenderConfig$ = [3, n0, _RCe,
|
|
7864
7902
|
0,
|
|
7865
|
-
[
|
|
7903
|
+
[_DN, _RN, _Conte],
|
|
7866
7904
|
[0, 0, 128 | 0], 2
|
|
7867
7905
|
];
|
|
7868
7906
|
var RecordingInfo$ = [3, n0, _RIeco,
|
|
@@ -8412,7 +8450,7 @@ var SegmentAttributeValue$ = [3, n0, _SAV,
|
|
|
8412
8450
|
];
|
|
8413
8451
|
var SendChatIntegrationEventRequest$ = [3, n0, _SCIER,
|
|
8414
8452
|
0,
|
|
8415
|
-
[
|
|
8453
|
+
[_SIo, _DIe, _Eve, _Sub, _NSD],
|
|
8416
8454
|
[0, 0, () => ChatEvent$, 0, () => NewSessionDetails$], 3
|
|
8417
8455
|
];
|
|
8418
8456
|
var SendChatIntegrationEventResponse$ = [3, n0, _SCIERe,
|
|
@@ -8437,7 +8475,7 @@ var SendOutboundEmailResponse$ = [3, n0, _SOERe,
|
|
|
8437
8475
|
];
|
|
8438
8476
|
var SendOutboundWebNotificationRequest$ = [3, n0, _SOWNR,
|
|
8439
8477
|
0,
|
|
8440
|
-
[_II, _BIr,
|
|
8478
|
+
[_II, _BIr, _SI, _EAx, _So, _Des, _Co, _CT],
|
|
8441
8479
|
[[0, 1], 0, 0, 4, () => WebNotificationSource$, () => WidgetDestination$, () => WebNotificationContent$, [0, 4]], 7
|
|
8442
8480
|
];
|
|
8443
8481
|
var SendOutboundWebNotificationResponse$ = [3, n0, _SOWNRe,
|
|
@@ -8512,7 +8550,7 @@ var StartContactEvaluationRequest$ = [3, n0, _SCERt,
|
|
|
8512
8550
|
];
|
|
8513
8551
|
var StartContactEvaluationResponse$ = [3, n0, _SCERta,
|
|
8514
8552
|
0,
|
|
8515
|
-
[
|
|
8553
|
+
[_EIv, _EAv],
|
|
8516
8554
|
[0, 0], 2
|
|
8517
8555
|
];
|
|
8518
8556
|
var StartContactMediaProcessingRequest$ = [3, n0, _SCMPR,
|
|
@@ -8712,12 +8750,12 @@ var SubmitAutoEvaluationActionDefinition$ = [3, n0, _SAEAD,
|
|
|
8712
8750
|
];
|
|
8713
8751
|
var SubmitContactEvaluationRequest$ = [3, n0, _SCERu,
|
|
8714
8752
|
0,
|
|
8715
|
-
[_II,
|
|
8753
|
+
[_II, _EIv, _An, _Not, _SB],
|
|
8716
8754
|
[[0, 1], [0, 1], () => EvaluationAnswersInputMap, () => EvaluationNotesMap, () => EvaluatorUserUnion$], 2
|
|
8717
8755
|
];
|
|
8718
8756
|
var SubmitContactEvaluationResponse$ = [3, n0, _SCERub,
|
|
8719
8757
|
0,
|
|
8720
|
-
[
|
|
8758
|
+
[_EIv, _EAv],
|
|
8721
8759
|
[0, 0], 2
|
|
8722
8760
|
];
|
|
8723
8761
|
var SuccessfulBatchAssociationSummary$ = [3, n0, _SBAS,
|
|
@@ -8962,12 +9000,12 @@ var UpdateContactAttributesResponse$ = [3, n0, _UCARp,
|
|
|
8962
9000
|
];
|
|
8963
9001
|
var UpdateContactEvaluationRequest$ = [3, n0, _UCER,
|
|
8964
9002
|
0,
|
|
8965
|
-
[_II,
|
|
9003
|
+
[_II, _EIv, _An, _Not, _UB],
|
|
8966
9004
|
[[0, 1], [0, 1], () => EvaluationAnswersInputMap, () => EvaluationNotesMap, () => EvaluatorUserUnion$], 2
|
|
8967
9005
|
];
|
|
8968
9006
|
var UpdateContactEvaluationResponse$ = [3, n0, _UCERp,
|
|
8969
9007
|
0,
|
|
8970
|
-
[
|
|
9008
|
+
[_EIv, _EAv],
|
|
8971
9009
|
[0, 0], 2
|
|
8972
9010
|
];
|
|
8973
9011
|
var UpdateContactFlowContentRequest$ = [3, n0, _UCFCR,
|
|
@@ -9092,7 +9130,7 @@ var UpdateDataTablePrimaryValuesResponse$ = [3, n0, _UDTPVRp,
|
|
|
9092
9130
|
];
|
|
9093
9131
|
var UpdateEmailAddressMetadataRequest$ = [3, n0, _UEAMR,
|
|
9094
9132
|
0,
|
|
9095
|
-
[_II, _EAI, _D,
|
|
9133
|
+
[_II, _EAI, _D, _DNi, _CT],
|
|
9096
9134
|
[[0, 1], [0, 1], [() => Description, 0], [() => EmailAddressDisplayName, 0], 0], 2
|
|
9097
9135
|
];
|
|
9098
9136
|
var UpdateEmailAddressMetadataResponse$ = [3, n0, _UEAMRp,
|
|
@@ -9262,7 +9300,7 @@ var UpdateRuleRequest$ = [3, n0, _URRp,
|
|
|
9262
9300
|
];
|
|
9263
9301
|
var UpdateSecurityProfileRequest$ = [3, n0, _USPR,
|
|
9264
9302
|
0,
|
|
9265
|
-
[
|
|
9303
|
+
[_SPIe, _II, _D, _Pe, _AACT, _TRR, _App, _HRR, _AACHGI, _AFM, _GACC],
|
|
9266
9304
|
[[0, 1], [0, 1], 0, 64 | 0, 128 | 0, 64 | 0, () => Applications, 64 | 0, 0, () => AllowedFlowModules, () => GranularAccessControlConfiguration$], 2
|
|
9267
9305
|
];
|
|
9268
9306
|
var UpdateTaskTemplateRequest$ = [3, n0, _UTTR,
|
|
@@ -9347,7 +9385,7 @@ var UpdateUserRoutingProfileRequest$ = [3, n0, _UURPR,
|
|
|
9347
9385
|
];
|
|
9348
9386
|
var UpdateUserSecurityProfilesRequest$ = [3, n0, _UUSPR,
|
|
9349
9387
|
0,
|
|
9350
|
-
[
|
|
9388
|
+
[_SPI, _UI, _II],
|
|
9351
9389
|
[64 | 0, [0, 1], [0, 1]], 3
|
|
9352
9390
|
];
|
|
9353
9391
|
var UpdateViewContentRequest$ = [3, n0, _UVCR,
|
|
@@ -9427,7 +9465,7 @@ var UseCase$ = [3, n0, _UCs,
|
|
|
9427
9465
|
];
|
|
9428
9466
|
var User$ = [3, n0, _Us,
|
|
9429
9467
|
0,
|
|
9430
|
-
[_I, _A, _U, _IId, _PCh, _DUI,
|
|
9468
|
+
[_I, _A, _U, _IId, _PCh, _DUI, _SPI, _RPI, _HGI, _Ta, _AACut, _ACWCf, _PNC, _PCC, _VEC, _LMT, _LMR],
|
|
9431
9469
|
[0, 0, 0, [() => UserIdentityInfo$, 0], [() => UserPhoneConfig$, 0], 0, 64 | 0, 0, 0, 128 | 0, () => AutoAcceptConfigs, () => AfterContactWorkConfigs, [() => PhoneNumberConfigs, 0], () => PersistentConnectionConfigs, () => VoiceEnhancementConfigs, 4, 0]
|
|
9432
9470
|
];
|
|
9433
9471
|
var UserData$ = [3, n0, _UD,
|
|
@@ -9507,7 +9545,7 @@ var UserSearchFilter$ = [3, n0, _USF,
|
|
|
9507
9545
|
];
|
|
9508
9546
|
var UserSearchSummary$ = [3, n0, _USS,
|
|
9509
9547
|
0,
|
|
9510
|
-
[_A, _DUI, _HGI, _I, _IId, _PCh, _RPI,
|
|
9548
|
+
[_A, _DUI, _HGI, _I, _IId, _PCh, _RPI, _SPI, _Ta, _U, _AACut, _ACWCf, _PNC, _PCC, _VEC],
|
|
9511
9549
|
[0, 0, 0, 0, [() => UserIdentityInfoLite$, 0], [() => UserPhoneConfig$, 0], 0, 64 | 0, 128 | 0, 0, () => AutoAcceptConfigs, () => AfterContactWorkConfigs, [() => PhoneNumberConfigs, 0], () => PersistentConnectionConfigs, () => VoiceEnhancementConfigs]
|
|
9512
9550
|
];
|
|
9513
9551
|
var UserSummary$ = [3, n0, _US,
|
|
@@ -10653,6 +10691,9 @@ var CreateAgentStatus$ = [9, n0, _CAS,
|
|
|
10653
10691
|
var CreateAttachedFile$ = [9, n0, _CAF,
|
|
10654
10692
|
{ [_h]: ["PUT", "/attached-files/{InstanceId}/files", 200] }, () => CreateAttachedFileRequest$, () => CreateAttachedFileResponse$
|
|
10655
10693
|
];
|
|
10694
|
+
var CreateAuthCode$ = [9, n0, _CAC,
|
|
10695
|
+
{ [_h]: ["POST", "/auth/code/{InstanceId}", 200] }, () => CreateAuthCodeRequest$, () => CreateAuthCodeResponse$
|
|
10696
|
+
];
|
|
10656
10697
|
var CreateContact$ = [9, n0, _CCr,
|
|
10657
10698
|
{ [_h]: ["PUT", "/contact/create-contact", 200] }, () => CreateContactRequest$, () => CreateContactResponse$
|
|
10658
10699
|
];
|
|
@@ -10836,6 +10877,9 @@ var DeleteRule$ = [9, n0, _DRel,
|
|
|
10836
10877
|
var DeleteSecurityProfile$ = [9, n0, _DSP,
|
|
10837
10878
|
{ [_h]: ["DELETE", "/security-profiles/{InstanceId}/{SecurityProfileId}", 200] }, () => DeleteSecurityProfileRequest$, () => __Unit
|
|
10838
10879
|
];
|
|
10880
|
+
var DeleteSession$ = [9, n0, _DS,
|
|
10881
|
+
{ [_h]: ["DELETE", "/auth/sessions/{InstanceId}/{SessionId}", 200] }, () => DeleteSessionRequest$, () => DeleteSessionResponse$
|
|
10882
|
+
];
|
|
10839
10883
|
var DeleteTaskTemplate$ = [9, n0, _DTT,
|
|
10840
10884
|
{ [_h]: ["DELETE", "/instance/{InstanceId}/task/template/{TaskTemplateId}", 200] }, () => DeleteTaskTemplateRequest$, () => DeleteTaskTemplateResponse$
|
|
10841
10885
|
];
|
|
@@ -11929,6 +11973,9 @@ class CreateAgentStatusCommand extends command(_ep0, _mw0, "CreateAgentStatus",
|
|
|
11929
11973
|
class CreateAttachedFileCommand extends command(_ep0, _mw0, "CreateAttachedFile", CreateAttachedFile$) {
|
|
11930
11974
|
}
|
|
11931
11975
|
|
|
11976
|
+
class CreateAuthCodeCommand extends command(_ep0, _mw0, "CreateAuthCode", CreateAuthCode$) {
|
|
11977
|
+
}
|
|
11978
|
+
|
|
11932
11979
|
class CreateContactCommand extends command(_ep0, _mw0, "CreateContact", CreateContact$) {
|
|
11933
11980
|
}
|
|
11934
11981
|
|
|
@@ -12112,6 +12159,9 @@ class DeleteRuleCommand extends command(_ep0, _mw0, "DeleteRule", DeleteRule$) {
|
|
|
12112
12159
|
class DeleteSecurityProfileCommand extends command(_ep0, _mw0, "DeleteSecurityProfile", DeleteSecurityProfile$) {
|
|
12113
12160
|
}
|
|
12114
12161
|
|
|
12162
|
+
class DeleteSessionCommand extends command(_ep0, _mw0, "DeleteSession", DeleteSession$) {
|
|
12163
|
+
}
|
|
12164
|
+
|
|
12115
12165
|
class DeleteTaskTemplateCommand extends command(_ep0, _mw0, "DeleteTaskTemplate", DeleteTaskTemplate$) {
|
|
12116
12166
|
}
|
|
12117
12167
|
|
|
@@ -13159,6 +13209,7 @@ const commands = {
|
|
|
13159
13209
|
CompleteAttachedFileUploadCommand,
|
|
13160
13210
|
CreateAgentStatusCommand,
|
|
13161
13211
|
CreateAttachedFileCommand,
|
|
13212
|
+
CreateAuthCodeCommand,
|
|
13162
13213
|
CreateContactCommand,
|
|
13163
13214
|
CreateContactFlowCommand,
|
|
13164
13215
|
CreateContactFlowModuleCommand,
|
|
@@ -13220,6 +13271,7 @@ const commands = {
|
|
|
13220
13271
|
DeleteRoutingProfileCommand,
|
|
13221
13272
|
DeleteRuleCommand,
|
|
13222
13273
|
DeleteSecurityProfileCommand,
|
|
13274
|
+
DeleteSessionCommand,
|
|
13223
13275
|
DeleteTaskTemplateCommand,
|
|
13224
13276
|
DeleteTestCaseCommand,
|
|
13225
13277
|
DeleteTrafficDistributionGroupCommand,
|
|
@@ -13812,6 +13864,9 @@ const FailureReasonCode = {
|
|
|
13812
13864
|
MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT: "MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT",
|
|
13813
13865
|
REQUEST_THROTTLED: "REQUEST_THROTTLED",
|
|
13814
13866
|
};
|
|
13867
|
+
const AuthCodeEntityType = {
|
|
13868
|
+
CUSTOMER_PROFILE: "CUSTOMER_PROFILE",
|
|
13869
|
+
};
|
|
13815
13870
|
const InitiateAs = {
|
|
13816
13871
|
COMPLETED: "COMPLETED",
|
|
13817
13872
|
CONNECTED_TO_USER: "CONNECTED_TO_USER",
|
|
@@ -15062,6 +15117,8 @@ exports.AttributeAndCondition$ = AttributeAndCondition$;
|
|
|
15062
15117
|
exports.AttributeCondition$ = AttributeCondition$;
|
|
15063
15118
|
exports.AudioFeatures$ = AudioFeatures$;
|
|
15064
15119
|
exports.AudioQualityMetricsInfo$ = AudioQualityMetricsInfo$;
|
|
15120
|
+
exports.AuthCodeEntityType = AuthCodeEntityType;
|
|
15121
|
+
exports.AuthScope$ = AuthScope$;
|
|
15065
15122
|
exports.AuthenticationProfile$ = AuthenticationProfile$;
|
|
15066
15123
|
exports.AuthenticationProfileSummary$ = AuthenticationProfileSummary$;
|
|
15067
15124
|
exports.AutoAcceptConfig$ = AutoAcceptConfig$;
|
|
@@ -15215,6 +15272,10 @@ exports.CreateAttachedFile$ = CreateAttachedFile$;
|
|
|
15215
15272
|
exports.CreateAttachedFileCommand = CreateAttachedFileCommand;
|
|
15216
15273
|
exports.CreateAttachedFileRequest$ = CreateAttachedFileRequest$;
|
|
15217
15274
|
exports.CreateAttachedFileResponse$ = CreateAttachedFileResponse$;
|
|
15275
|
+
exports.CreateAuthCode$ = CreateAuthCode$;
|
|
15276
|
+
exports.CreateAuthCodeCommand = CreateAuthCodeCommand;
|
|
15277
|
+
exports.CreateAuthCodeRequest$ = CreateAuthCodeRequest$;
|
|
15278
|
+
exports.CreateAuthCodeResponse$ = CreateAuthCodeResponse$;
|
|
15218
15279
|
exports.CreateCaseActionDefinition$ = CreateCaseActionDefinition$;
|
|
15219
15280
|
exports.CreateContact$ = CreateContact$;
|
|
15220
15281
|
exports.CreateContactCommand = CreateContactCommand;
|
|
@@ -15481,6 +15542,10 @@ exports.DeleteRuleRequest$ = DeleteRuleRequest$;
|
|
|
15481
15542
|
exports.DeleteSecurityProfile$ = DeleteSecurityProfile$;
|
|
15482
15543
|
exports.DeleteSecurityProfileCommand = DeleteSecurityProfileCommand;
|
|
15483
15544
|
exports.DeleteSecurityProfileRequest$ = DeleteSecurityProfileRequest$;
|
|
15545
|
+
exports.DeleteSession$ = DeleteSession$;
|
|
15546
|
+
exports.DeleteSessionCommand = DeleteSessionCommand;
|
|
15547
|
+
exports.DeleteSessionRequest$ = DeleteSessionRequest$;
|
|
15548
|
+
exports.DeleteSessionResponse$ = DeleteSessionResponse$;
|
|
15484
15549
|
exports.DeleteTaskTemplate$ = DeleteTaskTemplate$;
|
|
15485
15550
|
exports.DeleteTaskTemplateCommand = DeleteTaskTemplateCommand;
|
|
15486
15551
|
exports.DeleteTaskTemplateRequest$ = DeleteTaskTemplateRequest$;
|