@rolino/contracts 0.5.0 → 0.7.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 +21 -0
- package/LICENSE +1 -1
- package/README.md +2 -0
- package/dist/index.cjs +395 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1839 -294
- package/dist/index.d.ts +1839 -294
- package/dist/index.js +336 -41
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @rolino/contracts
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 358f37a: Expose additive safe Blog preparation, next-action, and quality summaries through the shared read contracts and existing clients.
|
|
8
|
+
|
|
9
|
+
## 0.6.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- Add strict backlink prospecting contracts and three independent opt-in capabilities without widening existing credentials.
|
|
14
|
+
|
|
15
|
+
- d162f85: Add safe Blog editorial cadence preview and apply operations across contracts, SDK, CLI, and MCP.
|
|
16
|
+
- 50cb9fc: Add Google Business Profile as a disabled-by-default standard text and single-image publishing destination across shared public clients.
|
|
17
|
+
- 1ac7ed5: Add signed custom Blog webhook setup, connection testing, one-time secret rotation, and safe idempotent replay parity.
|
|
18
|
+
- 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.
|
|
19
|
+
|
|
3
20
|
## 0.5.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -51,6 +68,10 @@
|
|
|
51
68
|
|
|
52
69
|
### Minor Changes
|
|
53
70
|
|
|
71
|
+
- Add optional safe Blog preparation, next-action, and versioned quality summaries to existing read contracts.
|
|
72
|
+
|
|
73
|
+
### Minor Changes
|
|
74
|
+
|
|
54
75
|
- Add exact Blog image, approval-bundle, scheduling, cancellation, provenance,
|
|
55
76
|
idempotency, and safe public-state contracts while keeping `blog:write`,
|
|
56
77
|
`blog:approve`, and `blog:publish` independent.
|
package/LICENSE
CHANGED
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# `@rolino/contracts`
|
|
2
2
|
|
|
3
|
+
The package includes strict shared backlink prospecting schemas for bounded targets, discoveries, prospects, score evidence, stages, public contacts, outreach drafts, and exact-link verification. The independent `backlinks:read`, `backlinks:write`, and `backlinks:contacts` capabilities do not widen existing credentials.
|
|
4
|
+
|
|
3
5
|
Zod schemas and TypeScript types for Rolino's versioned public API. This package
|
|
4
6
|
contains transport-safe DTOs only; it must not depend on Prisma, Next.js, auth
|
|
5
7
|
providers, or server implementation details.
|