retell-sdk 0.1.0-alpha.1 → 0.1.0-alpha.2
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 +1 -1
- 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
|
+
## 0.1.0-alpha.2 (2024-03-26)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/RetellAI/retell-typescript-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** update via SDK Studio ([#8](https://github.com/RetellAI/retell-typescript-sdk/issues/8)) ([8355959](https://github.com/RetellAI/retell-typescript-sdk/commit/83559595763ec3b8a7500d0ee70262b7e6261ce4))
|
|
10
|
+
|
|
3
11
|
## 0.1.0-alpha.1 (2024-03-26)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/RetellAI/retell-typescript-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
|
package/README.md
CHANGED
|
@@ -224,7 +224,7 @@ import RetellSdk from 'retell-sdk';
|
|
|
224
224
|
```
|
|
225
225
|
|
|
226
226
|
To do the inverse, add `import "retell-sdk/shims/node"` (which does import polyfills).
|
|
227
|
-
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/RetellAI/retell-typescript-sdk/tree/
|
|
227
|
+
This can also be useful if you are getting the wrong TypeScript types for `Response` ([more details](https://github.com/RetellAI/retell-typescript-sdk/tree/main/src/_shims#readme)).
|
|
228
228
|
|
|
229
229
|
### Logging and middleware
|
|
230
230
|
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.2'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.0-alpha.
|
|
1
|
+
export declare const VERSION = "0.1.0-alpha.2";
|
|
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 = '0.1.0-alpha.
|
|
4
|
+
exports.VERSION = '0.1.0-alpha.2'; // x-release-please-version
|
|
5
5
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.1.0-alpha.
|
|
1
|
+
export const VERSION = '0.1.0-alpha.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|