@aws-sdk/client-connect 3.552.0 → 3.554.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +67 -64
- package/dist-es/models/models_0.js +1 -239
- package/dist-es/models/models_1.js +239 -0
- package/dist-es/protocols/Aws_restJson1.js +2 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +4 -1
- package/dist-types/commands/DescribeRuleCommand.d.ts +4 -1
- package/dist-types/commands/ListRulesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRuleCommand.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +18 -249
- package/dist-types/models/models_1.d.ts +249 -19
- package/dist-types/models/models_2.d.ts +18 -3
- package/dist-types/ts3.4/models/models_0.d.ts +5 -241
- package/dist-types/ts3.4/models/models_1.d.ts +241 -5
- package/dist-types/ts3.4/models/models_2.d.ts +6 -1
- package/package.json +4 -4
|
@@ -51,7 +51,7 @@ declare const DescribeRuleCommand_base: {
|
|
|
51
51
|
* // Function: "STRING_VALUE", // required
|
|
52
52
|
* // Actions: [ // RuleActions // required
|
|
53
53
|
* // { // RuleAction
|
|
54
|
-
* // ActionType: "CREATE_TASK" || "ASSIGN_CONTACT_CATEGORY" || "GENERATE_EVENTBRIDGE_EVENT" || "SEND_NOTIFICATION" || "CREATE_CASE" || "UPDATE_CASE" || "END_ASSOCIATED_TASKS", // required
|
|
54
|
+
* // ActionType: "CREATE_TASK" || "ASSIGN_CONTACT_CATEGORY" || "GENERATE_EVENTBRIDGE_EVENT" || "SEND_NOTIFICATION" || "CREATE_CASE" || "UPDATE_CASE" || "END_ASSOCIATED_TASKS" || "SUBMIT_AUTO_EVALUATION", // required
|
|
55
55
|
* // TaskAction: { // TaskActionDefinition
|
|
56
56
|
* // Name: "STRING_VALUE", // required
|
|
57
57
|
* // Description: "STRING_VALUE",
|
|
@@ -109,6 +109,9 @@ declare const DescribeRuleCommand_base: {
|
|
|
109
109
|
* // ],
|
|
110
110
|
* // },
|
|
111
111
|
* // EndAssociatedTasksAction: {},
|
|
112
|
+
* // SubmitAutoEvaluationAction: { // SubmitAutoEvaluationActionDefinition
|
|
113
|
+
* // EvaluationFormId: "STRING_VALUE", // required
|
|
114
|
+
* // },
|
|
112
115
|
* // },
|
|
113
116
|
* // ],
|
|
114
117
|
* // PublishStatus: "DRAFT" || "PUBLISHED", // required
|
|
@@ -52,7 +52,7 @@ declare const ListRulesCommand_base: {
|
|
|
52
52
|
* // PublishStatus: "DRAFT" || "PUBLISHED", // required
|
|
53
53
|
* // ActionSummaries: [ // ActionSummaries // required
|
|
54
54
|
* // { // ActionSummary
|
|
55
|
-
* // ActionType: "CREATE_TASK" || "ASSIGN_CONTACT_CATEGORY" || "GENERATE_EVENTBRIDGE_EVENT" || "SEND_NOTIFICATION" || "CREATE_CASE" || "UPDATE_CASE" || "END_ASSOCIATED_TASKS", // required
|
|
55
|
+
* // ActionType: "CREATE_TASK" || "ASSIGN_CONTACT_CATEGORY" || "GENERATE_EVENTBRIDGE_EVENT" || "SEND_NOTIFICATION" || "CREATE_CASE" || "UPDATE_CASE" || "END_ASSOCIATED_TASKS" || "SUBMIT_AUTO_EVALUATION", // required
|
|
56
56
|
* // },
|
|
57
57
|
* // ],
|
|
58
58
|
* // CreatedTime: new Date("TIMESTAMP"), // required
|
|
@@ -42,7 +42,7 @@ declare const UpdateRuleCommand_base: {
|
|
|
42
42
|
* Function: "STRING_VALUE", // required
|
|
43
43
|
* Actions: [ // RuleActions // required
|
|
44
44
|
* { // RuleAction
|
|
45
|
-
* ActionType: "CREATE_TASK" || "ASSIGN_CONTACT_CATEGORY" || "GENERATE_EVENTBRIDGE_EVENT" || "SEND_NOTIFICATION" || "CREATE_CASE" || "UPDATE_CASE" || "END_ASSOCIATED_TASKS", // required
|
|
45
|
+
* ActionType: "CREATE_TASK" || "ASSIGN_CONTACT_CATEGORY" || "GENERATE_EVENTBRIDGE_EVENT" || "SEND_NOTIFICATION" || "CREATE_CASE" || "UPDATE_CASE" || "END_ASSOCIATED_TASKS" || "SUBMIT_AUTO_EVALUATION", // required
|
|
46
46
|
* TaskAction: { // TaskActionDefinition
|
|
47
47
|
* Name: "STRING_VALUE", // required
|
|
48
48
|
* Description: "STRING_VALUE",
|
|
@@ -100,6 +100,9 @@ declare const UpdateRuleCommand_base: {
|
|
|
100
100
|
* ],
|
|
101
101
|
* },
|
|
102
102
|
* EndAssociatedTasksAction: {},
|
|
103
|
+
* SubmitAutoEvaluationAction: { // SubmitAutoEvaluationActionDefinition
|
|
104
|
+
* EvaluationFormId: "STRING_VALUE", // required
|
|
105
|
+
* },
|
|
103
106
|
* },
|
|
104
107
|
* ],
|
|
105
108
|
* PublishStatus: "DRAFT" || "PUBLISHED", // required
|
|
@@ -24,6 +24,7 @@ export declare const ActionType: {
|
|
|
24
24
|
readonly END_ASSOCIATED_TASKS: "END_ASSOCIATED_TASKS";
|
|
25
25
|
readonly GENERATE_EVENTBRIDGE_EVENT: "GENERATE_EVENTBRIDGE_EVENT";
|
|
26
26
|
readonly SEND_NOTIFICATION: "SEND_NOTIFICATION";
|
|
27
|
+
readonly SUBMIT_AUTO_EVALUATION: "SUBMIT_AUTO_EVALUATION";
|
|
27
28
|
readonly UPDATE_CASE: "UPDATE_CASE";
|
|
28
29
|
};
|
|
29
30
|
/**
|
|
@@ -3461,6 +3462,17 @@ export interface SendNotificationActionDefinition {
|
|
|
3461
3462
|
*/
|
|
3462
3463
|
Recipient: NotificationRecipientType | undefined;
|
|
3463
3464
|
}
|
|
3465
|
+
/**
|
|
3466
|
+
* <p>Information about the submit automated evaluation action.</p>
|
|
3467
|
+
* @public
|
|
3468
|
+
*/
|
|
3469
|
+
export interface SubmitAutoEvaluationActionDefinition {
|
|
3470
|
+
/**
|
|
3471
|
+
* <p>The identifier of the auto-evaluation enabled form.</p>
|
|
3472
|
+
* @public
|
|
3473
|
+
*/
|
|
3474
|
+
EvaluationFormId: string | undefined;
|
|
3475
|
+
}
|
|
3464
3476
|
/**
|
|
3465
3477
|
* @public
|
|
3466
3478
|
* @enum
|
|
@@ -3607,6 +3619,11 @@ export interface RuleAction {
|
|
|
3607
3619
|
* @public
|
|
3608
3620
|
*/
|
|
3609
3621
|
EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition;
|
|
3622
|
+
/**
|
|
3623
|
+
* <p>Information about the submit automated evaluation action.</p>
|
|
3624
|
+
* @public
|
|
3625
|
+
*/
|
|
3626
|
+
SubmitAutoEvaluationAction?: SubmitAutoEvaluationActionDefinition;
|
|
3610
3627
|
}
|
|
3611
3628
|
/**
|
|
3612
3629
|
* @public
|
|
@@ -3779,8 +3796,7 @@ export interface CreateSecurityProfileRequest {
|
|
|
3779
3796
|
*/
|
|
3780
3797
|
TagRestrictedResources?: string[];
|
|
3781
3798
|
/**
|
|
3782
|
-
* <p>
|
|
3783
|
-
* <p>A list of third-party applications that the security profile will give access to.</p>
|
|
3799
|
+
* <p>A list of third-party applications that the security profile will give access to.</p>
|
|
3784
3800
|
* @public
|
|
3785
3801
|
*/
|
|
3786
3802
|
Applications?: Application[];
|
|
@@ -6170,253 +6186,6 @@ export interface DescribePhoneNumberRequest {
|
|
|
6170
6186
|
*/
|
|
6171
6187
|
PhoneNumberId: string | undefined;
|
|
6172
6188
|
}
|
|
6173
|
-
/**
|
|
6174
|
-
* @public
|
|
6175
|
-
* @enum
|
|
6176
|
-
*/
|
|
6177
|
-
export declare const PhoneNumberCountryCode: {
|
|
6178
|
-
readonly AD: "AD";
|
|
6179
|
-
readonly AE: "AE";
|
|
6180
|
-
readonly AF: "AF";
|
|
6181
|
-
readonly AG: "AG";
|
|
6182
|
-
readonly AI: "AI";
|
|
6183
|
-
readonly AL: "AL";
|
|
6184
|
-
readonly AM: "AM";
|
|
6185
|
-
readonly AN: "AN";
|
|
6186
|
-
readonly AO: "AO";
|
|
6187
|
-
readonly AQ: "AQ";
|
|
6188
|
-
readonly AR: "AR";
|
|
6189
|
-
readonly AS: "AS";
|
|
6190
|
-
readonly AT: "AT";
|
|
6191
|
-
readonly AU: "AU";
|
|
6192
|
-
readonly AW: "AW";
|
|
6193
|
-
readonly AZ: "AZ";
|
|
6194
|
-
readonly BA: "BA";
|
|
6195
|
-
readonly BB: "BB";
|
|
6196
|
-
readonly BD: "BD";
|
|
6197
|
-
readonly BE: "BE";
|
|
6198
|
-
readonly BF: "BF";
|
|
6199
|
-
readonly BG: "BG";
|
|
6200
|
-
readonly BH: "BH";
|
|
6201
|
-
readonly BI: "BI";
|
|
6202
|
-
readonly BJ: "BJ";
|
|
6203
|
-
readonly BL: "BL";
|
|
6204
|
-
readonly BM: "BM";
|
|
6205
|
-
readonly BN: "BN";
|
|
6206
|
-
readonly BO: "BO";
|
|
6207
|
-
readonly BR: "BR";
|
|
6208
|
-
readonly BS: "BS";
|
|
6209
|
-
readonly BT: "BT";
|
|
6210
|
-
readonly BW: "BW";
|
|
6211
|
-
readonly BY: "BY";
|
|
6212
|
-
readonly BZ: "BZ";
|
|
6213
|
-
readonly CA: "CA";
|
|
6214
|
-
readonly CC: "CC";
|
|
6215
|
-
readonly CD: "CD";
|
|
6216
|
-
readonly CF: "CF";
|
|
6217
|
-
readonly CG: "CG";
|
|
6218
|
-
readonly CH: "CH";
|
|
6219
|
-
readonly CI: "CI";
|
|
6220
|
-
readonly CK: "CK";
|
|
6221
|
-
readonly CL: "CL";
|
|
6222
|
-
readonly CM: "CM";
|
|
6223
|
-
readonly CN: "CN";
|
|
6224
|
-
readonly CO: "CO";
|
|
6225
|
-
readonly CR: "CR";
|
|
6226
|
-
readonly CU: "CU";
|
|
6227
|
-
readonly CV: "CV";
|
|
6228
|
-
readonly CW: "CW";
|
|
6229
|
-
readonly CX: "CX";
|
|
6230
|
-
readonly CY: "CY";
|
|
6231
|
-
readonly CZ: "CZ";
|
|
6232
|
-
readonly DE: "DE";
|
|
6233
|
-
readonly DJ: "DJ";
|
|
6234
|
-
readonly DK: "DK";
|
|
6235
|
-
readonly DM: "DM";
|
|
6236
|
-
readonly DO: "DO";
|
|
6237
|
-
readonly DZ: "DZ";
|
|
6238
|
-
readonly EC: "EC";
|
|
6239
|
-
readonly EE: "EE";
|
|
6240
|
-
readonly EG: "EG";
|
|
6241
|
-
readonly EH: "EH";
|
|
6242
|
-
readonly ER: "ER";
|
|
6243
|
-
readonly ES: "ES";
|
|
6244
|
-
readonly ET: "ET";
|
|
6245
|
-
readonly FI: "FI";
|
|
6246
|
-
readonly FJ: "FJ";
|
|
6247
|
-
readonly FK: "FK";
|
|
6248
|
-
readonly FM: "FM";
|
|
6249
|
-
readonly FO: "FO";
|
|
6250
|
-
readonly FR: "FR";
|
|
6251
|
-
readonly GA: "GA";
|
|
6252
|
-
readonly GB: "GB";
|
|
6253
|
-
readonly GD: "GD";
|
|
6254
|
-
readonly GE: "GE";
|
|
6255
|
-
readonly GG: "GG";
|
|
6256
|
-
readonly GH: "GH";
|
|
6257
|
-
readonly GI: "GI";
|
|
6258
|
-
readonly GL: "GL";
|
|
6259
|
-
readonly GM: "GM";
|
|
6260
|
-
readonly GN: "GN";
|
|
6261
|
-
readonly GQ: "GQ";
|
|
6262
|
-
readonly GR: "GR";
|
|
6263
|
-
readonly GT: "GT";
|
|
6264
|
-
readonly GU: "GU";
|
|
6265
|
-
readonly GW: "GW";
|
|
6266
|
-
readonly GY: "GY";
|
|
6267
|
-
readonly HK: "HK";
|
|
6268
|
-
readonly HN: "HN";
|
|
6269
|
-
readonly HR: "HR";
|
|
6270
|
-
readonly HT: "HT";
|
|
6271
|
-
readonly HU: "HU";
|
|
6272
|
-
readonly ID: "ID";
|
|
6273
|
-
readonly IE: "IE";
|
|
6274
|
-
readonly IL: "IL";
|
|
6275
|
-
readonly IM: "IM";
|
|
6276
|
-
readonly IN: "IN";
|
|
6277
|
-
readonly IO: "IO";
|
|
6278
|
-
readonly IQ: "IQ";
|
|
6279
|
-
readonly IR: "IR";
|
|
6280
|
-
readonly IS: "IS";
|
|
6281
|
-
readonly IT: "IT";
|
|
6282
|
-
readonly JE: "JE";
|
|
6283
|
-
readonly JM: "JM";
|
|
6284
|
-
readonly JO: "JO";
|
|
6285
|
-
readonly JP: "JP";
|
|
6286
|
-
readonly KE: "KE";
|
|
6287
|
-
readonly KG: "KG";
|
|
6288
|
-
readonly KH: "KH";
|
|
6289
|
-
readonly KI: "KI";
|
|
6290
|
-
readonly KM: "KM";
|
|
6291
|
-
readonly KN: "KN";
|
|
6292
|
-
readonly KP: "KP";
|
|
6293
|
-
readonly KR: "KR";
|
|
6294
|
-
readonly KW: "KW";
|
|
6295
|
-
readonly KY: "KY";
|
|
6296
|
-
readonly KZ: "KZ";
|
|
6297
|
-
readonly LA: "LA";
|
|
6298
|
-
readonly LB: "LB";
|
|
6299
|
-
readonly LC: "LC";
|
|
6300
|
-
readonly LI: "LI";
|
|
6301
|
-
readonly LK: "LK";
|
|
6302
|
-
readonly LR: "LR";
|
|
6303
|
-
readonly LS: "LS";
|
|
6304
|
-
readonly LT: "LT";
|
|
6305
|
-
readonly LU: "LU";
|
|
6306
|
-
readonly LV: "LV";
|
|
6307
|
-
readonly LY: "LY";
|
|
6308
|
-
readonly MA: "MA";
|
|
6309
|
-
readonly MC: "MC";
|
|
6310
|
-
readonly MD: "MD";
|
|
6311
|
-
readonly ME: "ME";
|
|
6312
|
-
readonly MF: "MF";
|
|
6313
|
-
readonly MG: "MG";
|
|
6314
|
-
readonly MH: "MH";
|
|
6315
|
-
readonly MK: "MK";
|
|
6316
|
-
readonly ML: "ML";
|
|
6317
|
-
readonly MM: "MM";
|
|
6318
|
-
readonly MN: "MN";
|
|
6319
|
-
readonly MO: "MO";
|
|
6320
|
-
readonly MP: "MP";
|
|
6321
|
-
readonly MR: "MR";
|
|
6322
|
-
readonly MS: "MS";
|
|
6323
|
-
readonly MT: "MT";
|
|
6324
|
-
readonly MU: "MU";
|
|
6325
|
-
readonly MV: "MV";
|
|
6326
|
-
readonly MW: "MW";
|
|
6327
|
-
readonly MX: "MX";
|
|
6328
|
-
readonly MY: "MY";
|
|
6329
|
-
readonly MZ: "MZ";
|
|
6330
|
-
readonly NA: "NA";
|
|
6331
|
-
readonly NC: "NC";
|
|
6332
|
-
readonly NE: "NE";
|
|
6333
|
-
readonly NG: "NG";
|
|
6334
|
-
readonly NI: "NI";
|
|
6335
|
-
readonly NL: "NL";
|
|
6336
|
-
readonly NO: "NO";
|
|
6337
|
-
readonly NP: "NP";
|
|
6338
|
-
readonly NR: "NR";
|
|
6339
|
-
readonly NU: "NU";
|
|
6340
|
-
readonly NZ: "NZ";
|
|
6341
|
-
readonly OM: "OM";
|
|
6342
|
-
readonly PA: "PA";
|
|
6343
|
-
readonly PE: "PE";
|
|
6344
|
-
readonly PF: "PF";
|
|
6345
|
-
readonly PG: "PG";
|
|
6346
|
-
readonly PH: "PH";
|
|
6347
|
-
readonly PK: "PK";
|
|
6348
|
-
readonly PL: "PL";
|
|
6349
|
-
readonly PM: "PM";
|
|
6350
|
-
readonly PN: "PN";
|
|
6351
|
-
readonly PR: "PR";
|
|
6352
|
-
readonly PT: "PT";
|
|
6353
|
-
readonly PW: "PW";
|
|
6354
|
-
readonly PY: "PY";
|
|
6355
|
-
readonly QA: "QA";
|
|
6356
|
-
readonly RE: "RE";
|
|
6357
|
-
readonly RO: "RO";
|
|
6358
|
-
readonly RS: "RS";
|
|
6359
|
-
readonly RU: "RU";
|
|
6360
|
-
readonly RW: "RW";
|
|
6361
|
-
readonly SA: "SA";
|
|
6362
|
-
readonly SB: "SB";
|
|
6363
|
-
readonly SC: "SC";
|
|
6364
|
-
readonly SD: "SD";
|
|
6365
|
-
readonly SE: "SE";
|
|
6366
|
-
readonly SG: "SG";
|
|
6367
|
-
readonly SH: "SH";
|
|
6368
|
-
readonly SI: "SI";
|
|
6369
|
-
readonly SJ: "SJ";
|
|
6370
|
-
readonly SK: "SK";
|
|
6371
|
-
readonly SL: "SL";
|
|
6372
|
-
readonly SM: "SM";
|
|
6373
|
-
readonly SN: "SN";
|
|
6374
|
-
readonly SO: "SO";
|
|
6375
|
-
readonly SR: "SR";
|
|
6376
|
-
readonly ST: "ST";
|
|
6377
|
-
readonly SV: "SV";
|
|
6378
|
-
readonly SX: "SX";
|
|
6379
|
-
readonly SY: "SY";
|
|
6380
|
-
readonly SZ: "SZ";
|
|
6381
|
-
readonly TC: "TC";
|
|
6382
|
-
readonly TD: "TD";
|
|
6383
|
-
readonly TG: "TG";
|
|
6384
|
-
readonly TH: "TH";
|
|
6385
|
-
readonly TJ: "TJ";
|
|
6386
|
-
readonly TK: "TK";
|
|
6387
|
-
readonly TL: "TL";
|
|
6388
|
-
readonly TM: "TM";
|
|
6389
|
-
readonly TN: "TN";
|
|
6390
|
-
readonly TO: "TO";
|
|
6391
|
-
readonly TR: "TR";
|
|
6392
|
-
readonly TT: "TT";
|
|
6393
|
-
readonly TV: "TV";
|
|
6394
|
-
readonly TW: "TW";
|
|
6395
|
-
readonly TZ: "TZ";
|
|
6396
|
-
readonly UA: "UA";
|
|
6397
|
-
readonly UG: "UG";
|
|
6398
|
-
readonly US: "US";
|
|
6399
|
-
readonly UY: "UY";
|
|
6400
|
-
readonly UZ: "UZ";
|
|
6401
|
-
readonly VA: "VA";
|
|
6402
|
-
readonly VC: "VC";
|
|
6403
|
-
readonly VE: "VE";
|
|
6404
|
-
readonly VG: "VG";
|
|
6405
|
-
readonly VI: "VI";
|
|
6406
|
-
readonly VN: "VN";
|
|
6407
|
-
readonly VU: "VU";
|
|
6408
|
-
readonly WF: "WF";
|
|
6409
|
-
readonly WS: "WS";
|
|
6410
|
-
readonly YE: "YE";
|
|
6411
|
-
readonly YT: "YT";
|
|
6412
|
-
readonly ZA: "ZA";
|
|
6413
|
-
readonly ZM: "ZM";
|
|
6414
|
-
readonly ZW: "ZW";
|
|
6415
|
-
};
|
|
6416
|
-
/**
|
|
6417
|
-
* @public
|
|
6418
|
-
*/
|
|
6419
|
-
export type PhoneNumberCountryCode = (typeof PhoneNumberCountryCode)[keyof typeof PhoneNumberCountryCode];
|
|
6420
6189
|
/**
|
|
6421
6190
|
* @internal
|
|
6422
6191
|
*/
|
|
@@ -1,6 +1,253 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
|
-
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentHierarchyGroups, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Attribute, Channel, ContactFlowModuleState, ContactFlowState, ContactFlowType, ContactInitiationMethod, ContactState, DirectoryType, Distribution, EvaluationFormVersionStatus, EvaluationScore, EvaluationStatus, EventSourceName, FlowAssociationResourceType, FlowAssociationSummary, InstanceStatus, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, MonitorCapability, OutboundCallerConfig, ParticipantRole,
|
|
3
|
+
import { ActionSummary, AgentAvailabilityTimer, AgentConfig, AgentContactReference, AgentHierarchyGroups, AgentStatusReference, AgentStatusSummary, AgentStatusType, AnalyticsDataAssociationResult, Application, Attribute, Channel, ContactFlowModuleState, ContactFlowState, ContactFlowType, ContactInitiationMethod, ContactState, DirectoryType, Distribution, EvaluationFormVersionStatus, EvaluationScore, EvaluationStatus, EventSourceName, FlowAssociationResourceType, FlowAssociationSummary, InstanceStatus, InstanceStorageConfig, InstanceStorageResourceType, IntegrationType, LexBot, LexV2Bot, ListFlowAssociationResourceType, MediaConcurrency, MonitorCapability, OutboundCallerConfig, ParticipantRole, PredefinedAttributeValues, QueueReference, QuickConnectConfig, QuickConnectType, ReferenceType, RoutingProfileQueueReference, RuleAction, RulePublishStatus, RuleTriggerEventSource, SourceType, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UseCaseType, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* @enum
|
|
7
|
+
*/
|
|
8
|
+
export declare const PhoneNumberCountryCode: {
|
|
9
|
+
readonly AD: "AD";
|
|
10
|
+
readonly AE: "AE";
|
|
11
|
+
readonly AF: "AF";
|
|
12
|
+
readonly AG: "AG";
|
|
13
|
+
readonly AI: "AI";
|
|
14
|
+
readonly AL: "AL";
|
|
15
|
+
readonly AM: "AM";
|
|
16
|
+
readonly AN: "AN";
|
|
17
|
+
readonly AO: "AO";
|
|
18
|
+
readonly AQ: "AQ";
|
|
19
|
+
readonly AR: "AR";
|
|
20
|
+
readonly AS: "AS";
|
|
21
|
+
readonly AT: "AT";
|
|
22
|
+
readonly AU: "AU";
|
|
23
|
+
readonly AW: "AW";
|
|
24
|
+
readonly AZ: "AZ";
|
|
25
|
+
readonly BA: "BA";
|
|
26
|
+
readonly BB: "BB";
|
|
27
|
+
readonly BD: "BD";
|
|
28
|
+
readonly BE: "BE";
|
|
29
|
+
readonly BF: "BF";
|
|
30
|
+
readonly BG: "BG";
|
|
31
|
+
readonly BH: "BH";
|
|
32
|
+
readonly BI: "BI";
|
|
33
|
+
readonly BJ: "BJ";
|
|
34
|
+
readonly BL: "BL";
|
|
35
|
+
readonly BM: "BM";
|
|
36
|
+
readonly BN: "BN";
|
|
37
|
+
readonly BO: "BO";
|
|
38
|
+
readonly BR: "BR";
|
|
39
|
+
readonly BS: "BS";
|
|
40
|
+
readonly BT: "BT";
|
|
41
|
+
readonly BW: "BW";
|
|
42
|
+
readonly BY: "BY";
|
|
43
|
+
readonly BZ: "BZ";
|
|
44
|
+
readonly CA: "CA";
|
|
45
|
+
readonly CC: "CC";
|
|
46
|
+
readonly CD: "CD";
|
|
47
|
+
readonly CF: "CF";
|
|
48
|
+
readonly CG: "CG";
|
|
49
|
+
readonly CH: "CH";
|
|
50
|
+
readonly CI: "CI";
|
|
51
|
+
readonly CK: "CK";
|
|
52
|
+
readonly CL: "CL";
|
|
53
|
+
readonly CM: "CM";
|
|
54
|
+
readonly CN: "CN";
|
|
55
|
+
readonly CO: "CO";
|
|
56
|
+
readonly CR: "CR";
|
|
57
|
+
readonly CU: "CU";
|
|
58
|
+
readonly CV: "CV";
|
|
59
|
+
readonly CW: "CW";
|
|
60
|
+
readonly CX: "CX";
|
|
61
|
+
readonly CY: "CY";
|
|
62
|
+
readonly CZ: "CZ";
|
|
63
|
+
readonly DE: "DE";
|
|
64
|
+
readonly DJ: "DJ";
|
|
65
|
+
readonly DK: "DK";
|
|
66
|
+
readonly DM: "DM";
|
|
67
|
+
readonly DO: "DO";
|
|
68
|
+
readonly DZ: "DZ";
|
|
69
|
+
readonly EC: "EC";
|
|
70
|
+
readonly EE: "EE";
|
|
71
|
+
readonly EG: "EG";
|
|
72
|
+
readonly EH: "EH";
|
|
73
|
+
readonly ER: "ER";
|
|
74
|
+
readonly ES: "ES";
|
|
75
|
+
readonly ET: "ET";
|
|
76
|
+
readonly FI: "FI";
|
|
77
|
+
readonly FJ: "FJ";
|
|
78
|
+
readonly FK: "FK";
|
|
79
|
+
readonly FM: "FM";
|
|
80
|
+
readonly FO: "FO";
|
|
81
|
+
readonly FR: "FR";
|
|
82
|
+
readonly GA: "GA";
|
|
83
|
+
readonly GB: "GB";
|
|
84
|
+
readonly GD: "GD";
|
|
85
|
+
readonly GE: "GE";
|
|
86
|
+
readonly GG: "GG";
|
|
87
|
+
readonly GH: "GH";
|
|
88
|
+
readonly GI: "GI";
|
|
89
|
+
readonly GL: "GL";
|
|
90
|
+
readonly GM: "GM";
|
|
91
|
+
readonly GN: "GN";
|
|
92
|
+
readonly GQ: "GQ";
|
|
93
|
+
readonly GR: "GR";
|
|
94
|
+
readonly GT: "GT";
|
|
95
|
+
readonly GU: "GU";
|
|
96
|
+
readonly GW: "GW";
|
|
97
|
+
readonly GY: "GY";
|
|
98
|
+
readonly HK: "HK";
|
|
99
|
+
readonly HN: "HN";
|
|
100
|
+
readonly HR: "HR";
|
|
101
|
+
readonly HT: "HT";
|
|
102
|
+
readonly HU: "HU";
|
|
103
|
+
readonly ID: "ID";
|
|
104
|
+
readonly IE: "IE";
|
|
105
|
+
readonly IL: "IL";
|
|
106
|
+
readonly IM: "IM";
|
|
107
|
+
readonly IN: "IN";
|
|
108
|
+
readonly IO: "IO";
|
|
109
|
+
readonly IQ: "IQ";
|
|
110
|
+
readonly IR: "IR";
|
|
111
|
+
readonly IS: "IS";
|
|
112
|
+
readonly IT: "IT";
|
|
113
|
+
readonly JE: "JE";
|
|
114
|
+
readonly JM: "JM";
|
|
115
|
+
readonly JO: "JO";
|
|
116
|
+
readonly JP: "JP";
|
|
117
|
+
readonly KE: "KE";
|
|
118
|
+
readonly KG: "KG";
|
|
119
|
+
readonly KH: "KH";
|
|
120
|
+
readonly KI: "KI";
|
|
121
|
+
readonly KM: "KM";
|
|
122
|
+
readonly KN: "KN";
|
|
123
|
+
readonly KP: "KP";
|
|
124
|
+
readonly KR: "KR";
|
|
125
|
+
readonly KW: "KW";
|
|
126
|
+
readonly KY: "KY";
|
|
127
|
+
readonly KZ: "KZ";
|
|
128
|
+
readonly LA: "LA";
|
|
129
|
+
readonly LB: "LB";
|
|
130
|
+
readonly LC: "LC";
|
|
131
|
+
readonly LI: "LI";
|
|
132
|
+
readonly LK: "LK";
|
|
133
|
+
readonly LR: "LR";
|
|
134
|
+
readonly LS: "LS";
|
|
135
|
+
readonly LT: "LT";
|
|
136
|
+
readonly LU: "LU";
|
|
137
|
+
readonly LV: "LV";
|
|
138
|
+
readonly LY: "LY";
|
|
139
|
+
readonly MA: "MA";
|
|
140
|
+
readonly MC: "MC";
|
|
141
|
+
readonly MD: "MD";
|
|
142
|
+
readonly ME: "ME";
|
|
143
|
+
readonly MF: "MF";
|
|
144
|
+
readonly MG: "MG";
|
|
145
|
+
readonly MH: "MH";
|
|
146
|
+
readonly MK: "MK";
|
|
147
|
+
readonly ML: "ML";
|
|
148
|
+
readonly MM: "MM";
|
|
149
|
+
readonly MN: "MN";
|
|
150
|
+
readonly MO: "MO";
|
|
151
|
+
readonly MP: "MP";
|
|
152
|
+
readonly MR: "MR";
|
|
153
|
+
readonly MS: "MS";
|
|
154
|
+
readonly MT: "MT";
|
|
155
|
+
readonly MU: "MU";
|
|
156
|
+
readonly MV: "MV";
|
|
157
|
+
readonly MW: "MW";
|
|
158
|
+
readonly MX: "MX";
|
|
159
|
+
readonly MY: "MY";
|
|
160
|
+
readonly MZ: "MZ";
|
|
161
|
+
readonly NA: "NA";
|
|
162
|
+
readonly NC: "NC";
|
|
163
|
+
readonly NE: "NE";
|
|
164
|
+
readonly NG: "NG";
|
|
165
|
+
readonly NI: "NI";
|
|
166
|
+
readonly NL: "NL";
|
|
167
|
+
readonly NO: "NO";
|
|
168
|
+
readonly NP: "NP";
|
|
169
|
+
readonly NR: "NR";
|
|
170
|
+
readonly NU: "NU";
|
|
171
|
+
readonly NZ: "NZ";
|
|
172
|
+
readonly OM: "OM";
|
|
173
|
+
readonly PA: "PA";
|
|
174
|
+
readonly PE: "PE";
|
|
175
|
+
readonly PF: "PF";
|
|
176
|
+
readonly PG: "PG";
|
|
177
|
+
readonly PH: "PH";
|
|
178
|
+
readonly PK: "PK";
|
|
179
|
+
readonly PL: "PL";
|
|
180
|
+
readonly PM: "PM";
|
|
181
|
+
readonly PN: "PN";
|
|
182
|
+
readonly PR: "PR";
|
|
183
|
+
readonly PT: "PT";
|
|
184
|
+
readonly PW: "PW";
|
|
185
|
+
readonly PY: "PY";
|
|
186
|
+
readonly QA: "QA";
|
|
187
|
+
readonly RE: "RE";
|
|
188
|
+
readonly RO: "RO";
|
|
189
|
+
readonly RS: "RS";
|
|
190
|
+
readonly RU: "RU";
|
|
191
|
+
readonly RW: "RW";
|
|
192
|
+
readonly SA: "SA";
|
|
193
|
+
readonly SB: "SB";
|
|
194
|
+
readonly SC: "SC";
|
|
195
|
+
readonly SD: "SD";
|
|
196
|
+
readonly SE: "SE";
|
|
197
|
+
readonly SG: "SG";
|
|
198
|
+
readonly SH: "SH";
|
|
199
|
+
readonly SI: "SI";
|
|
200
|
+
readonly SJ: "SJ";
|
|
201
|
+
readonly SK: "SK";
|
|
202
|
+
readonly SL: "SL";
|
|
203
|
+
readonly SM: "SM";
|
|
204
|
+
readonly SN: "SN";
|
|
205
|
+
readonly SO: "SO";
|
|
206
|
+
readonly SR: "SR";
|
|
207
|
+
readonly ST: "ST";
|
|
208
|
+
readonly SV: "SV";
|
|
209
|
+
readonly SX: "SX";
|
|
210
|
+
readonly SY: "SY";
|
|
211
|
+
readonly SZ: "SZ";
|
|
212
|
+
readonly TC: "TC";
|
|
213
|
+
readonly TD: "TD";
|
|
214
|
+
readonly TG: "TG";
|
|
215
|
+
readonly TH: "TH";
|
|
216
|
+
readonly TJ: "TJ";
|
|
217
|
+
readonly TK: "TK";
|
|
218
|
+
readonly TL: "TL";
|
|
219
|
+
readonly TM: "TM";
|
|
220
|
+
readonly TN: "TN";
|
|
221
|
+
readonly TO: "TO";
|
|
222
|
+
readonly TR: "TR";
|
|
223
|
+
readonly TT: "TT";
|
|
224
|
+
readonly TV: "TV";
|
|
225
|
+
readonly TW: "TW";
|
|
226
|
+
readonly TZ: "TZ";
|
|
227
|
+
readonly UA: "UA";
|
|
228
|
+
readonly UG: "UG";
|
|
229
|
+
readonly US: "US";
|
|
230
|
+
readonly UY: "UY";
|
|
231
|
+
readonly UZ: "UZ";
|
|
232
|
+
readonly VA: "VA";
|
|
233
|
+
readonly VC: "VC";
|
|
234
|
+
readonly VE: "VE";
|
|
235
|
+
readonly VG: "VG";
|
|
236
|
+
readonly VI: "VI";
|
|
237
|
+
readonly VN: "VN";
|
|
238
|
+
readonly VU: "VU";
|
|
239
|
+
readonly WF: "WF";
|
|
240
|
+
readonly WS: "WS";
|
|
241
|
+
readonly YE: "YE";
|
|
242
|
+
readonly YT: "YT";
|
|
243
|
+
readonly ZA: "ZA";
|
|
244
|
+
readonly ZM: "ZM";
|
|
245
|
+
readonly ZW: "ZW";
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export type PhoneNumberCountryCode = (typeof PhoneNumberCountryCode)[keyof typeof PhoneNumberCountryCode];
|
|
4
251
|
/**
|
|
5
252
|
* @public
|
|
6
253
|
* @enum
|
|
@@ -6974,8 +7221,7 @@ export interface ListSecurityProfileApplicationsRequest {
|
|
|
6974
7221
|
*/
|
|
6975
7222
|
export interface ListSecurityProfileApplicationsResponse {
|
|
6976
7223
|
/**
|
|
6977
|
-
* <p>
|
|
6978
|
-
* <p>A list of the third-party application's metadata.</p>
|
|
7224
|
+
* <p>A list of the third-party application's metadata.</p>
|
|
6979
7225
|
* @public
|
|
6980
7226
|
*/
|
|
6981
7227
|
Applications?: Application[];
|
|
@@ -8254,22 +8500,6 @@ export declare const SortableFieldName: {
|
|
|
8254
8500
|
* @public
|
|
8255
8501
|
*/
|
|
8256
8502
|
export type SortableFieldName = (typeof SortableFieldName)[keyof typeof SortableFieldName];
|
|
8257
|
-
/**
|
|
8258
|
-
* <p>A structure that defineds the field name to sort by and a sort order.</p>
|
|
8259
|
-
* @public
|
|
8260
|
-
*/
|
|
8261
|
-
export interface Sort {
|
|
8262
|
-
/**
|
|
8263
|
-
* <p>The name of the field on which to sort.</p>
|
|
8264
|
-
* @public
|
|
8265
|
-
*/
|
|
8266
|
-
FieldName: SortableFieldName | undefined;
|
|
8267
|
-
/**
|
|
8268
|
-
* <p>An ascending or descending sort.</p>
|
|
8269
|
-
* @public
|
|
8270
|
-
*/
|
|
8271
|
-
Order: SortOrder | undefined;
|
|
8272
|
-
}
|
|
8273
8503
|
/**
|
|
8274
8504
|
* @internal
|
|
8275
8505
|
*/
|
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectServiceException as __BaseException } from "./ConnectServiceException";
|
|
3
3
|
import { AgentAvailabilityTimer, AgentConfig, AgentStatusState, AllowedCapabilities, Application, Channel, ContactFlowModuleState, ContactFlowState, ContactInitiationMethod, Evaluation, EvaluationAnswerData, EvaluationFormQuestion, EvaluationFormScoringStrategy, EvaluationFormVersionStatus, EvaluationNote, HoursOfOperation, HoursOfOperationConfig, InstanceAttributeType, InstanceStorageConfig, InstanceStorageResourceType, MediaConcurrency, OutboundCallerConfig, PredefinedAttributeValues, QuickConnectConfig, Reference, RehydrationType, RoutingProfileQueueConfig, RuleAction, RulePublishStatus, TaskTemplateConstraints, TaskTemplateDefaults, TaskTemplateField, TaskTemplateStatus, UserIdentityInfo, UserPhoneConfig, UserProficiency, View, ViewInputContent, ViewStatus, VocabularyLanguageCode, VocabularyState } from "./models_0";
|
|
4
|
-
import { PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingProfile, SearchCriteria, SignInConfig,
|
|
4
|
+
import { PredefinedAttribute, Prompt, Queue, QueueStatus, QuickConnect, RoutingProfile, SearchCriteria, SignInConfig, SortableFieldName, SortOrder, TelephonyConfig } from "./models_1";
|
|
5
|
+
/**
|
|
6
|
+
* <p>A structure that defineds the field name to sort by and a sort order.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface Sort {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The name of the field on which to sort.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
FieldName: SortableFieldName | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>An ascending or descending sort.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
Order: SortOrder | undefined;
|
|
20
|
+
}
|
|
5
21
|
/**
|
|
6
22
|
* @public
|
|
7
23
|
* @enum
|
|
@@ -3497,8 +3513,7 @@ export interface UpdateSecurityProfileRequest {
|
|
|
3497
3513
|
*/
|
|
3498
3514
|
TagRestrictedResources?: string[];
|
|
3499
3515
|
/**
|
|
3500
|
-
* <p>
|
|
3501
|
-
* <p>A list of the third-party application's metadata.</p>
|
|
3516
|
+
* <p>A list of the third-party application's metadata.</p>
|
|
3502
3517
|
* @public
|
|
3503
3518
|
*/
|
|
3504
3519
|
Applications?: Application[];
|