@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.cjs.js
CHANGED
|
@@ -8213,6 +8213,9 @@ class StreamCall {
|
|
|
8213
8213
|
this.listRecordings = () => {
|
|
8214
8214
|
return this.apiClient.listRecordings(Object.assign({}, this.baseRequest));
|
|
8215
8215
|
};
|
|
8216
|
+
this.listTranscriptions = () => {
|
|
8217
|
+
return this.apiClient.listTranscriptions(Object.assign({}, this.baseRequest));
|
|
8218
|
+
};
|
|
8216
8219
|
this.muteUsers = (videoMuteUsersRequest) => {
|
|
8217
8220
|
return this.apiClient.muteUsers(Object.assign(Object.assign({}, this.baseRequest), { videoMuteUsersRequest }));
|
|
8218
8221
|
};
|
|
@@ -8575,7 +8578,7 @@ class StreamClient {
|
|
|
8575
8578
|
? 'https://chat.stream-io-api.com'
|
|
8576
8579
|
: 'https://video.stream-io-api.com'),
|
|
8577
8580
|
headers: {
|
|
8578
|
-
'X-Stream-Client': 'stream-node-' + "0.1.
|
|
8581
|
+
'X-Stream-Client': 'stream-node-' + "0.1.13",
|
|
8579
8582
|
},
|
|
8580
8583
|
middleware: [
|
|
8581
8584
|
{
|