graphlit-client 1.0.20250925001 → 1.0.20250925002

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
@@ -365,6 +365,7 @@ The SDK includes automatic retry logic for network errors and transient failures
365
365
  By default, the client will automatically retry on these status codes:
366
366
 
367
367
  - `429` - Too Many Requests
368
+ - `500` - Internal Server Error
368
369
  - `502` - Bad Gateway
369
370
  - `503` - Service Unavailable
370
371
  - `504` - Gateway Timeout
package/dist/client.js CHANGED
@@ -205,7 +205,7 @@ class Graphlit {
205
205
  maxAttempts: 5,
206
206
  initialDelay: 300,
207
207
  maxDelay: 30000,
208
- retryableStatusCodes: [429, 502, 503, 504],
208
+ retryableStatusCodes: [429, 500, 502, 503, 504],
209
209
  jitter: true,
210
210
  ...options.retryConfig,
211
211
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250925001",
3
+ "version": "1.0.20250925002",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",