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 +8 -0
- package/README.md +6 -2
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
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
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '3.
|
|
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.
|
|
1
|
+
export declare const VERSION = "3.8.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '3.
|
|
1
|
+
export const VERSION = '3.8.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|