phonic 0.32.17 → 0.32.19

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 (28) hide show
  1. package/dist/cjs/BaseClient.js +2 -2
  2. package/dist/cjs/api/resources/agents/client/Client.d.ts +4 -0
  3. package/dist/cjs/api/resources/agents/client/Client.js +4 -0
  4. package/dist/cjs/api/resources/agents/client/requests/AgentsAddCustomPhoneNumberRequest.d.ts +32 -0
  5. package/dist/cjs/api/resources/agents/client/requests/AgentsAddCustomPhoneNumberRequest.js +20 -0
  6. package/dist/cjs/api/resources/agents/client/requests/index.d.ts +1 -1
  7. package/dist/cjs/api/resources/agents/client/requests/index.js +3 -1
  8. package/dist/cjs/api/resources/conversations/client/requests/ConversationsSipOutboundCallRequest.d.ts +30 -0
  9. package/dist/cjs/api/resources/conversations/client/requests/ConversationsSipOutboundCallRequest.js +20 -0
  10. package/dist/cjs/api/resources/conversations/client/requests/index.d.ts +1 -1
  11. package/dist/cjs/api/resources/conversations/client/requests/index.js +3 -0
  12. package/dist/cjs/version.d.ts +1 -1
  13. package/dist/cjs/version.js +1 -1
  14. package/dist/esm/BaseClient.mjs +2 -2
  15. package/dist/esm/api/resources/agents/client/Client.d.mts +4 -0
  16. package/dist/esm/api/resources/agents/client/Client.mjs +4 -0
  17. package/dist/esm/api/resources/agents/client/requests/AgentsAddCustomPhoneNumberRequest.d.mts +32 -0
  18. package/dist/esm/api/resources/agents/client/requests/AgentsAddCustomPhoneNumberRequest.mjs +19 -1
  19. package/dist/esm/api/resources/agents/client/requests/index.d.mts +1 -1
  20. package/dist/esm/api/resources/agents/client/requests/index.mjs +1 -0
  21. package/dist/esm/api/resources/conversations/client/requests/ConversationsSipOutboundCallRequest.d.mts +30 -0
  22. package/dist/esm/api/resources/conversations/client/requests/ConversationsSipOutboundCallRequest.mjs +19 -1
  23. package/dist/esm/api/resources/conversations/client/requests/index.d.mts +1 -1
  24. package/dist/esm/api/resources/conversations/client/requests/index.mjs +1 -1
  25. package/dist/esm/version.d.mts +1 -1
  26. package/dist/esm/version.mjs +1 -1
  27. package/package.json +1 -1
  28. package/reference.md +4 -0
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "phonic",
46
- "X-Fern-SDK-Version": "0.32.17",
47
- "User-Agent": "phonic/0.32.17",
46
+ "X-Fern-SDK-Version": "0.32.19",
47
+ "User-Agent": "phonic/0.32.19",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -253,6 +253,10 @@ export declare class AgentsClient {
253
253
  * "Authorization": "Bearer token123"
254
254
  * },
255
255
  * timeout_ms: 7000
256
+ * },
257
+ * sip: {
258
+ * transport: "tls",
259
+ * media_encryption: "required"
256
260
  * }
257
261
  * })
258
262
  */
@@ -576,6 +576,10 @@ class AgentsClient {
576
576
  * "Authorization": "Bearer token123"
577
577
  * },
578
578
  * timeout_ms: 7000
579
+ * },
580
+ * sip: {
581
+ * transport: "tls",
582
+ * media_encryption: "required"
579
583
  * }
580
584
  * })
581
585
  */
@@ -12,6 +12,10 @@
12
12
  * "Authorization": "Bearer token123"
13
13
  * },
14
14
  * timeout_ms: 7000
15
+ * },
16
+ * sip: {
17
+ * transport: "tls",
18
+ * media_encryption: "required"
15
19
  * }
16
20
  * }
17
21
  */
@@ -28,6 +32,8 @@ export interface AgentsAddCustomPhoneNumberRequest {
28
32
  phone_number: string;
29
33
  /** When not `null`, the agent will call this endpoint to get configuration options for calls on this phone number. */
30
34
  configuration_endpoint?: AgentsAddCustomPhoneNumberRequest.ConfigurationEndpoint | null;
35
+ /** SIP trunk settings for this phone number, applied to both its inbound trunk and the trunk created for each outbound call. Set at creation; remove and re-add the number to change them. */
36
+ sip?: AgentsAddCustomPhoneNumberRequest.Sip;
31
37
  }
32
38
  export declare namespace AgentsAddCustomPhoneNumberRequest {
33
39
  /**
@@ -41,4 +47,30 @@ export declare namespace AgentsAddCustomPhoneNumberRequest {
41
47
  /** Timeout in milliseconds for the endpoint call. */
42
48
  timeout_ms?: number | undefined;
43
49
  }
50
+ /**
51
+ * SIP trunk settings for this phone number, applied to both its inbound trunk and the trunk created for each outbound call. Set at creation; remove and re-add the number to change them.
52
+ */
53
+ interface Sip {
54
+ /** SIP signaling transport used for calls on this phone number. The SIP address must not carry a `;transport=` parameter; set it here instead. */
55
+ transport?: Sip.Transport | undefined;
56
+ /** Whether media (SRTP) encryption is used on calls on this phone number. */
57
+ media_encryption?: Sip.MediaEncryption | undefined;
58
+ }
59
+ namespace Sip {
60
+ /** SIP signaling transport used for calls on this phone number. The SIP address must not carry a `;transport=` parameter; set it here instead. */
61
+ const Transport: {
62
+ readonly Auto: "auto";
63
+ readonly Udp: "udp";
64
+ readonly Tcp: "tcp";
65
+ readonly Tls: "tls";
66
+ };
67
+ type Transport = (typeof Transport)[keyof typeof Transport];
68
+ /** Whether media (SRTP) encryption is used on calls on this phone number. */
69
+ const MediaEncryption: {
70
+ readonly Disabled: "disabled";
71
+ readonly Allowed: "allowed";
72
+ readonly Required: "required";
73
+ };
74
+ type MediaEncryption = (typeof MediaEncryption)[keyof typeof MediaEncryption];
75
+ }
44
76
  }
@@ -1,3 +1,23 @@
1
1
  "use strict";
2
2
  // This file was auto-generated by Fern from our API Definition.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.AgentsAddCustomPhoneNumberRequest = void 0;
5
+ var AgentsAddCustomPhoneNumberRequest;
6
+ (function (AgentsAddCustomPhoneNumberRequest) {
7
+ let Sip;
8
+ (function (Sip) {
9
+ /** SIP signaling transport used for calls on this phone number. The SIP address must not carry a `;transport=` parameter; set it here instead. */
10
+ Sip.Transport = {
11
+ Auto: "auto",
12
+ Udp: "udp",
13
+ Tcp: "tcp",
14
+ Tls: "tls",
15
+ };
16
+ /** Whether media (SRTP) encryption is used on calls on this phone number. */
17
+ Sip.MediaEncryption = {
18
+ Disabled: "disabled",
19
+ Allowed: "allowed",
20
+ Required: "required",
21
+ };
22
+ })(Sip = AgentsAddCustomPhoneNumberRequest.Sip || (AgentsAddCustomPhoneNumberRequest.Sip = {}));
23
+ })(AgentsAddCustomPhoneNumberRequest || (exports.AgentsAddCustomPhoneNumberRequest = AgentsAddCustomPhoneNumberRequest = {}));
@@ -1,4 +1,4 @@
1
- export type { AgentsAddCustomPhoneNumberRequest } from "./AgentsAddCustomPhoneNumberRequest.js";
1
+ export { AgentsAddCustomPhoneNumberRequest } from "./AgentsAddCustomPhoneNumberRequest.js";
2
2
  export type { AgentsCreateRequest } from "./AgentsCreateRequest.js";
3
3
  export type { AgentsDeleteCustomPhoneNumberRequest } from "./AgentsDeleteCustomPhoneNumberRequest.js";
4
4
  export type { AgentsDeleteRequest } from "./AgentsDeleteRequest.js";
@@ -1,5 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAgentRequest = void 0;
3
+ exports.UpdateAgentRequest = exports.AgentsAddCustomPhoneNumberRequest = void 0;
4
+ var AgentsAddCustomPhoneNumberRequest_js_1 = require("./AgentsAddCustomPhoneNumberRequest.js");
5
+ Object.defineProperty(exports, "AgentsAddCustomPhoneNumberRequest", { enumerable: true, get: function () { return AgentsAddCustomPhoneNumberRequest_js_1.AgentsAddCustomPhoneNumberRequest; } });
4
6
  var UpdateAgentRequest_js_1 = require("./UpdateAgentRequest.js");
5
7
  Object.defineProperty(exports, "UpdateAgentRequest", { enumerable: true, get: function () { return UpdateAgentRequest_js_1.UpdateAgentRequest; } });
@@ -21,4 +21,34 @@ export interface ConversationsSipOutboundCallRequest {
21
21
  config?: Phonic.OutboundCallConfig;
22
22
  /** If true, validates the outbound call setup without placing a call. Returns HTTP 200 with `conversation_id` and `twilio_call_sid` set to null. */
23
23
  dry_run?: boolean;
24
+ /** SIP trunk settings for the outbound trunk created for this call. */
25
+ sip?: ConversationsSipOutboundCallRequest.Sip;
26
+ }
27
+ export declare namespace ConversationsSipOutboundCallRequest {
28
+ /**
29
+ * SIP trunk settings for the outbound trunk created for this call.
30
+ */
31
+ interface Sip {
32
+ /** SIP signaling transport used for this call. The SIP address must not carry a `;transport=` parameter; set it here instead. */
33
+ transport?: Sip.Transport | undefined;
34
+ /** Whether media (SRTP) encryption is used on this call. */
35
+ media_encryption?: Sip.MediaEncryption | undefined;
36
+ }
37
+ namespace Sip {
38
+ /** SIP signaling transport used for this call. The SIP address must not carry a `;transport=` parameter; set it here instead. */
39
+ const Transport: {
40
+ readonly Auto: "auto";
41
+ readonly Udp: "udp";
42
+ readonly Tcp: "tcp";
43
+ readonly Tls: "tls";
44
+ };
45
+ type Transport = (typeof Transport)[keyof typeof Transport];
46
+ /** Whether media (SRTP) encryption is used on this call. */
47
+ const MediaEncryption: {
48
+ readonly Disabled: "disabled";
49
+ readonly Allowed: "allowed";
50
+ readonly Required: "required";
51
+ };
52
+ type MediaEncryption = (typeof MediaEncryption)[keyof typeof MediaEncryption];
53
+ }
24
54
  }
@@ -1,3 +1,23 @@
1
1
  "use strict";
2
2
  // This file was auto-generated by Fern from our API Definition.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.ConversationsSipOutboundCallRequest = void 0;
5
+ var ConversationsSipOutboundCallRequest;
6
+ (function (ConversationsSipOutboundCallRequest) {
7
+ let Sip;
8
+ (function (Sip) {
9
+ /** SIP signaling transport used for this call. The SIP address must not carry a `;transport=` parameter; set it here instead. */
10
+ Sip.Transport = {
11
+ Auto: "auto",
12
+ Udp: "udp",
13
+ Tcp: "tcp",
14
+ Tls: "tls",
15
+ };
16
+ /** Whether media (SRTP) encryption is used on this call. */
17
+ Sip.MediaEncryption = {
18
+ Disabled: "disabled",
19
+ Allowed: "allowed",
20
+ Required: "required",
21
+ };
22
+ })(Sip = ConversationsSipOutboundCallRequest.Sip || (ConversationsSipOutboundCallRequest.Sip = {}));
23
+ })(ConversationsSipOutboundCallRequest || (exports.ConversationsSipOutboundCallRequest = ConversationsSipOutboundCallRequest = {}));
@@ -1,6 +1,6 @@
1
1
  export type { ConversationsGetRequest } from "./ConversationsGetRequest.js";
2
2
  export type { ConversationsListRequest } from "./ConversationsListRequest.js";
3
- export type { ConversationsSipOutboundCallRequest } from "./ConversationsSipOutboundCallRequest.js";
3
+ export { ConversationsSipOutboundCallRequest } from "./ConversationsSipOutboundCallRequest.js";
4
4
  export type { EvaluateConversationRequest } from "./EvaluateConversationRequest.js";
5
5
  export type { ExtractDataRequest } from "./ExtractDataRequest.js";
6
6
  export type { OutboundCallRequest } from "./OutboundCallRequest.js";
@@ -1,2 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConversationsSipOutboundCallRequest = void 0;
4
+ var ConversationsSipOutboundCallRequest_js_1 = require("./ConversationsSipOutboundCallRequest.js");
5
+ Object.defineProperty(exports, "ConversationsSipOutboundCallRequest", { enumerable: true, get: function () { return ConversationsSipOutboundCallRequest_js_1.ConversationsSipOutboundCallRequest; } });
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.32.17";
1
+ export declare const SDK_VERSION = "0.32.19";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "0.32.17";
4
+ exports.SDK_VERSION = "0.32.19";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "phonic",
9
- "X-Fern-SDK-Version": "0.32.17",
10
- "User-Agent": "phonic/0.32.17",
9
+ "X-Fern-SDK-Version": "0.32.19",
10
+ "User-Agent": "phonic/0.32.19",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -253,6 +253,10 @@ export declare class AgentsClient {
253
253
  * "Authorization": "Bearer token123"
254
254
  * },
255
255
  * timeout_ms: 7000
256
+ * },
257
+ * sip: {
258
+ * transport: "tls",
259
+ * media_encryption: "required"
256
260
  * }
257
261
  * })
258
262
  */
@@ -540,6 +540,10 @@ export class AgentsClient {
540
540
  * "Authorization": "Bearer token123"
541
541
  * },
542
542
  * timeout_ms: 7000
543
+ * },
544
+ * sip: {
545
+ * transport: "tls",
546
+ * media_encryption: "required"
543
547
  * }
544
548
  * })
545
549
  */
@@ -12,6 +12,10 @@
12
12
  * "Authorization": "Bearer token123"
13
13
  * },
14
14
  * timeout_ms: 7000
15
+ * },
16
+ * sip: {
17
+ * transport: "tls",
18
+ * media_encryption: "required"
15
19
  * }
16
20
  * }
17
21
  */
@@ -28,6 +32,8 @@ export interface AgentsAddCustomPhoneNumberRequest {
28
32
  phone_number: string;
29
33
  /** When not `null`, the agent will call this endpoint to get configuration options for calls on this phone number. */
30
34
  configuration_endpoint?: AgentsAddCustomPhoneNumberRequest.ConfigurationEndpoint | null;
35
+ /** SIP trunk settings for this phone number, applied to both its inbound trunk and the trunk created for each outbound call. Set at creation; remove and re-add the number to change them. */
36
+ sip?: AgentsAddCustomPhoneNumberRequest.Sip;
31
37
  }
32
38
  export declare namespace AgentsAddCustomPhoneNumberRequest {
33
39
  /**
@@ -41,4 +47,30 @@ export declare namespace AgentsAddCustomPhoneNumberRequest {
41
47
  /** Timeout in milliseconds for the endpoint call. */
42
48
  timeout_ms?: number | undefined;
43
49
  }
50
+ /**
51
+ * SIP trunk settings for this phone number, applied to both its inbound trunk and the trunk created for each outbound call. Set at creation; remove and re-add the number to change them.
52
+ */
53
+ interface Sip {
54
+ /** SIP signaling transport used for calls on this phone number. The SIP address must not carry a `;transport=` parameter; set it here instead. */
55
+ transport?: Sip.Transport | undefined;
56
+ /** Whether media (SRTP) encryption is used on calls on this phone number. */
57
+ media_encryption?: Sip.MediaEncryption | undefined;
58
+ }
59
+ namespace Sip {
60
+ /** SIP signaling transport used for calls on this phone number. The SIP address must not carry a `;transport=` parameter; set it here instead. */
61
+ const Transport: {
62
+ readonly Auto: "auto";
63
+ readonly Udp: "udp";
64
+ readonly Tcp: "tcp";
65
+ readonly Tls: "tls";
66
+ };
67
+ type Transport = (typeof Transport)[keyof typeof Transport];
68
+ /** Whether media (SRTP) encryption is used on calls on this phone number. */
69
+ const MediaEncryption: {
70
+ readonly Disabled: "disabled";
71
+ readonly Allowed: "allowed";
72
+ readonly Required: "required";
73
+ };
74
+ type MediaEncryption = (typeof MediaEncryption)[keyof typeof MediaEncryption];
75
+ }
44
76
  }
@@ -1,2 +1,20 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
- export {};
2
+ export var AgentsAddCustomPhoneNumberRequest;
3
+ (function (AgentsAddCustomPhoneNumberRequest) {
4
+ let Sip;
5
+ (function (Sip) {
6
+ /** SIP signaling transport used for calls on this phone number. The SIP address must not carry a `;transport=` parameter; set it here instead. */
7
+ Sip.Transport = {
8
+ Auto: "auto",
9
+ Udp: "udp",
10
+ Tcp: "tcp",
11
+ Tls: "tls",
12
+ };
13
+ /** Whether media (SRTP) encryption is used on calls on this phone number. */
14
+ Sip.MediaEncryption = {
15
+ Disabled: "disabled",
16
+ Allowed: "allowed",
17
+ Required: "required",
18
+ };
19
+ })(Sip = AgentsAddCustomPhoneNumberRequest.Sip || (AgentsAddCustomPhoneNumberRequest.Sip = {}));
20
+ })(AgentsAddCustomPhoneNumberRequest || (AgentsAddCustomPhoneNumberRequest = {}));
@@ -1,4 +1,4 @@
1
- export type { AgentsAddCustomPhoneNumberRequest } from "./AgentsAddCustomPhoneNumberRequest.mjs";
1
+ export { AgentsAddCustomPhoneNumberRequest } from "./AgentsAddCustomPhoneNumberRequest.mjs";
2
2
  export type { AgentsCreateRequest } from "./AgentsCreateRequest.mjs";
3
3
  export type { AgentsDeleteCustomPhoneNumberRequest } from "./AgentsDeleteCustomPhoneNumberRequest.mjs";
4
4
  export type { AgentsDeleteRequest } from "./AgentsDeleteRequest.mjs";
@@ -1 +1,2 @@
1
+ export { AgentsAddCustomPhoneNumberRequest } from "./AgentsAddCustomPhoneNumberRequest.mjs";
1
2
  export { UpdateAgentRequest } from "./UpdateAgentRequest.mjs";
@@ -21,4 +21,34 @@ export interface ConversationsSipOutboundCallRequest {
21
21
  config?: Phonic.OutboundCallConfig;
22
22
  /** If true, validates the outbound call setup without placing a call. Returns HTTP 200 with `conversation_id` and `twilio_call_sid` set to null. */
23
23
  dry_run?: boolean;
24
+ /** SIP trunk settings for the outbound trunk created for this call. */
25
+ sip?: ConversationsSipOutboundCallRequest.Sip;
26
+ }
27
+ export declare namespace ConversationsSipOutboundCallRequest {
28
+ /**
29
+ * SIP trunk settings for the outbound trunk created for this call.
30
+ */
31
+ interface Sip {
32
+ /** SIP signaling transport used for this call. The SIP address must not carry a `;transport=` parameter; set it here instead. */
33
+ transport?: Sip.Transport | undefined;
34
+ /** Whether media (SRTP) encryption is used on this call. */
35
+ media_encryption?: Sip.MediaEncryption | undefined;
36
+ }
37
+ namespace Sip {
38
+ /** SIP signaling transport used for this call. The SIP address must not carry a `;transport=` parameter; set it here instead. */
39
+ const Transport: {
40
+ readonly Auto: "auto";
41
+ readonly Udp: "udp";
42
+ readonly Tcp: "tcp";
43
+ readonly Tls: "tls";
44
+ };
45
+ type Transport = (typeof Transport)[keyof typeof Transport];
46
+ /** Whether media (SRTP) encryption is used on this call. */
47
+ const MediaEncryption: {
48
+ readonly Disabled: "disabled";
49
+ readonly Allowed: "allowed";
50
+ readonly Required: "required";
51
+ };
52
+ type MediaEncryption = (typeof MediaEncryption)[keyof typeof MediaEncryption];
53
+ }
24
54
  }
@@ -1,2 +1,20 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
- export {};
2
+ export var ConversationsSipOutboundCallRequest;
3
+ (function (ConversationsSipOutboundCallRequest) {
4
+ let Sip;
5
+ (function (Sip) {
6
+ /** SIP signaling transport used for this call. The SIP address must not carry a `;transport=` parameter; set it here instead. */
7
+ Sip.Transport = {
8
+ Auto: "auto",
9
+ Udp: "udp",
10
+ Tcp: "tcp",
11
+ Tls: "tls",
12
+ };
13
+ /** Whether media (SRTP) encryption is used on this call. */
14
+ Sip.MediaEncryption = {
15
+ Disabled: "disabled",
16
+ Allowed: "allowed",
17
+ Required: "required",
18
+ };
19
+ })(Sip = ConversationsSipOutboundCallRequest.Sip || (ConversationsSipOutboundCallRequest.Sip = {}));
20
+ })(ConversationsSipOutboundCallRequest || (ConversationsSipOutboundCallRequest = {}));
@@ -1,6 +1,6 @@
1
1
  export type { ConversationsGetRequest } from "./ConversationsGetRequest.mjs";
2
2
  export type { ConversationsListRequest } from "./ConversationsListRequest.mjs";
3
- export type { ConversationsSipOutboundCallRequest } from "./ConversationsSipOutboundCallRequest.mjs";
3
+ export { ConversationsSipOutboundCallRequest } from "./ConversationsSipOutboundCallRequest.mjs";
4
4
  export type { EvaluateConversationRequest } from "./EvaluateConversationRequest.mjs";
5
5
  export type { ExtractDataRequest } from "./ExtractDataRequest.mjs";
6
6
  export type { OutboundCallRequest } from "./OutboundCallRequest.mjs";
@@ -1 +1 @@
1
- export {};
1
+ export { ConversationsSipOutboundCallRequest } from "./ConversationsSipOutboundCallRequest.mjs";
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "0.32.17";
1
+ export declare const SDK_VERSION = "0.32.19";
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.32.17";
1
+ export const SDK_VERSION = "0.32.19";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phonic",
3
- "version": "0.32.17",
3
+ "version": "0.32.19",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
package/reference.md CHANGED
@@ -568,6 +568,10 @@ await client.agents.addCustomPhoneNumber("nameOrId", {
568
568
  "Authorization": "Bearer token123"
569
569
  },
570
570
  timeout_ms: 7000
571
+ },
572
+ sip: {
573
+ transport: "tls",
574
+ media_encryption: "required"
571
575
  }
572
576
  });
573
577