File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ export default class EppoClient {
116
116
private configurationRequestParameters ?: FlagConfigurationRequestParameters ;
117
117
private banditModelConfigurationStore ?: IConfigurationStore < BanditParameters > ;
118
118
private banditVariationConfigurationStore ?: IConfigurationStore < BanditVariation [ ] > ;
119
+ private overridesStore ?: ISyncStore < Variation > ;
119
120
private flagConfigurationStore : IConfigurationStore < Flag | ObfuscatedFlag > ;
120
121
private assignmentLogger ?: IAssignmentLogger ;
121
122
private assignmentCache ?: AssignmentCache ;
@@ -124,16 +125,15 @@ export default class EppoClient {
124
125
private isObfuscated : boolean ;
125
126
private requestPoller ?: IPoller ;
126
127
private readonly evaluator = new Evaluator ( ) ;
127
- protected overridesStore ?: ISyncStore < Variation > ;
128
128
129
129
constructor ( {
130
130
eventDispatcher = new NoOpEventDispatcher ( ) ,
131
131
isObfuscated = false ,
132
132
flagConfigurationStore,
133
133
banditVariationConfigurationStore,
134
134
banditModelConfigurationStore,
135
- configurationRequestParameters,
136
135
overridesStore,
136
+ configurationRequestParameters,
137
137
} : {
138
138
// Dispatcher for arbitrary, application-level events (not to be confused with Eppo specific assignment
139
139
// or bandit events). These events are application-specific and captures by EppoClient#track API.
You can’t perform that action at this time.
0 commit comments