@logtail/types
Advanced tools
Comparing version 0.3.0 to 0.4.0
@@ -18,2 +18,10 @@ /** | ||
/** | ||
* Maximum number of times to retry a failed sync request | ||
*/ | ||
retryCount: number; | ||
/** | ||
* Minimum number of milliseconds to wait before retrying a failed sync request | ||
*/ | ||
retryBackoff: number; | ||
/** | ||
* Maximum number of sync requests to make concurrently (useful to limit | ||
@@ -24,6 +32,11 @@ * network I/O) | ||
/** | ||
* Boolean to specify whether thrown errors/failed logs should be ignored | ||
* Errors when sending logs will be silently ignored | ||
* Has precedence over throwExceptions | ||
*/ | ||
ignoreExceptions: boolean; | ||
/** | ||
* Errors when sending logs will result in thrown exceptions | ||
*/ | ||
throwExceptions: boolean; | ||
/** | ||
* Maximum depth (number of attribute levels) of a context object | ||
@@ -30,0 +43,0 @@ **/ |
@@ -18,2 +18,10 @@ /** | ||
/** | ||
* Maximum number of times to retry a failed sync request | ||
*/ | ||
retryCount: number; | ||
/** | ||
* Minimum number of milliseconds to wait before retrying a failed sync request | ||
*/ | ||
retryBackoff: number; | ||
/** | ||
* Maximum number of sync requests to make concurrently (useful to limit | ||
@@ -24,6 +32,11 @@ * network I/O) | ||
/** | ||
* Boolean to specify whether thrown errors/failed logs should be ignored | ||
* Errors when sending logs will be silently ignored | ||
* Has precedence over throwExceptions | ||
*/ | ||
ignoreExceptions: boolean; | ||
/** | ||
* Errors when sending logs will result in thrown exceptions | ||
*/ | ||
throwExceptions: boolean; | ||
/** | ||
* Maximum depth (number of attribute levels) of a context object | ||
@@ -30,0 +43,0 @@ **/ |
{ | ||
"name": "@logtail/types", | ||
"version": "0.3.0", | ||
"version": "0.4.0", | ||
"description": "Logtail.com - Typescript types", | ||
@@ -46,3 +46,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "86cb9542d2a1c12dcaa3104afb8df5c2c4a21ff5" | ||
"gitHead": "a082eb0e7f83763a3f81d42736dd14d40e19d128" | ||
} |
@@ -22,2 +22,12 @@ /** | ||
/** | ||
* Maximum number of times to retry a failed sync request | ||
*/ | ||
retryCount: number; | ||
/** | ||
* Minimum number of milliseconds to wait before retrying a failed sync request | ||
*/ | ||
retryBackoff: number; | ||
/** | ||
* Maximum number of sync requests to make concurrently (useful to limit | ||
@@ -29,6 +39,11 @@ * network I/O) | ||
/** | ||
* Boolean to specify whether thrown errors/failed logs should be ignored | ||
* Errors when sending logs will be silently ignored | ||
* Has precedence over throwExceptions | ||
*/ | ||
ignoreExceptions: boolean; | ||
/** | ||
* Errors when sending logs will result in thrown exceptions | ||
*/ | ||
throwExceptions: boolean; | ||
@@ -35,0 +50,0 @@ /** |
Sorry, the diff of this file is not supported yet
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
14661
307