@tangle-network/agent-integrations 0.24.0 → 0.25.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.
@@ -13,8 +13,9 @@ provider credentials.
13
13
  - [x] Generated setup specs and runbook/admin-UI renderers.
14
14
  - [x] Canonical registry that dedupes setup specs, first-party adapters,
15
15
  gateway catalogs, and long-tail catalog metadata.
16
- - [x] Catalog-only safety: long-tail metadata is discoverable but not callable
17
- unless promoted to an executable support tier.
16
+ - [x] Catalog runtime safety: long-tail contracts are discoverable, but only
17
+ registries configured with a native, gateway, or sandbox runtime expose
18
+ them as callable tools.
18
19
  - [x] App/agent `IntegrationManifest` resolution against user connections.
19
20
  - [x] Persistent grants from user-owned connections to apps, agents, sandboxes,
20
21
  and generated software.
@@ -22,8 +22,8 @@ This repo intentionally separates catalog breadth from executable runtime code.
22
22
  - `src/connectors/` contains first-party adapter contracts and implementations.
23
23
  - `src/specs/` is the structured OAuth/setup/runbook source of truth.
24
24
  - `src/registry.ts`, `src/gateway-catalog.ts`, `src/coverage-catalog.ts`, and
25
- `src/tangle-catalog.ts` compose broad connector catalogs without pretending
26
- catalog-only entries are executable.
25
+ `src/tangle-catalog.ts` compose broad connector catalogs while keeping
26
+ execution behind configured native, gateway, or sandbox runtimes.
27
27
 
28
28
  ## Data
29
29
 
@@ -13,8 +13,12 @@ pieces catalog:
13
13
  The generated file is ingestion/provenance data for the Tangle Integrations
14
14
  Catalog. It does not vendor the Activepieces runtime or execute Activepieces
15
15
  piece code directly. Consumers should use the Tangle-named catalog APIs and can
16
- promote selected entries to first-party adapters or route them through a signed
17
- Tangle catalog runtime.
16
+ route entries through a signed Tangle catalog runtime or implement selected
17
+ connectors as native adapters.
18
+
19
+ Any Activepieces-named exports are compatibility/provenance helpers for the
20
+ imported source data. Product-facing code should use the Tangle catalog
21
+ contracts and runtime APIs.
18
22
 
19
23
  Regenerate after checking out Activepieces:
20
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-integrations",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "Vendor-neutral integration contracts and runtime helpers for sandbox and agent apps.",
5
5
  "homepage": "https://github.com/tangle-network/agent-integrations#readme",
6
6
  "repository": {