@aws-sdk/client-connect 3.301.0 → 3.303.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.
@@ -149,11 +149,16 @@ export interface ListContactReferencesRequest {
149
149
  }
150
150
  /**
151
151
  * @public
152
+ * @enum
152
153
  */
153
- export declare enum ReferenceStatus {
154
- APPROVED = "APPROVED",
155
- REJECTED = "REJECTED"
156
- }
154
+ export declare const ReferenceStatus: {
155
+ readonly APPROVED: "APPROVED";
156
+ readonly REJECTED: "REJECTED";
157
+ };
158
+ /**
159
+ * @public
160
+ */
161
+ export type ReferenceStatus = (typeof ReferenceStatus)[keyof typeof ReferenceStatus];
157
162
  /**
158
163
  * @public
159
164
  * <p>Information about a reference when the <code>referenceType</code> is
@@ -1003,11 +1008,16 @@ export interface ListQueueQuickConnectsResponse {
1003
1008
  }
1004
1009
  /**
1005
1010
  * @public
1011
+ * @enum
1006
1012
  */
1007
- export declare enum QueueType {
1008
- AGENT = "AGENT",
1009
- STANDARD = "STANDARD"
1010
- }
1013
+ export declare const QueueType: {
1014
+ readonly AGENT: "AGENT";
1015
+ readonly STANDARD: "STANDARD";
1016
+ };
1017
+ /**
1018
+ * @public
1019
+ */
1020
+ export type QueueType = (typeof QueueType)[keyof typeof QueueType];
1011
1021
  /**
1012
1022
  * @public
1013
1023
  */
@@ -1969,18 +1979,28 @@ export interface SearchAvailablePhoneNumbersResponse {
1969
1979
  }
1970
1980
  /**
1971
1981
  * @public
1982
+ * @enum
1972
1983
  */
1973
- export declare enum SearchableQueueType {
1974
- STANDARD = "STANDARD"
1975
- }
1984
+ export declare const SearchableQueueType: {
1985
+ readonly STANDARD: "STANDARD";
1986
+ };
1976
1987
  /**
1977
1988
  * @public
1978
1989
  */
1979
- export declare enum StringComparisonType {
1980
- CONTAINS = "CONTAINS",
1981
- EXACT = "EXACT",
1982
- STARTS_WITH = "STARTS_WITH"
1983
- }
1990
+ export type SearchableQueueType = (typeof SearchableQueueType)[keyof typeof SearchableQueueType];
1991
+ /**
1992
+ * @public
1993
+ * @enum
1994
+ */
1995
+ export declare const StringComparisonType: {
1996
+ readonly CONTAINS: "CONTAINS";
1997
+ readonly EXACT: "EXACT";
1998
+ readonly STARTS_WITH: "STARTS_WITH";
1999
+ };
2000
+ /**
2001
+ * @public
2002
+ */
2003
+ export type StringComparisonType = (typeof StringComparisonType)[keyof typeof StringComparisonType];
1984
2004
  /**
1985
2005
  * @public
1986
2006
  * <p>A leaf node condition which can be used to specify a string condition. </p>
@@ -2195,11 +2215,16 @@ export interface SearchSecurityProfilesResponse {
2195
2215
  }
2196
2216
  /**
2197
2217
  * @public
2218
+ * @enum
2198
2219
  */
2199
- export declare enum HierarchyGroupMatchType {
2200
- EXACT = "EXACT",
2201
- WITH_CHILD_GROUPS = "WITH_CHILD_GROUPS"
2202
- }
2220
+ export declare const HierarchyGroupMatchType: {
2221
+ readonly EXACT: "EXACT";
2222
+ readonly WITH_CHILD_GROUPS: "WITH_CHILD_GROUPS";
2223
+ };
2224
+ /**
2225
+ * @public
2226
+ */
2227
+ export type HierarchyGroupMatchType = (typeof HierarchyGroupMatchType)[keyof typeof HierarchyGroupMatchType];
2203
2228
  /**
2204
2229
  * @public
2205
2230
  * <p>A leaf node condition which can be used to specify a hierarchy group condition.</p>
@@ -2430,11 +2455,16 @@ export interface ParticipantDetails {
2430
2455
  }
2431
2456
  /**
2432
2457
  * @public
2458
+ * @enum
2433
2459
  */
2434
- export declare enum RehydrationType {
2435
- ENTIRE_PAST_SESSION = "ENTIRE_PAST_SESSION",
2436
- FROM_SEGMENT = "FROM_SEGMENT"
2437
- }
2460
+ export declare const RehydrationType: {
2461
+ readonly ENTIRE_PAST_SESSION: "ENTIRE_PAST_SESSION";
2462
+ readonly FROM_SEGMENT: "FROM_SEGMENT";
2463
+ };
2464
+ /**
2465
+ * @public
2466
+ */
2467
+ export type RehydrationType = (typeof RehydrationType)[keyof typeof RehydrationType];
2438
2468
  /**
2439
2469
  * @public
2440
2470
  * <p>Enable persistent chats. For more information about enabling persistent chat, and for
@@ -2573,12 +2603,17 @@ export interface StartChatContactResponse {
2573
2603
  }
2574
2604
  /**
2575
2605
  * @public
2606
+ * @enum
2576
2607
  */
2577
- export declare enum VoiceRecordingTrack {
2578
- ALL = "ALL",
2579
- FROM_AGENT = "FROM_AGENT",
2580
- TO_AGENT = "TO_AGENT"
2581
- }
2608
+ export declare const VoiceRecordingTrack: {
2609
+ readonly ALL: "ALL";
2610
+ readonly FROM_AGENT: "FROM_AGENT";
2611
+ readonly TO_AGENT: "TO_AGENT";
2612
+ };
2613
+ /**
2614
+ * @public
2615
+ */
2616
+ export type VoiceRecordingTrack = (typeof VoiceRecordingTrack)[keyof typeof VoiceRecordingTrack];
2582
2617
  /**
2583
2618
  * @public
2584
2619
  * <p>Contains information about the recording configuration settings.</p>
@@ -2711,11 +2746,16 @@ export interface AnswerMachineDetectionConfig {
2711
2746
  }
2712
2747
  /**
2713
2748
  * @public
2749
+ * @enum
2714
2750
  */
2715
- export declare enum TrafficType {
2716
- CAMPAIGN = "CAMPAIGN",
2717
- GENERAL = "GENERAL"
2718
- }
2751
+ export declare const TrafficType: {
2752
+ readonly CAMPAIGN: "CAMPAIGN";
2753
+ readonly GENERAL: "GENERAL";
2754
+ };
2755
+ /**
2756
+ * @public
2757
+ */
2758
+ export type TrafficType = (typeof TrafficType)[keyof typeof TrafficType];
2719
2759
  /**
2720
2760
  * @public
2721
2761
  */
@@ -3353,24 +3393,39 @@ export interface UpdateInstanceStorageConfigRequest {
3353
3393
  }
3354
3394
  /**
3355
3395
  * @public
3396
+ * @enum
3356
3397
  */
3357
- export declare enum TimerEligibleParticipantRoles {
3358
- AGENT = "AGENT",
3359
- CUSTOMER = "CUSTOMER"
3360
- }
3398
+ export declare const TimerEligibleParticipantRoles: {
3399
+ readonly AGENT: "AGENT";
3400
+ readonly CUSTOMER: "CUSTOMER";
3401
+ };
3361
3402
  /**
3362
3403
  * @public
3363
3404
  */
3364
- export declare enum ParticipantTimerType {
3365
- DISCONNECT_NONCUSTOMER = "DISCONNECT_NONCUSTOMER",
3366
- IDLE = "IDLE"
3367
- }
3405
+ export type TimerEligibleParticipantRoles = (typeof TimerEligibleParticipantRoles)[keyof typeof TimerEligibleParticipantRoles];
3368
3406
  /**
3369
3407
  * @public
3408
+ * @enum
3370
3409
  */
3371
- export declare enum ParticipantTimerAction {
3372
- Unset = "Unset"
3373
- }
3410
+ export declare const ParticipantTimerType: {
3411
+ readonly DISCONNECT_NONCUSTOMER: "DISCONNECT_NONCUSTOMER";
3412
+ readonly IDLE: "IDLE";
3413
+ };
3414
+ /**
3415
+ * @public
3416
+ */
3417
+ export type ParticipantTimerType = (typeof ParticipantTimerType)[keyof typeof ParticipantTimerType];
3418
+ /**
3419
+ * @public
3420
+ * @enum
3421
+ */
3422
+ export declare const ParticipantTimerAction: {
3423
+ readonly Unset: "Unset";
3424
+ };
3425
+ /**
3426
+ * @public
3427
+ */
3428
+ export type ParticipantTimerAction = (typeof ParticipantTimerAction)[keyof typeof ParticipantTimerAction];
3374
3429
  /**
3375
3430
  * @public
3376
3431
  * <p>The value of the timer. Either the timer action (<code>Unset</code> to delete the timer), or