@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/dist-es/Connect.js
CHANGED
|
@@ -33,6 +33,7 @@ import { ClaimPhoneNumberCommand, } from "./commands/ClaimPhoneNumberCommand";
|
|
|
33
33
|
import { CompleteAttachedFileUploadCommand, } from "./commands/CompleteAttachedFileUploadCommand";
|
|
34
34
|
import { CreateAgentStatusCommand, } from "./commands/CreateAgentStatusCommand";
|
|
35
35
|
import { CreateAttachedFileCommand, } from "./commands/CreateAttachedFileCommand";
|
|
36
|
+
import { CreateAuthCodeCommand, } from "./commands/CreateAuthCodeCommand";
|
|
36
37
|
import { CreateContactCommand, } from "./commands/CreateContactCommand";
|
|
37
38
|
import { CreateContactFlowCommand, } from "./commands/CreateContactFlowCommand";
|
|
38
39
|
import { CreateContactFlowModuleAliasCommand, } from "./commands/CreateContactFlowModuleAliasCommand";
|
|
@@ -94,6 +95,7 @@ import { DeleteQuickConnectCommand, } from "./commands/DeleteQuickConnectCommand
|
|
|
94
95
|
import { DeleteRoutingProfileCommand, } from "./commands/DeleteRoutingProfileCommand";
|
|
95
96
|
import { DeleteRuleCommand, } from "./commands/DeleteRuleCommand";
|
|
96
97
|
import { DeleteSecurityProfileCommand, } from "./commands/DeleteSecurityProfileCommand";
|
|
98
|
+
import { DeleteSessionCommand, } from "./commands/DeleteSessionCommand";
|
|
97
99
|
import { DeleteTaskTemplateCommand, } from "./commands/DeleteTaskTemplateCommand";
|
|
98
100
|
import { DeleteTestCaseCommand, } from "./commands/DeleteTestCaseCommand";
|
|
99
101
|
import { DeleteTrafficDistributionGroupCommand, } from "./commands/DeleteTrafficDistributionGroupCommand";
|
|
@@ -496,6 +498,7 @@ const commands = {
|
|
|
496
498
|
CompleteAttachedFileUploadCommand,
|
|
497
499
|
CreateAgentStatusCommand,
|
|
498
500
|
CreateAttachedFileCommand,
|
|
501
|
+
CreateAuthCodeCommand,
|
|
499
502
|
CreateContactCommand,
|
|
500
503
|
CreateContactFlowCommand,
|
|
501
504
|
CreateContactFlowModuleCommand,
|
|
@@ -557,6 +560,7 @@ const commands = {
|
|
|
557
560
|
DeleteRoutingProfileCommand,
|
|
558
561
|
DeleteRuleCommand,
|
|
559
562
|
DeleteSecurityProfileCommand,
|
|
563
|
+
DeleteSessionCommand,
|
|
560
564
|
DeleteTaskTemplateCommand,
|
|
561
565
|
DeleteTestCaseCommand,
|
|
562
566
|
DeleteTrafficDistributionGroupCommand,
|
|
@@ -32,6 +32,7 @@ export * from "./ClaimPhoneNumberCommand";
|
|
|
32
32
|
export * from "./CompleteAttachedFileUploadCommand";
|
|
33
33
|
export * from "./CreateAgentStatusCommand";
|
|
34
34
|
export * from "./CreateAttachedFileCommand";
|
|
35
|
+
export * from "./CreateAuthCodeCommand";
|
|
35
36
|
export * from "./CreateContactCommand";
|
|
36
37
|
export * from "./CreateContactFlowCommand";
|
|
37
38
|
export * from "./CreateContactFlowModuleAliasCommand";
|
|
@@ -93,6 +94,7 @@ export * from "./DeleteQuickConnectCommand";
|
|
|
93
94
|
export * from "./DeleteRoutingProfileCommand";
|
|
94
95
|
export * from "./DeleteRuleCommand";
|
|
95
96
|
export * from "./DeleteSecurityProfileCommand";
|
|
97
|
+
export * from "./DeleteSessionCommand";
|
|
96
98
|
export * from "./DeleteTaskTemplateCommand";
|
|
97
99
|
export * from "./DeleteTestCaseCommand";
|
|
98
100
|
export * from "./DeleteTrafficDistributionGroupCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -217,6 +217,9 @@ export const FailureReasonCode = {
|
|
|
217
217
|
MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT: "MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT",
|
|
218
218
|
REQUEST_THROTTLED: "REQUEST_THROTTLED",
|
|
219
219
|
};
|
|
220
|
+
export const AuthCodeEntityType = {
|
|
221
|
+
CUSTOMER_PROFILE: "CUSTOMER_PROFILE",
|
|
222
|
+
};
|
|
220
223
|
export const InitiateAs = {
|
|
221
224
|
COMPLETED: "COMPLETED",
|
|
222
225
|
CONNECTED_TO_USER: "CONNECTED_TO_USER",
|
|
@@ -25,7 +25,7 @@ const _ABAT = "AcceptedByAgentTimestamp";
|
|
|
25
25
|
const _ABR = "AssociateBotRequest";
|
|
26
26
|
const _ABc = "ActiveBackground";
|
|
27
27
|
const _ABs = "AssociateBot";
|
|
28
|
-
const _AC = "
|
|
28
|
+
const _AC = "AuthCode";
|
|
29
29
|
const _ACCA = "AssignContactCategoryAction";
|
|
30
30
|
const _ACCAD = "AssignContactCategoryActionDefinition";
|
|
31
31
|
const _ACL = "AliasConfigurationList";
|
|
@@ -57,6 +57,7 @@ const _ACnd = "AndCondition";
|
|
|
57
57
|
const _ACt = "AttributeCondition";
|
|
58
58
|
const _ACtt = "AttributeConditions";
|
|
59
59
|
const _ACttr = "AttributeConfiguration";
|
|
60
|
+
const _ACu = "AuthorizationCode";
|
|
60
61
|
const _AD = "AliasDescription";
|
|
61
62
|
const _ADAR = "AnalyticsDataAssociationResult";
|
|
62
63
|
const _ADARn = "AnalyticsDataAssociationResults";
|
|
@@ -198,6 +199,7 @@ const _ASg = "AgentStatus";
|
|
|
198
199
|
const _ASge = "AgentStatuses";
|
|
199
200
|
const _ASn = "AnswerSource";
|
|
200
201
|
const _ASt = "AttachmentScope";
|
|
202
|
+
const _ASu = "AuthScope";
|
|
201
203
|
const _AT = "ActionType";
|
|
202
204
|
const _ATC = "ApproximateTotalCount";
|
|
203
205
|
const _ATDGU = "AssociateTrafficDistributionGroupUser";
|
|
@@ -302,6 +304,9 @@ const _Be = "Behavior";
|
|
|
302
304
|
const _C = "Channel";
|
|
303
305
|
const _CA = "ContactArn";
|
|
304
306
|
const _CAAC = "CommonAttributeAndCondition";
|
|
307
|
+
const _CAC = "CreateAuthCode";
|
|
308
|
+
const _CACR = "CreateAuthCodeRequest";
|
|
309
|
+
const _CACRr = "CreateAuthCodeResponse";
|
|
305
310
|
const _CAF = "CreateAttachedFile";
|
|
306
311
|
const _CAFR = "CreateAttachedFileRequest";
|
|
307
312
|
const _CAFRr = "CreateAttachedFileResponse";
|
|
@@ -722,7 +727,7 @@ const _DLBR = "DisassociateLexBotRequest";
|
|
|
722
727
|
const _DLF = "DisassociateLambdaFunction";
|
|
723
728
|
const _DLFR = "DisassociateLambdaFunctionRequest";
|
|
724
729
|
const _DM = "DeliveryMethod";
|
|
725
|
-
const _DN = "
|
|
730
|
+
const _DN = "DomainName";
|
|
726
731
|
const _DNAE = "DestinationNotAllowedException";
|
|
727
732
|
const _DNR = "DeleteNotificationRequest";
|
|
728
733
|
const _DNRe = "DeleteNotificationResponse";
|
|
@@ -730,7 +735,7 @@ const _DNRes = "DescribeNotificationRequest";
|
|
|
730
735
|
const _DNResc = "DescribeNotificationResponse";
|
|
731
736
|
const _DNe = "DeleteNotification";
|
|
732
737
|
const _DNes = "DescribeNotification";
|
|
733
|
-
const
|
|
738
|
+
const _DNi = "DisplayName";
|
|
734
739
|
const _DO = "DisplayOrder";
|
|
735
740
|
const _DOCE = "DisconnectOnCustomerExit";
|
|
736
741
|
const _DOQI = "DefaultOutboundQueueId";
|
|
@@ -786,6 +791,7 @@ const _DRa = "DateReference";
|
|
|
786
791
|
const _DRe = "DeletionReason";
|
|
787
792
|
const _DRel = "DeleteRule";
|
|
788
793
|
const _DRes = "DescribeRule";
|
|
794
|
+
const _DS = "DeleteSession";
|
|
789
795
|
const _DSI = "DataSetId";
|
|
790
796
|
const _DSIa = "DataSetIds";
|
|
791
797
|
const _DSK = "DisassociateSecurityKey";
|
|
@@ -798,6 +804,8 @@ const _DSPRes = "DescribeSecurityProfileResponse";
|
|
|
798
804
|
const _DSPRi = "DisassociateSecurityProfilesRequest";
|
|
799
805
|
const _DSPe = "DescribeSecurityProfile";
|
|
800
806
|
const _DSPi = "DisassociateSecurityProfiles";
|
|
807
|
+
const _DSR = "DeleteSessionRequest";
|
|
808
|
+
const _DSRe = "DeleteSessionResponse";
|
|
801
809
|
const _DST = "DataSnapshotTime";
|
|
802
810
|
const _DT = "DisconnectTimestamp";
|
|
803
811
|
const _DTA = "DataTableAttribute";
|
|
@@ -1029,10 +1037,11 @@ const _EFv = "EvaluationForm";
|
|
|
1029
1037
|
const _EGAIAAD = "EvaluationGenAIAnswerAnalysisDetails";
|
|
1030
1038
|
const _EHOO = "EffectiveHoursOfOperations";
|
|
1031
1039
|
const _EHOOL = "EffectiveHoursOfOperationList";
|
|
1032
|
-
const _EI = "
|
|
1040
|
+
const _EI = "EntityId";
|
|
1033
1041
|
const _EIC = "ExternalInvocationConfiguration";
|
|
1034
1042
|
const _EIU = "EventIngestionUrl";
|
|
1035
1043
|
const _EIn = "EndpointInfo";
|
|
1044
|
+
const _EIv = "EvaluationId";
|
|
1036
1045
|
const _EL = "ExportLocation";
|
|
1037
1046
|
const _EM = "ErrorMessage";
|
|
1038
1047
|
const _EMPT = "EmailMessagePlainText";
|
|
@@ -1663,6 +1672,7 @@ const _MRed = "MediaRegion";
|
|
|
1663
1672
|
const _MS = "MediaSource";
|
|
1664
1673
|
const _MSBC = "MaxSlotsByChannel";
|
|
1665
1674
|
const _MSD = "MaxSessionDuration";
|
|
1675
|
+
const _MSDM = "MaxSessionDurationMinutes";
|
|
1666
1676
|
const _MSLIB = "MaximumSizeLimitInBytes";
|
|
1667
1677
|
const _MSP = "MinScorePercentage";
|
|
1668
1678
|
const _MSPa = "MaxScorePercentage";
|
|
@@ -2227,14 +2237,15 @@ const _SHOOOR = "SearchHoursOfOperationOverridesRequest";
|
|
|
2227
2237
|
const _SHOOORe = "SearchHoursOfOperationOverridesResponse";
|
|
2228
2238
|
const _SHOOR = "SearchHoursOfOperationsRequest";
|
|
2229
2239
|
const _SHOORe = "SearchHoursOfOperationsResponse";
|
|
2230
|
-
const _SI = "
|
|
2240
|
+
const _SI = "SessionId";
|
|
2231
2241
|
const _SIC = "SignInConfig";
|
|
2232
2242
|
const _SID = "SessionInactivityDuration";
|
|
2233
2243
|
const _SIDL = "SignInDistributionList";
|
|
2244
|
+
const _SIDM = "SessionInactivityDurationMinutes";
|
|
2234
2245
|
const _SIDi = "SignInDistribution";
|
|
2235
2246
|
const _SIHE = "SessionInactivityHandlingEnabled";
|
|
2236
2247
|
const _SIU = "SignInUrl";
|
|
2237
|
-
const
|
|
2248
|
+
const _SIo = "SourceId";
|
|
2238
2249
|
const _SIt = "StreamingId";
|
|
2239
2250
|
const _SJI = "SamplingJobId";
|
|
2240
2251
|
const _SK = "SecurityKeys";
|
|
@@ -2272,8 +2283,8 @@ const _SPA = "SecurityProfileArn";
|
|
|
2272
2283
|
const _SPAR = "SearchPredefinedAttributesRequest";
|
|
2273
2284
|
const _SPARe = "SearchPredefinedAttributesResponse";
|
|
2274
2285
|
const _SPAe = "SearchPredefinedAttributes";
|
|
2275
|
-
const _SPI = "
|
|
2276
|
-
const _SPIe = "
|
|
2286
|
+
const _SPI = "SecurityProfileIds";
|
|
2287
|
+
const _SPIe = "SecurityProfileId";
|
|
2277
2288
|
const _SPIec = "SecurityProfileItem";
|
|
2278
2289
|
const _SPN = "SensitivePhoneNumber";
|
|
2279
2290
|
const _SPNA = "SourcePhoneNumberArn";
|
|
@@ -2389,8 +2400,9 @@ const _SWRTCC = "StartWebRTCContact";
|
|
|
2389
2400
|
const _SWRTCCR = "StartWebRTCContactRequest";
|
|
2390
2401
|
const _SWRTCCRt = "StartWebRTCContactResponse";
|
|
2391
2402
|
const _SWRe = "SearchWorkspacesResponse";
|
|
2392
|
-
const _Sc = "
|
|
2393
|
-
const _Sco = "
|
|
2403
|
+
const _Sc = "Scope";
|
|
2404
|
+
const _Sco = "Scores";
|
|
2405
|
+
const _Scor = "Score";
|
|
2394
2406
|
const _Se = "Settings";
|
|
2395
2407
|
const _Sec = "Section";
|
|
2396
2408
|
const _Seg = "Segments";
|
|
@@ -3072,9 +3084,10 @@ export const errorTypeRegistries = [
|
|
|
3072
3084
|
];
|
|
3073
3085
|
var AgentFirstName = [0, n0, _AFN, 8, 0];
|
|
3074
3086
|
var AgentLastName = [0, n0, _ALN, 8, 0];
|
|
3087
|
+
var AuthCode = [0, n0, _AC, 8, 0];
|
|
3075
3088
|
var AuthenticationError = [0, n0, _AE, 8, 0];
|
|
3076
3089
|
var AuthenticationErrorDescription = [0, n0, _AED, 8, 0];
|
|
3077
|
-
var AuthorizationCode = [0, n0,
|
|
3090
|
+
var AuthorizationCode = [0, n0, _ACu, 8, 0];
|
|
3078
3091
|
var Body = [0, n0, _B, 8, 0];
|
|
3079
3092
|
var CustomerIdNonEmpty = [0, n0, _CINE, 8, 0];
|
|
3080
3093
|
var Description = [0, n0, _D, 8, 0];
|
|
@@ -3477,6 +3490,11 @@ export var AuthenticationProfileSummary$ = [3, n0, _APS,
|
|
|
3477
3490
|
[_I, _A, _N, _ID, _LMT, _LMR],
|
|
3478
3491
|
[0, 0, 0, 2, 4, 0]
|
|
3479
3492
|
];
|
|
3493
|
+
export var AuthScope$ = [3, n0, _ASu,
|
|
3494
|
+
0,
|
|
3495
|
+
[_ET, _SPI, _EI, _DN],
|
|
3496
|
+
[0, 64 | 0, 0, 0], 1
|
|
3497
|
+
];
|
|
3480
3498
|
export var AutoAcceptConfig$ = [3, n0, _AACu,
|
|
3481
3499
|
0,
|
|
3482
3500
|
[_C, _AA, _AFCAA],
|
|
@@ -3927,6 +3945,16 @@ export var CreateAttachedFileResponse$ = [3, n0, _CAFRr,
|
|
|
3927
3945
|
[_FAi, _FIi, _CTr, _FS],
|
|
3928
3946
|
[0, 0, 0, 0]
|
|
3929
3947
|
];
|
|
3948
|
+
export var CreateAuthCodeRequest$ = [3, n0, _CACR,
|
|
3949
|
+
0,
|
|
3950
|
+
[_II, _Sc, _SIDM, _MSDM],
|
|
3951
|
+
[[0, 1], () => AuthScope$, 1, 1], 3
|
|
3952
|
+
];
|
|
3953
|
+
export var CreateAuthCodeResponse$ = [3, n0, _CACRr,
|
|
3954
|
+
0,
|
|
3955
|
+
[_AC, _SI, _ET, _EI],
|
|
3956
|
+
[[() => AuthCode, 0], 0, 0, 0]
|
|
3957
|
+
];
|
|
3930
3958
|
export var CreateCaseActionDefinition$ = [3, n0, _CCAD,
|
|
3931
3959
|
0,
|
|
3932
3960
|
[_Fie, _TI],
|
|
@@ -4014,7 +4042,7 @@ export var CreateDataTableResponse$ = [3, n0, _CDTRr,
|
|
|
4014
4042
|
];
|
|
4015
4043
|
export var CreateEmailAddressRequest$ = [3, n0, _CEAR,
|
|
4016
4044
|
0,
|
|
4017
|
-
[_II, _EA, _D,
|
|
4045
|
+
[_II, _EA, _D, _DNi, _Ta, _CT],
|
|
4018
4046
|
[[0, 1], [() => EmailAddress, 0], [() => Description, 0], [() => EmailAddressDisplayName, 0], 128 | 0, 0], 2
|
|
4019
4047
|
];
|
|
4020
4048
|
export var CreateEmailAddressResponse$ = [3, n0, _CEARr,
|
|
@@ -4174,7 +4202,7 @@ export var CreateSecurityProfileRequest$ = [3, n0, _CSPR,
|
|
|
4174
4202
|
];
|
|
4175
4203
|
export var CreateSecurityProfileResponse$ = [3, n0, _CSPRr,
|
|
4176
4204
|
0,
|
|
4177
|
-
[
|
|
4205
|
+
[_SPIe, _SPA],
|
|
4178
4206
|
[0, 0]
|
|
4179
4207
|
];
|
|
4180
4208
|
export var CreateTaskTemplateRequest$ = [3, n0, _CTTR,
|
|
@@ -4229,7 +4257,7 @@ export var CreateUserHierarchyGroupResponse$ = [3, n0, _CUHGRr,
|
|
|
4229
4257
|
];
|
|
4230
4258
|
export var CreateUserRequest$ = [3, n0, _CUR,
|
|
4231
4259
|
0,
|
|
4232
|
-
[_U,
|
|
4260
|
+
[_U, _SPI, _RPI, _II, _Pa, _IId, _PCh, _DUI, _HGI, _AACut, _ACWCf, _PNC, _PCC, _VEC, _Ta],
|
|
4233
4261
|
[0, 64 | 0, 0, [0, 1], [() => Password, 0], [() => UserIdentityInfo$, 0], [() => UserPhoneConfig$, 0], 0, 0, () => AutoAcceptConfigs, () => AfterContactWorkConfigs, [() => PhoneNumberConfigs, 0], () => PersistentConnectionConfigs, () => VoiceEnhancementConfigs, 128 | 0], 4
|
|
4234
4262
|
];
|
|
4235
4263
|
export var CreateUserResponse$ = [3, n0, _CURr,
|
|
@@ -4444,7 +4472,7 @@ export var DeleteAttachedFileResponse$ = [3, n0, _DAFRe,
|
|
|
4444
4472
|
];
|
|
4445
4473
|
export var DeleteContactEvaluationRequest$ = [3, n0, _DCER,
|
|
4446
4474
|
0,
|
|
4447
|
-
[_II,
|
|
4475
|
+
[_II, _EIv],
|
|
4448
4476
|
[[0, 1], [0, 1]], 2
|
|
4449
4477
|
];
|
|
4450
4478
|
export var DeleteContactFlowModuleAliasRequest$ = [3, n0, _DCFMAR,
|
|
@@ -4604,9 +4632,19 @@ export var DeleteRuleRequest$ = [3, n0, _DRR,
|
|
|
4604
4632
|
];
|
|
4605
4633
|
export var DeleteSecurityProfileRequest$ = [3, n0, _DSPR,
|
|
4606
4634
|
0,
|
|
4607
|
-
[_II,
|
|
4635
|
+
[_II, _SPIe],
|
|
4608
4636
|
[[0, 1], [0, 1]], 2
|
|
4609
4637
|
];
|
|
4638
|
+
export var DeleteSessionRequest$ = [3, n0, _DSR,
|
|
4639
|
+
0,
|
|
4640
|
+
[_II, _SI],
|
|
4641
|
+
[[0, 1], [0, 1]], 2
|
|
4642
|
+
];
|
|
4643
|
+
export var DeleteSessionResponse$ = [3, n0, _DSRe,
|
|
4644
|
+
0,
|
|
4645
|
+
[],
|
|
4646
|
+
[]
|
|
4647
|
+
];
|
|
4610
4648
|
export var DeleteTaskTemplateRequest$ = [3, n0, _DTTR,
|
|
4611
4649
|
0,
|
|
4612
4650
|
[_II, _TTIa],
|
|
@@ -4744,7 +4782,7 @@ export var DescribeAuthenticationProfileResponse$ = [3, n0, _DAPRe,
|
|
|
4744
4782
|
];
|
|
4745
4783
|
export var DescribeContactEvaluationRequest$ = [3, n0, _DCERe,
|
|
4746
4784
|
0,
|
|
4747
|
-
[_II,
|
|
4785
|
+
[_II, _EIv],
|
|
4748
4786
|
[[0, 1], [0, 1]], 2
|
|
4749
4787
|
];
|
|
4750
4788
|
export var DescribeContactEvaluationResponse$ = [3, n0, _DCERes,
|
|
@@ -4819,7 +4857,7 @@ export var DescribeEmailAddressRequest$ = [3, n0, _DEARes,
|
|
|
4819
4857
|
];
|
|
4820
4858
|
export var DescribeEmailAddressResponse$ = [3, n0, _DEAResc,
|
|
4821
4859
|
0,
|
|
4822
|
-
[_EAI, _EAA, _EA,
|
|
4860
|
+
[_EAI, _EAA, _EA, _DNi, _D, _CTrea, _MTo, _ACli, _Ta],
|
|
4823
4861
|
[0, 0, [() => EmailAddress, 0], [() => EmailAddressDisplayName, 0], [() => Description, 0], 0, 0, () => AliasConfigurationList, 128 | 0]
|
|
4824
4862
|
];
|
|
4825
4863
|
export var DescribeEvaluationFormRequest$ = [3, n0, _DEFRes,
|
|
@@ -4964,7 +5002,7 @@ export var DescribeRuleResponse$ = [3, n0, _DRRes,
|
|
|
4964
5002
|
];
|
|
4965
5003
|
export var DescribeSecurityProfileRequest$ = [3, n0, _DSPRe,
|
|
4966
5004
|
0,
|
|
4967
|
-
[
|
|
5005
|
+
[_SPIe, _II],
|
|
4968
5006
|
[[0, 1], [0, 1]], 2
|
|
4969
5007
|
];
|
|
4970
5008
|
export var DescribeSecurityProfileResponse$ = [3, n0, _DSPRes,
|
|
@@ -5219,12 +5257,12 @@ export var EmailAddressConfig$ = [3, n0, _EACm,
|
|
|
5219
5257
|
];
|
|
5220
5258
|
export var EmailAddressInfo$ = [3, n0, _EAIma,
|
|
5221
5259
|
0,
|
|
5222
|
-
[_EA,
|
|
5260
|
+
[_EA, _DNi],
|
|
5223
5261
|
[[() => EmailAddress, 0], [() => EmailAddressDisplayName, 0]], 1
|
|
5224
5262
|
];
|
|
5225
5263
|
export var EmailAddressMetadata$ = [3, n0, _EAM,
|
|
5226
5264
|
0,
|
|
5227
|
-
[_EAI, _EAA, _EA, _D,
|
|
5265
|
+
[_EAI, _EAA, _EA, _D, _DNi, _ACli],
|
|
5228
5266
|
[0, 0, [() => EmailAddress, 0], [() => Description, 0], [() => EmailAddressDisplayName, 0], () => AliasConfigurationList]
|
|
5229
5267
|
];
|
|
5230
5268
|
export var EmailAddressSearchCriteria$ = [3, n0, _EASC,
|
|
@@ -5254,7 +5292,7 @@ export var EmailMessageReference$ = [3, n0, _EMR,
|
|
|
5254
5292
|
];
|
|
5255
5293
|
export var EmailRecipient$ = [3, n0, _ERm,
|
|
5256
5294
|
0,
|
|
5257
|
-
[_Ad,
|
|
5295
|
+
[_Ad, _DNi],
|
|
5258
5296
|
[0, 0]
|
|
5259
5297
|
];
|
|
5260
5298
|
export var EmailReference$ = [3, n0, _ERma,
|
|
@@ -5284,7 +5322,7 @@ export var Endpoint$ = [3, n0, _End,
|
|
|
5284
5322
|
];
|
|
5285
5323
|
export var EndpointInfo$ = [3, n0, _EIn,
|
|
5286
5324
|
0,
|
|
5287
|
-
[_T, _Ad,
|
|
5325
|
+
[_T, _Ad, _DNi],
|
|
5288
5326
|
[0, 0, 0]
|
|
5289
5327
|
];
|
|
5290
5328
|
export var ErrorResult$ = [3, n0, _ERr,
|
|
@@ -5304,7 +5342,7 @@ export var EvaluateDataTableValuesResponse$ = [3, n0, _EDTVRv,
|
|
|
5304
5342
|
];
|
|
5305
5343
|
export var Evaluation$ = [3, n0, _Ev,
|
|
5306
5344
|
0,
|
|
5307
|
-
[
|
|
5345
|
+
[_EIv, _EAv, _Meta, _An, _Not, _St, _CTre, _LMT, _Sco, _ETv, _Ta],
|
|
5308
5346
|
[0, 0, () => EvaluationMetadata$, () => EvaluationAnswersOutputMap, () => EvaluationNotesMap, 0, 4, 4, () => EvaluationScoresMap, 0, 128 | 0], 8
|
|
5309
5347
|
];
|
|
5310
5348
|
export var EvaluationAcknowledgement$ = [3, n0, _EAva,
|
|
@@ -5394,7 +5432,7 @@ export var EvaluationFormMultiSelectQuestionAutomation$ = [3, n0, _EFMSQA,
|
|
|
5394
5432
|
];
|
|
5395
5433
|
export var EvaluationFormMultiSelectQuestionOption$ = [3, n0, _EFMSQO,
|
|
5396
5434
|
0,
|
|
5397
|
-
[_RIef, _Te,
|
|
5435
|
+
[_RIef, _Te, _Scor, _AFut, _AFCu, _PCo],
|
|
5398
5436
|
[0, 0, 1, 2, () => AutomaticFailConfiguration$, () => QuestionOptionPointsConfiguration$], 2
|
|
5399
5437
|
];
|
|
5400
5438
|
export var EvaluationFormMultiSelectQuestionProperties$ = [3, n0, _EFMSQP,
|
|
@@ -5404,7 +5442,7 @@ export var EvaluationFormMultiSelectQuestionProperties$ = [3, n0, _EFMSQP,
|
|
|
5404
5442
|
];
|
|
5405
5443
|
export var EvaluationFormNumericQuestionOption$ = [3, n0, _EFNQO,
|
|
5406
5444
|
0,
|
|
5407
|
-
[_MV, _MVa,
|
|
5445
|
+
[_MV, _MVa, _Scor, _AFut, _AFCu, _PCo],
|
|
5408
5446
|
[1, 1, 1, 2, () => AutomaticFailConfiguration$, () => QuestionOptionPointsConfiguration$], 2
|
|
5409
5447
|
];
|
|
5410
5448
|
export var EvaluationFormNumericQuestionProperties$ = [3, n0, _EFNQP,
|
|
@@ -5464,7 +5502,7 @@ export var EvaluationFormSingleSelectQuestionAutomation$ = [3, n0, _EFSSQA,
|
|
|
5464
5502
|
];
|
|
5465
5503
|
export var EvaluationFormSingleSelectQuestionOption$ = [3, n0, _EFSSQO,
|
|
5466
5504
|
0,
|
|
5467
|
-
[_RIef, _Te,
|
|
5505
|
+
[_RIef, _Te, _Scor, _AFut, _AFCu, _PCo],
|
|
5468
5506
|
[0, 0, 1, 2, () => AutomaticFailConfiguration$, () => QuestionOptionPointsConfiguration$], 2
|
|
5469
5507
|
];
|
|
5470
5508
|
export var EvaluationFormSingleSelectQuestionProperties$ = [3, n0, _EFSSQP,
|
|
@@ -5514,7 +5552,7 @@ export var EvaluationGenAIAnswerAnalysisDetails$ = [3, n0, _EGAIAAD,
|
|
|
5514
5552
|
];
|
|
5515
5553
|
export var EvaluationMetadata$ = [3, n0, _EMv,
|
|
5516
5554
|
0,
|
|
5517
|
-
[_CI, _EAval, _CAIo, _CSI,
|
|
5555
|
+
[_CI, _EAval, _CAIo, _CSI, _Scor, _AEu, _Ack, _Rev, _CP, _SJI],
|
|
5518
5556
|
[0, 0, 0, 0, () => EvaluationScore$, () => AutoEvaluationDetails$, () => EvaluationAcknowledgement$, () => EvaluationReviewMetadata$, () => EvaluationContactParticipant$, 0], 2
|
|
5519
5557
|
];
|
|
5520
5558
|
export var EvaluationNote$ = [3, n0, _EN,
|
|
@@ -5574,7 +5612,7 @@ export var EvaluationSearchMetadata$ = [3, n0, _ESM,
|
|
|
5574
5612
|
];
|
|
5575
5613
|
export var EvaluationSearchSummary$ = [3, n0, _ESS,
|
|
5576
5614
|
0,
|
|
5577
|
-
[
|
|
5615
|
+
[_EIv, _EAv, _EFV, _Meta, _St, _CTre, _LMT, _EFI, _EFT, _ETv, _Ta],
|
|
5578
5616
|
[0, 0, 1, () => EvaluationSearchMetadata$, 0, 4, 4, 0, 0, 0, 128 | 0], 7
|
|
5579
5617
|
];
|
|
5580
5618
|
export var EvaluationSuggestedAnswer$ = [3, n0, _ESA,
|
|
@@ -5589,7 +5627,7 @@ export var EvaluationSuggestedAnswerTranscriptMillisecondOffsets$ = [3, n0, _ESA
|
|
|
5589
5627
|
];
|
|
5590
5628
|
export var EvaluationSummary$ = [3, n0, _ESv,
|
|
5591
5629
|
0,
|
|
5592
|
-
[
|
|
5630
|
+
[_EIv, _EAv, _EFT, _EFI, _St, _EAval, _CTre, _LMT, _CSI, _AEE, _AES, _Scor, _Ack, _ETv, _CP],
|
|
5593
5631
|
[0, 0, 0, 0, 0, 0, 4, 4, 0, 2, 0, () => EvaluationScore$, () => EvaluationAcknowledgementSummary$, 0, () => EvaluationContactParticipant$], 8
|
|
5594
5632
|
];
|
|
5595
5633
|
export var EvaluationTranscriptPointOfInterest$ = [3, n0, _ETPOI,
|
|
@@ -5759,8 +5797,8 @@ export var GetFederationTokenRequest$ = [3, n0, _GFTR,
|
|
|
5759
5797
|
];
|
|
5760
5798
|
export var GetFederationTokenResponse$ = [3, n0, _GFTRe,
|
|
5761
5799
|
0,
|
|
5762
|
-
[
|
|
5763
|
-
[[() => Credentials$, 0], 0
|
|
5800
|
+
[_UI, _UA, _Cred, _SIU],
|
|
5801
|
+
[0, 0, [() => Credentials$, 0], 0]
|
|
5764
5802
|
];
|
|
5765
5803
|
export var GetFlowAssociationRequest$ = [3, n0, _GFAR,
|
|
5766
5804
|
0,
|
|
@@ -6569,7 +6607,7 @@ export var ListSecurityKeysResponse$ = [3, n0, _LSKRi,
|
|
|
6569
6607
|
];
|
|
6570
6608
|
export var ListSecurityProfileApplicationsRequest$ = [3, n0, _LSPAR,
|
|
6571
6609
|
0,
|
|
6572
|
-
[
|
|
6610
|
+
[_SPIe, _II, _NT, _MR],
|
|
6573
6611
|
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
6574
6612
|
];
|
|
6575
6613
|
export var ListSecurityProfileApplicationsResponse$ = [3, n0, _LSPARi,
|
|
@@ -6579,7 +6617,7 @@ export var ListSecurityProfileApplicationsResponse$ = [3, n0, _LSPARi,
|
|
|
6579
6617
|
];
|
|
6580
6618
|
export var ListSecurityProfileFlowModulesRequest$ = [3, n0, _LSPFMR,
|
|
6581
6619
|
0,
|
|
6582
|
-
[
|
|
6620
|
+
[_SPIe, _II, _NT, _MR],
|
|
6583
6621
|
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
6584
6622
|
];
|
|
6585
6623
|
export var ListSecurityProfileFlowModulesResponse$ = [3, n0, _LSPFMRi,
|
|
@@ -6589,7 +6627,7 @@ export var ListSecurityProfileFlowModulesResponse$ = [3, n0, _LSPFMRi,
|
|
|
6589
6627
|
];
|
|
6590
6628
|
export var ListSecurityProfilePermissionsRequest$ = [3, n0, _LSPPR,
|
|
6591
6629
|
0,
|
|
6592
|
-
[
|
|
6630
|
+
[_SPIe, _II, _NT, _MR],
|
|
6593
6631
|
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
6594
6632
|
];
|
|
6595
6633
|
export var ListSecurityProfilePermissionsResponse$ = [3, n0, _LSPPRi,
|
|
@@ -6994,12 +7032,12 @@ export var ParticipantConfiguration$ = [3, n0, _PCart,
|
|
|
6994
7032
|
];
|
|
6995
7033
|
export var ParticipantDetails$ = [3, n0, _PD,
|
|
6996
7034
|
0,
|
|
6997
|
-
[
|
|
7035
|
+
[_DNi],
|
|
6998
7036
|
[0], 1
|
|
6999
7037
|
];
|
|
7000
7038
|
export var ParticipantDetailsToAdd$ = [3, n0, _PDTA,
|
|
7001
7039
|
0,
|
|
7002
|
-
[_PR,
|
|
7040
|
+
[_PR, _DNi, _PCar],
|
|
7003
7041
|
[0, 0, () => ParticipantCapabilities$]
|
|
7004
7042
|
];
|
|
7005
7043
|
export var ParticipantMetrics$ = [3, n0, _PM,
|
|
@@ -7274,7 +7312,7 @@ export var RealTimeContactAnalysisPointOfInterest$ = [3, n0, _RTCAPOI,
|
|
|
7274
7312
|
];
|
|
7275
7313
|
export var RealTimeContactAnalysisSegmentAttachments$ = [3, n0, _RTCASA,
|
|
7276
7314
|
0,
|
|
7277
|
-
[_I, _PI, _PR, _Atta, _Time,
|
|
7315
|
+
[_I, _PI, _PR, _Atta, _Time, _DNi],
|
|
7278
7316
|
[0, 0, 0, () => RealTimeContactAnalysisAttachments, () => RealTimeContactAnalysisTimeData$, 0], 5
|
|
7279
7317
|
];
|
|
7280
7318
|
export var RealTimeContactAnalysisSegmentCategories$ = [3, n0, _RTCASC,
|
|
@@ -7284,7 +7322,7 @@ export var RealTimeContactAnalysisSegmentCategories$ = [3, n0, _RTCASC,
|
|
|
7284
7322
|
];
|
|
7285
7323
|
export var RealTimeContactAnalysisSegmentEvent$ = [3, n0, _RTCASE,
|
|
7286
7324
|
0,
|
|
7287
|
-
[_I, _ETve, _Time, _PI, _PR,
|
|
7325
|
+
[_I, _ETve, _Time, _PI, _PR, _DNi],
|
|
7288
7326
|
[0, 0, () => RealTimeContactAnalysisTimeData$, 0, 0, 0], 3
|
|
7289
7327
|
];
|
|
7290
7328
|
export var RealTimeContactAnalysisSegmentIssues$ = [3, n0, _RTCASI,
|
|
@@ -7299,7 +7337,7 @@ export var RealTimeContactAnalysisSegmentPostContactSummary$ = [3, n0, _RTCASPCS
|
|
|
7299
7337
|
];
|
|
7300
7338
|
export var RealTimeContactAnalysisSegmentTranscript$ = [3, n0, _RTCAST,
|
|
7301
7339
|
0,
|
|
7302
|
-
[_I, _PI, _PR, _Co, _Time,
|
|
7340
|
+
[_I, _PI, _PR, _Co, _Time, _DNi, _CTon, _Red, _Sen],
|
|
7303
7341
|
[0, 0, 0, 0, () => RealTimeContactAnalysisTimeData$, 0, 0, () => RealTimeContactAnalysisTranscriptItemRedaction$, 0], 5
|
|
7304
7342
|
];
|
|
7305
7343
|
export var RealTimeContactAnalysisTranscriptItemRedaction$ = [3, n0, _RTCATIR,
|
|
@@ -7319,7 +7357,7 @@ export var RealTimeContactAnalysisTranscriptItemWithContent$ = [3, n0, _RTCATIWC
|
|
|
7319
7357
|
];
|
|
7320
7358
|
export var RecommenderConfig$ = [3, n0, _RCe,
|
|
7321
7359
|
0,
|
|
7322
|
-
[
|
|
7360
|
+
[_DN, _RN, _Conte],
|
|
7323
7361
|
[0, 0, 128 | 0], 2
|
|
7324
7362
|
];
|
|
7325
7363
|
export var RecordingInfo$ = [3, n0, _RIeco,
|
|
@@ -7869,7 +7907,7 @@ export var SegmentAttributeValue$ = [3, n0, _SAV,
|
|
|
7869
7907
|
];
|
|
7870
7908
|
export var SendChatIntegrationEventRequest$ = [3, n0, _SCIER,
|
|
7871
7909
|
0,
|
|
7872
|
-
[
|
|
7910
|
+
[_SIo, _DIe, _Eve, _Sub, _NSD],
|
|
7873
7911
|
[0, 0, () => ChatEvent$, 0, () => NewSessionDetails$], 3
|
|
7874
7912
|
];
|
|
7875
7913
|
export var SendChatIntegrationEventResponse$ = [3, n0, _SCIERe,
|
|
@@ -7894,7 +7932,7 @@ export var SendOutboundEmailResponse$ = [3, n0, _SOERe,
|
|
|
7894
7932
|
];
|
|
7895
7933
|
export var SendOutboundWebNotificationRequest$ = [3, n0, _SOWNR,
|
|
7896
7934
|
0,
|
|
7897
|
-
[_II, _BIr,
|
|
7935
|
+
[_II, _BIr, _SI, _EAx, _So, _Des, _Co, _CT],
|
|
7898
7936
|
[[0, 1], 0, 0, 4, () => WebNotificationSource$, () => WidgetDestination$, () => WebNotificationContent$, [0, 4]], 7
|
|
7899
7937
|
];
|
|
7900
7938
|
export var SendOutboundWebNotificationResponse$ = [3, n0, _SOWNRe,
|
|
@@ -7969,7 +8007,7 @@ export var StartContactEvaluationRequest$ = [3, n0, _SCERt,
|
|
|
7969
8007
|
];
|
|
7970
8008
|
export var StartContactEvaluationResponse$ = [3, n0, _SCERta,
|
|
7971
8009
|
0,
|
|
7972
|
-
[
|
|
8010
|
+
[_EIv, _EAv],
|
|
7973
8011
|
[0, 0], 2
|
|
7974
8012
|
];
|
|
7975
8013
|
export var StartContactMediaProcessingRequest$ = [3, n0, _SCMPR,
|
|
@@ -8169,12 +8207,12 @@ export var SubmitAutoEvaluationActionDefinition$ = [3, n0, _SAEAD,
|
|
|
8169
8207
|
];
|
|
8170
8208
|
export var SubmitContactEvaluationRequest$ = [3, n0, _SCERu,
|
|
8171
8209
|
0,
|
|
8172
|
-
[_II,
|
|
8210
|
+
[_II, _EIv, _An, _Not, _SB],
|
|
8173
8211
|
[[0, 1], [0, 1], () => EvaluationAnswersInputMap, () => EvaluationNotesMap, () => EvaluatorUserUnion$], 2
|
|
8174
8212
|
];
|
|
8175
8213
|
export var SubmitContactEvaluationResponse$ = [3, n0, _SCERub,
|
|
8176
8214
|
0,
|
|
8177
|
-
[
|
|
8215
|
+
[_EIv, _EAv],
|
|
8178
8216
|
[0, 0], 2
|
|
8179
8217
|
];
|
|
8180
8218
|
export var SuccessfulBatchAssociationSummary$ = [3, n0, _SBAS,
|
|
@@ -8419,12 +8457,12 @@ export var UpdateContactAttributesResponse$ = [3, n0, _UCARp,
|
|
|
8419
8457
|
];
|
|
8420
8458
|
export var UpdateContactEvaluationRequest$ = [3, n0, _UCER,
|
|
8421
8459
|
0,
|
|
8422
|
-
[_II,
|
|
8460
|
+
[_II, _EIv, _An, _Not, _UB],
|
|
8423
8461
|
[[0, 1], [0, 1], () => EvaluationAnswersInputMap, () => EvaluationNotesMap, () => EvaluatorUserUnion$], 2
|
|
8424
8462
|
];
|
|
8425
8463
|
export var UpdateContactEvaluationResponse$ = [3, n0, _UCERp,
|
|
8426
8464
|
0,
|
|
8427
|
-
[
|
|
8465
|
+
[_EIv, _EAv],
|
|
8428
8466
|
[0, 0], 2
|
|
8429
8467
|
];
|
|
8430
8468
|
export var UpdateContactFlowContentRequest$ = [3, n0, _UCFCR,
|
|
@@ -8549,7 +8587,7 @@ export var UpdateDataTablePrimaryValuesResponse$ = [3, n0, _UDTPVRp,
|
|
|
8549
8587
|
];
|
|
8550
8588
|
export var UpdateEmailAddressMetadataRequest$ = [3, n0, _UEAMR,
|
|
8551
8589
|
0,
|
|
8552
|
-
[_II, _EAI, _D,
|
|
8590
|
+
[_II, _EAI, _D, _DNi, _CT],
|
|
8553
8591
|
[[0, 1], [0, 1], [() => Description, 0], [() => EmailAddressDisplayName, 0], 0], 2
|
|
8554
8592
|
];
|
|
8555
8593
|
export var UpdateEmailAddressMetadataResponse$ = [3, n0, _UEAMRp,
|
|
@@ -8719,7 +8757,7 @@ export var UpdateRuleRequest$ = [3, n0, _URRp,
|
|
|
8719
8757
|
];
|
|
8720
8758
|
export var UpdateSecurityProfileRequest$ = [3, n0, _USPR,
|
|
8721
8759
|
0,
|
|
8722
|
-
[
|
|
8760
|
+
[_SPIe, _II, _D, _Pe, _AACT, _TRR, _App, _HRR, _AACHGI, _AFM, _GACC],
|
|
8723
8761
|
[[0, 1], [0, 1], 0, 64 | 0, 128 | 0, 64 | 0, () => Applications, 64 | 0, 0, () => AllowedFlowModules, () => GranularAccessControlConfiguration$], 2
|
|
8724
8762
|
];
|
|
8725
8763
|
export var UpdateTaskTemplateRequest$ = [3, n0, _UTTR,
|
|
@@ -8804,7 +8842,7 @@ export var UpdateUserRoutingProfileRequest$ = [3, n0, _UURPR,
|
|
|
8804
8842
|
];
|
|
8805
8843
|
export var UpdateUserSecurityProfilesRequest$ = [3, n0, _UUSPR,
|
|
8806
8844
|
0,
|
|
8807
|
-
[
|
|
8845
|
+
[_SPI, _UI, _II],
|
|
8808
8846
|
[64 | 0, [0, 1], [0, 1]], 3
|
|
8809
8847
|
];
|
|
8810
8848
|
export var UpdateViewContentRequest$ = [3, n0, _UVCR,
|
|
@@ -8884,7 +8922,7 @@ export var UseCase$ = [3, n0, _UCs,
|
|
|
8884
8922
|
];
|
|
8885
8923
|
export var User$ = [3, n0, _Us,
|
|
8886
8924
|
0,
|
|
8887
|
-
[_I, _A, _U, _IId, _PCh, _DUI,
|
|
8925
|
+
[_I, _A, _U, _IId, _PCh, _DUI, _SPI, _RPI, _HGI, _Ta, _AACut, _ACWCf, _PNC, _PCC, _VEC, _LMT, _LMR],
|
|
8888
8926
|
[0, 0, 0, [() => UserIdentityInfo$, 0], [() => UserPhoneConfig$, 0], 0, 64 | 0, 0, 0, 128 | 0, () => AutoAcceptConfigs, () => AfterContactWorkConfigs, [() => PhoneNumberConfigs, 0], () => PersistentConnectionConfigs, () => VoiceEnhancementConfigs, 4, 0]
|
|
8889
8927
|
];
|
|
8890
8928
|
export var UserData$ = [3, n0, _UD,
|
|
@@ -8964,7 +9002,7 @@ export var UserSearchFilter$ = [3, n0, _USF,
|
|
|
8964
9002
|
];
|
|
8965
9003
|
export var UserSearchSummary$ = [3, n0, _USS,
|
|
8966
9004
|
0,
|
|
8967
|
-
[_A, _DUI, _HGI, _I, _IId, _PCh, _RPI,
|
|
9005
|
+
[_A, _DUI, _HGI, _I, _IId, _PCh, _RPI, _SPI, _Ta, _U, _AACut, _ACWCf, _PNC, _PCC, _VEC],
|
|
8968
9006
|
[0, 0, 0, 0, [() => UserIdentityInfoLite$, 0], [() => UserPhoneConfig$, 0], 0, 64 | 0, 128 | 0, 0, () => AutoAcceptConfigs, () => AfterContactWorkConfigs, [() => PhoneNumberConfigs, 0], () => PersistentConnectionConfigs, () => VoiceEnhancementConfigs]
|
|
8969
9007
|
];
|
|
8970
9008
|
export var UserSummary$ = [3, n0, _US,
|
|
@@ -10193,6 +10231,9 @@ export var CreateAgentStatus$ = [9, n0, _CAS,
|
|
|
10193
10231
|
export var CreateAttachedFile$ = [9, n0, _CAF,
|
|
10194
10232
|
{ [_h]: ["PUT", "/attached-files/{InstanceId}/files", 200] }, () => CreateAttachedFileRequest$, () => CreateAttachedFileResponse$
|
|
10195
10233
|
];
|
|
10234
|
+
export var CreateAuthCode$ = [9, n0, _CAC,
|
|
10235
|
+
{ [_h]: ["POST", "/auth/code/{InstanceId}", 200] }, () => CreateAuthCodeRequest$, () => CreateAuthCodeResponse$
|
|
10236
|
+
];
|
|
10196
10237
|
export var CreateContact$ = [9, n0, _CCr,
|
|
10197
10238
|
{ [_h]: ["PUT", "/contact/create-contact", 200] }, () => CreateContactRequest$, () => CreateContactResponse$
|
|
10198
10239
|
];
|
|
@@ -10376,6 +10417,9 @@ export var DeleteRule$ = [9, n0, _DRel,
|
|
|
10376
10417
|
export var DeleteSecurityProfile$ = [9, n0, _DSP,
|
|
10377
10418
|
{ [_h]: ["DELETE", "/security-profiles/{InstanceId}/{SecurityProfileId}", 200] }, () => DeleteSecurityProfileRequest$, () => __Unit
|
|
10378
10419
|
];
|
|
10420
|
+
export var DeleteSession$ = [9, n0, _DS,
|
|
10421
|
+
{ [_h]: ["DELETE", "/auth/sessions/{InstanceId}/{SessionId}", 200] }, () => DeleteSessionRequest$, () => DeleteSessionResponse$
|
|
10422
|
+
];
|
|
10379
10423
|
export var DeleteTaskTemplate$ = [9, n0, _DTT,
|
|
10380
10424
|
{ [_h]: ["DELETE", "/instance/{InstanceId}/task/template/{TaskTemplateId}", 200] }, () => DeleteTaskTemplateRequest$, () => DeleteTaskTemplateResponse$
|
|
10381
10425
|
];
|
package/dist-types/Connect.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ import { type ClaimPhoneNumberCommandInput, type ClaimPhoneNumberCommandOutput }
|
|
|
33
33
|
import { type CompleteAttachedFileUploadCommandInput, type CompleteAttachedFileUploadCommandOutput } from "./commands/CompleteAttachedFileUploadCommand";
|
|
34
34
|
import { type CreateAgentStatusCommandInput, type CreateAgentStatusCommandOutput } from "./commands/CreateAgentStatusCommand";
|
|
35
35
|
import { type CreateAttachedFileCommandInput, type CreateAttachedFileCommandOutput } from "./commands/CreateAttachedFileCommand";
|
|
36
|
+
import { type CreateAuthCodeCommandInput, type CreateAuthCodeCommandOutput } from "./commands/CreateAuthCodeCommand";
|
|
36
37
|
import { type CreateContactCommandInput, type CreateContactCommandOutput } from "./commands/CreateContactCommand";
|
|
37
38
|
import { type CreateContactFlowCommandInput, type CreateContactFlowCommandOutput } from "./commands/CreateContactFlowCommand";
|
|
38
39
|
import { type CreateContactFlowModuleAliasCommandInput, type CreateContactFlowModuleAliasCommandOutput } from "./commands/CreateContactFlowModuleAliasCommand";
|
|
@@ -94,6 +95,7 @@ import { type DeleteQuickConnectCommandInput, type DeleteQuickConnectCommandOutp
|
|
|
94
95
|
import { type DeleteRoutingProfileCommandInput, type DeleteRoutingProfileCommandOutput } from "./commands/DeleteRoutingProfileCommand";
|
|
95
96
|
import { type DeleteRuleCommandInput, type DeleteRuleCommandOutput } from "./commands/DeleteRuleCommand";
|
|
96
97
|
import { type DeleteSecurityProfileCommandInput, type DeleteSecurityProfileCommandOutput } from "./commands/DeleteSecurityProfileCommand";
|
|
98
|
+
import { type DeleteSessionCommandInput, type DeleteSessionCommandOutput } from "./commands/DeleteSessionCommand";
|
|
97
99
|
import { type DeleteTaskTemplateCommandInput, type DeleteTaskTemplateCommandOutput } from "./commands/DeleteTaskTemplateCommand";
|
|
98
100
|
import { type DeleteTestCaseCommandInput, type DeleteTestCaseCommandOutput } from "./commands/DeleteTestCaseCommand";
|
|
99
101
|
import { type DeleteTrafficDistributionGroupCommandInput, type DeleteTrafficDistributionGroupCommandOutput } from "./commands/DeleteTrafficDistributionGroupCommand";
|
|
@@ -580,6 +582,12 @@ export interface Connect {
|
|
|
580
582
|
createAttachedFile(args: CreateAttachedFileCommandInput, options?: __HttpHandlerOptions): Promise<CreateAttachedFileCommandOutput>;
|
|
581
583
|
createAttachedFile(args: CreateAttachedFileCommandInput, cb: (err: any, data?: CreateAttachedFileCommandOutput) => void): void;
|
|
582
584
|
createAttachedFile(args: CreateAttachedFileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAttachedFileCommandOutput) => void): void;
|
|
585
|
+
/**
|
|
586
|
+
* @see {@link CreateAuthCodeCommand}
|
|
587
|
+
*/
|
|
588
|
+
createAuthCode(args: CreateAuthCodeCommandInput, options?: __HttpHandlerOptions): Promise<CreateAuthCodeCommandOutput>;
|
|
589
|
+
createAuthCode(args: CreateAuthCodeCommandInput, cb: (err: any, data?: CreateAuthCodeCommandOutput) => void): void;
|
|
590
|
+
createAuthCode(args: CreateAuthCodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAuthCodeCommandOutput) => void): void;
|
|
583
591
|
/**
|
|
584
592
|
* @see {@link CreateContactCommand}
|
|
585
593
|
*/
|
|
@@ -946,6 +954,12 @@ export interface Connect {
|
|
|
946
954
|
deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSecurityProfileCommandOutput>;
|
|
947
955
|
deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, cb: (err: any, data?: DeleteSecurityProfileCommandOutput) => void): void;
|
|
948
956
|
deleteSecurityProfile(args: DeleteSecurityProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSecurityProfileCommandOutput) => void): void;
|
|
957
|
+
/**
|
|
958
|
+
* @see {@link DeleteSessionCommand}
|
|
959
|
+
*/
|
|
960
|
+
deleteSession(args: DeleteSessionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSessionCommandOutput>;
|
|
961
|
+
deleteSession(args: DeleteSessionCommandInput, cb: (err: any, data?: DeleteSessionCommandOutput) => void): void;
|
|
962
|
+
deleteSession(args: DeleteSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSessionCommandOutput) => void): void;
|
|
949
963
|
/**
|
|
950
964
|
* @see {@link DeleteTaskTemplateCommand}
|
|
951
965
|
*/
|