@lokalise/node-core 12.1.0 → 12.2.0

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.
@@ -12,6 +12,13 @@ export type RedisConfig = {
12
12
  password?: string;
13
13
  commandTimeout?: number;
14
14
  connectTimeout?: number;
15
+ /**
16
+ * Set this option explicitly to null for infinite retries
17
+ * By default (for undefined) there are 20 retries, see: https://redis.github.io/ioredis/interfaces/CommonRedisOptions.html#maxRetriesPerRequest
18
+ */
19
+ maxRetriesPerRequest?: number | null;
20
+ enableReadyCheck?: boolean;
21
+ lazyConnect?: boolean;
15
22
  useTls: boolean;
16
23
  };
17
24
  export type AppConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lokalise/node-core",
3
- "version": "12.1.0",
3
+ "version": "12.2.0",
4
4
  "author": {
5
5
  "name": "Lokalise",
6
6
  "url": "https://lokalise.com/"