@@ -69,6 +69,10 @@ import {
69
69
AssociateLambdaFunctionCommandOutput ,
70
70
} from "./commands/AssociateLambdaFunctionCommand" ;
71
71
import { AssociateLexBotCommandInput , AssociateLexBotCommandOutput } from "./commands/AssociateLexBotCommand" ;
72
+ import {
73
+ AssociatePhoneNumberContactFlowCommandInput ,
74
+ AssociatePhoneNumberContactFlowCommandOutput ,
75
+ } from "./commands/AssociatePhoneNumberContactFlowCommand" ;
72
76
import {
73
77
AssociateQueueQuickConnectsCommandInput ,
74
78
AssociateQueueQuickConnectsCommandOutput ,
@@ -81,6 +85,7 @@ import {
81
85
AssociateSecurityKeyCommandInput ,
82
86
AssociateSecurityKeyCommandOutput ,
83
87
} from "./commands/AssociateSecurityKeyCommand" ;
88
+ import { ClaimPhoneNumberCommandInput , ClaimPhoneNumberCommandOutput } from "./commands/ClaimPhoneNumberCommand" ;
84
89
import { CreateAgentStatusCommandInput , CreateAgentStatusCommandOutput } from "./commands/CreateAgentStatusCommand" ;
85
90
import { CreateContactFlowCommandInput , CreateContactFlowCommandOutput } from "./commands/CreateContactFlowCommand" ;
86
91
import {
@@ -165,6 +170,10 @@ import {
165
170
DescribeInstanceStorageConfigCommandInput ,
166
171
DescribeInstanceStorageConfigCommandOutput ,
167
172
} from "./commands/DescribeInstanceStorageConfigCommand" ;
173
+ import {
174
+ DescribePhoneNumberCommandInput ,
175
+ DescribePhoneNumberCommandOutput ,
176
+ } from "./commands/DescribePhoneNumberCommand" ;
168
177
import { DescribeQueueCommandInput , DescribeQueueCommandOutput } from "./commands/DescribeQueueCommand" ;
169
178
import {
170
179
DescribeQuickConnectCommandInput ,
@@ -202,6 +211,10 @@ import {
202
211
DisassociateLambdaFunctionCommandOutput ,
203
212
} from "./commands/DisassociateLambdaFunctionCommand" ;
204
213
import { DisassociateLexBotCommandInput , DisassociateLexBotCommandOutput } from "./commands/DisassociateLexBotCommand" ;
214
+ import {
215
+ DisassociatePhoneNumberContactFlowCommandInput ,
216
+ DisassociatePhoneNumberContactFlowCommandOutput ,
217
+ } from "./commands/DisassociatePhoneNumberContactFlowCommand" ;
205
218
import {
206
219
DisassociateQueueQuickConnectsCommandInput ,
207
220
DisassociateQueueQuickConnectsCommandOutput ,
@@ -266,6 +279,7 @@ import {
266
279
} from "./commands/ListLambdaFunctionsCommand" ;
267
280
import { ListLexBotsCommandInput , ListLexBotsCommandOutput } from "./commands/ListLexBotsCommand" ;
268
281
import { ListPhoneNumbersCommandInput , ListPhoneNumbersCommandOutput } from "./commands/ListPhoneNumbersCommand" ;
282
+ import { ListPhoneNumbersV2CommandInput , ListPhoneNumbersV2CommandOutput } from "./commands/ListPhoneNumbersV2Command" ;
269
283
import { ListPromptsCommandInput , ListPromptsCommandOutput } from "./commands/ListPromptsCommand" ;
270
284
import {
271
285
ListQueueQuickConnectsCommandInput ,
@@ -300,10 +314,15 @@ import {
300
314
ListUserHierarchyGroupsCommandOutput ,
301
315
} from "./commands/ListUserHierarchyGroupsCommand" ;
302
316
import { ListUsersCommandInput , ListUsersCommandOutput } from "./commands/ListUsersCommand" ;
317
+ import { ReleasePhoneNumberCommandInput , ReleasePhoneNumberCommandOutput } from "./commands/ReleasePhoneNumberCommand" ;
303
318
import {
304
319
ResumeContactRecordingCommandInput ,
305
320
ResumeContactRecordingCommandOutput ,
306
321
} from "./commands/ResumeContactRecordingCommand" ;
322
+ import {
323
+ SearchAvailablePhoneNumbersCommandInput ,
324
+ SearchAvailablePhoneNumbersCommandOutput ,
325
+ } from "./commands/SearchAvailablePhoneNumbersCommand" ;
307
326
import { SearchVocabulariesCommandInput , SearchVocabulariesCommandOutput } from "./commands/SearchVocabulariesCommand" ;
308
327
import { StartChatContactCommandInput , StartChatContactCommandOutput } from "./commands/StartChatContactCommand" ;
309
328
import {
@@ -376,6 +395,7 @@ import {
376
395
UpdateInstanceStorageConfigCommandInput ,
377
396
UpdateInstanceStorageConfigCommandOutput ,
378
397
} from "./commands/UpdateInstanceStorageConfigCommand" ;
398
+ import { UpdatePhoneNumberCommandInput , UpdatePhoneNumberCommandOutput } from "./commands/UpdatePhoneNumberCommand" ;
379
399
import {
380
400
UpdateQueueHoursOfOperationCommandInput ,
381
401
UpdateQueueHoursOfOperationCommandOutput ,
@@ -455,9 +475,11 @@ export type ServiceInputTypes =
455
475
| AssociateInstanceStorageConfigCommandInput
456
476
| AssociateLambdaFunctionCommandInput
457
477
| AssociateLexBotCommandInput
478
+ | AssociatePhoneNumberContactFlowCommandInput
458
479
| AssociateQueueQuickConnectsCommandInput
459
480
| AssociateRoutingProfileQueuesCommandInput
460
481
| AssociateSecurityKeyCommandInput
482
+ | ClaimPhoneNumberCommandInput
461
483
| CreateAgentStatusCommandInput
462
484
| CreateContactFlowCommandInput
463
485
| CreateContactFlowModuleCommandInput
@@ -491,6 +513,7 @@ export type ServiceInputTypes =
491
513
| DescribeInstanceAttributeCommandInput
492
514
| DescribeInstanceCommandInput
493
515
| DescribeInstanceStorageConfigCommandInput
516
+ | DescribePhoneNumberCommandInput
494
517
| DescribeQueueCommandInput
495
518
| DescribeQuickConnectCommandInput
496
519
| DescribeRoutingProfileCommandInput
@@ -504,6 +527,7 @@ export type ServiceInputTypes =
504
527
| DisassociateInstanceStorageConfigCommandInput
505
528
| DisassociateLambdaFunctionCommandInput
506
529
| DisassociateLexBotCommandInput
530
+ | DisassociatePhoneNumberContactFlowCommandInput
507
531
| DisassociateQueueQuickConnectsCommandInput
508
532
| DisassociateRoutingProfileQueuesCommandInput
509
533
| DisassociateSecurityKeyCommandInput
@@ -526,6 +550,7 @@ export type ServiceInputTypes =
526
550
| ListLambdaFunctionsCommandInput
527
551
| ListLexBotsCommandInput
528
552
| ListPhoneNumbersCommandInput
553
+ | ListPhoneNumbersV2CommandInput
529
554
| ListPromptsCommandInput
530
555
| ListQueueQuickConnectsCommandInput
531
556
| ListQueuesCommandInput
@@ -539,7 +564,9 @@ export type ServiceInputTypes =
539
564
| ListUseCasesCommandInput
540
565
| ListUserHierarchyGroupsCommandInput
541
566
| ListUsersCommandInput
567
+ | ReleasePhoneNumberCommandInput
542
568
| ResumeContactRecordingCommandInput
569
+ | SearchAvailablePhoneNumbersCommandInput
543
570
| SearchVocabulariesCommandInput
544
571
| StartChatContactCommandInput
545
572
| StartContactRecordingCommandInput
@@ -564,6 +591,7 @@ export type ServiceInputTypes =
564
591
| UpdateHoursOfOperationCommandInput
565
592
| UpdateInstanceAttributeCommandInput
566
593
| UpdateInstanceStorageConfigCommandInput
594
+ | UpdatePhoneNumberCommandInput
567
595
| UpdateQueueHoursOfOperationCommandInput
568
596
| UpdateQueueMaxContactsCommandInput
569
597
| UpdateQueueNameCommandInput
@@ -591,9 +619,11 @@ export type ServiceOutputTypes =
591
619
| AssociateInstanceStorageConfigCommandOutput
592
620
| AssociateLambdaFunctionCommandOutput
593
621
| AssociateLexBotCommandOutput
622
+ | AssociatePhoneNumberContactFlowCommandOutput
594
623
| AssociateQueueQuickConnectsCommandOutput
595
624
| AssociateRoutingProfileQueuesCommandOutput
596
625
| AssociateSecurityKeyCommandOutput
626
+ | ClaimPhoneNumberCommandOutput
597
627
| CreateAgentStatusCommandOutput
598
628
| CreateContactFlowCommandOutput
599
629
| CreateContactFlowModuleCommandOutput
@@ -627,6 +657,7 @@ export type ServiceOutputTypes =
627
657
| DescribeInstanceAttributeCommandOutput
628
658
| DescribeInstanceCommandOutput
629
659
| DescribeInstanceStorageConfigCommandOutput
660
+ | DescribePhoneNumberCommandOutput
630
661
| DescribeQueueCommandOutput
631
662
| DescribeQuickConnectCommandOutput
632
663
| DescribeRoutingProfileCommandOutput
@@ -640,6 +671,7 @@ export type ServiceOutputTypes =
640
671
| DisassociateInstanceStorageConfigCommandOutput
641
672
| DisassociateLambdaFunctionCommandOutput
642
673
| DisassociateLexBotCommandOutput
674
+ | DisassociatePhoneNumberContactFlowCommandOutput
643
675
| DisassociateQueueQuickConnectsCommandOutput
644
676
| DisassociateRoutingProfileQueuesCommandOutput
645
677
| DisassociateSecurityKeyCommandOutput
@@ -662,6 +694,7 @@ export type ServiceOutputTypes =
662
694
| ListLambdaFunctionsCommandOutput
663
695
| ListLexBotsCommandOutput
664
696
| ListPhoneNumbersCommandOutput
697
+ | ListPhoneNumbersV2CommandOutput
665
698
| ListPromptsCommandOutput
666
699
| ListQueueQuickConnectsCommandOutput
667
700
| ListQueuesCommandOutput
@@ -675,7 +708,9 @@ export type ServiceOutputTypes =
675
708
| ListUseCasesCommandOutput
676
709
| ListUserHierarchyGroupsCommandOutput
677
710
| ListUsersCommandOutput
711
+ | ReleasePhoneNumberCommandOutput
678
712
| ResumeContactRecordingCommandOutput
713
+ | SearchAvailablePhoneNumbersCommandOutput
679
714
| SearchVocabulariesCommandOutput
680
715
| StartChatContactCommandOutput
681
716
| StartContactRecordingCommandOutput
@@ -700,6 +735,7 @@ export type ServiceOutputTypes =
700
735
| UpdateHoursOfOperationCommandOutput
701
736
| UpdateInstanceAttributeCommandOutput
702
737
| UpdateInstanceStorageConfigCommandOutput
738
+ | UpdatePhoneNumberCommandOutput
703
739
| UpdateQueueHoursOfOperationCommandOutput
704
740
| UpdateQueueMaxContactsCommandOutput
705
741
| UpdateQueueNameCommandOutput
0 commit comments