AAE-30882 Rename http client files

This commit is contained in:
Wojciech Duda
2025-02-18 13:58:18 +01:00
parent 02df98e461
commit d0ae2e6631
4 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@
import ee from 'event-emitter';
import { AlfrescoApiConfig } from './alfrescoApiConfig';
import { Authentication } from './authentication/authentication';
import { SuperagentHttpClient } from './superagentHttpClient';
import { SuperagentHttpClient } from './ofetchHttpClient';
import { Emitters, HttpClient, LegacyHttpClient, RequestOptions, SecurityOptions } from './api-clients/http-client.interface';
import { paramToString } from './utils';
import { Storage } from './storage';

View File

@@ -17,7 +17,7 @@
import assert from 'assert';
import { ProcessAuth } from '../src';
import { SuperagentHttpClient } from '../src/superagentHttpClient';
import { SuperagentHttpClient } from '../src/ofetchHttpClient';
import { BpmAuthMock } from './mockObjects';
describe('Bpm Auth test', () => {

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { SuperagentHttpClient } from '../src/superagentHttpClient';
import { SuperagentHttpClient } from '../src/ofetchHttpClient';
import { FetchResponse, ofetch } from 'ofetch';
import { RequestOptions } from '../src/api-clients/http-client.interface';
import { isBrowser } from '../src/utils';