@agentchatme/openclaw 0.6.15 → 0.6.16

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.
@@ -852,8 +852,8 @@ var reconnectConfigSchema = z.object({
852
852
  jitterRatio: z.number().min(0).max(1).default(0.2)
853
853
  }).strict();
854
854
  var pingConfigSchema = z.object({
855
- intervalMs: z.number().int().min(5e3).max(12e4).default(3e4),
856
- timeoutMs: z.number().int().min(1e3).max(3e4).default(1e4)
855
+ intervalMs: z.number().int().min(5e3).max(12e4).default(45e3),
856
+ timeoutMs: z.number().int().min(1e3).max(6e4).default(3e4)
857
857
  }).strict();
858
858
  var outboundConfigSchema = z.object({
859
859
  maxInFlight: z.number().int().min(1).max(1e4).default(256),
@@ -1847,7 +1847,7 @@ var CircuitBreaker = class {
1847
1847
  };
1848
1848
 
1849
1849
  // src/version.ts
1850
- var PACKAGE_VERSION = "0.6.15";
1850
+ var PACKAGE_VERSION = "0.6.16";
1851
1851
 
1852
1852
  // src/outbound.ts
1853
1853
  var DEFAULT_RETRY_POLICY = {