diff --git a/src/classic/index.js b/src/classic/index.js index c4793a648..7e30c8cae 100644 --- a/src/classic/index.js +++ b/src/classic/index.js @@ -17,6 +17,7 @@ export { MappingParameters } from '@supermap/iclient-common/iServer/MappingParam export { GeoCodingParameter } from '@supermap/iclient-common/iServer/GeoCodingParameter'; export { GeoDecodingParameter } from '@supermap/iclient-common/iServer/GeoDecodingParameter'; export { VectorClipJobsParameter } from '@supermap/iclient-common/iServer/VectorClipJobsParameter'; +export { FetchRequest } from '@supermap/iclient-common/util/FetchRequest'; export { Util } from '@supermap/iclient-common/commontypes/Util'; export * from './overlay'; export * from './services'; diff --git a/src/classic/namespace.js b/src/classic/namespace.js index 87fd7aa36..fedebfb0a 100644 --- a/src/classic/namespace.js +++ b/src/classic/namespace.js @@ -15,7 +15,8 @@ import { GeoCodingParameter, GeoDecodingParameter, SuperMap, - Util + Util, + FetchRequest } from './index'; SuperMap.ElasticSearch = ElasticSearch; @@ -33,5 +34,6 @@ SuperMap.OutputSetting = OutputSetting; SuperMap.MappingParameters = MappingParameters; SuperMap.GeoCodingParameter = GeoCodingParameter; SuperMap.GeoDecodingParameter = GeoDecodingParameter; +SuperMap.FetchRequest = FetchRequest; SuperMap.Util = {...SuperMap.Util, ...Util}; export * from './index';