@lokalise/node-core
Advanced tools
Comparing version 9.11.0 to 9.12.0
@@ -11,3 +11,3 @@ "use strict"; | ||
throwOnError: true, | ||
timeout: 30000, | ||
timeout: 60000, | ||
}; | ||
@@ -29,3 +29,4 @@ const defaultClientOptions = { | ||
reset: options.disableKeepAlive ?? false, | ||
bodyTimeout: options.timeout, | ||
bodyTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
headersTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
throwOnError: false, | ||
@@ -47,3 +48,4 @@ }, resolveRetryConfig(options), resolveRequestConfig(options)); | ||
reset: options.disableKeepAlive ?? false, | ||
bodyTimeout: options.timeout, | ||
bodyTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
headersTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
throwOnError: false, | ||
@@ -66,3 +68,4 @@ }, resolveRetryConfig(options), resolveRequestConfig(options)); | ||
reset: options.disableKeepAlive ?? false, | ||
bodyTimeout: options.timeout, | ||
bodyTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
headersTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
throwOnError: false, | ||
@@ -85,3 +88,4 @@ }, resolveRetryConfig(options), resolveRequestConfig(options)); | ||
reset: options.disableKeepAlive ?? false, | ||
bodyTimeout: options.timeout, | ||
bodyTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
headersTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
throwOnError: false, | ||
@@ -104,3 +108,4 @@ }, resolveRetryConfig(options), resolveRequestConfig(options)); | ||
reset: options.disableKeepAlive ?? false, | ||
bodyTimeout: options.timeout, | ||
bodyTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
headersTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
throwOnError: false, | ||
@@ -123,3 +128,4 @@ }, resolveRetryConfig(options), resolveRequestConfig(options)); | ||
reset: options.disableKeepAlive ?? false, | ||
bodyTimeout: options.timeout, | ||
bodyTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
headersTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
throwOnError: false, | ||
@@ -142,3 +148,4 @@ }, resolveRetryConfig(options), resolveRequestConfig(options)); | ||
reset: options.disableKeepAlive ?? false, | ||
bodyTimeout: options.timeout, | ||
bodyTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
headersTimeout: Object.hasOwn(options, 'timeout') ? options.timeout : DEFAULT_OPTIONS.timeout, | ||
throwOnError: false, | ||
@@ -145,0 +152,0 @@ }, resolveRetryConfig(options), resolveRequestConfig(options)); |
{ | ||
"name": "@lokalise/node-core", | ||
"version": "9.11.0", | ||
"version": "9.12.0", | ||
"author": { | ||
@@ -5,0 +5,0 @@ "name": "Lokalise", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
318011
4086