@rolino/cli 0.3.0 → 0.4.0

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.cjs CHANGED
@@ -50,7 +50,7 @@ var import_commander = require("commander");
50
50
  // package.json
51
51
  var package_default = {
52
52
  name: "@rolino/cli",
53
- version: "0.3.0",
53
+ version: "0.4.0",
54
54
  description: "Agent-friendly command-line interface for Rolino",
55
55
  type: "module",
56
56
  license: "MIT",
@@ -107,9 +107,9 @@ var package_default = {
107
107
  dev: "tsx src/bin.ts"
108
108
  },
109
109
  dependencies: {
110
- "@rolino/contracts": "0.3.0",
111
- "@rolino/local-auth": "0.3.0",
112
- "@rolino/sdk": "0.3.0",
110
+ "@rolino/contracts": "0.4.0",
111
+ "@rolino/local-auth": "0.4.0",
112
+ "@rolino/sdk": "0.4.0",
113
113
  commander: "^15.0.0",
114
114
  open: "^11.0.0"
115
115
  },
@@ -531,7 +531,8 @@ function formatProviderDeliveryOptions(options) {
531
531
  `Checked: ${options.checkedAt}`,
532
532
  `Health: ${options.health.status} (${options.health.code}) ${options.health.message}`,
533
533
  `Post types: ${options.supportedPostTypes.join(", ")}`,
534
- `Images: up to ${options.image.maxItems}; ${options.image.mimeTypes.join(", ")}; under ${options.image.maxPixelsExclusive.toLocaleString()} pixels`
534
+ `Images: up to ${options.image.maxItems}; ${options.image.mimeTypes.join(", ")}; under ${options.image.maxPixelsExclusive.toLocaleString()} pixels`,
535
+ `Video: one ${options.video.mimeTypes.join(", ")}; ${options.video.minDurationMs / 1e3}s to ${options.video.maxDurationMs / 6e4}m; ${options.video.minBytes.toLocaleString()} to ${options.video.maxBytes.toLocaleString()} bytes`
535
536
  ].join("\n");
536
537
  }
537
538
  }