@aws-sdk/client-chime-sdk-voice 3.987.0 → 3.989.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 +115 -2764
- package/dist-cjs/models/ChimeSDKVoiceServiceException.js +12 -0
- package/dist-cjs/models/errors.js +208 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2157 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +88 -82
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultChimeSDKVoiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2022-08-03",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.chimesdkvoice",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2022-08-03",
|
|
30
32
|
serviceTarget: "ChimeSDKTelephonyService",
|
|
31
33
|
},
|
|
@@ -538,15 +538,15 @@ const _pD = "postDirectional";
|
|
|
538
538
|
const _pDr = "preDirectional";
|
|
539
539
|
const _pnt = "phone-number-type";
|
|
540
540
|
const _pt = "product-type";
|
|
541
|
-
const _s = "
|
|
541
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkvoice";
|
|
542
542
|
const _sI = "streetInfo";
|
|
543
543
|
const _sN = "streetName";
|
|
544
544
|
const _sNt = "streetNumber";
|
|
545
545
|
const _sS = "streetSuffix";
|
|
546
546
|
const _se = "server";
|
|
547
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkvoice";
|
|
548
547
|
const _sma = "sip-media-application";
|
|
549
|
-
const _st = "
|
|
548
|
+
const _st = "state";
|
|
549
|
+
const _sta = "status";
|
|
550
550
|
const _tfp = "toll-free-prefix";
|
|
551
551
|
const _vpdi = "voice-profile-domain-id";
|
|
552
552
|
const _xN = "xmlName";
|
|
@@ -554,6 +554,86 @@ const n0 = "com.amazonaws.chimesdkvoice";
|
|
|
554
554
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
555
555
|
import { ChimeSDKVoiceServiceException } from "../models/ChimeSDKVoiceServiceException";
|
|
556
556
|
import { AccessDeniedException, BadRequestException, ConflictException, ForbiddenException, GoneException, NotFoundException, ResourceLimitExceededException, ServiceFailureException, ServiceUnavailableException, ThrottledClientException, UnauthorizedClientException, UnprocessableEntityException, } from "../models/errors";
|
|
557
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
558
|
+
export var ChimeSDKVoiceServiceException$ = [-3, _s, "ChimeSDKVoiceServiceException", 0, [], []];
|
|
559
|
+
_s_registry.registerError(ChimeSDKVoiceServiceException$, ChimeSDKVoiceServiceException);
|
|
560
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
561
|
+
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
562
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
563
|
+
[_C, _M],
|
|
564
|
+
[0, 0]
|
|
565
|
+
];
|
|
566
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
567
|
+
export var BadRequestException$ = [-3, n0, _BRE,
|
|
568
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
569
|
+
[_C, _M],
|
|
570
|
+
[0, 0]
|
|
571
|
+
];
|
|
572
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
573
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
574
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
575
|
+
[_C, _M],
|
|
576
|
+
[0, 0]
|
|
577
|
+
];
|
|
578
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
579
|
+
export var ForbiddenException$ = [-3, n0, _FE,
|
|
580
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
581
|
+
[_C, _M],
|
|
582
|
+
[0, 0]
|
|
583
|
+
];
|
|
584
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
585
|
+
export var GoneException$ = [-3, n0, _GE,
|
|
586
|
+
{ [_e]: _c, [_hE]: 410 },
|
|
587
|
+
[_C, _M],
|
|
588
|
+
[0, 0]
|
|
589
|
+
];
|
|
590
|
+
n0_registry.registerError(GoneException$, GoneException);
|
|
591
|
+
export var NotFoundException$ = [-3, n0, _NFE,
|
|
592
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
593
|
+
[_C, _M],
|
|
594
|
+
[0, 0]
|
|
595
|
+
];
|
|
596
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
597
|
+
export var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
598
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
599
|
+
[_C, _M],
|
|
600
|
+
[0, 0]
|
|
601
|
+
];
|
|
602
|
+
n0_registry.registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
603
|
+
export var ServiceFailureException$ = [-3, n0, _SFE,
|
|
604
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
605
|
+
[_C, _M],
|
|
606
|
+
[0, 0]
|
|
607
|
+
];
|
|
608
|
+
n0_registry.registerError(ServiceFailureException$, ServiceFailureException);
|
|
609
|
+
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
610
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
611
|
+
[_C, _M],
|
|
612
|
+
[0, 0]
|
|
613
|
+
];
|
|
614
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
615
|
+
export var ThrottledClientException$ = [-3, n0, _TCE,
|
|
616
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
617
|
+
[_C, _M],
|
|
618
|
+
[0, 0]
|
|
619
|
+
];
|
|
620
|
+
n0_registry.registerError(ThrottledClientException$, ThrottledClientException);
|
|
621
|
+
export var UnauthorizedClientException$ = [-3, n0, _UCE,
|
|
622
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
623
|
+
[_C, _M],
|
|
624
|
+
[0, 0]
|
|
625
|
+
];
|
|
626
|
+
n0_registry.registerError(UnauthorizedClientException$, UnauthorizedClientException);
|
|
627
|
+
export var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
628
|
+
{ [_e]: _c, [_hE]: 422 },
|
|
629
|
+
[_C, _M],
|
|
630
|
+
[0, 0]
|
|
631
|
+
];
|
|
632
|
+
n0_registry.registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
633
|
+
export const errorTypeRegistries = [
|
|
634
|
+
_s_registry,
|
|
635
|
+
n0_registry,
|
|
636
|
+
];
|
|
557
637
|
var AlexaSkillId = [0, n0, _ASI, 8, 0];
|
|
558
638
|
var Arn = [0, n0, _A, 8, 0];
|
|
559
639
|
var CallingName = [0, n0, _CN, 8, 0];
|
|
@@ -565,15 +645,9 @@ var SensitiveNonEmptyString = [0, n0, _SNES, 8, 0];
|
|
|
565
645
|
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
566
646
|
var TagKey = [0, n0, _TK, 8, 0];
|
|
567
647
|
var TagValue = [0, n0, _TV, 8, 0];
|
|
568
|
-
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
569
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
570
|
-
[_C, _M],
|
|
571
|
-
[0, 0]
|
|
572
|
-
];
|
|
573
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
574
648
|
export var Address$ = [3, n0, _Ad,
|
|
575
649
|
0,
|
|
576
|
-
[_sN, _sS, _pD, _pDr, _sNt, _ci,
|
|
650
|
+
[_sN, _sS, _pD, _pDr, _sNt, _ci, _st, _pC, _pCP, _co],
|
|
577
651
|
[[() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]]
|
|
578
652
|
];
|
|
579
653
|
export var AssociatePhoneNumbersWithVoiceConnectorGroupRequest$ = [3, n0, _APNWVCGR,
|
|
@@ -596,12 +670,6 @@ export var AssociatePhoneNumbersWithVoiceConnectorResponse$ = [3, n0, _APNWVCRs,
|
|
|
596
670
|
[_PNE],
|
|
597
671
|
[[() => PhoneNumberErrorList, 0]]
|
|
598
672
|
];
|
|
599
|
-
export var BadRequestException$ = [-3, n0, _BRE,
|
|
600
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
601
|
-
[_C, _M],
|
|
602
|
-
[0, 0]
|
|
603
|
-
];
|
|
604
|
-
TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
605
673
|
export var BatchDeletePhoneNumberRequest$ = [3, n0, _BDPNR,
|
|
606
674
|
0,
|
|
607
675
|
[_PNI],
|
|
@@ -629,15 +697,9 @@ export var CallDetails$ = [3, n0, _CD,
|
|
|
629
697
|
];
|
|
630
698
|
export var CandidateAddress$ = [3, n0, _CA,
|
|
631
699
|
0,
|
|
632
|
-
[_sI, _sNt, _ci,
|
|
700
|
+
[_sI, _sNt, _ci, _st, _pC, _pCP, _co],
|
|
633
701
|
[[() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0]]
|
|
634
702
|
];
|
|
635
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
636
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
637
|
-
[_C, _M],
|
|
638
|
-
[0, 0]
|
|
639
|
-
];
|
|
640
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
641
703
|
export var CreatePhoneNumberOrderRequest$ = [3, n0, _CPNOR,
|
|
642
704
|
0,
|
|
643
705
|
[_PT, _EPNh, _N],
|
|
@@ -843,12 +905,6 @@ export var ExternalSystemsConfiguration$ = [3, n0, _ESC,
|
|
|
843
905
|
[_SBCT, _CCST],
|
|
844
906
|
[64 | 0, 64 | 0]
|
|
845
907
|
];
|
|
846
|
-
export var ForbiddenException$ = [-3, n0, _FE,
|
|
847
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
848
|
-
[_C, _M],
|
|
849
|
-
[0, 0]
|
|
850
|
-
];
|
|
851
|
-
TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
852
908
|
export var GeoMatchParams$ = [3, n0, _GMP,
|
|
853
909
|
0,
|
|
854
910
|
[_Co, _AC],
|
|
@@ -1074,12 +1130,6 @@ export var GetVoiceToneAnalysisTaskResponse$ = [3, n0, _GVTATRe,
|
|
|
1074
1130
|
[_VTAT],
|
|
1075
1131
|
[() => VoiceToneAnalysisTask$]
|
|
1076
1132
|
];
|
|
1077
|
-
export var GoneException$ = [-3, n0, _GE,
|
|
1078
|
-
{ [_e]: _c, [_hE]: 410 },
|
|
1079
|
-
[_C, _M],
|
|
1080
|
-
[0, 0]
|
|
1081
|
-
];
|
|
1082
|
-
TypeRegistry.for(n0).registerError(GoneException$, GoneException);
|
|
1083
1133
|
export var ListAvailableVoiceConnectorRegionsResponse$ = [3, n0, _LAVCRR,
|
|
1084
1134
|
0,
|
|
1085
1135
|
[_VCR],
|
|
@@ -1098,7 +1148,7 @@ export var ListPhoneNumberOrdersResponse$ = [3, n0, _LPNORi,
|
|
|
1098
1148
|
export var ListPhoneNumbersRequest$ = [3, n0, _LPNR,
|
|
1099
1149
|
0,
|
|
1100
1150
|
[_S, _PT, _FN, _FV, _MR, _NTe],
|
|
1101
|
-
[[0, { [_hQ]:
|
|
1151
|
+
[[0, { [_hQ]: _sta }], [0, { [_hQ]: _pt }], [0, { [_hQ]: _fn }], [0, { [_hQ]: _fv }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1102
1152
|
];
|
|
1103
1153
|
export var ListPhoneNumbersResponse$ = [3, n0, _LPNRi,
|
|
1104
1154
|
0,
|
|
@@ -1108,7 +1158,7 @@ export var ListPhoneNumbersResponse$ = [3, n0, _LPNRi,
|
|
|
1108
1158
|
export var ListProxySessionsRequest$ = [3, n0, _LPSR,
|
|
1109
1159
|
0,
|
|
1110
1160
|
[_VCI, _S, _NTe, _MR],
|
|
1111
|
-
[[0, 1], [0, { [_hQ]:
|
|
1161
|
+
[[0, 1], [0, { [_hQ]: _sta }], [0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]], 1
|
|
1112
1162
|
];
|
|
1113
1163
|
export var ListProxySessionsResponse$ = [3, n0, _LPSRi,
|
|
1114
1164
|
0,
|
|
@@ -1215,12 +1265,6 @@ export var MediaInsightsConfiguration$ = [3, n0, _MIC,
|
|
|
1215
1265
|
[_D, _CAo],
|
|
1216
1266
|
[2, [() => Arn, 0]]
|
|
1217
1267
|
];
|
|
1218
|
-
export var NotFoundException$ = [-3, n0, _NFE,
|
|
1219
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1220
|
-
[_C, _M],
|
|
1221
|
-
[0, 0]
|
|
1222
|
-
];
|
|
1223
|
-
TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
1224
1268
|
export var OrderedPhoneNumber$ = [3, n0, _OPN,
|
|
1225
1269
|
0,
|
|
1226
1270
|
[_EPN, _S],
|
|
@@ -1376,12 +1420,6 @@ export var PutVoiceConnectorTerminationResponse$ = [3, n0, _PVCTRu,
|
|
|
1376
1420
|
[_Te],
|
|
1377
1421
|
[[() => Termination$, 0]]
|
|
1378
1422
|
];
|
|
1379
|
-
export var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
1380
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1381
|
-
[_C, _M],
|
|
1382
|
-
[0, 0]
|
|
1383
|
-
];
|
|
1384
|
-
TypeRegistry.for(n0).registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
1385
1423
|
export var RestorePhoneNumberRequest$ = [3, n0, _RPNR,
|
|
1386
1424
|
0,
|
|
1387
1425
|
[_PNIh],
|
|
@@ -1395,7 +1433,7 @@ export var RestorePhoneNumberResponse$ = [3, n0, _RPNRe,
|
|
|
1395
1433
|
export var SearchAvailablePhoneNumbersRequest$ = [3, n0, _SAPNR,
|
|
1396
1434
|
0,
|
|
1397
1435
|
[_AC, _Ci, _Co, _St, _TFP, _PNT, _MR, _NTe],
|
|
1398
|
-
[[0, { [_hQ]: _ac }], [0, { [_hQ]: _ci }], [0, { [_hQ]: _co }], [0, { [_hQ]:
|
|
1436
|
+
[[0, { [_hQ]: _ac }], [0, { [_hQ]: _ci }], [0, { [_hQ]: _co }], [0, { [_hQ]: _st }], [0, { [_hQ]: _tfp }], [0, { [_hQ]: _pnt }], [1, { [_hQ]: _mr }], [0, { [_hQ]: _nt }]]
|
|
1399
1437
|
];
|
|
1400
1438
|
export var SearchAvailablePhoneNumbersResponse$ = [3, n0, _SAPNRe,
|
|
1401
1439
|
0,
|
|
@@ -1407,18 +1445,6 @@ export var ServerSideEncryptionConfiguration$ = [3, n0, _SSEC,
|
|
|
1407
1445
|
[_KKA],
|
|
1408
1446
|
[[() => Arn, 0]], 1
|
|
1409
1447
|
];
|
|
1410
|
-
export var ServiceFailureException$ = [-3, n0, _SFE,
|
|
1411
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1412
|
-
[_C, _M],
|
|
1413
|
-
[0, 0]
|
|
1414
|
-
];
|
|
1415
|
-
TypeRegistry.for(n0).registerError(ServiceFailureException$, ServiceFailureException);
|
|
1416
|
-
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
1417
|
-
{ [_e]: _se, [_hE]: 503 },
|
|
1418
|
-
[_C, _M],
|
|
1419
|
-
[0, 0]
|
|
1420
|
-
];
|
|
1421
|
-
TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1422
1448
|
export var SipMediaApplication$ = [3, n0, _SMA,
|
|
1423
1449
|
0,
|
|
1424
1450
|
[_SMAI, _AR, _N, _E, _CT, _UT, _SMAA],
|
|
@@ -1529,24 +1555,6 @@ export var TerminationHealth$ = [3, n0, _TH,
|
|
|
1529
1555
|
[_Ti, _So],
|
|
1530
1556
|
[5, 0]
|
|
1531
1557
|
];
|
|
1532
|
-
export var ThrottledClientException$ = [-3, n0, _TCE,
|
|
1533
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1534
|
-
[_C, _M],
|
|
1535
|
-
[0, 0]
|
|
1536
|
-
];
|
|
1537
|
-
TypeRegistry.for(n0).registerError(ThrottledClientException$, ThrottledClientException);
|
|
1538
|
-
export var UnauthorizedClientException$ = [-3, n0, _UCE,
|
|
1539
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
1540
|
-
[_C, _M],
|
|
1541
|
-
[0, 0]
|
|
1542
|
-
];
|
|
1543
|
-
TypeRegistry.for(n0).registerError(UnauthorizedClientException$, UnauthorizedClientException);
|
|
1544
|
-
export var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
1545
|
-
{ [_e]: _c, [_hE]: 422 },
|
|
1546
|
-
[_C, _M],
|
|
1547
|
-
[0, 0]
|
|
1548
|
-
];
|
|
1549
|
-
TypeRegistry.for(n0).registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
1550
1558
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
1551
1559
|
0,
|
|
1552
1560
|
[_RARN, _TKa],
|
|
@@ -1713,8 +1721,6 @@ export var VoiceToneAnalysisTask$ = [3, n0, _VTAT,
|
|
|
1713
1721
|
[0, 0, () => CallDetails$, 5, 5, 5, 0]
|
|
1714
1722
|
];
|
|
1715
1723
|
var __Unit = "unit";
|
|
1716
|
-
export var ChimeSDKVoiceServiceException$ = [-3, _sm, "ChimeSDKVoiceServiceException", 0, [], []];
|
|
1717
|
-
TypeRegistry.for(_sm).registerError(ChimeSDKVoiceServiceException$, ChimeSDKVoiceServiceException);
|
|
1718
1724
|
var AlexaSkillIdList = [1, n0, _ASIL,
|
|
1719
1725
|
0, [() => AlexaSkillId,
|
|
1720
1726
|
0]
|
|
@@ -1,18 +1,35 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var ChimeSDKVoiceServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var BadRequestException$: StaticErrorSchema;
|
|
6
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
7
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
8
|
+
export declare var GoneException$: StaticErrorSchema;
|
|
9
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var ResourceLimitExceededException$: StaticErrorSchema;
|
|
11
|
+
export declare var ServiceFailureException$: StaticErrorSchema;
|
|
12
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
13
|
+
export declare var ThrottledClientException$: StaticErrorSchema;
|
|
14
|
+
export declare var UnauthorizedClientException$: StaticErrorSchema;
|
|
15
|
+
export declare var UnprocessableEntityException$: StaticErrorSchema;
|
|
16
|
+
/**
|
|
17
|
+
* TypeRegistry instances containing modeled errors.
|
|
18
|
+
* @internal
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
22
|
export declare var Address$: StaticStructureSchema;
|
|
4
23
|
export declare var AssociatePhoneNumbersWithVoiceConnectorGroupRequest$: StaticStructureSchema;
|
|
5
24
|
export declare var AssociatePhoneNumbersWithVoiceConnectorGroupResponse$: StaticStructureSchema;
|
|
6
25
|
export declare var AssociatePhoneNumbersWithVoiceConnectorRequest$: StaticStructureSchema;
|
|
7
26
|
export declare var AssociatePhoneNumbersWithVoiceConnectorResponse$: StaticStructureSchema;
|
|
8
|
-
export declare var BadRequestException$: StaticErrorSchema;
|
|
9
27
|
export declare var BatchDeletePhoneNumberRequest$: StaticStructureSchema;
|
|
10
28
|
export declare var BatchDeletePhoneNumberResponse$: StaticStructureSchema;
|
|
11
29
|
export declare var BatchUpdatePhoneNumberRequest$: StaticStructureSchema;
|
|
12
30
|
export declare var BatchUpdatePhoneNumberResponse$: StaticStructureSchema;
|
|
13
31
|
export declare var CallDetails$: StaticStructureSchema;
|
|
14
32
|
export declare var CandidateAddress$: StaticStructureSchema;
|
|
15
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
16
33
|
export declare var CreatePhoneNumberOrderRequest$: StaticStructureSchema;
|
|
17
34
|
export declare var CreatePhoneNumberOrderResponse$: StaticStructureSchema;
|
|
18
35
|
export declare var CreateProxySessionRequest$: StaticStructureSchema;
|
|
@@ -54,7 +71,6 @@ export declare var DisassociatePhoneNumbersFromVoiceConnectorResponse$: StaticSt
|
|
|
54
71
|
export declare var DNISEmergencyCallingConfiguration$: StaticStructureSchema;
|
|
55
72
|
export declare var EmergencyCallingConfiguration$: StaticStructureSchema;
|
|
56
73
|
export declare var ExternalSystemsConfiguration$: StaticStructureSchema;
|
|
57
|
-
export declare var ForbiddenException$: StaticErrorSchema;
|
|
58
74
|
export declare var GeoMatchParams$: StaticStructureSchema;
|
|
59
75
|
export declare var GetGlobalSettingsResponse$: StaticStructureSchema;
|
|
60
76
|
export declare var GetPhoneNumberOrderRequest$: StaticStructureSchema;
|
|
@@ -100,7 +116,6 @@ export declare var GetVoiceProfileRequest$: StaticStructureSchema;
|
|
|
100
116
|
export declare var GetVoiceProfileResponse$: StaticStructureSchema;
|
|
101
117
|
export declare var GetVoiceToneAnalysisTaskRequest$: StaticStructureSchema;
|
|
102
118
|
export declare var GetVoiceToneAnalysisTaskResponse$: StaticStructureSchema;
|
|
103
|
-
export declare var GoneException$: StaticErrorSchema;
|
|
104
119
|
export declare var ListAvailableVoiceConnectorRegionsResponse$: StaticStructureSchema;
|
|
105
120
|
export declare var ListPhoneNumberOrdersRequest$: StaticStructureSchema;
|
|
106
121
|
export declare var ListPhoneNumberOrdersResponse$: StaticStructureSchema;
|
|
@@ -128,7 +143,6 @@ export declare var ListVoiceProfilesRequest$: StaticStructureSchema;
|
|
|
128
143
|
export declare var ListVoiceProfilesResponse$: StaticStructureSchema;
|
|
129
144
|
export declare var LoggingConfiguration$: StaticStructureSchema;
|
|
130
145
|
export declare var MediaInsightsConfiguration$: StaticStructureSchema;
|
|
131
|
-
export declare var NotFoundException$: StaticErrorSchema;
|
|
132
146
|
export declare var OrderedPhoneNumber$: StaticStructureSchema;
|
|
133
147
|
export declare var Origination$: StaticStructureSchema;
|
|
134
148
|
export declare var OriginationRoute$: StaticStructureSchema;
|
|
@@ -160,14 +174,11 @@ export declare var PutVoiceConnectorStreamingConfigurationResponse$: StaticStruc
|
|
|
160
174
|
export declare var PutVoiceConnectorTerminationCredentialsRequest$: StaticStructureSchema;
|
|
161
175
|
export declare var PutVoiceConnectorTerminationRequest$: StaticStructureSchema;
|
|
162
176
|
export declare var PutVoiceConnectorTerminationResponse$: StaticStructureSchema;
|
|
163
|
-
export declare var ResourceLimitExceededException$: StaticErrorSchema;
|
|
164
177
|
export declare var RestorePhoneNumberRequest$: StaticStructureSchema;
|
|
165
178
|
export declare var RestorePhoneNumberResponse$: StaticStructureSchema;
|
|
166
179
|
export declare var SearchAvailablePhoneNumbersRequest$: StaticStructureSchema;
|
|
167
180
|
export declare var SearchAvailablePhoneNumbersResponse$: StaticStructureSchema;
|
|
168
181
|
export declare var ServerSideEncryptionConfiguration$: StaticStructureSchema;
|
|
169
|
-
export declare var ServiceFailureException$: StaticErrorSchema;
|
|
170
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
171
182
|
export declare var SipMediaApplication$: StaticStructureSchema;
|
|
172
183
|
export declare var SipMediaApplicationAlexaSkillConfiguration$: StaticStructureSchema;
|
|
173
184
|
export declare var SipMediaApplicationCall$: StaticStructureSchema;
|
|
@@ -190,9 +201,6 @@ export declare var Tag$: StaticStructureSchema;
|
|
|
190
201
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
191
202
|
export declare var Termination$: StaticStructureSchema;
|
|
192
203
|
export declare var TerminationHealth$: StaticStructureSchema;
|
|
193
|
-
export declare var ThrottledClientException$: StaticErrorSchema;
|
|
194
|
-
export declare var UnauthorizedClientException$: StaticErrorSchema;
|
|
195
|
-
export declare var UnprocessableEntityException$: StaticErrorSchema;
|
|
196
204
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
197
205
|
export declare var UpdateGlobalSettingsRequest$: StaticStructureSchema;
|
|
198
206
|
export declare var UpdatePhoneNumberRequest$: StaticStructureSchema;
|
|
@@ -226,7 +234,6 @@ export declare var VoiceProfileDomain$: StaticStructureSchema;
|
|
|
226
234
|
export declare var VoiceProfileDomainSummary$: StaticStructureSchema;
|
|
227
235
|
export declare var VoiceProfileSummary$: StaticStructureSchema;
|
|
228
236
|
export declare var VoiceToneAnalysisTask$: StaticStructureSchema;
|
|
229
|
-
export declare var ChimeSDKVoiceServiceException$: StaticErrorSchema;
|
|
230
237
|
export declare var AssociatePhoneNumbersWithVoiceConnector$: StaticOperationSchema;
|
|
231
238
|
export declare var AssociatePhoneNumbersWithVoiceConnectorGroup$: StaticOperationSchema;
|
|
232
239
|
export declare var BatchDeletePhoneNumber$: StaticOperationSchema;
|
|
@@ -1,22 +1,34 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var ChimeSDKVoiceServiceException$: StaticErrorSchema;
|
|
6
8
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
|
+
export declare var BadRequestException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
12
|
+
export declare var GoneException$: StaticErrorSchema;
|
|
13
|
+
export declare var NotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ResourceLimitExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var ServiceFailureException$: StaticErrorSchema;
|
|
16
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
17
|
+
export declare var ThrottledClientException$: StaticErrorSchema;
|
|
18
|
+
export declare var UnauthorizedClientException$: StaticErrorSchema;
|
|
19
|
+
export declare var UnprocessableEntityException$: StaticErrorSchema;
|
|
20
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
7
21
|
export declare var Address$: StaticStructureSchema;
|
|
8
22
|
export declare var AssociatePhoneNumbersWithVoiceConnectorGroupRequest$: StaticStructureSchema;
|
|
9
23
|
export declare var AssociatePhoneNumbersWithVoiceConnectorGroupResponse$: StaticStructureSchema;
|
|
10
24
|
export declare var AssociatePhoneNumbersWithVoiceConnectorRequest$: StaticStructureSchema;
|
|
11
25
|
export declare var AssociatePhoneNumbersWithVoiceConnectorResponse$: StaticStructureSchema;
|
|
12
|
-
export declare var BadRequestException$: StaticErrorSchema;
|
|
13
26
|
export declare var BatchDeletePhoneNumberRequest$: StaticStructureSchema;
|
|
14
27
|
export declare var BatchDeletePhoneNumberResponse$: StaticStructureSchema;
|
|
15
28
|
export declare var BatchUpdatePhoneNumberRequest$: StaticStructureSchema;
|
|
16
29
|
export declare var BatchUpdatePhoneNumberResponse$: StaticStructureSchema;
|
|
17
30
|
export declare var CallDetails$: StaticStructureSchema;
|
|
18
31
|
export declare var CandidateAddress$: StaticStructureSchema;
|
|
19
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
20
32
|
export declare var CreatePhoneNumberOrderRequest$: StaticStructureSchema;
|
|
21
33
|
export declare var CreatePhoneNumberOrderResponse$: StaticStructureSchema;
|
|
22
34
|
export declare var CreateProxySessionRequest$: StaticStructureSchema;
|
|
@@ -58,7 +70,6 @@ export declare var DisassociatePhoneNumbersFromVoiceConnectorResponse$: StaticSt
|
|
|
58
70
|
export declare var DNISEmergencyCallingConfiguration$: StaticStructureSchema;
|
|
59
71
|
export declare var EmergencyCallingConfiguration$: StaticStructureSchema;
|
|
60
72
|
export declare var ExternalSystemsConfiguration$: StaticStructureSchema;
|
|
61
|
-
export declare var ForbiddenException$: StaticErrorSchema;
|
|
62
73
|
export declare var GeoMatchParams$: StaticStructureSchema;
|
|
63
74
|
export declare var GetGlobalSettingsResponse$: StaticStructureSchema;
|
|
64
75
|
export declare var GetPhoneNumberOrderRequest$: StaticStructureSchema;
|
|
@@ -104,7 +115,6 @@ export declare var GetVoiceProfileRequest$: StaticStructureSchema;
|
|
|
104
115
|
export declare var GetVoiceProfileResponse$: StaticStructureSchema;
|
|
105
116
|
export declare var GetVoiceToneAnalysisTaskRequest$: StaticStructureSchema;
|
|
106
117
|
export declare var GetVoiceToneAnalysisTaskResponse$: StaticStructureSchema;
|
|
107
|
-
export declare var GoneException$: StaticErrorSchema;
|
|
108
118
|
export declare var ListAvailableVoiceConnectorRegionsResponse$: StaticStructureSchema;
|
|
109
119
|
export declare var ListPhoneNumberOrdersRequest$: StaticStructureSchema;
|
|
110
120
|
export declare var ListPhoneNumberOrdersResponse$: StaticStructureSchema;
|
|
@@ -132,7 +142,6 @@ export declare var ListVoiceProfilesRequest$: StaticStructureSchema;
|
|
|
132
142
|
export declare var ListVoiceProfilesResponse$: StaticStructureSchema;
|
|
133
143
|
export declare var LoggingConfiguration$: StaticStructureSchema;
|
|
134
144
|
export declare var MediaInsightsConfiguration$: StaticStructureSchema;
|
|
135
|
-
export declare var NotFoundException$: StaticErrorSchema;
|
|
136
145
|
export declare var OrderedPhoneNumber$: StaticStructureSchema;
|
|
137
146
|
export declare var Origination$: StaticStructureSchema;
|
|
138
147
|
export declare var OriginationRoute$: StaticStructureSchema;
|
|
@@ -164,14 +173,11 @@ export declare var PutVoiceConnectorStreamingConfigurationResponse$: StaticStruc
|
|
|
164
173
|
export declare var PutVoiceConnectorTerminationCredentialsRequest$: StaticStructureSchema;
|
|
165
174
|
export declare var PutVoiceConnectorTerminationRequest$: StaticStructureSchema;
|
|
166
175
|
export declare var PutVoiceConnectorTerminationResponse$: StaticStructureSchema;
|
|
167
|
-
export declare var ResourceLimitExceededException$: StaticErrorSchema;
|
|
168
176
|
export declare var RestorePhoneNumberRequest$: StaticStructureSchema;
|
|
169
177
|
export declare var RestorePhoneNumberResponse$: StaticStructureSchema;
|
|
170
178
|
export declare var SearchAvailablePhoneNumbersRequest$: StaticStructureSchema;
|
|
171
179
|
export declare var SearchAvailablePhoneNumbersResponse$: StaticStructureSchema;
|
|
172
180
|
export declare var ServerSideEncryptionConfiguration$: StaticStructureSchema;
|
|
173
|
-
export declare var ServiceFailureException$: StaticErrorSchema;
|
|
174
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
175
181
|
export declare var SipMediaApplication$: StaticStructureSchema;
|
|
176
182
|
export declare var SipMediaApplicationAlexaSkillConfiguration$: StaticStructureSchema;
|
|
177
183
|
export declare var SipMediaApplicationCall$: StaticStructureSchema;
|
|
@@ -194,9 +200,6 @@ export declare var Tag$: StaticStructureSchema;
|
|
|
194
200
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
195
201
|
export declare var Termination$: StaticStructureSchema;
|
|
196
202
|
export declare var TerminationHealth$: StaticStructureSchema;
|
|
197
|
-
export declare var ThrottledClientException$: StaticErrorSchema;
|
|
198
|
-
export declare var UnauthorizedClientException$: StaticErrorSchema;
|
|
199
|
-
export declare var UnprocessableEntityException$: StaticErrorSchema;
|
|
200
203
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
201
204
|
export declare var UpdateGlobalSettingsRequest$: StaticStructureSchema;
|
|
202
205
|
export declare var UpdatePhoneNumberRequest$: StaticStructureSchema;
|
|
@@ -230,7 +233,6 @@ export declare var VoiceProfileDomain$: StaticStructureSchema;
|
|
|
230
233
|
export declare var VoiceProfileDomainSummary$: StaticStructureSchema;
|
|
231
234
|
export declare var VoiceProfileSummary$: StaticStructureSchema;
|
|
232
235
|
export declare var VoiceToneAnalysisTask$: StaticStructureSchema;
|
|
233
|
-
export declare var ChimeSDKVoiceServiceException$: StaticErrorSchema;
|
|
234
236
|
export declare var AssociatePhoneNumbersWithVoiceConnector$: StaticOperationSchema;
|
|
235
237
|
export declare var AssociatePhoneNumbersWithVoiceConnectorGroup$: StaticOperationSchema;
|
|
236
238
|
export declare var BatchDeletePhoneNumber$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-voice",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Voice Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.989.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-voice",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.9",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.8",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.9",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.989.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.7",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|