@stream-io/node-sdk 0.4.14 → 0.4.16

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.es.mjs CHANGED
@@ -138,7 +138,7 @@ class BaseApi {
138
138
  Authorization: this.apiConfig.token,
139
139
  'stream-auth-type': 'jwt',
140
140
  'Content-Type': 'application/json',
141
- 'X-Stream-Client': 'stream-node-' + "0.4.14",
141
+ 'X-Stream-Client': 'stream-node-' + "0.4.16",
142
142
  'Accept-Encoding': 'gzip',
143
143
  'x-client-request-id': clientRequestId,
144
144
  };
@@ -805,13 +805,6 @@ decoders.GetConfigResponse = (input) => {
805
805
  };
806
806
  return decode(typeMappings, input);
807
807
  };
808
- decoders.GetExportChannelsStatusResponse = (input) => {
809
- const typeMappings = {
810
- created_at: { type: 'DatetimeType', isSingle: true },
811
- updated_at: { type: 'DatetimeType', isSingle: true },
812
- };
813
- return decode(typeMappings, input);
814
- };
815
808
  decoders.GetImportResponse = (input) => {
816
809
  const typeMappings = {
817
810
  import_task: { type: 'ImportTask', isSingle: true },
@@ -2420,7 +2413,6 @@ class VideoApi extends BaseApi {
2420
2413
  start_closed_caption: request?.start_closed_caption,
2421
2414
  start_hls: request?.start_hls,
2422
2415
  start_recording: request?.start_recording,
2423
- start_rtmp_broadcasts: request?.start_rtmp_broadcasts,
2424
2416
  start_transcription: request?.start_transcription,
2425
2417
  transcription_storage_name: request?.transcription_storage_name,
2426
2418
  };
@@ -3582,14 +3574,6 @@ class ChatApi extends BaseApi {
3582
3574
  decoders.ExportChannelsResponse?.(response.body);
3583
3575
  return { ...response.body, metadata: response.metadata };
3584
3576
  };
3585
- this.getExportChannelsStatus = async (request) => {
3586
- const pathParams = {
3587
- id: request?.id,
3588
- };
3589
- const response = await this.sendRequest('GET', '/api/v2/chat/export_channels/{id}', pathParams, undefined);
3590
- decoders.GetExportChannelsStatusResponse?.(response.body);
3591
- return { ...response.body, metadata: response.metadata };
3592
- };
3593
3577
  this.queryMembers = async (request) => {
3594
3578
  const queryParams = {
3595
3579
  payload: request?.payload,