@rolino/contracts 0.5.0-beta.0 → 0.6.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 +38 -0
- package/README.md +24 -11
- package/dist/index.cjs +403 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1280 -260
- package/dist/index.d.ts +1280 -260
- package/dist/index.js +350 -39
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @rolino/contracts
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d162f85: Add safe Blog editorial cadence preview and apply operations across contracts, SDK, CLI, and MCP.
|
|
8
|
+
- 50cb9fc: Add Google Business Profile as a disabled-by-default standard text and single-image publishing destination across shared public clients.
|
|
9
|
+
- 1ac7ed5: Add signed custom Blog webhook setup, connection testing, one-time secret rotation, and safe idempotent replay parity.
|
|
10
|
+
- a56f834: Replace custom interactive CLI authorization with exact-resource OAuth, add the stateless MCP 2026-07-28 transport foundation, and provide safe connection instructions for workspace discovery and confirmed actions.
|
|
11
|
+
|
|
12
|
+
## 0.5.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- 4f9e790: Add the optional `blog:manage` capability and synchronized agent-first Blog
|
|
17
|
+
setup, import, cadence planning, plan review, article creation, confirmed
|
|
18
|
+
connection provisioning, and safe verification operations.
|
|
19
|
+
- 1edd1e7: Add published Blog Studio delivery contracts and the server-only Next.js 16 Blog Studio package.
|
|
20
|
+
- 74a13ea: Expose immediate versus scheduled delivery and destination lifecycle stages,
|
|
21
|
+
preserve YouTube visibility for immediate publishing, and clarify remote
|
|
22
|
+
schedule confirmation across public clients.
|
|
23
|
+
- 4af607d: Add independent exact-bundle Blog approval, reviewed image upload and generation,
|
|
24
|
+
confirmed publication scheduling and cancellation, and the complete authorized
|
|
25
|
+
agent workflow without widening existing credentials.
|
|
26
|
+
- 4a893dd: Add provider-neutral Blog publishing destinations, safe delivery inspection,
|
|
27
|
+
and exact destination binding across public agent interfaces.
|
|
28
|
+
- 843a1db: Add the exact optional `seo:read` capability and bounded read-only SEO
|
|
29
|
+
opportunity and weekly-report parity across public agent contracts, clients,
|
|
30
|
+
CLI commands, and closed-world MCP tools. SEO reads now use the version 3 task
|
|
31
|
+
contract with the exact Ready, Research, or Rejected decision, selected format,
|
|
32
|
+
complete deliverables, bounded evidence, safe URLs, limitations, and no-publish
|
|
33
|
+
rules. Public output uses readable topic names and separate topic-relevance and
|
|
34
|
+
action-readiness confidence. Research tasks compare all supported formats and
|
|
35
|
+
must validate or reject the finding before a separate draft action is allowed.
|
|
36
|
+
|
|
3
37
|
## 0.5.0-beta.0
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
|
@@ -26,6 +60,10 @@
|
|
|
26
60
|
|
|
27
61
|
### Minor Changes
|
|
28
62
|
|
|
63
|
+
- Add exact Blog image, approval-bundle, scheduling, cancellation, provenance,
|
|
64
|
+
idempotency, and safe public-state contracts while keeping `blog:write`,
|
|
65
|
+
`blog:approve`, and `blog:publish` independent.
|
|
66
|
+
- Add the independent optional `blog:approve` capability without widening existing Blog credentials or combining draft, approval, and publication access.
|
|
29
67
|
- Add safe Blog publishing provider, destination, delivery-attempt, and exact destination-selection contracts.
|
|
30
68
|
|
|
31
69
|
## 0.4.0
|
package/README.md
CHANGED
|
@@ -31,17 +31,30 @@ opportunities expose `READY` or `NEEDS_REVIEW`; a rejected finding has no active
|
|
|
31
31
|
task. A Research task selects only `RESEARCH_TASK`, names no preferred final
|
|
32
32
|
format, and returns `VALIDATED` with a complete next task or `REJECTED` with
|
|
33
33
|
evidence before any separate draft action. Older stored reports receive a review-only compatibility task
|
|
34
|
-
when read; their saved snapshots are not changed.
|
|
35
|
-
|
|
36
|
-
Blog Studio contracts include provider catalog entries, safe publishing
|
|
37
|
-
destination readiness, delivery-attempt summaries, and exact destination
|
|
38
|
-
selection for publication
|
|
39
|
-
`blog:
|
|
40
|
-
|
|
41
|
-
and
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
34
|
+
when read; their saved snapshots are not changed.
|
|
35
|
+
|
|
36
|
+
Blog Studio contracts include provider catalog entries, safe publishing
|
|
37
|
+
destination readiness, delivery-attempt summaries, and exact destination
|
|
38
|
+
selection for approval, publication, scheduling, and cancellation preview and
|
|
39
|
+
execution. The independent `blog:approve` capability binds one immutable
|
|
40
|
+
revision and reviewed-image snapshot. `blog:publish` does not grant approval,
|
|
41
|
+
and `blog:write` cannot approve or publish. Existing credentials do not gain a
|
|
42
|
+
new capability. Provider catalog reads require
|
|
43
|
+
`blog:manage`. Destination and delivery-attempt reads require `blog:read`.
|
|
44
|
+
These DTOs omit draft content, prompts, evidence, secrets, encrypted values,
|
|
45
|
+
and raw provider responses. A contract type does not make a hidden provider
|
|
46
|
+
available; the server rollout registry remains authoritative.
|
|
47
|
+
|
|
48
|
+
Clients must read current setup and article or plan state, resolve missing
|
|
49
|
+
website, cadence, destination, and access-level choices, poll import and plan
|
|
50
|
+
jobs, present evidence, create one immutable revision with catalog-backed
|
|
51
|
+
links, review one generated or approved uploaded image and its alt text, stop
|
|
52
|
+
when approval or publication scope is missing, use confirmation-bound and
|
|
53
|
+
idempotent approval before publication, verify live delivery, and restart from
|
|
54
|
+
approval preview after any content or image change. A queued delivery is not a
|
|
55
|
+
published delivery.
|
|
56
|
+
|
|
57
|
+
Project and post DTOs intentionally omit storage credentials, upload sessions,
|
|
45
58
|
tokens, and other publishing-provider internals.
|
|
46
59
|
|
|
47
60
|
Every destination reports an explicit `deliveryMode` (`IMMEDIATE` or
|