@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.
- package/README.md +6 -4
- package/dist/bin/tangle-catalog-runtime.js +23 -2
- package/dist/bin/tangle-catalog-runtime.js.map +1 -1
- package/dist/{chunk-L6WBPDUP.js → chunk-4JQ754PA.js} +2 -2
- package/dist/chunk-4JQ754PA.js.map +1 -0
- package/dist/{chunk-6SSYWA3J.js → chunk-VJ57GPYO.js} +110 -9
- package/dist/chunk-VJ57GPYO.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -2
- package/dist/specs.d.ts +93 -31
- package/dist/specs.js +1 -1
- package/docs/adapter-triage.md +19 -10
- package/docs/catalog-registry.md +6 -3
- package/docs/generated-integration-coverage-checklist.md +3 -3
- package/docs/integration-coverage-checklist.md +3 -3
- package/docs/integration-execution-audit.md +18 -20
- package/docs/integration-execution-matrix.json +675 -675
- package/docs/production-completion-checklist.md +3 -2
- package/docs/repo-structure.md +2 -2
- package/docs/third-party/activepieces.md +6 -2
- package/package.json +1 -1
- package/dist/chunk-6SSYWA3J.js.map +0 -1
- package/dist/chunk-L6WBPDUP.js.map +0 -1
|
@@ -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
|
|
17
|
-
|
|
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.
|
package/docs/repo-structure.md
CHANGED
|
@@ -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
|
|
26
|
-
|
|
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
|
-
|
|
17
|
-
|
|
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.
|
|
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": {
|