@@ -618,11 +618,26 @@ import {
618
618
SearchAvailablePhoneNumbersCommandInput ,
619
619
SearchAvailablePhoneNumbersCommandOutput ,
620
620
} from "./commands/SearchAvailablePhoneNumbersCommand" ;
621
+ import {
622
+ SearchHoursOfOperationsCommand ,
623
+ SearchHoursOfOperationsCommandInput ,
624
+ SearchHoursOfOperationsCommandOutput ,
625
+ } from "./commands/SearchHoursOfOperationsCommand" ;
626
+ import {
627
+ SearchPromptsCommand ,
628
+ SearchPromptsCommandInput ,
629
+ SearchPromptsCommandOutput ,
630
+ } from "./commands/SearchPromptsCommand" ;
621
631
import {
622
632
SearchQueuesCommand ,
623
633
SearchQueuesCommandInput ,
624
634
SearchQueuesCommandOutput ,
625
635
} from "./commands/SearchQueuesCommand" ;
636
+ import {
637
+ SearchQuickConnectsCommand ,
638
+ SearchQuickConnectsCommandInput ,
639
+ SearchQuickConnectsCommandOutput ,
640
+ } from "./commands/SearchQuickConnectsCommand" ;
626
641
import {
627
642
SearchRoutingProfilesCommand ,
628
643
SearchRoutingProfilesCommandInput ,
@@ -1027,7 +1042,10 @@ const commands = {
1027
1042
ReplicateInstanceCommand,
1028
1043
ResumeContactRecordingCommand,
1029
1044
SearchAvailablePhoneNumbersCommand,
1045
+ SearchHoursOfOperationsCommand,
1046
+ SearchPromptsCommand,
1030
1047
SearchQueuesCommand,
1048
+ SearchQuickConnectsCommand,
1031
1049
SearchRoutingProfilesCommand,
1032
1050
SearchSecurityProfilesCommand,
1033
1051
SearchUsersCommand,
@@ -3161,6 +3179,34 @@ export interface Connect {
3161
3179
cb : ( err : any , data ?: SearchAvailablePhoneNumbersCommandOutput ) => void
3162
3180
) : void ;
3163
3181
3182
+ /**
3183
+ * @see {@link SearchHoursOfOperationsCommand }
3184
+ */
3185
+ searchHoursOfOperations (
3186
+ args : SearchHoursOfOperationsCommandInput ,
3187
+ options ?: __HttpHandlerOptions
3188
+ ) : Promise < SearchHoursOfOperationsCommandOutput > ;
3189
+ searchHoursOfOperations (
3190
+ args : SearchHoursOfOperationsCommandInput ,
3191
+ cb : ( err : any , data ?: SearchHoursOfOperationsCommandOutput ) => void
3192
+ ) : void ;
3193
+ searchHoursOfOperations (
3194
+ args : SearchHoursOfOperationsCommandInput ,
3195
+ options : __HttpHandlerOptions ,
3196
+ cb : ( err : any , data ?: SearchHoursOfOperationsCommandOutput ) => void
3197
+ ) : void ;
3198
+
3199
+ /**
3200
+ * @see {@link SearchPromptsCommand }
3201
+ */
3202
+ searchPrompts ( args : SearchPromptsCommandInput , options ?: __HttpHandlerOptions ) : Promise < SearchPromptsCommandOutput > ;
3203
+ searchPrompts ( args : SearchPromptsCommandInput , cb : ( err : any , data ?: SearchPromptsCommandOutput ) => void ) : void ;
3204
+ searchPrompts (
3205
+ args : SearchPromptsCommandInput ,
3206
+ options : __HttpHandlerOptions ,
3207
+ cb : ( err : any , data ?: SearchPromptsCommandOutput ) => void
3208
+ ) : void ;
3209
+
3164
3210
/**
3165
3211
* @see {@link SearchQueuesCommand }
3166
3212
*/
@@ -3172,6 +3218,23 @@ export interface Connect {
3172
3218
cb : ( err : any , data ?: SearchQueuesCommandOutput ) => void
3173
3219
) : void ;
3174
3220
3221
+ /**
3222
+ * @see {@link SearchQuickConnectsCommand }
3223
+ */
3224
+ searchQuickConnects (
3225
+ args : SearchQuickConnectsCommandInput ,
3226
+ options ?: __HttpHandlerOptions
3227
+ ) : Promise < SearchQuickConnectsCommandOutput > ;
3228
+ searchQuickConnects (
3229
+ args : SearchQuickConnectsCommandInput ,
3230
+ cb : ( err : any , data ?: SearchQuickConnectsCommandOutput ) => void
3231
+ ) : void ;
3232
+ searchQuickConnects (
3233
+ args : SearchQuickConnectsCommandInput ,
3234
+ options : __HttpHandlerOptions ,
3235
+ cb : ( err : any , data ?: SearchQuickConnectsCommandOutput ) => void
3236
+ ) : void ;
3237
+
3175
3238
/**
3176
3239
* @see {@link SearchRoutingProfilesCommand }
3177
3240
*/
0 commit comments