retell-sdk 3.7.0 → 3.8.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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.8.0 (2024-04-21)
4
+
5
+ Full Changelog: [v3.7.0...v3.8.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.7.0...v3.8.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** update via SDK Studio ([#56](https://github.com/RetellAI/retell-typescript-sdk/issues/56)) ([9925297](https://github.com/RetellAI/retell-typescript-sdk/commit/9925297fc89f41ae891a2a38db565d220164537c))
10
+
3
11
  ## 3.7.0 (2024-04-20)
4
12
 
5
13
  Full Changelog: [v3.6.0...v3.7.0](https://github.com/RetellAI/retell-typescript-sdk/compare/v3.6.0...v3.7.0)
package/README.md CHANGED
@@ -20,7 +20,9 @@ The full API of this library can be found in [api.md](api.md).
20
20
  ```js
21
21
  import Retell from 'retell-sdk';
22
22
 
23
- const retell = new Retell();
23
+ const retell = new Retell({
24
+ apiKey: 'YOUR_RETELL_API_KEY',
25
+ });
24
26
 
25
27
  async function main() {
26
28
  const agentResponse = await retell.agent.create({
@@ -42,7 +44,9 @@ This library includes TypeScript definitions for all request params and response
42
44
  ```ts
43
45
  import Retell from 'retell-sdk';
44
46
 
45
- const retell = new Retell();
47
+ const retell = new Retell({
48
+ apiKey: 'YOUR_RETELL_API_KEY',
49
+ });
46
50
 
47
51
  async function main() {
48
52
  const params: Retell.AgentCreateParams = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "retell-sdk",
3
- "version": "3.7.0",
3
+ "version": "3.8.0",
4
4
  "description": "The official TypeScript library for the Retell API",
5
5
  "author": "Retell <founders@retellai.com>",
6
6
  "types": "./index.d.ts",
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '3.7.0'; // x-release-please-version
1
+ export const VERSION = '3.8.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "3.7.0";
1
+ export declare const VERSION = "3.8.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '3.7.0'; // x-release-please-version
4
+ exports.VERSION = '3.8.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '3.7.0'; // x-release-please-version
1
+ export const VERSION = '3.8.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map