@stream-io/node-sdk 0.1.12 → 0.1.13
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/dist/index.cjs.js +4 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/StreamCall.d.ts +2 -1
- package/package.json +3 -2
- package/src/StreamCall.ts +12 -6
package/dist/index.es.js
CHANGED
|
@@ -8211,6 +8211,9 @@ class StreamCall {
|
|
|
8211
8211
|
this.listRecordings = () => {
|
|
8212
8212
|
return this.apiClient.listRecordings(Object.assign({}, this.baseRequest));
|
|
8213
8213
|
};
|
|
8214
|
+
this.listTranscriptions = () => {
|
|
8215
|
+
return this.apiClient.listTranscriptions(Object.assign({}, this.baseRequest));
|
|
8216
|
+
};
|
|
8214
8217
|
this.muteUsers = (videoMuteUsersRequest) => {
|
|
8215
8218
|
return this.apiClient.muteUsers(Object.assign(Object.assign({}, this.baseRequest), { videoMuteUsersRequest }));
|
|
8216
8219
|
};
|
|
@@ -8573,7 +8576,7 @@ class StreamClient {
|
|
|
8573
8576
|
? 'https://chat.stream-io-api.com'
|
|
8574
8577
|
: 'https://video.stream-io-api.com'),
|
|
8575
8578
|
headers: {
|
|
8576
|
-
'X-Stream-Client': 'stream-node-' + "0.1.
|
|
8579
|
+
'X-Stream-Client': 'stream-node-' + "0.1.13",
|
|
8577
8580
|
},
|
|
8578
8581
|
middleware: [
|
|
8579
8582
|
{
|