phonic 0.30.15 → 0.30.16

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/README.md CHANGED
@@ -5,6 +5,23 @@
5
5
 
6
6
  The Phonic TypeScript library provides convenient access to the Phonic APIs from TypeScript.
7
7
 
8
+ ## Table of Contents
9
+
10
+ - [Installation](#installation)
11
+ - [Reference](#reference)
12
+ - [Usage](#usage)
13
+ - [Request and Response Types](#request-and-response-types)
14
+ - [Exception Handling](#exception-handling)
15
+ - [Advanced](#advanced)
16
+ - [Additional Headers](#additional-headers)
17
+ - [Additional Query String Parameters](#additional-query-string-parameters)
18
+ - [Retries](#retries)
19
+ - [Timeouts](#timeouts)
20
+ - [Aborting Requests](#aborting-requests)
21
+ - [Access Raw Response Data](#access-raw-response-data)
22
+ - [Runtime Compatibility](#runtime-compatibility)
23
+ - [Contributing](#contributing)
24
+
8
25
  ## Installation
9
26
 
10
27
  ```sh
@@ -56,7 +73,7 @@ await client.agents.create({
56
73
  });
57
74
  ```
58
75
 
59
- ## Request And Response Types
76
+ ## Request and Response Types
60
77
 
61
78
  The SDK exports all request and response types as TypeScript interfaces. Simply import them with the
62
79
  following namespace:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phonic",
3
- "version": "0.30.15",
3
+ "version": "0.30.16",
4
4
  "private": false,
5
5
  "repository": "github:Phonic-Co/phonic-node",
6
6
  "type": "commonjs",
package/reference.md CHANGED
@@ -622,6 +622,7 @@ await client.tools.create({
622
622
  "Content-Type": "application/json",
623
623
  },
624
624
  endpoint_timeout_ms: 5000,
625
+ require_speech_before_tool_call: false,
625
626
  });
626
627
  ```
627
628