@tangle-network/agent-integrations 0.28.0 → 0.30.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 +40 -0
- package/dist/bin/tangle-catalog-runtime.js +7 -6
- package/dist/bin/tangle-catalog-runtime.js.map +1 -1
- package/dist/catalog.d.ts +2 -2
- package/dist/catalog.js +11 -6
- package/dist/{chunk-SVQ4PHDZ.js → chunk-5ASL5XNX.js} +2 -2
- package/dist/{chunk-P24T3MLM.js → chunk-DACSERTI.js} +2 -2
- package/dist/chunk-FDZIQVK7.js +284 -0
- package/dist/chunk-FDZIQVK7.js.map +1 -0
- package/dist/{chunk-JU25UDN2.js → chunk-JOILC44P.js} +11 -5
- package/dist/chunk-JOILC44P.js.map +1 -0
- package/dist/{chunk-UWRYFPJW.js → chunk-M2RFFAMB.js} +559 -411
- package/dist/chunk-M2RFFAMB.js.map +1 -0
- package/dist/{chunk-4JQ754PA.js → chunk-VVC7U7W7.js} +28 -1
- package/dist/{chunk-4JQ754PA.js.map → chunk-VVC7U7W7.js.map} +1 -1
- package/dist/{chunk-ATYHZXLL.js → chunk-Y6O3MIBW.js} +1 -1
- package/dist/chunk-Y6O3MIBW.js.map +1 -0
- package/dist/connect/index.d.ts +1 -1
- package/dist/connect/index.js +2 -2
- package/dist/connectors/adapters/index.d.ts +2 -2
- package/dist/connectors/adapters/index.js +2 -2
- package/dist/connectors/index.d.ts +1 -1
- package/dist/connectors/index.js +2 -2
- package/dist/consumer.d.ts +8 -0
- package/dist/consumer.js +12 -0
- package/dist/consumer.js.map +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +29 -11
- package/dist/middleware/index.d.ts +1 -1
- package/dist/middleware/index.js +2 -2
- package/dist/registry.d.ts +439 -92
- package/dist/registry.js +9 -6
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.js +7 -6
- package/dist/specs.d.ts +2 -2
- package/dist/specs.js +3 -1
- package/dist/tangle-catalog-runtime.d.ts +2 -2
- package/dist/tangle-catalog-runtime.js +7 -6
- package/dist/{tangle-id-CTU4kGId.d.ts → tangle-id-C6s2NT2r.d.ts} +7 -0
- package/docs/integration-execution-audit.md +1 -1
- package/package.json +23 -10
- package/dist/chunk-ATYHZXLL.js.map +0 -1
- package/dist/chunk-JU25UDN2.js.map +0 -1
- package/dist/chunk-UWRYFPJW.js.map +0 -1
- /package/dist/{chunk-SVQ4PHDZ.js.map → chunk-5ASL5XNX.js.map} +0 -0
- /package/dist/{chunk-P24T3MLM.js.map → chunk-DACSERTI.js.map} +0 -0
package/dist/registry.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as ConnectorAdapter, R as ResolvedDataSource, d as ConnectorCredentials } from './tangle-id-
|
|
1
|
+
import { C as ConnectorAdapter, R as ResolvedDataSource, d as ConnectorCredentials } from './tangle-id-C6s2NT2r.js';
|
|
2
2
|
import './errors-Bg3_rxnQ.js';
|
|
3
3
|
import './connect/index.js';
|
|
4
4
|
import './middleware/index.js';
|
|
@@ -59,11 +59,145 @@ declare function buildDefaultIntegrationRegistry(options?: {
|
|
|
59
59
|
/** @deprecated Use includeTangleCatalog. */
|
|
60
60
|
includeActivepieces?: boolean;
|
|
61
61
|
}): IntegrationRegistry;
|
|
62
|
+
/** Per-entry executability classification. Pure metadata — never loads or
|
|
63
|
+
* runs a runtime module. The coverage report consumes this to separate
|
|
64
|
+
* "we can execute this today" from "catalog-only / setup-only". */
|
|
65
|
+
interface IntegrationCatalogExecutability {
|
|
66
|
+
canonicalId: string;
|
|
67
|
+
/** True when the entry resolves to a runnable action: a first-party /
|
|
68
|
+
* sandbox / gateway-executable support tier, or a tangle-catalog entry
|
|
69
|
+
* with a resolvable npm runtime package. */
|
|
70
|
+
executable: boolean;
|
|
71
|
+
supportTier: IntegrationSupportTier;
|
|
72
|
+
authKind: IntegrationConnector['auth'];
|
|
73
|
+
/** Resolvable npm runtime package name when one is registered for this
|
|
74
|
+
* connector in the vendored catalog; undefined for first-party adapters
|
|
75
|
+
* (which execute in-process) and catalog-only entries. */
|
|
76
|
+
runtimePackage?: string;
|
|
77
|
+
actionCount: number;
|
|
78
|
+
triggerCount: number;
|
|
79
|
+
}
|
|
80
|
+
/** Classify every entry in a composed registry by executability + auth kind
|
|
81
|
+
* WITHOUT executing anything. Defaults to {@link buildDefaultIntegrationRegistry}. */
|
|
82
|
+
declare function classifyIntegrationCatalogExecutability(registry?: IntegrationRegistry): IntegrationCatalogExecutability[];
|
|
62
83
|
declare function composeIntegrationRegistry(sources: IntegrationCatalogSource[], options?: ComposeIntegrationRegistryOptions): IntegrationRegistry;
|
|
63
84
|
declare function summarizeIntegrationRegistry(registry: IntegrationRegistry): IntegrationRegistrySummary;
|
|
64
85
|
declare function canonicalConnectorId(id: string, aliases?: Record<string, string>): string;
|
|
65
86
|
declare function inferIntegrationSupportTier(connector: IntegrationConnector): IntegrationSupportTier;
|
|
66
87
|
|
|
88
|
+
interface ConnectorAdapterProviderOptions {
|
|
89
|
+
id?: string;
|
|
90
|
+
kind?: IntegrationProviderKind;
|
|
91
|
+
adapters: ConnectorAdapter[];
|
|
92
|
+
resolveDataSource: (connection: IntegrationConnection) => Promise<ResolvedDataSource> | ResolvedDataSource;
|
|
93
|
+
/** Invoked when an adapter rotates credentials during executeRead /
|
|
94
|
+
* executeMutation (e.g. an OAuth access token refreshed on expiry). The
|
|
95
|
+
* host re-encrypts + persists the rotated envelope so the next expiry
|
|
96
|
+
* does not force a reconnect. Carries the connection so the host can
|
|
97
|
+
* resolve the secretRef. */
|
|
98
|
+
onCredentialsRotated?: (event: {
|
|
99
|
+
connection: IntegrationConnection;
|
|
100
|
+
credentials: ConnectorCredentials;
|
|
101
|
+
}) => Promise<void> | void;
|
|
102
|
+
now?: () => Date;
|
|
103
|
+
}
|
|
104
|
+
declare function createConnectorAdapterProvider(options: ConnectorAdapterProviderOptions): IntegrationProvider;
|
|
105
|
+
declare function adapterManifestsToConnectors(adapters: ConnectorAdapter[], providerId?: string): IntegrationConnector[];
|
|
106
|
+
declare function createConnectorAdapterCatalogSource(options: {
|
|
107
|
+
id?: string;
|
|
108
|
+
providerId?: string;
|
|
109
|
+
adapters: ConnectorAdapter[];
|
|
110
|
+
precedence?: number;
|
|
111
|
+
}): IntegrationCatalogSource;
|
|
112
|
+
declare function manifestToConnector(providerId: string, adapter: ConnectorAdapter): IntegrationConnector;
|
|
113
|
+
|
|
114
|
+
interface IntegrationSecretStore {
|
|
115
|
+
get(ref: SecretRef): Promise<ConnectorCredentials | undefined> | ConnectorCredentials | undefined;
|
|
116
|
+
put(ref: SecretRef, credentials: ConnectorCredentials): Promise<void> | void;
|
|
117
|
+
delete?(ref: SecretRef): Promise<void> | void;
|
|
118
|
+
}
|
|
119
|
+
/** Single-use record stashed at OAuth-start and consumed once at callback to
|
|
120
|
+
* guard against CSRF / replay. The hub injects its own durable
|
|
121
|
+
* implementation (KV/Redis/D1) so the callback can land on any worker. */
|
|
122
|
+
interface IntegrationOAuthState {
|
|
123
|
+
/** Opaque value round-tripped through the provider redirect. */
|
|
124
|
+
state: string;
|
|
125
|
+
/** Provider the auth flow targets. */
|
|
126
|
+
providerId: string;
|
|
127
|
+
/** Connector the user is connecting. */
|
|
128
|
+
connectorId: string;
|
|
129
|
+
/** Owner initiating the flow. */
|
|
130
|
+
owner: IntegrationActor;
|
|
131
|
+
/** Scopes requested at start; verified against the granted scopes on callback. */
|
|
132
|
+
requestedScopes: string[];
|
|
133
|
+
/** Redirect URI used at start; MUST match exactly on callback exchange. */
|
|
134
|
+
redirectUri: string;
|
|
135
|
+
/** PKCE code_verifier, when the connector uses PKCE. */
|
|
136
|
+
codeVerifier?: string;
|
|
137
|
+
/** Absolute expiry (UTC ms since epoch). consume() MUST treat an expired
|
|
138
|
+
* record as a miss. */
|
|
139
|
+
expiresAt: number;
|
|
140
|
+
/** Arbitrary non-secret context the host pinned at start-time. */
|
|
141
|
+
metadata?: Record<string, unknown>;
|
|
142
|
+
}
|
|
143
|
+
/** Outcome of consuming an OAuth state record. Callers MUST inspect `ok`
|
|
144
|
+
* before using `state`; a miss (`unknown`/`expired`) is the CSRF/replay
|
|
145
|
+
* guard firing, not an exception. */
|
|
146
|
+
type IntegrationOAuthStateOutcome = {
|
|
147
|
+
ok: true;
|
|
148
|
+
state: IntegrationOAuthState;
|
|
149
|
+
} | {
|
|
150
|
+
ok: false;
|
|
151
|
+
reason: 'unknown' | 'expired';
|
|
152
|
+
};
|
|
153
|
+
/** Host-injectable store for single-use OAuth-start records. The default is
|
|
154
|
+
* in-memory for local/dev and tests; multi-tenant hubs inject a durable
|
|
155
|
+
* encrypted store so callbacks survive worker hops. consume() MUST be
|
|
156
|
+
* single-use: a second consume of the same state returns `{ ok: false }`. */
|
|
157
|
+
interface IntegrationOAuthStateStore {
|
|
158
|
+
put(state: IntegrationOAuthState): Promise<void> | void;
|
|
159
|
+
consume(state: string): Promise<IntegrationOAuthStateOutcome> | IntegrationOAuthStateOutcome;
|
|
160
|
+
sweep?(now: number): Promise<void> | void;
|
|
161
|
+
}
|
|
162
|
+
interface ConnectionCredentialResolverOptions {
|
|
163
|
+
secrets: IntegrationSecretStore;
|
|
164
|
+
connections?: IntegrationConnectionStore;
|
|
165
|
+
adapters?: ConnectorAdapter[];
|
|
166
|
+
now?: () => Date;
|
|
167
|
+
markConnectionError?: (connection: IntegrationConnection, error: Error) => Promise<void> | void;
|
|
168
|
+
}
|
|
169
|
+
declare class InMemoryIntegrationSecretStore implements IntegrationSecretStore {
|
|
170
|
+
private readonly secrets;
|
|
171
|
+
get(ref: SecretRef): ConnectorCredentials | undefined;
|
|
172
|
+
put(ref: SecretRef, credentials: ConnectorCredentials): void;
|
|
173
|
+
delete(ref: SecretRef): void;
|
|
174
|
+
}
|
|
175
|
+
/** Test/dev double for {@link IntegrationOAuthStateStore}. Production hubs
|
|
176
|
+
* inject a durable implementation; this one keeps records in a Map and
|
|
177
|
+
* enforces the single-use + expiry contract. */
|
|
178
|
+
declare class InMemoryIntegrationOAuthStateStore implements IntegrationOAuthStateStore {
|
|
179
|
+
private readonly states;
|
|
180
|
+
put(state: IntegrationOAuthState): void;
|
|
181
|
+
consume(state: string): IntegrationOAuthStateOutcome;
|
|
182
|
+
sweep(now: number): void;
|
|
183
|
+
}
|
|
184
|
+
declare function createConnectionCredentialResolver(options: ConnectionCredentialResolverOptions): (connection: IntegrationConnection) => Promise<ResolvedDataSource>;
|
|
185
|
+
declare function resolveConnectionCredentials(input: IntegrationConnection, options: ConnectionCredentialResolverOptions): Promise<ConnectorCredentials>;
|
|
186
|
+
type CredentialBackedAdapterProviderOptions = Omit<ConnectorAdapterProviderOptions, 'resolveDataSource' | 'onCredentialsRotated'> & ConnectionCredentialResolverOptions & {
|
|
187
|
+
/** Fired after the provider re-persists rotated credentials to the
|
|
188
|
+
* secret + connection stores. Receives the hub-shaped event including
|
|
189
|
+
* the resolved secretRef so the host can drive external re-encryption
|
|
190
|
+
* or telemetry. */
|
|
191
|
+
onCredentialsRotated?: (event: IntegrationCredentialsRotatedEvent) => Promise<void> | void;
|
|
192
|
+
};
|
|
193
|
+
declare function createCredentialBackedAdapterProvider(options: CredentialBackedAdapterProviderOptions): IntegrationProvider;
|
|
194
|
+
declare function revokeConnection(input: {
|
|
195
|
+
connection: IntegrationConnection;
|
|
196
|
+
connections?: IntegrationConnectionStore;
|
|
197
|
+
secrets?: IntegrationSecretStore;
|
|
198
|
+
now?: () => Date;
|
|
199
|
+
}): Promise<IntegrationConnection>;
|
|
200
|
+
|
|
67
201
|
type IntegrationAuditEventType = 'connection.created' | 'connection.updated' | 'connection.revoked' | 'grant.created' | 'grant.revoked' | 'capability.issued' | 'action.invoked' | 'action.failed' | 'trigger.subscribed' | 'trigger.received' | 'workflow.installed' | 'approval.requested' | 'approval.resolved' | 'healthcheck.completed';
|
|
68
202
|
interface IntegrationAuditEvent {
|
|
69
203
|
id: string;
|
|
@@ -248,6 +382,17 @@ declare function parseIntegrationToolName(name: string): {
|
|
|
248
382
|
actionId: string;
|
|
249
383
|
};
|
|
250
384
|
declare function buildIntegrationToolCatalog(connectors: IntegrationConnector[]): IntegrationToolDefinition[];
|
|
385
|
+
/** Flatten a single (connector, action) pair into the tool descriptor the
|
|
386
|
+
* catalog exposes. The inverse of {@link parseIntegrationToolName} +
|
|
387
|
+
* {@link integrationToolName}: every tool name round-trips back to exactly
|
|
388
|
+
* this shape via {@link describeIntegrationTool}. */
|
|
389
|
+
declare function flattenIntegrationToolDefinition(connector: IntegrationConnector, action: IntegrationConnectorAction): IntegrationToolDefinition;
|
|
390
|
+
/** Resolve a single tool's full descriptor from an opaque
|
|
391
|
+
* `int_<provider>_<connector>_<action>` name against a composed registry.
|
|
392
|
+
* Returns undefined when the name is malformed, the connector is unknown,
|
|
393
|
+
* or the action is not defined by that connector. Powers `/tools/describe`
|
|
394
|
+
* without callers re-implementing parse → byId → action → flatten. */
|
|
395
|
+
declare function describeIntegrationTool(registry: IntegrationRegistry, toolName: string): IntegrationToolDefinition | undefined;
|
|
251
396
|
declare function buildIntegrationCatalogView(input: {
|
|
252
397
|
discoveryRegistry: IntegrationRegistry;
|
|
253
398
|
executableRegistry?: IntegrationRegistry;
|
|
@@ -451,6 +596,245 @@ declare class TangleIntegrationsClient {
|
|
|
451
596
|
}
|
|
452
597
|
declare function createTangleIntegrationsClient(options: TangleIntegrationsClientOptions): TangleIntegrationsClient;
|
|
453
598
|
|
|
599
|
+
type IntegrationHealthcheckStatus = 'healthy' | 'degraded' | 'unhealthy' | 'unknown';
|
|
600
|
+
interface IntegrationHealthcheckCheck {
|
|
601
|
+
id: string;
|
|
602
|
+
status: IntegrationHealthcheckStatus;
|
|
603
|
+
message: string;
|
|
604
|
+
metadata?: Record<string, unknown>;
|
|
605
|
+
}
|
|
606
|
+
interface IntegrationHealthcheckResult {
|
|
607
|
+
connectionId: string;
|
|
608
|
+
providerId: string;
|
|
609
|
+
connectorId: string;
|
|
610
|
+
status: IntegrationHealthcheckStatus;
|
|
611
|
+
checkedAt: string;
|
|
612
|
+
checks: IntegrationHealthcheckCheck[];
|
|
613
|
+
metadata?: Record<string, unknown>;
|
|
614
|
+
}
|
|
615
|
+
interface IntegrationHealthcheckStore {
|
|
616
|
+
put(result: IntegrationHealthcheckResult): Promise<void> | void;
|
|
617
|
+
get(connectionId: string): Promise<IntegrationHealthcheckResult | undefined> | IntegrationHealthcheckResult | undefined;
|
|
618
|
+
list(): Promise<IntegrationHealthcheckResult[]> | IntegrationHealthcheckResult[];
|
|
619
|
+
}
|
|
620
|
+
declare class InMemoryIntegrationHealthcheckStore implements IntegrationHealthcheckStore {
|
|
621
|
+
private readonly results;
|
|
622
|
+
put(result: IntegrationHealthcheckResult): void;
|
|
623
|
+
get(connectionId: string): IntegrationHealthcheckResult | undefined;
|
|
624
|
+
list(): IntegrationHealthcheckResult[];
|
|
625
|
+
}
|
|
626
|
+
declare function runIntegrationHealthcheck(input: {
|
|
627
|
+
connection: IntegrationConnection;
|
|
628
|
+
connector?: IntegrationConnector;
|
|
629
|
+
registry?: IntegrationRegistry;
|
|
630
|
+
test?: (connection: IntegrationConnection, connector: IntegrationConnector) => Promise<IntegrationActionResult | boolean> | IntegrationActionResult | boolean;
|
|
631
|
+
audit?: IntegrationAuditSink;
|
|
632
|
+
now?: () => Date;
|
|
633
|
+
}): Promise<IntegrationHealthcheckResult>;
|
|
634
|
+
declare function runIntegrationHealthchecks(input: {
|
|
635
|
+
connections: IntegrationConnection[];
|
|
636
|
+
registry?: IntegrationRegistry;
|
|
637
|
+
store?: IntegrationHealthcheckStore;
|
|
638
|
+
audit?: IntegrationAuditSink;
|
|
639
|
+
now?: () => Date;
|
|
640
|
+
test?: (connection: IntegrationConnection, connector: IntegrationConnector) => Promise<IntegrationActionResult | boolean> | IntegrationActionResult | boolean;
|
|
641
|
+
}): Promise<IntegrationHealthcheckResult[]>;
|
|
642
|
+
declare function healthcheckRequest(action?: string): IntegrationActionRequest;
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* @stable Integration Hub consumer client.
|
|
646
|
+
*
|
|
647
|
+
* The third client-shaped surface a product needs, alongside the two that
|
|
648
|
+
* already ship:
|
|
649
|
+
*
|
|
650
|
+
* - `createTangleIntegrationsClient` (`client.ts`) — the *invoke* client.
|
|
651
|
+
* Capability-token auth, runs INSIDE a sandbox / generated app, single
|
|
652
|
+
* endpoint `/v1/integrations/invoke`.
|
|
653
|
+
* - `startConnectFlow` / `finishConnectFlow` (`connect/index.ts`) — the
|
|
654
|
+
* *user-consent* flow, mirrors `/cross-site/*`.
|
|
655
|
+
* - **this** — the S2S *management* client. A product BACKEND (blueprint-
|
|
656
|
+
* agent, sandbox, gtm-agent, tax-agent, legal-agent, evals, …) drives the
|
|
657
|
+
* `/v1/integrations/{resolve-manifest,grants,capabilities/bundle,
|
|
658
|
+
* healthchecks/run}` management surface on `id.tangle.tools` on behalf of
|
|
659
|
+
* an identified user.
|
|
660
|
+
*
|
|
661
|
+
* Every consumer needs the identical client — the wire protocol, the
|
|
662
|
+
* `{ success, data }` envelope, the auth header shape are all platform-owned.
|
|
663
|
+
* Re-implementing a bespoke fetch loop per product forks the protocol and the
|
|
664
|
+
* copies drift. This module is that shared implementation. It mirrors the
|
|
665
|
+
* `connect/index.ts` design rule one-for-one: DO NOT invent the wire protocol
|
|
666
|
+
* — speak exactly what `products/platform/api/src/routes/integrations.ts`
|
|
667
|
+
* serves.
|
|
668
|
+
*
|
|
669
|
+
* Two auth modes — the route layer (`authMiddleware`) accepts either:
|
|
670
|
+
*
|
|
671
|
+
* - `service` — a `svc_*` service token + `X-Service-Name`. The acting
|
|
672
|
+
* user travels in `X-Platform-User-Id`. The platform honors that header
|
|
673
|
+
* only for service tokens whose `SERVICE_SCOPES` set contains
|
|
674
|
+
* `impersonate:user`; a token without it is rejected (403). Reaches the
|
|
675
|
+
* four management paths the platform allowlists for service tokens.
|
|
676
|
+
* - `user-key` — a per-user `sk-tan-*` API key (minted via the connect
|
|
677
|
+
* flow). The key identifies the user; no impersonation header. Reaches
|
|
678
|
+
* every route the user themselves can.
|
|
679
|
+
*
|
|
680
|
+
* The capability-token `invoke` endpoint is intentionally NOT exposed here —
|
|
681
|
+
* that is `createTangleIntegrationsClient`'s job and uses a different auth.
|
|
682
|
+
*/
|
|
683
|
+
|
|
684
|
+
type IntegrationHubAuth = {
|
|
685
|
+
mode: 'service';
|
|
686
|
+
/** The `svc_*` token issued to this product. */
|
|
687
|
+
serviceToken: string;
|
|
688
|
+
/** Registered service name — sent as `X-Service-Name`. Required
|
|
689
|
+
* because one token may be shared across services, in which case the
|
|
690
|
+
* platform demands the header to disambiguate. */
|
|
691
|
+
serviceName: string;
|
|
692
|
+
} | {
|
|
693
|
+
mode: 'user-key';
|
|
694
|
+
/** A per-user `sk-tan-*` key bound to the acting user. */
|
|
695
|
+
apiKey: string;
|
|
696
|
+
};
|
|
697
|
+
interface IntegrationHubClientOptions {
|
|
698
|
+
/** The product / consumer identifier (e.g. `blueprint-agent`). Sent as the
|
|
699
|
+
* `product` field of resolve-manifest calls; recorded platform-side. */
|
|
700
|
+
product: string;
|
|
701
|
+
/** Service-token or per-user-key auth. */
|
|
702
|
+
auth: IntegrationHubAuth;
|
|
703
|
+
/** Platform base URL. Defaults to `https://id.tangle.tools`. */
|
|
704
|
+
endpoint?: string;
|
|
705
|
+
/** Injected for tests. Defaults to the global `fetch`. */
|
|
706
|
+
fetchImpl?: typeof fetch;
|
|
707
|
+
/** Per-request timeout in ms. Default 10_000. */
|
|
708
|
+
timeoutMs?: number;
|
|
709
|
+
/** Max attempts on transient (network / 502 / 503 / 504) failures.
|
|
710
|
+
* Default 2 — i.e. one retry. */
|
|
711
|
+
maxAttempts?: number;
|
|
712
|
+
}
|
|
713
|
+
/** Thrown for every non-2xx response and every transport failure. Carries the
|
|
714
|
+
* HTTP status and the platform error code so callers can branch precisely
|
|
715
|
+
* (`403` + `impersonate` → the service token lacks the scope; `409` /
|
|
716
|
+
* `missing_connection` → prompt the user to connect). */
|
|
717
|
+
declare class IntegrationHubRequestError extends Error {
|
|
718
|
+
readonly name = "IntegrationHubRequestError";
|
|
719
|
+
/** HTTP status, or 0 for a network-level failure. */
|
|
720
|
+
readonly status: number;
|
|
721
|
+
/** Platform error code (`VALIDATION_ERROR`, `scope_missing`, …) or
|
|
722
|
+
* `network_error` / `http_error` when no structured code was returned. */
|
|
723
|
+
readonly code: string;
|
|
724
|
+
/** `METHOD /path` the request targeted. */
|
|
725
|
+
readonly endpoint: string;
|
|
726
|
+
/** True when the failure class is transient and a retry could succeed. */
|
|
727
|
+
readonly retryable: boolean;
|
|
728
|
+
constructor(input: {
|
|
729
|
+
status: number;
|
|
730
|
+
code: string;
|
|
731
|
+
message: string;
|
|
732
|
+
endpoint: string;
|
|
733
|
+
retryable: boolean;
|
|
734
|
+
});
|
|
735
|
+
}
|
|
736
|
+
interface ResolveManifestInput {
|
|
737
|
+
/** The acting user — the connection owner. */
|
|
738
|
+
userId: string;
|
|
739
|
+
manifest: IntegrationManifest;
|
|
740
|
+
/** Overrides the client-level `product` for this call. */
|
|
741
|
+
product?: string;
|
|
742
|
+
}
|
|
743
|
+
interface CreateGrantsInput {
|
|
744
|
+
/** The acting user — the connection owner. */
|
|
745
|
+
userId: string;
|
|
746
|
+
/** Who the grant is FOR (the sandbox / agent / app that will invoke). */
|
|
747
|
+
grantee: IntegrationActor;
|
|
748
|
+
manifest: IntegrationManifest;
|
|
749
|
+
metadata?: Record<string, unknown>;
|
|
750
|
+
}
|
|
751
|
+
interface ListGrantsInput {
|
|
752
|
+
/** The acting user — the connection owner. */
|
|
753
|
+
userId: string;
|
|
754
|
+
/** Optional grantee filter; both fields travel together as query params. */
|
|
755
|
+
grantee?: IntegrationActor;
|
|
756
|
+
}
|
|
757
|
+
interface MintCapabilityBundleInput {
|
|
758
|
+
/** The acting user — must own every connection behind the grants. */
|
|
759
|
+
userId: string;
|
|
760
|
+
/** Who the capability bundle is issued TO (the sandbox / agent process). */
|
|
761
|
+
subject: IntegrationActor;
|
|
762
|
+
/** Mint from every grant of a manifest … */
|
|
763
|
+
manifestId?: string;
|
|
764
|
+
/** … or from an explicit grant id list. Exactly one of the two is required. */
|
|
765
|
+
grantIds?: string[];
|
|
766
|
+
grantee?: IntegrationActor;
|
|
767
|
+
/** Bundle TTL in ms. Platform clamps to [1s, 60m]; default 15m. */
|
|
768
|
+
ttlMs?: number;
|
|
769
|
+
}
|
|
770
|
+
interface CapabilityBundleResult {
|
|
771
|
+
bundle: IntegrationSandboxBundle;
|
|
772
|
+
/** Bridge environment variables to inject into the sandbox process —
|
|
773
|
+
* `buildIntegrationBridgeEnvironment(bundle)`, computed platform-side. */
|
|
774
|
+
env: Record<string, string>;
|
|
775
|
+
}
|
|
776
|
+
interface CheckConnectorInput {
|
|
777
|
+
/** The acting user. */
|
|
778
|
+
userId: string;
|
|
779
|
+
/** Connector to probe — `github`, `google-calendar`, `tangle-id`, … */
|
|
780
|
+
connectorId: string;
|
|
781
|
+
/** Defaults to `read`. */
|
|
782
|
+
mode?: IntegrationRequirementMode;
|
|
783
|
+
requiredScopes?: string[];
|
|
784
|
+
requiredActions?: string[];
|
|
785
|
+
}
|
|
786
|
+
interface CheckConnectorResult {
|
|
787
|
+
/** True when the user has an active connection satisfying the requirement. */
|
|
788
|
+
connected: boolean;
|
|
789
|
+
/** The satisfying connection, present iff `connected`. */
|
|
790
|
+
connection?: IntegrationConnection;
|
|
791
|
+
/** The full requirement resolution — status, missing scopes/actions, message. */
|
|
792
|
+
resolution: IntegrationRequirementResolution;
|
|
793
|
+
}
|
|
794
|
+
/**
|
|
795
|
+
* S2S management client for the `id.tangle.tools` integration hub. One per
|
|
796
|
+
* product; methods are stateless and safe to call concurrently.
|
|
797
|
+
*/
|
|
798
|
+
declare class IntegrationHubClient {
|
|
799
|
+
private readonly endpoint;
|
|
800
|
+
private readonly product;
|
|
801
|
+
private readonly auth;
|
|
802
|
+
private readonly fetchImpl;
|
|
803
|
+
private readonly timeoutMs;
|
|
804
|
+
private readonly maxAttempts;
|
|
805
|
+
constructor(options: IntegrationHubClientOptions);
|
|
806
|
+
/**
|
|
807
|
+
* Resolve a manifest against a user's connections. The returned
|
|
808
|
+
* `ready` / `missing` split is the canonical way to ask "does this user
|
|
809
|
+
* have the connections this work needs" — the raw connection list is not
|
|
810
|
+
* reachable by a service token by design.
|
|
811
|
+
*/
|
|
812
|
+
resolveManifest(input: ResolveManifestInput): Promise<IntegrationManifestResolution>;
|
|
813
|
+
/**
|
|
814
|
+
* Convenience over {@link resolveManifest} — probe a single connector and
|
|
815
|
+
* get back a boolean plus the satisfying connection. The Surface-A quest
|
|
816
|
+
* primitive ("is the user's GitHub linked?").
|
|
817
|
+
*/
|
|
818
|
+
checkConnector(input: CheckConnectorInput): Promise<CheckConnectorResult>;
|
|
819
|
+
/** Create grants for every satisfiable requirement of a manifest. The
|
|
820
|
+
* platform rejects the call if any non-optional requirement is missing a
|
|
821
|
+
* connection. */
|
|
822
|
+
createGrants(input: CreateGrantsInput): Promise<IntegrationGrant[]>;
|
|
823
|
+
/** List the acting user's grants, optionally filtered to one grantee. */
|
|
824
|
+
listGrants(input: ListGrantsInput): Promise<IntegrationGrant[]>;
|
|
825
|
+
/** Mint a short-lived capability bundle for a sandbox / agent process.
|
|
826
|
+
* Provider credentials never leave the platform — the bundle carries only
|
|
827
|
+
* scoped, expiring capability tokens. */
|
|
828
|
+
mintCapabilityBundle(input: MintCapabilityBundleInput): Promise<CapabilityBundleResult>;
|
|
829
|
+
/** Run live healthchecks across all of the acting user's connections. */
|
|
830
|
+
runHealthchecks(input: {
|
|
831
|
+
userId: string;
|
|
832
|
+
}): Promise<IntegrationHealthcheckResult[]>;
|
|
833
|
+
private buildHeaders;
|
|
834
|
+
private request;
|
|
835
|
+
}
|
|
836
|
+
declare function createIntegrationHubClient(options: IntegrationHubClientOptions): IntegrationHubClient;
|
|
837
|
+
|
|
454
838
|
interface ConsentSummary {
|
|
455
839
|
title: string;
|
|
456
840
|
body: string;
|
|
@@ -471,51 +855,6 @@ declare function renderApprovalCopy(input: {
|
|
|
471
855
|
approvalId?: string;
|
|
472
856
|
}): ConsentSummary;
|
|
473
857
|
|
|
474
|
-
interface ConnectorAdapterProviderOptions {
|
|
475
|
-
id?: string;
|
|
476
|
-
kind?: IntegrationProviderKind;
|
|
477
|
-
adapters: ConnectorAdapter[];
|
|
478
|
-
resolveDataSource: (connection: IntegrationConnection) => Promise<ResolvedDataSource> | ResolvedDataSource;
|
|
479
|
-
now?: () => Date;
|
|
480
|
-
}
|
|
481
|
-
declare function createConnectorAdapterProvider(options: ConnectorAdapterProviderOptions): IntegrationProvider;
|
|
482
|
-
declare function adapterManifestsToConnectors(adapters: ConnectorAdapter[], providerId?: string): IntegrationConnector[];
|
|
483
|
-
declare function createConnectorAdapterCatalogSource(options: {
|
|
484
|
-
id?: string;
|
|
485
|
-
providerId?: string;
|
|
486
|
-
adapters: ConnectorAdapter[];
|
|
487
|
-
precedence?: number;
|
|
488
|
-
}): IntegrationCatalogSource;
|
|
489
|
-
declare function manifestToConnector(providerId: string, adapter: ConnectorAdapter): IntegrationConnector;
|
|
490
|
-
|
|
491
|
-
interface IntegrationSecretStore {
|
|
492
|
-
get(ref: SecretRef): Promise<ConnectorCredentials | undefined> | ConnectorCredentials | undefined;
|
|
493
|
-
put(ref: SecretRef, credentials: ConnectorCredentials): Promise<void> | void;
|
|
494
|
-
delete?(ref: SecretRef): Promise<void> | void;
|
|
495
|
-
}
|
|
496
|
-
interface ConnectionCredentialResolverOptions {
|
|
497
|
-
secrets: IntegrationSecretStore;
|
|
498
|
-
connections?: IntegrationConnectionStore;
|
|
499
|
-
adapters?: ConnectorAdapter[];
|
|
500
|
-
now?: () => Date;
|
|
501
|
-
markConnectionError?: (connection: IntegrationConnection, error: Error) => Promise<void> | void;
|
|
502
|
-
}
|
|
503
|
-
declare class InMemoryIntegrationSecretStore implements IntegrationSecretStore {
|
|
504
|
-
private readonly secrets;
|
|
505
|
-
get(ref: SecretRef): ConnectorCredentials | undefined;
|
|
506
|
-
put(ref: SecretRef, credentials: ConnectorCredentials): void;
|
|
507
|
-
delete(ref: SecretRef): void;
|
|
508
|
-
}
|
|
509
|
-
declare function createConnectionCredentialResolver(options: ConnectionCredentialResolverOptions): (connection: IntegrationConnection) => Promise<ResolvedDataSource>;
|
|
510
|
-
declare function resolveConnectionCredentials(input: IntegrationConnection, options: ConnectionCredentialResolverOptions): Promise<ConnectorCredentials>;
|
|
511
|
-
declare function createCredentialBackedAdapterProvider(options: Omit<ConnectorAdapterProviderOptions, 'resolveDataSource'> & ConnectionCredentialResolverOptions): IntegrationProvider;
|
|
512
|
-
declare function revokeConnection(input: {
|
|
513
|
-
connection: IntegrationConnection;
|
|
514
|
-
connections?: IntegrationConnectionStore;
|
|
515
|
-
secrets?: IntegrationSecretStore;
|
|
516
|
-
now?: () => Date;
|
|
517
|
-
}): Promise<IntegrationConnection>;
|
|
518
|
-
|
|
519
858
|
/**
|
|
520
859
|
* Workspace capability discovery — answers "what can this workspace do?"
|
|
521
860
|
* with a typed list of MCP-shape tool descriptors that the agent runtime
|
|
@@ -828,51 +1167,6 @@ declare class DefaultIntegrationActionGuard implements IntegrationActionGuard {
|
|
|
828
1167
|
}
|
|
829
1168
|
declare function createDefaultIntegrationActionGuard(options?: ConstructorParameters<typeof DefaultIntegrationActionGuard>[0]): DefaultIntegrationActionGuard;
|
|
830
1169
|
|
|
831
|
-
type IntegrationHealthcheckStatus = 'healthy' | 'degraded' | 'unhealthy' | 'unknown';
|
|
832
|
-
interface IntegrationHealthcheckCheck {
|
|
833
|
-
id: string;
|
|
834
|
-
status: IntegrationHealthcheckStatus;
|
|
835
|
-
message: string;
|
|
836
|
-
metadata?: Record<string, unknown>;
|
|
837
|
-
}
|
|
838
|
-
interface IntegrationHealthcheckResult {
|
|
839
|
-
connectionId: string;
|
|
840
|
-
providerId: string;
|
|
841
|
-
connectorId: string;
|
|
842
|
-
status: IntegrationHealthcheckStatus;
|
|
843
|
-
checkedAt: string;
|
|
844
|
-
checks: IntegrationHealthcheckCheck[];
|
|
845
|
-
metadata?: Record<string, unknown>;
|
|
846
|
-
}
|
|
847
|
-
interface IntegrationHealthcheckStore {
|
|
848
|
-
put(result: IntegrationHealthcheckResult): Promise<void> | void;
|
|
849
|
-
get(connectionId: string): Promise<IntegrationHealthcheckResult | undefined> | IntegrationHealthcheckResult | undefined;
|
|
850
|
-
list(): Promise<IntegrationHealthcheckResult[]> | IntegrationHealthcheckResult[];
|
|
851
|
-
}
|
|
852
|
-
declare class InMemoryIntegrationHealthcheckStore implements IntegrationHealthcheckStore {
|
|
853
|
-
private readonly results;
|
|
854
|
-
put(result: IntegrationHealthcheckResult): void;
|
|
855
|
-
get(connectionId: string): IntegrationHealthcheckResult | undefined;
|
|
856
|
-
list(): IntegrationHealthcheckResult[];
|
|
857
|
-
}
|
|
858
|
-
declare function runIntegrationHealthcheck(input: {
|
|
859
|
-
connection: IntegrationConnection;
|
|
860
|
-
connector?: IntegrationConnector;
|
|
861
|
-
registry?: IntegrationRegistry;
|
|
862
|
-
test?: (connection: IntegrationConnection, connector: IntegrationConnector) => Promise<IntegrationActionResult | boolean> | IntegrationActionResult | boolean;
|
|
863
|
-
audit?: IntegrationAuditSink;
|
|
864
|
-
now?: () => Date;
|
|
865
|
-
}): Promise<IntegrationHealthcheckResult>;
|
|
866
|
-
declare function runIntegrationHealthchecks(input: {
|
|
867
|
-
connections: IntegrationConnection[];
|
|
868
|
-
registry?: IntegrationRegistry;
|
|
869
|
-
store?: IntegrationHealthcheckStore;
|
|
870
|
-
audit?: IntegrationAuditSink;
|
|
871
|
-
now?: () => Date;
|
|
872
|
-
test?: (connection: IntegrationConnection, connector: IntegrationConnector) => Promise<IntegrationActionResult | boolean> | IntegrationActionResult | boolean;
|
|
873
|
-
}): Promise<IntegrationHealthcheckResult[]>;
|
|
874
|
-
declare function healthcheckRequest(action?: string): IntegrationActionRequest;
|
|
875
|
-
|
|
876
1170
|
interface ManifestValidationIssue {
|
|
877
1171
|
path: string;
|
|
878
1172
|
message: string;
|
|
@@ -1820,6 +2114,27 @@ declare function getIntegrationFamily(id: IntegrationFamilyId): IntegrationFamil
|
|
|
1820
2114
|
|
|
1821
2115
|
declare function listIntegrationSpecs(): IntegrationSpec[];
|
|
1822
2116
|
declare function getIntegrationSpec(kind: string): IntegrationSpec | undefined;
|
|
2117
|
+
/** Auth-driving descriptor the hub uses to start a connect flow per provider
|
|
2118
|
+
* instead of hard-coding scopes/auth kind. Derived from the spec catalog
|
|
2119
|
+
* ({@link getIntegrationSpec}); undefined when the kind is not in the
|
|
2120
|
+
* catalog. */
|
|
2121
|
+
interface ConnectorAuthSpec {
|
|
2122
|
+
kind: string;
|
|
2123
|
+
authKind: 'oauth2' | 'api_key' | 'none' | 'custom';
|
|
2124
|
+
/** Provider scopes to request in the authorization grant. Empty for
|
|
2125
|
+
* api_key / none / custom. */
|
|
2126
|
+
requestedScopes: string[];
|
|
2127
|
+
/** OAuth-only: authorization + token endpoints and PKCE posture. Present
|
|
2128
|
+
* only when authKind === 'oauth2'. */
|
|
2129
|
+
authorizationUrl?: string;
|
|
2130
|
+
tokenUrl?: string;
|
|
2131
|
+
pkce?: 'required' | 'supported' | 'unsupported';
|
|
2132
|
+
redirectUriTemplate?: string;
|
|
2133
|
+
clientIdEnv?: string;
|
|
2134
|
+
clientSecretEnv?: string;
|
|
2135
|
+
extraAuthParams?: Record<string, string>;
|
|
2136
|
+
}
|
|
2137
|
+
declare function resolveConnectorAuthSpec(kind: string): ConnectorAuthSpec | undefined;
|
|
1823
2138
|
declare function listExecutableIntegrationSpecs(): IntegrationSpec[];
|
|
1824
2139
|
declare function integrationSpecToConnector(spec: IntegrationSpec, providerId?: string): IntegrationConnector;
|
|
1825
2140
|
|
|
@@ -2074,8 +2389,34 @@ interface IntegrationHubOptions {
|
|
|
2074
2389
|
* provider invocation. Use it to pause writes, deny destructive actions,
|
|
2075
2390
|
* or apply tenant-specific allow rules. */
|
|
2076
2391
|
policy?: IntegrationPolicyEngine;
|
|
2392
|
+
/** Host-injectable secret store. Multi-tenant hubs inject a durable
|
|
2393
|
+
* encrypted store; defaults to {@link InMemoryIntegrationSecretStore} for
|
|
2394
|
+
* local/dev and tests. The interface is the contract — the lib never
|
|
2395
|
+
* ships a D1/KV/encryption impl. */
|
|
2396
|
+
secretStore?: IntegrationSecretStore;
|
|
2397
|
+
/** Host-injectable single-use OAuth-state store guarding the start →
|
|
2398
|
+
* callback CSRF boundary. Defaults to
|
|
2399
|
+
* {@link InMemoryIntegrationOAuthStateStore}. */
|
|
2400
|
+
oauthStateStore?: IntegrationOAuthStateStore;
|
|
2401
|
+
/** TTL applied to OAuth-state records the hub stashes at startAuth.
|
|
2402
|
+
* Defaults to 10 minutes. */
|
|
2403
|
+
oauthStateTtlMs?: number;
|
|
2404
|
+
/** Fired whenever a provider surfaces rotated credentials during an
|
|
2405
|
+
* invoke (e.g. an OAuth access token refreshed on expiry). The host
|
|
2406
|
+
* re-encrypts + persists the rotated envelope so the next expiry does
|
|
2407
|
+
* not force a reconnect. The hub also writes the rotated credentials to
|
|
2408
|
+
* {@link secretStore} when the connection carries a secretRef. */
|
|
2409
|
+
credentialsRotated?: (event: IntegrationCredentialsRotatedEvent) => Promise<void> | void;
|
|
2077
2410
|
now?: () => Date;
|
|
2078
2411
|
}
|
|
2412
|
+
/** Emitted when a provider rotates credentials mid-invoke. The host
|
|
2413
|
+
* re-persists `credentials` against `secretRef` (when present) so the
|
|
2414
|
+
* refreshed token survives the call. */
|
|
2415
|
+
interface IntegrationCredentialsRotatedEvent {
|
|
2416
|
+
connection: IntegrationConnection;
|
|
2417
|
+
secretRef?: SecretRef;
|
|
2418
|
+
credentials: ConnectorCredentials;
|
|
2419
|
+
}
|
|
2079
2420
|
interface HttpIntegrationProviderOptions {
|
|
2080
2421
|
id: string;
|
|
2081
2422
|
kind?: IntegrationProviderKind;
|
|
@@ -2104,6 +2445,12 @@ declare class IntegrationHub {
|
|
|
2104
2445
|
private readonly capabilitySecret;
|
|
2105
2446
|
private readonly guard;
|
|
2106
2447
|
private readonly policy;
|
|
2448
|
+
/** Host-injected (or in-memory default) secret store. The hub re-persists
|
|
2449
|
+
* rotated credentials here when a connection carries a secretRef. */
|
|
2450
|
+
readonly secretStore: IntegrationSecretStore;
|
|
2451
|
+
private readonly oauthStateStore;
|
|
2452
|
+
private readonly oauthStateTtlMs;
|
|
2453
|
+
private readonly credentialsRotated;
|
|
2107
2454
|
private readonly now;
|
|
2108
2455
|
constructor(options: IntegrationHubOptions);
|
|
2109
2456
|
listConnectors(): Promise<IntegrationConnector[]>;
|
|
@@ -2132,4 +2479,4 @@ declare function createHttpIntegrationProvider(options: HttpIntegrationProviderO
|
|
|
2132
2479
|
declare function signCapability(capability: IntegrationCapability, secret: string): string;
|
|
2133
2480
|
declare function verifyCapabilityToken(token: string, secret: string): IntegrationCapability;
|
|
2134
2481
|
|
|
2135
|
-
export { type HealthcheckSpec as $, type TangleCatalogHttpAuthResolverRequest as A, type TangleCatalogInstalledPackageExecutorOptions as B, type TangleCatalogRuntimeHandlerOptions as C, type ComposeIntegrationRegistryOptions, type TangleCatalogRuntimeHttpRequest as D, type TangleCatalogRuntimeHttpResponse as E, type TangleCatalogRuntimeInvocation as F, type TangleCatalogRuntimeModuleAction as G, type TangleCatalogRuntimePackageCoverageOptions as H, type IntegrationCatalogView as I, type IntegrationCatalogSource, type IntegrationRegistry, type IntegrationRegistryConflict, type IntegrationRegistryEntry, type IntegrationRegistrySourceRef, type IntegrationRegistrySummary, type IntegrationSupportTier, type TangleCatalogRuntimePackageCoverageRow as J, auditTangleCatalogRuntimePackages as K, createTangleCatalogCredentialAuthResolver as L, type McpToolDefinition as M, createTangleCatalogHttpAuthResolver as N, createTangleCatalogInstalledPackageExecutor as O, createTangleCatalogRuntimeHandler as P, signTangleCatalogRuntimeRequest as Q, tangleCatalogAuthValue as R, verifyTangleCatalogRuntimeSignature as S, TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER as T, type ApiKeyAuthSpec as U, type ConsoleStep as V, type CredentialFieldSpec as W, type CredentialValidationInput as X, type CredentialValidationResult as Y, type CustomAuthSpec as Z, type HealthcheckPlan as _, type IntegrationToolDefinition as a, type GatewayCatalogProviderOptions as a$, type HmacAuthSpec as a0, INTEGRATION_FAMILIES as a1, type IntegrationAuthMode as a2, type IntegrationAuthSpec as a3, type IntegrationFamilyId as a4, type IntegrationFamilySpec as a5, type IntegrationLifecycleSpec as a6, type IntegrationPlannerHints as a7, type IntegrationSetupSpec as a8, type IntegrationSpec as a9, validateIntegrationSpec as aA, ACTIVEPIECES_OVERRIDES as aB, ACTIVEPIECES_PUBLIC_CATALOG_URL as aC, ACTIVEPIECES_RUNTIME_SIGNATURE_HEADER as aD, type ActivepiecesCatalogAuthField as aE, type ActivepiecesCatalogEntry as aF, type ActivepiecesExecutorInvocation as aG, type ActivepiecesExecutorProviderOptions as aH, type ActivepiecesHttpExecutorOptions as aI, type ActivepiecesPieceOverride as aJ, type ActivepiecesRuntimeRequest as aK, ApprovalBackedPolicyEngine as aL, type ApprovalBackedPolicyOptions as aM, CANONICAL_INTEGRATION_ACTIONS as aN, type CanonicalIntegrationActionId as aO, type CanonicalLaunchConnectorOptions as aP, type CatalogExecutorInvocation as aQ, type CatalogExecutorProviderOptions as aR, type CompleteAuthRequest as aS, type ConnectionCredentialResolverOptions as aT, type ConnectorAdapterProviderOptions as aU, type ConsentSummary as aV, DEFAULT_INTEGRATION_BRIDGE_ENV as aW, DefaultIntegrationActionGuard as aX, type DiscoverWorkspaceCapabilitiesInput as aY, type GatewayCatalogAction as aZ, type GatewayCatalogEntry as a_, type IntegrationSpecStatus as aa, type IntegrationSpecValidationIssue as ab, type IntegrationSpecValidationResult as ac, type NoneAuthSpec as ad, type NormalizedPermission as ae, type OAuth2AuthSpec as af, type PermissionDescriptor as ag, type PostSetupCheck as ah, type Quirk as ai, type RenderSpecOptions as aj, type RenderedConsoleStep as ak, type ScopeDescriptor as al, assertValidIntegrationSpec as am, buildHealthcheckPlan as an, consoleStepsToText as ao, getIntegrationFamily as ap, getIntegrationSpec as aq, integrationSpecToConnector as ar, listExecutableIntegrationSpecs as as, listIntegrationSpecs as at, renderAgentToolDescription as au, renderConsoleSteps as av, renderRunbookMarkdown as aw, specAuthToConnectorAuth as ax, validateCredentialFormat as ay, validateCredentialSet as az, type IntegrationToolSearchFilters as b, type IntegrationProviderKind as b$, type GatewayCatalogTrigger as b0, type GraphqlOperationSpec as b1, type HttpIntegrationProviderOptions as b2, type ImportCatalogOptions as b3, InMemoryConnectionStore as b4, InMemoryIntegrationApprovalStore as b5, InMemoryIntegrationAuditStore as b6, InMemoryIntegrationEventStore as b7, InMemoryIntegrationHealthcheckStore as b8, InMemoryIntegrationIdempotencyStore as b9, type IntegrationConnection as bA, type IntegrationConnectionStore as bB, type IntegrationConnector as bC, type IntegrationConnectorAction as bD, type IntegrationConnectorCategory as bE, type IntegrationConnectorTrigger as bF, type IntegrationCoveragePriority as bG, type IntegrationCoverageSpec as bH, type IntegrationDataClass as bI, IntegrationError as bJ, type IntegrationEventStore as bK, type IntegrationGuardContext as bL, type IntegrationHealthcheckCheck as bM, type IntegrationHealthcheckResult as bN, type IntegrationHealthcheckStatus as bO, type IntegrationHealthcheckStore as bP, IntegrationHub as bQ, type IntegrationHubOptions as bR, type IntegrationIdempotencyRecord as bS, type IntegrationIdempotencyStore as bT, type IntegrationInvocationEnvelope as bU, type IntegrationInvocationEnvelopeValidationOptions as bV, type IntegrationPolicyDecision as bW, type IntegrationPolicyEffect as bX, type IntegrationPolicyEngine as bY, type IntegrationPolicyRule as bZ, type IntegrationProvider as b_, InMemoryIntegrationSecretStore as ba, InMemoryIntegrationWorkflowStore as bb, type InferIntegrationRequirementsOptions as bc, type InstalledIntegrationWorkflow as bd, type IntegrationActionGuard as be, type IntegrationActionPack as bf, type IntegrationActionRequest as bg, type IntegrationActionResult as bh, type IntegrationActionRisk as bi, type IntegrationActor as bj, type IntegrationApprovalFilter as bk, type IntegrationApprovalRecord as bl, type IntegrationApprovalRequest as bm, type IntegrationApprovalResolution as bn, type IntegrationApprovalStatus as bo, type IntegrationApprovalStore as bp, type IntegrationAuditEvent as bq, type IntegrationAuditEventType as br, type IntegrationAuditFilter as bs, type IntegrationAuditSink as bt, type IntegrationAuditStore as bu, buildDefaultIntegrationRegistry, type IntegrationBridgePayload as bv, type IntegrationBridgeToolBinding as bw, type IntegrationCapability as bx, type IntegrationCatalogFreshnessOptions as by, type IntegrationCatalogFreshnessResult as bz, type IntegrationToolSearchResult as c, type WorkspaceTrigger as c$, type IntegrationRateLimitDecision as c0, type IntegrationRateLimiter as c1, IntegrationSandboxHost as c2, type IntegrationSandboxHostHub as c3, type IntegrationSandboxHostOptions as c4, type IntegrationSecretStore as c5, type IntegrationTriggerEvent as c6, type IntegrationTriggerSubscription as c7, type IntegrationWebhookReceiverResult as c8, type IntegrationWorkflowDefinition as c9, type StoredIntegrationEvent as cA, TANGLE_INTEGRATIONS_CATALOG_PROVIDER_ID as cB, TANGLE_INTEGRATIONS_CATALOG_SOURCE as cC, type TangleCatalogExecutorInvocation as cD, type TangleCatalogExecutorProviderOptions as cE, type TangleCatalogHttpExecutorInvocation as cF, type TangleCatalogHttpExecutorOptions as cG, type TangleCatalogRuntimeActionRequest as cH, type TangleCatalogRuntimeNodeServerOptions as cI, type TangleCatalogRuntimePackageManifest as cJ, type TangleCatalogRuntimePackageManifestOptions as cK, type TangleCatalogRuntimePiece as cL, type TangleCatalogRuntimeRequest as cM, type TangleCatalogTriggerInvocation as cN, type TangleIntegrationCatalogEntry as cO, type TangleIntegrationCatalogFreshnessOptions as cP, type TangleIntegrationCatalogFreshnessResult as cQ, type TangleIntegrationContract as cR, type TangleIntegrationContractStatus as cS, type TangleIntegrationImplementationKind as cT, type TangleIntegrationInvokeInput as cU, type TangleIntegrationInvokeResult as cV, TangleIntegrationsClient as cW, type TangleIntegrationsClientOptions as cX, type WorkspaceCapability as cY, type WorkspaceCapabilityDiscovery as cZ, type WorkspaceToolSchema as c_, IntegrationWorkflowRuntime as ca, canonicalConnectorId, type IntegrationWorkflowRuntimeHub as cb, type IntegrationWorkflowRuntimeOptions as cc, type IntegrationWorkflowStore as cd, type InvokeWithCapabilityRequest as ce, type IssueCapabilityRequest as cf, type IssuedIntegrationCapability as cg, type ManifestValidationIssue as ch, type ManifestValidationResult as ci, type McpCatalog as cj, type McpCatalogTool as ck, type MissingRequirementExplanation as cl, type NormalizedIntegrationResult as cm, type OpenApiDocument as cn, type OpenApiOperation as co, composeIntegrationRegistry, PROVIDER_PASSTHROUGH_ACTION as cp, type PlatformIntegrationPolicyPresetOptions as cq, type ProviderHttpRequestInput as cr, type ProviderPassthroughPolicy as cs, type RenderConsentOptions as ct, type SecretRef as cu, type StartAuthRequest as cv, type StartAuthResult as cw, type StartedTangleCatalogRuntimeNodeServer as cx, StaticIntegrationPolicyEngine as cy, type StaticIntegrationPolicyOptions as cz, buildIntegrationCatalogView as d, parseIntegrationBridgeEnvironment as d$, adapterManifestsToConnectors as d0, assertValidIntegrationManifest as d1, auditIntegrationCatalogFreshness as d2, auditTangleIntegrationCatalogFreshness as d3, buildActivepiecesConnectors as d4, buildActivepiecesRuntimeRequest as d5, buildApprovalRequest as d6, buildCanonicalLaunchConnectors as d7, buildIntegrationBridgeEnvironment as d8, buildIntegrationBridgePayload as d9, createTangleCatalogHttpExecutor as dA, createTangleCatalogRuntimeNodeRequestListener as dB, createTangleIntegrationsClient as dC, decodeIntegrationBridgePayload as dD, discoverWorkspaceCapabilities as dE, dispatchIntegrationInvocation as dF, encodeIntegrationBridgePayload as dG, explainMissingRequirements as dH, extractActivepiecesPublicPieceCount as dI, extractExternalCatalogPublicCount as dJ, filterDiscoveryByWorkspaceScopes as dK, getActivepiecesOverride as dL, healthcheckRequest as dM, importGraphqlConnector as dN, importMcpConnector as dO, importOpenApiConnector as dP, inferIntegrationManifestFromTools as dQ, integrationCoverageChecklistMarkdown as dR, invocationRequestFromEnvelope as dS, listActivepiecesCatalogEntries as dT, listIntegrationCoverageSpecs as dU, listTangleIntegrationCatalogEntries as dV, listTangleIntegrationCatalogRuntimePackages as dW, listTangleIntegrationContracts as dX, manifestToConnector as dY, normalizeGatewayCatalog as dZ, normalizeIntegrationResult as d_, buildIntegrationCoverageConnectors as da, buildIntegrationInvocationEnvelope as db, buildTangleCatalogRuntimePackageManifest as dc, buildTangleCatalogRuntimeRequest as dd, buildTangleIntegrationCatalogConnectors as de, calendarExercisePlannerManifest as df, canonicalActionConnectorId as dg, createActivepiecesExecutorProvider as dh, createActivepiecesHttpExecutor as di, createApprovalBackedPolicyEngine as dj, createAuditingActionGuard as dk, createCatalogExecutorProvider as dl, createConnectionCredentialResolver as dm, createConnectorAdapterCatalogSource as dn, createConnectorAdapterProvider as dp, createCredentialBackedAdapterProvider as dq, createDefaultIntegrationActionGuard as dr, createDefaultIntegrationPolicyEngine as ds, createGatewayCatalogProvider as dt, createHttpIntegrationProvider as du, createIntegrationAuditEvent as dv, createIntegrationWorkflowRuntime as dw, createMockIntegrationProvider as dx, createPlatformIntegrationPolicyPreset as dy, createTangleCatalogExecutorProvider as dz, buildIntegrationToolCatalog as e, receiveIntegrationWebhook as e0, redactApprovalRequest as e1, redactCapability as e2, redactIntegrationBridgePayload as e3, redactInvocationEnvelope as e4, renderApprovalCopy as e5, renderConsentSummary as e6, renderTangleCatalogRuntimePnpmAddCommand as e7, resolveConnectionCredentials as e8, resolveIntegrationApproval as e9, revokeConnection as ea, runIntegrationHealthcheck as eb, runIntegrationHealthchecks as ec, sanitizeAuditConnection as ed, sanitizeConnection as ee, signActivepiecesRuntimeRequest as ef, signCapability as eg, startTangleCatalogRuntimeNodeServer as eh, storedEventToTriggerEvent as ei, validateIntegrationInvocationEnvelope as ej, validateIntegrationManifest as ek, validateProviderPassthroughRequest as el, verifyActivepiecesRuntimeSignature as em, verifyCapabilityToken as en, InMemoryIntegrationGrantStore as f, type IntegrationCapabilityBinding as g, type IntegrationGrant as h, integrationToolName as i, inferIntegrationSupportTier, type IntegrationGrantStore as j, type IntegrationManifest as k, type IntegrationManifestResolution as l, type IntegrationRequirement as m, type IntegrationRequirementMode as n, type IntegrationRequirementResolution as o, parseIntegrationToolName as p, type IntegrationRequirementStatus as q, IntegrationRuntime as r, searchIntegrationTools as s, summarizeIntegrationRegistry, toMcpTools as t, type IntegrationRuntimeHub as u, type IntegrationRuntimeOptions as v, type IntegrationSandboxBundle as w, createIntegrationRuntime as x, type TangleCatalogAuthResolverOptions as y, type TangleCatalogHttpAuthResolverOptions as z };
|
|
2482
|
+
export { createTangleCatalogCredentialAuthResolver as $, type CheckConnectorInput as A, type CheckConnectorResult as B, type CapabilityBundleResult as C, type ComposeIntegrationRegistryOptions, type CreateGrantsInput as D, type IntegrationHubAuth as E, IntegrationHubClient as F, type IntegrationHubClientOptions as G, IntegrationHubRequestError as H, type IntegrationCatalogView as I, type IntegrationCatalogExecutability, type IntegrationCatalogSource, type IntegrationRegistry, type IntegrationRegistryConflict, type IntegrationRegistryEntry, type IntegrationRegistrySourceRef, type IntegrationRegistrySummary, type IntegrationSupportTier, type MintCapabilityBundleInput as J, createIntegrationHubClient as K, type ListGrantsInput as L, type McpToolDefinition as M, type TangleCatalogAuthResolverOptions as N, type TangleCatalogHttpAuthResolverOptions as O, type TangleCatalogHttpAuthResolverRequest as P, type TangleCatalogInstalledPackageExecutorOptions as Q, type ResolveManifestInput as R, type TangleCatalogRuntimeHandlerOptions as S, TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER as T, type TangleCatalogRuntimeHttpRequest as U, type TangleCatalogRuntimeHttpResponse as V, type TangleCatalogRuntimeInvocation as W, type TangleCatalogRuntimeModuleAction as X, type TangleCatalogRuntimePackageCoverageOptions as Y, type TangleCatalogRuntimePackageCoverageRow as Z, auditTangleCatalogRuntimePackages as _, type IntegrationToolDefinition as a, ApprovalBackedPolicyEngine as a$, createTangleCatalogHttpAuthResolver as a0, createTangleCatalogInstalledPackageExecutor as a1, createTangleCatalogRuntimeHandler as a2, signTangleCatalogRuntimeRequest as a3, tangleCatalogAuthValue as a4, verifyTangleCatalogRuntimeSignature as a5, type ApiKeyAuthSpec as a6, type ConnectorAuthSpec as a7, type ConsoleStep as a8, type CredentialFieldSpec as a9, type ScopeDescriptor as aA, assertValidIntegrationSpec as aB, buildHealthcheckPlan as aC, consoleStepsToText as aD, getIntegrationFamily as aE, getIntegrationSpec as aF, integrationSpecToConnector as aG, listExecutableIntegrationSpecs as aH, listIntegrationSpecs as aI, renderAgentToolDescription as aJ, renderConsoleSteps as aK, renderRunbookMarkdown as aL, resolveConnectorAuthSpec as aM, specAuthToConnectorAuth as aN, validateCredentialFormat as aO, validateCredentialSet as aP, validateIntegrationSpec as aQ, ACTIVEPIECES_OVERRIDES as aR, ACTIVEPIECES_PUBLIC_CATALOG_URL as aS, ACTIVEPIECES_RUNTIME_SIGNATURE_HEADER as aT, type ActivepiecesCatalogAuthField as aU, type ActivepiecesCatalogEntry as aV, type ActivepiecesExecutorInvocation as aW, type ActivepiecesExecutorProviderOptions as aX, type ActivepiecesHttpExecutorOptions as aY, type ActivepiecesPieceOverride as aZ, type ActivepiecesRuntimeRequest as a_, type CredentialValidationInput as aa, type CredentialValidationResult as ab, type CustomAuthSpec as ac, type HealthcheckPlan as ad, type HealthcheckSpec as ae, type HmacAuthSpec as af, INTEGRATION_FAMILIES as ag, type IntegrationAuthMode as ah, type IntegrationAuthSpec as ai, type IntegrationFamilyId as aj, type IntegrationFamilySpec as ak, type IntegrationLifecycleSpec as al, type IntegrationPlannerHints as am, type IntegrationSetupSpec as an, type IntegrationSpec as ao, type IntegrationSpecStatus as ap, type IntegrationSpecValidationIssue as aq, type IntegrationSpecValidationResult as ar, type NoneAuthSpec as as, type NormalizedPermission as at, type OAuth2AuthSpec as au, type PermissionDescriptor as av, type PostSetupCheck as aw, type Quirk as ax, type RenderSpecOptions as ay, type RenderedConsoleStep as az, type IntegrationToolSearchFilters as b, type IntegrationDataClass as b$, type ApprovalBackedPolicyOptions as b0, CANONICAL_INTEGRATION_ACTIONS as b1, type CanonicalIntegrationActionId as b2, type CanonicalLaunchConnectorOptions as b3, type CatalogExecutorInvocation as b4, type CatalogExecutorProviderOptions as b5, type CompleteAuthRequest as b6, type ConnectionCredentialResolverOptions as b7, type ConnectorAdapterProviderOptions as b8, type ConsentSummary as b9, type IntegrationActionRisk as bA, type IntegrationActor as bB, type IntegrationApprovalFilter as bC, type IntegrationApprovalRecord as bD, type IntegrationApprovalRequest as bE, type IntegrationApprovalResolution as bF, type IntegrationApprovalStatus as bG, type IntegrationApprovalStore as bH, type IntegrationAuditEvent as bI, type IntegrationAuditEventType as bJ, type IntegrationAuditFilter as bK, type IntegrationAuditSink as bL, type IntegrationAuditStore as bM, type IntegrationBridgePayload as bN, type IntegrationBridgeToolBinding as bO, type IntegrationCapability as bP, type IntegrationCatalogFreshnessOptions as bQ, type IntegrationCatalogFreshnessResult as bR, type IntegrationConnection as bS, type IntegrationConnectionStore as bT, type IntegrationConnector as bU, type IntegrationConnectorAction as bV, type IntegrationConnectorCategory as bW, type IntegrationConnectorTrigger as bX, type IntegrationCoveragePriority as bY, type IntegrationCoverageSpec as bZ, type IntegrationCredentialsRotatedEvent as b_, type CredentialBackedAdapterProviderOptions as ba, DEFAULT_INTEGRATION_BRIDGE_ENV as bb, DefaultIntegrationActionGuard as bc, type DiscoverWorkspaceCapabilitiesInput as bd, type GatewayCatalogAction as be, type GatewayCatalogEntry as bf, type GatewayCatalogProviderOptions as bg, type GatewayCatalogTrigger as bh, type GraphqlOperationSpec as bi, type HttpIntegrationProviderOptions as bj, type ImportCatalogOptions as bk, InMemoryConnectionStore as bl, InMemoryIntegrationApprovalStore as bm, InMemoryIntegrationAuditStore as bn, InMemoryIntegrationEventStore as bo, InMemoryIntegrationHealthcheckStore as bp, InMemoryIntegrationIdempotencyStore as bq, InMemoryIntegrationOAuthStateStore as br, InMemoryIntegrationSecretStore as bs, InMemoryIntegrationWorkflowStore as bt, type InferIntegrationRequirementsOptions as bu, buildDefaultIntegrationRegistry, type InstalledIntegrationWorkflow as bv, type IntegrationActionGuard as bw, type IntegrationActionPack as bx, type IntegrationActionRequest as by, type IntegrationActionResult as bz, type IntegrationToolSearchResult as c, type TangleCatalogHttpExecutorInvocation as c$, IntegrationError as c0, type IntegrationEventStore as c1, type IntegrationGuardContext as c2, type IntegrationHealthcheckCheck as c3, type IntegrationHealthcheckResult as c4, type IntegrationHealthcheckStatus as c5, type IntegrationHealthcheckStore as c6, IntegrationHub as c7, type IntegrationHubOptions as c8, type IntegrationIdempotencyRecord as c9, type InvokeWithCapabilityRequest as cA, type IssueCapabilityRequest as cB, type IssuedIntegrationCapability as cC, type ManifestValidationIssue as cD, type ManifestValidationResult as cE, type McpCatalog as cF, type McpCatalogTool as cG, type MissingRequirementExplanation as cH, type NormalizedIntegrationResult as cI, type OpenApiDocument as cJ, type OpenApiOperation as cK, PROVIDER_PASSTHROUGH_ACTION as cL, type PlatformIntegrationPolicyPresetOptions as cM, type ProviderHttpRequestInput as cN, type ProviderPassthroughPolicy as cO, type RenderConsentOptions as cP, type SecretRef as cQ, type StartAuthRequest as cR, type StartAuthResult as cS, type StartedTangleCatalogRuntimeNodeServer as cT, StaticIntegrationPolicyEngine as cU, type StaticIntegrationPolicyOptions as cV, type StoredIntegrationEvent as cW, TANGLE_INTEGRATIONS_CATALOG_PROVIDER_ID as cX, TANGLE_INTEGRATIONS_CATALOG_SOURCE as cY, type TangleCatalogExecutorInvocation as cZ, type TangleCatalogExecutorProviderOptions as c_, type IntegrationIdempotencyStore as ca, canonicalConnectorId, type IntegrationInvocationEnvelope as cb, type IntegrationInvocationEnvelopeValidationOptions as cc, type IntegrationOAuthState as cd, type IntegrationOAuthStateOutcome as ce, type IntegrationOAuthStateStore as cf, type IntegrationPolicyDecision as cg, type IntegrationPolicyEffect as ch, type IntegrationPolicyEngine as ci, type IntegrationPolicyRule as cj, type IntegrationProvider as ck, type IntegrationProviderKind as cl, classifyIntegrationCatalogExecutability, type IntegrationRateLimitDecision as cm, type IntegrationRateLimiter as cn, IntegrationSandboxHost as co, composeIntegrationRegistry, type IntegrationSandboxHostHub as cp, type IntegrationSandboxHostOptions as cq, type IntegrationSecretStore as cr, type IntegrationTriggerEvent as cs, type IntegrationTriggerSubscription as ct, type IntegrationWebhookReceiverResult as cu, type IntegrationWorkflowDefinition as cv, IntegrationWorkflowRuntime as cw, type IntegrationWorkflowRuntimeHub as cx, type IntegrationWorkflowRuntimeOptions as cy, type IntegrationWorkflowStore as cz, buildIntegrationCatalogView as d, dispatchIntegrationInvocation as d$, type TangleCatalogHttpExecutorOptions as d0, type TangleCatalogRuntimeActionRequest as d1, type TangleCatalogRuntimeNodeServerOptions as d2, type TangleCatalogRuntimePackageManifest as d3, type TangleCatalogRuntimePackageManifestOptions as d4, type TangleCatalogRuntimePiece as d5, type TangleCatalogRuntimeRequest as d6, type TangleCatalogTriggerInvocation as d7, type TangleIntegrationCatalogEntry as d8, type TangleIntegrationCatalogFreshnessOptions as d9, buildTangleCatalogRuntimeRequest as dA, buildTangleIntegrationCatalogConnectors as dB, calendarExercisePlannerManifest as dC, canonicalActionConnectorId as dD, createActivepiecesExecutorProvider as dE, createActivepiecesHttpExecutor as dF, createApprovalBackedPolicyEngine as dG, createAuditingActionGuard as dH, createCatalogExecutorProvider as dI, createConnectionCredentialResolver as dJ, createConnectorAdapterCatalogSource as dK, createConnectorAdapterProvider as dL, createCredentialBackedAdapterProvider as dM, createDefaultIntegrationActionGuard as dN, createDefaultIntegrationPolicyEngine as dO, createGatewayCatalogProvider as dP, createHttpIntegrationProvider as dQ, createIntegrationAuditEvent as dR, createIntegrationWorkflowRuntime as dS, createMockIntegrationProvider as dT, createPlatformIntegrationPolicyPreset as dU, createTangleCatalogExecutorProvider as dV, createTangleCatalogHttpExecutor as dW, createTangleCatalogRuntimeNodeRequestListener as dX, createTangleIntegrationsClient as dY, decodeIntegrationBridgePayload as dZ, discoverWorkspaceCapabilities as d_, type TangleIntegrationCatalogFreshnessResult as da, type TangleIntegrationContract as db, type TangleIntegrationContractStatus as dc, type TangleIntegrationImplementationKind as dd, type TangleIntegrationInvokeInput as de, type TangleIntegrationInvokeResult as df, TangleIntegrationsClient as dg, type TangleIntegrationsClientOptions as dh, type WorkspaceCapability as di, type WorkspaceCapabilityDiscovery as dj, type WorkspaceToolSchema as dk, type WorkspaceTrigger as dl, adapterManifestsToConnectors as dm, assertValidIntegrationManifest as dn, auditIntegrationCatalogFreshness as dp, auditTangleIntegrationCatalogFreshness as dq, buildActivepiecesConnectors as dr, buildActivepiecesRuntimeRequest as ds, buildApprovalRequest as dt, buildCanonicalLaunchConnectors as du, buildIntegrationBridgeEnvironment as dv, buildIntegrationBridgePayload as dw, buildIntegrationCoverageConnectors as dx, buildIntegrationInvocationEnvelope as dy, buildTangleCatalogRuntimePackageManifest as dz, buildIntegrationToolCatalog as e, encodeIntegrationBridgePayload as e0, explainMissingRequirements as e1, extractActivepiecesPublicPieceCount as e2, extractExternalCatalogPublicCount as e3, filterDiscoveryByWorkspaceScopes as e4, getActivepiecesOverride as e5, healthcheckRequest as e6, importGraphqlConnector as e7, importMcpConnector as e8, importOpenApiConnector as e9, sanitizeConnection as eA, signActivepiecesRuntimeRequest as eB, signCapability as eC, startTangleCatalogRuntimeNodeServer as eD, storedEventToTriggerEvent as eE, validateIntegrationInvocationEnvelope as eF, validateIntegrationManifest as eG, validateProviderPassthroughRequest as eH, verifyActivepiecesRuntimeSignature as eI, verifyCapabilityToken as eJ, inferIntegrationManifestFromTools as ea, integrationCoverageChecklistMarkdown as eb, invocationRequestFromEnvelope as ec, listActivepiecesCatalogEntries as ed, listIntegrationCoverageSpecs as ee, listTangleIntegrationCatalogEntries as ef, listTangleIntegrationCatalogRuntimePackages as eg, listTangleIntegrationContracts as eh, manifestToConnector as ei, normalizeGatewayCatalog as ej, normalizeIntegrationResult as ek, parseIntegrationBridgeEnvironment as el, receiveIntegrationWebhook as em, redactApprovalRequest as en, redactCapability as eo, redactIntegrationBridgePayload as ep, redactInvocationEnvelope as eq, renderApprovalCopy as er, renderConsentSummary as es, renderTangleCatalogRuntimePnpmAddCommand as et, resolveConnectionCredentials as eu, resolveIntegrationApproval as ev, revokeConnection as ew, runIntegrationHealthcheck as ex, runIntegrationHealthchecks as ey, sanitizeAuditConnection as ez, describeIntegrationTool as f, flattenIntegrationToolDefinition as g, InMemoryIntegrationGrantStore as h, integrationToolName as i, inferIntegrationSupportTier, type IntegrationCapabilityBinding as j, type IntegrationGrant as k, type IntegrationGrantStore as l, type IntegrationManifest as m, type IntegrationManifestResolution as n, type IntegrationRequirement as o, parseIntegrationToolName as p, type IntegrationRequirementMode as q, type IntegrationRequirementResolution as r, searchIntegrationTools as s, summarizeIntegrationRegistry, toMcpTools as t, type IntegrationRequirementStatus as u, IntegrationRuntime as v, type IntegrationRuntimeHub as w, type IntegrationRuntimeOptions as x, type IntegrationSandboxBundle as y, createIntegrationRuntime as z };
|