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 1
1
## Unreleased
2
2
3
3
- Fixes a TS compilation error due to a broken entry point path.
4
+ - Re-exports ` NetworkData ` type to be imported from ` instabug-reactnative ` .
4
5
5
6
## 11.9.0 (2023-02-20)
6
7
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import * as CrashReporting from './modules/CrashReporting';
9
9
import * as FeatureRequests from './modules/FeatureRequests' ;
10
10
import * as Instabug from './modules/Instabug' ;
11
11
import * as NetworkLogger from './modules/NetworkLogger' ;
12
+ import type { NetworkData } from './modules/NetworkLogger' ;
12
13
import * as Replies from './modules/Replies' ;
13
14
import type { Survey } from './modules/Surveys' ;
14
15
import * as Surveys from './modules/Surveys' ;
@@ -27,5 +28,6 @@ export {
27
28
} ;
28
29
export type { InstabugConfig } ;
29
30
export type { Survey } ;
31
+ export type { NetworkData } ;
30
32
31
33
export default Instabug ;
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import IBGEventEmitter from '../utils/IBGEventEmitter';
7
7
import InstabugConstants from '../utils/InstabugConstants' ;
8
8
import xhr , { NetworkData , ProgressCallback } from '../utils/XhrNetworkInterceptor' ;
9
9
10
+ export type { NetworkData } ;
11
+
10
12
let _networkDataObfuscationHandlerSet = false ;
11
13
let _requestFilterExpression = 'false' ;
12
14
You can’t perform that action at this time.
0 commit comments