@aws-sdk/client-chime-sdk-voice 3.699.0 → 3.709.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.
Files changed (30) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +149 -0
  3. package/dist-es/ChimeSDKVoice.js +6 -0
  4. package/dist-es/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
  5. package/dist-es/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
  6. package/dist-es/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.js +22 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/models_0.js +17 -0
  9. package/dist-es/protocols/Aws_restJson1.js +73 -0
  10. package/dist-types/ChimeSDKVoice.d.ts +21 -0
  11. package/dist-types/ChimeSDKVoiceClient.d.ts +5 -2
  12. package/dist-types/commands/CreateVoiceConnectorCommand.d.ts +2 -0
  13. package/dist-types/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.d.ts +90 -0
  14. package/dist-types/commands/GetVoiceConnectorCommand.d.ts +1 -0
  15. package/dist-types/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.d.ts +100 -0
  16. package/dist-types/commands/ListVoiceConnectorsCommand.d.ts +1 -0
  17. package/dist-types/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.d.ts +108 -0
  18. package/dist-types/commands/UpdateVoiceConnectorCommand.d.ts +1 -0
  19. package/dist-types/commands/index.d.ts +3 -0
  20. package/dist-types/models/models_0.d.ts +159 -0
  21. package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
  22. package/dist-types/ts3.4/ChimeSDKVoice.d.ts +69 -0
  23. package/dist-types/ts3.4/ChimeSDKVoiceClient.d.ts +18 -0
  24. package/dist-types/ts3.4/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.d.ts +47 -0
  25. package/dist-types/ts3.4/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.d.ts +51 -0
  26. package/dist-types/ts3.4/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.d.ts +51 -0
  27. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  28. package/dist-types/ts3.4/models/models_0.d.ts +46 -0
  29. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  30. package/package.json +35 -35
@@ -384,11 +384,18 @@ export declare const VoiceConnectorAwsRegion: {
384
384
  };
385
385
  export type VoiceConnectorAwsRegion =
386
386
  (typeof VoiceConnectorAwsRegion)[keyof typeof VoiceConnectorAwsRegion];
387
+ export declare const VoiceConnectorIntegrationType: {
388
+ readonly CONNECT_ANALYTICS_CONNECTOR: "CONNECT_ANALYTICS_CONNECTOR";
389
+ readonly CONNECT_CALL_TRANSFER_CONNECTOR: "CONNECT_CALL_TRANSFER_CONNECTOR";
390
+ };
391
+ export type VoiceConnectorIntegrationType =
392
+ (typeof VoiceConnectorIntegrationType)[keyof typeof VoiceConnectorIntegrationType];
387
393
  export interface CreateVoiceConnectorRequest {
388
394
  Name: string | undefined;
389
395
  AwsRegion?: VoiceConnectorAwsRegion | undefined;
390
396
  RequireEncryption: boolean | undefined;
391
397
  Tags?: Tag[] | undefined;
398
+ IntegrationType?: VoiceConnectorIntegrationType | undefined;
392
399
  }
393
400
  export interface VoiceConnector {
394
401
  VoiceConnectorId?: string | undefined;
@@ -399,6 +406,7 @@ export interface VoiceConnector {
399
406
  CreatedTimestamp?: Date | undefined;
400
407
  UpdatedTimestamp?: Date | undefined;
401
408
  VoiceConnectorArn?: string | undefined;
409
+ IntegrationType?: VoiceConnectorIntegrationType | undefined;
402
410
  }
403
411
  export interface CreateVoiceConnectorResponse {
404
412
  VoiceConnector?: VoiceConnector | undefined;
@@ -488,6 +496,9 @@ export interface DeleteVoiceConnectorRequest {
488
496
  export interface DeleteVoiceConnectorEmergencyCallingConfigurationRequest {
489
497
  VoiceConnectorId: string | undefined;
490
498
  }
499
+ export interface DeleteVoiceConnectorExternalSystemsConfigurationRequest {
500
+ VoiceConnectorId: string | undefined;
501
+ }
491
502
  export interface DeleteVoiceConnectorGroupRequest {
492
503
  VoiceConnectorGroupId: string | undefined;
493
504
  }
@@ -694,6 +705,33 @@ export interface EmergencyCallingConfiguration {
694
705
  export interface GetVoiceConnectorEmergencyCallingConfigurationResponse {
695
706
  EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
696
707
  }
708
+ export interface GetVoiceConnectorExternalSystemsConfigurationRequest {
709
+ VoiceConnectorId: string | undefined;
710
+ }
711
+ export declare const ContactCenterSystemType: {
712
+ readonly AVAYA_AURA_CALL_CENTER_ELITE: "AVAYA_AURA_CALL_CENTER_ELITE";
713
+ readonly AVAYA_AURA_CONTACT_CENTER: "AVAYA_AURA_CONTACT_CENTER";
714
+ readonly CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE: "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE";
715
+ readonly GENESYS_ENGAGE_ON_PREMISES: "GENESYS_ENGAGE_ON_PREMISES";
716
+ };
717
+ export type ContactCenterSystemType =
718
+ (typeof ContactCenterSystemType)[keyof typeof ContactCenterSystemType];
719
+ export declare const SessionBorderControllerType: {
720
+ readonly AUDIOCODES_MEDIANT_SBC: "AUDIOCODES_MEDIANT_SBC";
721
+ readonly AVAYA_SBCE: "AVAYA_SBCE";
722
+ readonly CISCO_UNIFIED_BORDER_ELEMENT: "CISCO_UNIFIED_BORDER_ELEMENT";
723
+ readonly ORACLE_ACME_PACKET_SBC: "ORACLE_ACME_PACKET_SBC";
724
+ readonly RIBBON_SBC: "RIBBON_SBC";
725
+ };
726
+ export type SessionBorderControllerType =
727
+ (typeof SessionBorderControllerType)[keyof typeof SessionBorderControllerType];
728
+ export interface ExternalSystemsConfiguration {
729
+ SessionBorderControllerTypes?: SessionBorderControllerType[] | undefined;
730
+ ContactCenterSystemTypes?: ContactCenterSystemType[] | undefined;
731
+ }
732
+ export interface GetVoiceConnectorExternalSystemsConfigurationResponse {
733
+ ExternalSystemsConfiguration?: ExternalSystemsConfiguration | undefined;
734
+ }
697
735
  export interface GetVoiceConnectorGroupRequest {
698
736
  VoiceConnectorGroupId: string | undefined;
699
737
  }
@@ -973,6 +1011,14 @@ export interface PutVoiceConnectorEmergencyCallingConfigurationRequest {
973
1011
  export interface PutVoiceConnectorEmergencyCallingConfigurationResponse {
974
1012
  EmergencyCallingConfiguration?: EmergencyCallingConfiguration | undefined;
975
1013
  }
1014
+ export interface PutVoiceConnectorExternalSystemsConfigurationRequest {
1015
+ VoiceConnectorId: string | undefined;
1016
+ SessionBorderControllerTypes?: SessionBorderControllerType[] | undefined;
1017
+ ContactCenterSystemTypes?: ContactCenterSystemType[] | undefined;
1018
+ }
1019
+ export interface PutVoiceConnectorExternalSystemsConfigurationResponse {
1020
+ ExternalSystemsConfiguration?: ExternalSystemsConfiguration | undefined;
1021
+ }
976
1022
  export interface PutVoiceConnectorLoggingConfigurationRequest {
977
1023
  VoiceConnectorId: string | undefined;
978
1024
  LoggingConfiguration: LoggingConfiguration | undefined;
@@ -79,6 +79,10 @@ import {
79
79
  DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput,
80
80
  DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput,
81
81
  } from "../commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand";
82
+ import {
83
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
84
+ DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput,
85
+ } from "../commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand";
82
86
  import {
83
87
  DeleteVoiceConnectorGroupCommandInput,
84
88
  DeleteVoiceConnectorGroupCommandOutput,
@@ -167,6 +171,10 @@ import {
167
171
  GetVoiceConnectorEmergencyCallingConfigurationCommandInput,
168
172
  GetVoiceConnectorEmergencyCallingConfigurationCommandOutput,
169
173
  } from "../commands/GetVoiceConnectorEmergencyCallingConfigurationCommand";
174
+ import {
175
+ GetVoiceConnectorExternalSystemsConfigurationCommandInput,
176
+ GetVoiceConnectorExternalSystemsConfigurationCommandOutput,
177
+ } from "../commands/GetVoiceConnectorExternalSystemsConfigurationCommand";
170
178
  import {
171
179
  GetVoiceConnectorGroupCommandInput,
172
180
  GetVoiceConnectorGroupCommandOutput,
@@ -271,6 +279,10 @@ import {
271
279
  PutVoiceConnectorEmergencyCallingConfigurationCommandInput,
272
280
  PutVoiceConnectorEmergencyCallingConfigurationCommandOutput,
273
281
  } from "../commands/PutVoiceConnectorEmergencyCallingConfigurationCommand";
282
+ import {
283
+ PutVoiceConnectorExternalSystemsConfigurationCommandInput,
284
+ PutVoiceConnectorExternalSystemsConfigurationCommandOutput,
285
+ } from "../commands/PutVoiceConnectorExternalSystemsConfigurationCommand";
274
286
  import {
275
287
  PutVoiceConnectorLoggingConfigurationCommandInput,
276
288
  PutVoiceConnectorLoggingConfigurationCommandOutput,
@@ -451,6 +463,10 @@ export declare const se_DeleteVoiceConnectorEmergencyCallingConfigurationCommand
451
463
  input: DeleteVoiceConnectorEmergencyCallingConfigurationCommandInput,
452
464
  context: __SerdeContext
453
465
  ) => Promise<__HttpRequest>;
466
+ export declare const se_DeleteVoiceConnectorExternalSystemsConfigurationCommand: (
467
+ input: DeleteVoiceConnectorExternalSystemsConfigurationCommandInput,
468
+ context: __SerdeContext
469
+ ) => Promise<__HttpRequest>;
454
470
  export declare const se_DeleteVoiceConnectorGroupCommand: (
455
471
  input: DeleteVoiceConnectorGroupCommandInput,
456
472
  context: __SerdeContext
@@ -539,6 +555,10 @@ export declare const se_GetVoiceConnectorEmergencyCallingConfigurationCommand: (
539
555
  input: GetVoiceConnectorEmergencyCallingConfigurationCommandInput,
540
556
  context: __SerdeContext
541
557
  ) => Promise<__HttpRequest>;
558
+ export declare const se_GetVoiceConnectorExternalSystemsConfigurationCommand: (
559
+ input: GetVoiceConnectorExternalSystemsConfigurationCommandInput,
560
+ context: __SerdeContext
561
+ ) => Promise<__HttpRequest>;
542
562
  export declare const se_GetVoiceConnectorGroupCommand: (
543
563
  input: GetVoiceConnectorGroupCommandInput,
544
564
  context: __SerdeContext
@@ -643,6 +663,10 @@ export declare const se_PutVoiceConnectorEmergencyCallingConfigurationCommand: (
643
663
  input: PutVoiceConnectorEmergencyCallingConfigurationCommandInput,
644
664
  context: __SerdeContext
645
665
  ) => Promise<__HttpRequest>;
666
+ export declare const se_PutVoiceConnectorExternalSystemsConfigurationCommand: (
667
+ input: PutVoiceConnectorExternalSystemsConfigurationCommandInput,
668
+ context: __SerdeContext
669
+ ) => Promise<__HttpRequest>;
646
670
  export declare const se_PutVoiceConnectorLoggingConfigurationCommand: (
647
671
  input: PutVoiceConnectorLoggingConfigurationCommandInput,
648
672
  context: __SerdeContext
@@ -823,6 +847,10 @@ export declare const de_DeleteVoiceConnectorEmergencyCallingConfigurationCommand
823
847
  output: __HttpResponse,
824
848
  context: __SerdeContext
825
849
  ) => Promise<DeleteVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
850
+ export declare const de_DeleteVoiceConnectorExternalSystemsConfigurationCommand: (
851
+ output: __HttpResponse,
852
+ context: __SerdeContext
853
+ ) => Promise<DeleteVoiceConnectorExternalSystemsConfigurationCommandOutput>;
826
854
  export declare const de_DeleteVoiceConnectorGroupCommand: (
827
855
  output: __HttpResponse,
828
856
  context: __SerdeContext
@@ -911,6 +939,10 @@ export declare const de_GetVoiceConnectorEmergencyCallingConfigurationCommand: (
911
939
  output: __HttpResponse,
912
940
  context: __SerdeContext
913
941
  ) => Promise<GetVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
942
+ export declare const de_GetVoiceConnectorExternalSystemsConfigurationCommand: (
943
+ output: __HttpResponse,
944
+ context: __SerdeContext
945
+ ) => Promise<GetVoiceConnectorExternalSystemsConfigurationCommandOutput>;
914
946
  export declare const de_GetVoiceConnectorGroupCommand: (
915
947
  output: __HttpResponse,
916
948
  context: __SerdeContext
@@ -1015,6 +1047,10 @@ export declare const de_PutVoiceConnectorEmergencyCallingConfigurationCommand: (
1015
1047
  output: __HttpResponse,
1016
1048
  context: __SerdeContext
1017
1049
  ) => Promise<PutVoiceConnectorEmergencyCallingConfigurationCommandOutput>;
1050
+ export declare const de_PutVoiceConnectorExternalSystemsConfigurationCommand: (
1051
+ output: __HttpResponse,
1052
+ context: __SerdeContext
1053
+ ) => Promise<PutVoiceConnectorExternalSystemsConfigurationCommandOutput>;
1018
1054
  export declare const de_PutVoiceConnectorLoggingConfigurationCommand: (
1019
1055
  output: __HttpResponse,
1020
1056
  context: __SerdeContext
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.699.0",
4
+ "version": "3.709.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-chime-sdk-voice",
@@ -20,43 +20,43 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.699.0",
24
- "@aws-sdk/client-sts": "3.699.0",
25
- "@aws-sdk/core": "3.696.0",
26
- "@aws-sdk/credential-provider-node": "3.699.0",
27
- "@aws-sdk/middleware-host-header": "3.696.0",
28
- "@aws-sdk/middleware-logger": "3.696.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.696.0",
30
- "@aws-sdk/middleware-user-agent": "3.696.0",
31
- "@aws-sdk/region-config-resolver": "3.696.0",
32
- "@aws-sdk/types": "3.696.0",
33
- "@aws-sdk/util-endpoints": "3.696.0",
34
- "@aws-sdk/util-user-agent-browser": "3.696.0",
35
- "@aws-sdk/util-user-agent-node": "3.696.0",
36
- "@smithy/config-resolver": "^3.0.12",
37
- "@smithy/core": "^2.5.3",
38
- "@smithy/fetch-http-handler": "^4.1.1",
39
- "@smithy/hash-node": "^3.0.10",
40
- "@smithy/invalid-dependency": "^3.0.10",
41
- "@smithy/middleware-content-length": "^3.0.12",
42
- "@smithy/middleware-endpoint": "^3.2.3",
43
- "@smithy/middleware-retry": "^3.0.27",
44
- "@smithy/middleware-serde": "^3.0.10",
45
- "@smithy/middleware-stack": "^3.0.10",
46
- "@smithy/node-config-provider": "^3.1.11",
47
- "@smithy/node-http-handler": "^3.3.1",
48
- "@smithy/protocol-http": "^4.1.7",
49
- "@smithy/smithy-client": "^3.4.4",
50
- "@smithy/types": "^3.7.1",
51
- "@smithy/url-parser": "^3.0.10",
23
+ "@aws-sdk/client-sso-oidc": "3.709.0",
24
+ "@aws-sdk/client-sts": "3.709.0",
25
+ "@aws-sdk/core": "3.709.0",
26
+ "@aws-sdk/credential-provider-node": "3.709.0",
27
+ "@aws-sdk/middleware-host-header": "3.709.0",
28
+ "@aws-sdk/middleware-logger": "3.709.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.709.0",
30
+ "@aws-sdk/middleware-user-agent": "3.709.0",
31
+ "@aws-sdk/region-config-resolver": "3.709.0",
32
+ "@aws-sdk/types": "3.709.0",
33
+ "@aws-sdk/util-endpoints": "3.709.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.709.0",
35
+ "@aws-sdk/util-user-agent-node": "3.709.0",
36
+ "@smithy/config-resolver": "^3.0.13",
37
+ "@smithy/core": "^2.5.5",
38
+ "@smithy/fetch-http-handler": "^4.1.2",
39
+ "@smithy/hash-node": "^3.0.11",
40
+ "@smithy/invalid-dependency": "^3.0.11",
41
+ "@smithy/middleware-content-length": "^3.0.13",
42
+ "@smithy/middleware-endpoint": "^3.2.5",
43
+ "@smithy/middleware-retry": "^3.0.30",
44
+ "@smithy/middleware-serde": "^3.0.11",
45
+ "@smithy/middleware-stack": "^3.0.11",
46
+ "@smithy/node-config-provider": "^3.1.12",
47
+ "@smithy/node-http-handler": "^3.3.2",
48
+ "@smithy/protocol-http": "^4.1.8",
49
+ "@smithy/smithy-client": "^3.5.0",
50
+ "@smithy/types": "^3.7.2",
51
+ "@smithy/url-parser": "^3.0.11",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.27",
56
- "@smithy/util-defaults-mode-node": "^3.0.27",
57
- "@smithy/util-endpoints": "^2.1.6",
58
- "@smithy/util-middleware": "^3.0.10",
59
- "@smithy/util-retry": "^3.0.10",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.30",
56
+ "@smithy/util-defaults-mode-node": "^3.0.30",
57
+ "@smithy/util-endpoints": "^2.1.7",
58
+ "@smithy/util-middleware": "^3.0.11",
59
+ "@smithy/util-retry": "^3.0.11",
60
60
  "@smithy/util-utf8": "^3.0.0",
61
61
  "tslib": "^2.6.2"
62
62
  },