skedyul 1.4.10 → 1.4.11

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/cli/index.js CHANGED
@@ -6429,7 +6429,8 @@ function serializeResolvedConfig(config) {
6429
6429
  description: tool.description,
6430
6430
  // Read timeout/retries from top-level first, then fallback to config
6431
6431
  timeout: tool.timeout ?? tool.config?.timeout,
6432
- retries: tool.retries ?? tool.config?.retries
6432
+ retries: tool.retries ?? tool.config?.retries,
6433
+ queueTouchPoints: tool.queueTouchPoints ?? tool.config?.queueTouchPoints
6433
6434
  })) : [],
6434
6435
  webhooks: config.webhooks ? Object.values(config.webhooks).map((w) => ({
6435
6436
  name: w.name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "1.4.10",
3
+ "version": "1.4.11",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",