http-request-manager 18.7.30 → 18.7.31

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.
@@ -1544,7 +1544,7 @@ class RequestService extends WebsocketService {
1544
1544
  this.progress = new BehaviorSubject(0);
1545
1545
  this.progress$ = this.progress.asObservable();
1546
1546
  }
1547
- // Implementation
1547
+ // Implementation
1548
1548
  getRecordRequest(options) {
1549
1549
  const urlPath = this.buildUrlPath(options);
1550
1550
  const headers = this.buildCombinedHeaders(options);
@@ -1558,7 +1558,6 @@ class RequestService extends WebsocketService {
1558
1558
  }).pipe(tap(data => console.log('STREAM DATA', data)), requestStreaming({ streamType: options.streamType || StreamType.AI_STREAMING }), this.requestStreaming(options), this.handleFinalize())
1559
1559
  : this.http.get(urlPath, headers).pipe(this.request(options));
1560
1560
  }
1561
- // Implementation
1562
1561
  createRecordRequest(options, data) {
1563
1562
  const urlPath = this.buildUrlPath(options);
1564
1563
  const headers = this.buildCombinedHeaders(options);