@@ -30,7 +30,7 @@ import { EppoValue, ValueType } from '../eppo_value';
30
30
import ExperimentConfigurationRequestor from '../experiment-configuration-requestor' ;
31
31
import HttpClient from '../http-client' ;
32
32
import { getMD5Hash } from '../obfuscation' ;
33
- import initPoller , { IPoller , _pollerStats } from '../poller' ;
33
+ import initPoller , { IPoller , pollerStats } from '../poller' ;
34
34
import { findMatchingRule } from '../rule_evaluator' ;
35
35
import { getShard , isShardInRange } from '../shard' ;
36
36
import { validateNotBlank } from '../validation' ;
@@ -60,9 +60,9 @@ export interface IEppoClient {
60
60
) : string | null ;
61
61
62
62
// eslint-disable-next-line @typescript-eslint/no-explicit-any
63
- _pollerStats ( ) : any ;
63
+ pollerStats ( ) : any ;
64
64
65
- _getStringAssignmentWithReason (
65
+ getStringAssignmentWithReason (
66
66
subjectKey : string ,
67
67
flagKey : string ,
68
68
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -174,11 +174,8 @@ export default class EppoClient implements IEppoClient {
174
174
this . configurationRequestParameters = configurationRequestParameters ;
175
175
}
176
176
177
- /**
178
- * @deprecated added for temporary debugging
179
- */
180
- public _pollerStats ( ) {
181
- return _pollerStats ( ) ;
177
+ public pollerStats ( ) {
178
+ return pollerStats ( ) ;
182
179
}
183
180
184
181
public async fetchFlagConfigurations ( ) {
@@ -283,10 +280,7 @@ export default class EppoClient implements IEppoClient {
283
280
}
284
281
}
285
282
286
- /**
287
- * @deprecated added for temporary debugging
288
- */
289
- public _getStringAssignmentWithReason (
283
+ public getStringAssignmentWithReason (
290
284
subjectKey : string ,
291
285
flagKey : string ,
292
286
// eslint-disable-next-line @typescript-eslint/no-explicit-any
0 commit comments