File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @eppo/js-client-sdk-common" ,
3
- "version" : " 3.0.4 " ,
3
+ "version" : " 3.0.5 " ,
4
4
"description" : " Eppo SDK for client-side JavaScript applications (base for both web and react native)" ,
5
5
"main" : " dist/index.js" ,
6
6
"files" : [
Original file line number Diff line number Diff line change @@ -3,8 +3,13 @@ import { AssignmentCache } from './assignment-cache';
3
3
import { IAssignmentHooks } from './assignment-hooks' ;
4
4
import { IAssignmentLogger , IAssignmentEvent } from './assignment-logger' ;
5
5
import EppoClient , { FlagConfigurationRequestParameters , IEppoClient } from './client/eppo-client' ;
6
- import { IConfigurationStore } from './configuration-store/configuration-store' ;
6
+ import {
7
+ IConfigurationStore ,
8
+ IAsyncStore ,
9
+ ISyncStore ,
10
+ } from './configuration-store/configuration-store' ;
7
11
import { HybridConfigurationStore } from './configuration-store/hybrid.store' ;
12
+ import { MemoryOnlyConfigurationStore } from './configuration-store/memory.store' ;
8
13
import * as constants from './constants' ;
9
14
import FlagConfigRequestor from './flag-configuration-requestor' ;
10
15
import HttpClient from './http-client' ;
@@ -23,8 +28,15 @@ export {
23
28
FlagConfigRequestor ,
24
29
HttpClient ,
25
30
validation ,
31
+
32
+ // Configuration store
26
33
IConfigurationStore ,
34
+ IAsyncStore ,
35
+ ISyncStore ,
27
36
HybridConfigurationStore ,
37
+ MemoryOnlyConfigurationStore ,
38
+
39
+ //
28
40
AssignmentCache ,
29
41
FlagConfigurationRequestParameters ,
30
42
Flag ,
You can’t perform that action at this time.
0 commit comments