@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.
package/dist/index.js CHANGED
@@ -860,8 +860,8 @@ var reconnectConfigSchema = z.object({
860
860
  jitterRatio: z.number().min(0).max(1).default(0.2)
861
861
  }).strict();
862
862
  var pingConfigSchema = z.object({
863
- intervalMs: z.number().int().min(5e3).max(12e4).default(3e4),
864
- timeoutMs: z.number().int().min(1e3).max(3e4).default(1e4)
863
+ intervalMs: z.number().int().min(5e3).max(12e4).default(45e3),
864
+ timeoutMs: z.number().int().min(1e3).max(6e4).default(3e4)
865
865
  }).strict();
866
866
  var outboundConfigSchema = z.object({
867
867
  maxInFlight: z.number().int().min(1).max(1e4).default(256),
@@ -1855,7 +1855,7 @@ var CircuitBreaker = class {
1855
1855
  };
1856
1856
 
1857
1857
  // src/version.ts
1858
- var PACKAGE_VERSION = "0.6.15";
1858
+ var PACKAGE_VERSION = "0.6.16";
1859
1859
 
1860
1860
  // src/outbound.ts
1861
1861
  var DEFAULT_RETRY_POLICY = {