File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 11## Unreleased
22
33- Fixes a TS compilation error due to a broken entry point path.
4+ - Re-exports ` NetworkData ` type to be imported from ` instabug-reactnative ` .
45
56## 11.9.0 (2023-02-20)
67
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import * as CrashReporting from './modules/CrashReporting';
99import * as FeatureRequests from './modules/FeatureRequests' ;
1010import * as Instabug from './modules/Instabug' ;
1111import * as NetworkLogger from './modules/NetworkLogger' ;
12+ import type { NetworkData } from './modules/NetworkLogger' ;
1213import * as Replies from './modules/Replies' ;
1314import type { Survey } from './modules/Surveys' ;
1415import * as Surveys from './modules/Surveys' ;
@@ -27,5 +28,6 @@ export {
2728} ;
2829export type { InstabugConfig } ;
2930export type { Survey } ;
31+ export type { NetworkData } ;
3032
3133export default Instabug ;
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import IBGEventEmitter from '../utils/IBGEventEmitter';
77import InstabugConstants from '../utils/InstabugConstants' ;
88import xhr , { NetworkData , ProgressCallback } from '../utils/XhrNetworkInterceptor' ;
99
10+ export type { NetworkData } ;
11+
1012let _networkDataObfuscationHandlerSet = false ;
1113let _requestFilterExpression = 'false' ;
1214
You can’t perform that action at this time.
0 commit comments