@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/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @rolino/cli
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 6d5cefc: Add LinkedIn native video capability, limits, and delivery-options parity across public agent surfaces.
8
+ - 4149259: Add platform-aware media-adjustment readiness actions and align LinkedIn publishing guidance across agent packages.
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [6d5cefc]
13
+ - Updated dependencies [4149259]
14
+ - @rolino/contracts@0.4.0
15
+ - @rolino/sdk@0.4.0
16
+ - @rolino/local-auth@0.4.0
17
+
3
18
  ## 0.3.0
4
19
 
5
20
  ### Minor Changes
package/README.md CHANGED
@@ -134,18 +134,23 @@ images. Use `--bluesky-caption` for a destination-specific override of up to
134
134
  rolino posts create --project PROJECT_ID --caption "Shared launch" --platform BLUESKY --bluesky-caption "Launch day 🦋" --yes
135
135
  ```
136
136
 
137
- LinkedIn drafts can be text-only or include up to ten stored JPEG/PNG images.
138
- Refresh the connected member and server policy before preparing the draft, and
139
- use `--linkedin-caption` for a destination override:
137
+ LinkedIn drafts can be text-only, include up to ten stored JPEG/PNG images, or
138
+ contain exactly one stored MP4 without mixing images and video. Native video
139
+ must be 75 KB to 500 MB and 3 seconds to 30 minutes. Refresh the connected
140
+ member and server policy before preparing the draft, and use
141
+ `--linkedin-caption` for a destination override:
140
142
 
141
143
  ```text
142
- rolino integrations delivery-options --project PROJECT_ID --provider LINKEDIN
143
- rolino posts create --project PROJECT_ID --caption "Shared launch" --platform LINKEDIN --linkedin-caption "Launch day for our LinkedIn network" --media IMAGE_ASSET_ID --yes
144
+ rolino integrations delivery-options --project PROJECT_ID --provider LINKEDIN
145
+ rolino posts create --project PROJECT_ID --caption "Shared launch" --platform LINKEDIN --linkedin-caption "Launch day for our LinkedIn network" --media IMAGE_ASSET_ID --yes
146
+ rolino posts create --project PROJECT_ID --caption "Product demo" --platform LINKEDIN --media VIDEO_ASSET_ID --yes
144
147
  ```
145
148
 
146
- The connected OAuth member is the author; the developer app's associated
147
- Company Page is not a publishing target. If final post creation has an unknown
148
- outcome, inspect that member's LinkedIn feed before retrying.
149
+ The connected OAuth member is the author; the developer app's associated
150
+ Company Page is not a publishing target. Native video publish and schedule
151
+ execution remains in preparation until LinkedIn confirms upload and processing.
152
+ If final post creation has an unknown outcome, inspect that member's LinkedIn
153
+ feed before retrying.
149
154
 
150
155
  Project creation also requires interactive confirmation or `--yes`. It
151
156
  atomically saves a project and its paired brand, but does not start research,
package/dist/bin.cjs CHANGED
@@ -34,7 +34,7 @@ var import_commander = require("commander");
34
34
  // package.json
35
35
  var package_default = {
36
36
  name: "@rolino/cli",
37
- version: "0.3.0",
37
+ version: "0.4.0",
38
38
  description: "Agent-friendly command-line interface for Rolino",
39
39
  type: "module",
40
40
  license: "MIT",
@@ -91,9 +91,9 @@ var package_default = {
91
91
  dev: "tsx src/bin.ts"
92
92
  },
93
93
  dependencies: {
94
- "@rolino/contracts": "0.3.0",
95
- "@rolino/local-auth": "0.3.0",
96
- "@rolino/sdk": "0.3.0",
94
+ "@rolino/contracts": "0.4.0",
95
+ "@rolino/local-auth": "0.4.0",
96
+ "@rolino/sdk": "0.4.0",
97
97
  commander: "^15.0.0",
98
98
  open: "^11.0.0"
99
99
  },
@@ -515,7 +515,8 @@ function formatProviderDeliveryOptions(options) {
515
515
  `Checked: ${options.checkedAt}`,
516
516
  `Health: ${options.health.status} (${options.health.code}) ${options.health.message}`,
517
517
  `Post types: ${options.supportedPostTypes.join(", ")}`,
518
- `Images: up to ${options.image.maxItems}; ${options.image.mimeTypes.join(", ")}; under ${options.image.maxPixelsExclusive.toLocaleString()} pixels`
518
+ `Images: up to ${options.image.maxItems}; ${options.image.mimeTypes.join(", ")}; under ${options.image.maxPixelsExclusive.toLocaleString()} pixels`,
519
+ `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`
519
520
  ].join("\n");
520
521
  }
521
522
  }