@retter/sdk 0.8.1-development → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.MD CHANGED
@@ -33,12 +33,15 @@ const rio = Retter.getInstance(config: RetterClientConfig)
33
33
 
34
34
  interface RetterClientConfig {
35
35
  projectId: string
36
+ instanceKey?: string // to support multi-config for same projectId, give different instance key. Otherwise, leave undefined
36
37
  rootProjectId?: string
37
38
  region?: RetterRegion
38
39
  platform?: string
39
40
  culture?: string
40
41
  memoryCache?: { // use it only in non-browser environments
41
42
  enabled: boolean
43
+ maxEntryCount?: number // default: 100
44
+ enableLogs?: boolean // default: false
42
45
  }
43
46
  }
44
47
  ```