@tangle-network/agent-integrations 0.25.7 → 0.27.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 +11 -2
- package/dist/bin/tangle-catalog-runtime.js +6 -2
- package/dist/bin/tangle-catalog-runtime.js.map +1 -1
- package/dist/catalog.d.ts +4 -1
- package/dist/catalog.js +6 -2
- package/dist/chunk-2TW2QKGZ.js +94 -0
- package/dist/chunk-2TW2QKGZ.js.map +1 -0
- package/dist/chunk-ATYHZXLL.js +457 -0
- package/dist/chunk-ATYHZXLL.js.map +1 -0
- package/dist/{chunk-A5I3EYU5.js → chunk-ICSBYCE2.js} +122 -1
- package/dist/chunk-ICSBYCE2.js.map +1 -0
- package/dist/{chunk-WC63AI4Q.js → chunk-JU25UDN2.js} +1252 -225
- package/dist/chunk-JU25UDN2.js.map +1 -0
- package/dist/chunk-P24T3MLM.js +106 -0
- package/dist/chunk-P24T3MLM.js.map +1 -0
- package/dist/chunk-SVQ4PHDZ.js +129 -0
- package/dist/chunk-SVQ4PHDZ.js.map +1 -0
- package/dist/connect/index.d.ts +112 -0
- package/dist/connect/index.js +14 -0
- package/dist/connect/index.js.map +1 -0
- package/dist/connectors/adapters/index.d.ts +593 -1
- package/dist/connectors/adapters/index.js +22 -1
- package/dist/connectors/index.d.ts +2 -1
- package/dist/connectors/index.js +32 -10
- package/dist/index.d.ts +5 -2
- package/dist/index.js +57 -11
- package/dist/middleware/index.d.ts +137 -0
- package/dist/middleware/index.js +14 -0
- package/dist/middleware/index.js.map +1 -0
- package/dist/registry.d.ts +165 -2
- package/dist/registry.js +6 -2
- package/dist/runtime.d.ts +4 -1
- package/dist/runtime.js +6 -2
- package/dist/specs.d.ts +4 -1
- package/dist/tangle-catalog-runtime.d.ts +4 -1
- package/dist/tangle-catalog-runtime.js +6 -2
- package/dist/tangle-id-CTU4kGId.d.ts +553 -0
- package/dist/webhooks/index.d.ts +193 -0
- package/dist/webhooks/index.js +285 -0
- package/dist/webhooks/index.js.map +1 -0
- package/examples/discover-capabilities.ts +46 -0
- package/examples/webhook-router.ts +56 -0
- package/package.json +25 -12
- package/dist/chunk-A5I3EYU5.js.map +0 -1
- package/dist/chunk-WC63AI4Q.js.map +0 -1
- package/dist/index-BQY5ry2s.d.ts +0 -808
package/dist/registry.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { C as ConnectorAdapter, R as ResolvedDataSource,
|
|
1
|
+
import { C as ConnectorAdapter, R as ResolvedDataSource, d as ConnectorCredentials } from './tangle-id-CTU4kGId.js';
|
|
2
|
+
import './connect/index.js';
|
|
3
|
+
import './middleware/index.js';
|
|
2
4
|
import './connectors/index.js';
|
|
5
|
+
import './connectors/adapters/index.js';
|
|
3
6
|
import { Server, IncomingMessage, ServerResponse } from 'node:http';
|
|
4
7
|
|
|
5
8
|
type IntegrationSupportTier = 'catalogOnly' | 'setupReady' | 'gatewayExecutable' | 'firstPartyExecutable' | 'sandboxExecutable';
|
|
@@ -512,6 +515,166 @@ declare function revokeConnection(input: {
|
|
|
512
515
|
now?: () => Date;
|
|
513
516
|
}): Promise<IntegrationConnection>;
|
|
514
517
|
|
|
518
|
+
/**
|
|
519
|
+
* Workspace capability discovery — answers "what can this workspace do?"
|
|
520
|
+
* with a typed list of MCP-shape tool descriptors that the agent runtime
|
|
521
|
+
* can flatten into a planner's tool registry.
|
|
522
|
+
*
|
|
523
|
+
* The agent runtime's gating question is one level above the existing
|
|
524
|
+
* connector catalog ("which integrations exist?") and one level below
|
|
525
|
+
* the issued capability-token surface ("temporarily delegate scope X
|
|
526
|
+
* via this signed token"). This module bridges the two:
|
|
527
|
+
*
|
|
528
|
+
* discoverWorkspaceCapabilities({ owner, connectors, connections, scopes })
|
|
529
|
+
* → WorkspaceCapability[]
|
|
530
|
+
*
|
|
531
|
+
* A `WorkspaceCapability` is hand-shaped to be cheap to emit alongside a
|
|
532
|
+
* connector manifest and trivial to render into:
|
|
533
|
+
* - an LLM tool-choice JSON array
|
|
534
|
+
* - an MCP `tools/list` response
|
|
535
|
+
* - a UI surface ("Connect Gmail to enable: send_reply, list_messages…")
|
|
536
|
+
*
|
|
537
|
+
* What this is NOT:
|
|
538
|
+
* - A capability-token issuer. That stays in IntegrationHub.issueCapability.
|
|
539
|
+
* - A connector registry. That stays in IntegrationRegistry / catalog.
|
|
540
|
+
*
|
|
541
|
+
* Scopes are the load-bearing input: a connector advertises N actions,
|
|
542
|
+
* but only the subset whose `requiredScopes` are a subset of the
|
|
543
|
+
* connection's `grantedScopes` is reachable. The discovery function
|
|
544
|
+
* filters on that automatically.
|
|
545
|
+
*
|
|
546
|
+
* Stability: `@stable` — additions to WorkspaceCapability must be
|
|
547
|
+
* additive and non-breaking.
|
|
548
|
+
*/
|
|
549
|
+
|
|
550
|
+
/** MCP-shape tool descriptor. Mirrors the
|
|
551
|
+
* [Model Context Protocol tool schema](https://modelcontextprotocol.io/specification)
|
|
552
|
+
* closely enough that consumers can pipe a WorkspaceCapability straight
|
|
553
|
+
* into a `tools/list` response. */
|
|
554
|
+
interface WorkspaceToolSchema {
|
|
555
|
+
name: string;
|
|
556
|
+
description?: string;
|
|
557
|
+
/** JSON-schema describing the action's input. */
|
|
558
|
+
inputSchema?: unknown;
|
|
559
|
+
/** Optional JSON-schema describing the action's output. */
|
|
560
|
+
outputSchema?: unknown;
|
|
561
|
+
}
|
|
562
|
+
/** One discoverable capability — an action a connector exposes that the
|
|
563
|
+
* workspace has the connection + scopes to invoke. */
|
|
564
|
+
interface WorkspaceCapability {
|
|
565
|
+
/** Stable, fully-qualified id. Format `<connector-id>.<action-id>`. */
|
|
566
|
+
id: string;
|
|
567
|
+
/** Human label safe for UI. */
|
|
568
|
+
title: string;
|
|
569
|
+
/** Optional one-line description. */
|
|
570
|
+
description?: string;
|
|
571
|
+
/** Connector category for grouping. */
|
|
572
|
+
category: IntegrationConnectorCategory;
|
|
573
|
+
/** Connector that hosts this capability. */
|
|
574
|
+
connectorId: string;
|
|
575
|
+
/** Provider that hosts this connector (first-party, gateway, …). */
|
|
576
|
+
providerId: string;
|
|
577
|
+
/** Underlying action id on the connector. */
|
|
578
|
+
actionId: string;
|
|
579
|
+
/** Scopes required to invoke. The discovery function only returns
|
|
580
|
+
* capabilities whose required scopes are a subset of the connection's
|
|
581
|
+
* grantedScopes. */
|
|
582
|
+
scopes: string[];
|
|
583
|
+
/** Risk class — useful for UI ("write" / "destructive" lights). */
|
|
584
|
+
risk: IntegrationActionRisk;
|
|
585
|
+
/** Data class of the action's output, when known. */
|
|
586
|
+
dataClass: IntegrationDataClass;
|
|
587
|
+
/** MCP-shape tool schema the agent runtime can register directly. */
|
|
588
|
+
toolSchema: WorkspaceToolSchema;
|
|
589
|
+
/** True iff the workspace has an active connection backing this
|
|
590
|
+
* capability. False capabilities (advertised by the connector but
|
|
591
|
+
* not yet connected) are included when `includeUnconnected: true`
|
|
592
|
+
* is passed — useful for "connect to unlock" UI affordances. */
|
|
593
|
+
connected: boolean;
|
|
594
|
+
/** Connection id backing this capability. Undefined when
|
|
595
|
+
* `connected: false`. */
|
|
596
|
+
connectionId?: string;
|
|
597
|
+
/** Whether the action requires explicit approval before invocation. */
|
|
598
|
+
approvalRequired?: boolean;
|
|
599
|
+
}
|
|
600
|
+
/** Optional inbound trigger surface. Same shape as a capability so the
|
|
601
|
+
* consumer can render both with one component. */
|
|
602
|
+
interface WorkspaceTrigger {
|
|
603
|
+
id: string;
|
|
604
|
+
title: string;
|
|
605
|
+
description?: string;
|
|
606
|
+
category: IntegrationConnectorCategory;
|
|
607
|
+
connectorId: string;
|
|
608
|
+
providerId: string;
|
|
609
|
+
triggerId: string;
|
|
610
|
+
scopes: string[];
|
|
611
|
+
dataClass: IntegrationDataClass;
|
|
612
|
+
connected: boolean;
|
|
613
|
+
connectionId?: string;
|
|
614
|
+
}
|
|
615
|
+
interface DiscoverWorkspaceCapabilitiesInput {
|
|
616
|
+
/** Workspace owner. Used to scope the connection lookup when `store`
|
|
617
|
+
* is supplied (the canonical production path). */
|
|
618
|
+
owner: IntegrationActor;
|
|
619
|
+
/** Either an explicit connection list (test/fixture path) or a store
|
|
620
|
+
* the function should query for connections by owner. Exactly one
|
|
621
|
+
* of `connections` / `store` MUST be provided. */
|
|
622
|
+
connections?: IntegrationConnection[];
|
|
623
|
+
store?: IntegrationConnectionStore;
|
|
624
|
+
/** Either an explicit connector list (test/fixture path) or a set of
|
|
625
|
+
* providers the function should query via `listConnectors()`. */
|
|
626
|
+
connectors?: IntegrationConnector[];
|
|
627
|
+
providers?: IntegrationProvider[];
|
|
628
|
+
/** Include capabilities whose connector is in the catalog but the
|
|
629
|
+
* workspace has no active connection for. Useful to render
|
|
630
|
+
* "connect to unlock" affordances. Default: false. */
|
|
631
|
+
includeUnconnected?: boolean;
|
|
632
|
+
/** When true, include capabilities even if some required scopes are
|
|
633
|
+
* missing from the connection grant. The default `false` hides such
|
|
634
|
+
* capabilities — the agent runtime never sees them. */
|
|
635
|
+
includeMissingScopes?: boolean;
|
|
636
|
+
}
|
|
637
|
+
interface WorkspaceCapabilityDiscovery {
|
|
638
|
+
capabilities: WorkspaceCapability[];
|
|
639
|
+
triggers: WorkspaceTrigger[];
|
|
640
|
+
/** Counts grouped by connector for telemetry / UI badges. */
|
|
641
|
+
countsByConnector: Record<string, number>;
|
|
642
|
+
/** Connectors the workspace is connected to but the planner cannot
|
|
643
|
+
* reach any actions on (e.g., zero scopes granted, or all actions
|
|
644
|
+
* require an additional scope). */
|
|
645
|
+
unreachableConnectors: Array<{
|
|
646
|
+
connectorId: string;
|
|
647
|
+
reason: string;
|
|
648
|
+
}>;
|
|
649
|
+
}
|
|
650
|
+
/** Resolve workspace-visible capabilities + triggers. Pure with respect
|
|
651
|
+
* to the inputs — caller decides whether to back `connections` and
|
|
652
|
+
* `connectors` with persistent state or static fixtures. */
|
|
653
|
+
declare function discoverWorkspaceCapabilities(input: DiscoverWorkspaceCapabilitiesInput): Promise<WorkspaceCapabilityDiscovery>;
|
|
654
|
+
/**
|
|
655
|
+
* Filter a {@link WorkspaceCapabilityDiscovery} result by the calling
|
|
656
|
+
* user's effective id.tangle.tools workspace scopes. Pair with the
|
|
657
|
+
* `tangleIdentity()` adapter's `list_workspaces` / `switch_workspace`
|
|
658
|
+
* output to keep what the agent runtime sees aligned with what the
|
|
659
|
+
* workspace's plan actually permits.
|
|
660
|
+
*
|
|
661
|
+
* Semantics:
|
|
662
|
+
* - Every workspace scope is matched against every capability's
|
|
663
|
+
* `scopes` list. Wildcard scopes (`tangle:*`, `<connectorId>:*`) are
|
|
664
|
+
* respected — a workspace with `tangle:*` sees everything; a
|
|
665
|
+
* workspace with `gmail:*` sees every gmail capability regardless of
|
|
666
|
+
* the upstream OAuth scope.
|
|
667
|
+
* - When `workspaceScopes` is empty, returns the discovery as-is (no
|
|
668
|
+
* workspace gate). Pass an explicit `denyByDefault: true` to flip
|
|
669
|
+
* that to "empty workspace sees nothing" — matches the platform's
|
|
670
|
+
* fail-closed posture for production tenants.
|
|
671
|
+
*
|
|
672
|
+
* Pure with respect to the inputs — no side effects.
|
|
673
|
+
*/
|
|
674
|
+
declare function filterDiscoveryByWorkspaceScopes(discovery: WorkspaceCapabilityDiscovery, workspaceScopes: string[], opts?: {
|
|
675
|
+
denyByDefault?: boolean;
|
|
676
|
+
}): WorkspaceCapabilityDiscovery;
|
|
677
|
+
|
|
515
678
|
type IntegrationErrorCode = 'missing_connection' | 'missing_grant' | 'approval_required' | 'approval_denied' | 'connection_revoked' | 'connection_expired' | 'scope_missing' | 'action_denied' | 'action_not_found' | 'trigger_not_found' | 'provider_rate_limited' | 'provider_auth_failed' | 'provider_unavailable' | 'provider_error' | 'capability_expired' | 'capability_invalid' | 'manifest_invalid' | 'passthrough_disabled' | 'input_invalid' | 'unknown';
|
|
516
679
|
interface IntegrationUserAction {
|
|
517
680
|
type: 'connect' | 'reconnect' | 'approve' | 'retry' | 'contact_support' | 'change_request';
|
|
@@ -1999,4 +2162,4 @@ declare function createHttpIntegrationProvider(options: HttpIntegrationProviderO
|
|
|
1999
2162
|
declare function signCapability(capability: IntegrationCapability, secret: string): string;
|
|
2000
2163
|
declare function verifyCapabilityToken(token: string, secret: string): IntegrationCapability;
|
|
2001
2164
|
|
|
2002
|
-
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 GatewayCatalogTrigger 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 GatewayCatalogAction as aY, type GatewayCatalogEntry as aZ, type GatewayCatalogProviderOptions 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 GraphqlOperationSpec as b0, type HttpIntegrationProviderOptions as b1, type ImportCatalogOptions as b2, InMemoryConnectionStore as b3, InMemoryIntegrationApprovalStore as b4, InMemoryIntegrationAuditStore as b5, InMemoryIntegrationEventStore as b6, InMemoryIntegrationHealthcheckStore as b7, InMemoryIntegrationIdempotencyStore as b8, InMemoryIntegrationSecretStore as b9, type IntegrationConnectionStore as bA, type IntegrationConnector as bB, type IntegrationConnectorAction as bC, type IntegrationConnectorCategory as bD, type IntegrationConnectorTrigger as bE, type IntegrationCoveragePriority as bF, type IntegrationCoverageSpec as bG, type IntegrationDataClass as bH, IntegrationError as bI, type IntegrationErrorCode 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_, InMemoryIntegrationWorkflowStore as ba, type InferIntegrationRequirementsOptions as bb, type InstalledIntegrationWorkflow as bc, type IntegrationActionGuard as bd, type IntegrationActionPack as be, type IntegrationActionRequest as bf, type IntegrationActionResult as bg, type IntegrationActionRisk as bh, type IntegrationActor as bi, type IntegrationApprovalFilter as bj, type IntegrationApprovalRecord as bk, type IntegrationApprovalRequest as bl, type IntegrationApprovalResolution as bm, type IntegrationApprovalStatus as bn, type IntegrationApprovalStore as bo, type IntegrationAuditEvent as bp, type IntegrationAuditEventType as bq, type IntegrationAuditFilter as br, type IntegrationAuditSink as bs, type IntegrationAuditStore as bt, type IntegrationBridgePayload as bu, buildDefaultIntegrationRegistry, type IntegrationBridgeToolBinding as bv, type IntegrationCapability as bw, type IntegrationCatalogFreshnessOptions as bx, type IntegrationCatalogFreshnessResult as by, type IntegrationConnection as bz, type IntegrationToolSearchResult as c, adapterManifestsToConnectors as c$, type IntegrationRateLimitDecision as c0, type IntegrationRateLimiter as c1, IntegrationRuntimeError as c2, IntegrationSandboxHost as c3, type IntegrationSandboxHostHub as c4, type IntegrationSandboxHostOptions as c5, type IntegrationSecretStore as c6, type IntegrationTriggerEvent as c7, type IntegrationTriggerSubscription as c8, type IntegrationUserAction as c9, type StartedTangleCatalogRuntimeNodeServer as cA, StaticIntegrationPolicyEngine as cB, type StaticIntegrationPolicyOptions as cC, type StoredIntegrationEvent as cD, TANGLE_INTEGRATIONS_CATALOG_PROVIDER_ID as cE, TANGLE_INTEGRATIONS_CATALOG_SOURCE as cF, type TangleCatalogExecutorInvocation as cG, type TangleCatalogExecutorProviderOptions as cH, type TangleCatalogHttpExecutorInvocation as cI, type TangleCatalogHttpExecutorOptions as cJ, type TangleCatalogRuntimeActionRequest as cK, type TangleCatalogRuntimeNodeServerOptions as cL, type TangleCatalogRuntimePackageManifest as cM, type TangleCatalogRuntimePackageManifestOptions as cN, type TangleCatalogRuntimePiece as cO, type TangleCatalogRuntimeRequest as cP, type TangleCatalogTriggerInvocation as cQ, type TangleIntegrationCatalogEntry as cR, type TangleIntegrationCatalogFreshnessOptions as cS, type TangleIntegrationCatalogFreshnessResult as cT, type TangleIntegrationContract as cU, type TangleIntegrationContractStatus as cV, type TangleIntegrationImplementationKind as cW, type TangleIntegrationInvokeInput as cX, type TangleIntegrationInvokeResult as cY, TangleIntegrationsClient as cZ, type TangleIntegrationsClientOptions as c_, type IntegrationWebhookReceiverResult as ca, canonicalConnectorId, type IntegrationWorkflowDefinition as cb, IntegrationWorkflowRuntime as cc, type IntegrationWorkflowRuntimeHub as cd, type IntegrationWorkflowRuntimeOptions as ce, type IntegrationWorkflowStore as cf, type InvokeWithCapabilityRequest as cg, type IssueCapabilityRequest as ch, type IssuedIntegrationCapability as ci, type ManifestValidationIssue as cj, type ManifestValidationResult as ck, type McpCatalog as cl, type McpCatalogTool as cm, type MissingRequirementExplanation as cn, type NormalizedIntegrationError as co, composeIntegrationRegistry, type NormalizedIntegrationResult as cp, type OpenApiDocument as cq, type OpenApiOperation as cr, PROVIDER_PASSTHROUGH_ACTION as cs, type PlatformIntegrationPolicyPresetOptions as ct, type ProviderHttpRequestInput as cu, type ProviderPassthroughPolicy as cv, type RenderConsentOptions as cw, type SecretRef as cx, type StartAuthRequest as cy, type StartAuthResult as cz, buildIntegrationCatalogView as d, redactApprovalRequest as d$, assertValidIntegrationManifest as d0, auditIntegrationCatalogFreshness as d1, auditTangleIntegrationCatalogFreshness as d2, buildActivepiecesConnectors as d3, buildActivepiecesRuntimeRequest as d4, buildApprovalRequest as d5, buildCanonicalLaunchConnectors as d6, buildIntegrationBridgeEnvironment as d7, buildIntegrationBridgePayload as d8, buildIntegrationCoverageConnectors as d9, createTangleCatalogRuntimeNodeRequestListener as dA, createTangleIntegrationsClient as dB, decodeIntegrationBridgePayload as dC, dispatchIntegrationInvocation as dD, encodeIntegrationBridgePayload as dE, explainMissingRequirements as dF, extractActivepiecesPublicPieceCount as dG, extractExternalCatalogPublicCount as dH, getActivepiecesOverride as dI, healthcheckRequest as dJ, importGraphqlConnector as dK, importMcpConnector as dL, importOpenApiConnector as dM, inferIntegrationManifestFromTools as dN, integrationCoverageChecklistMarkdown as dO, invocationRequestFromEnvelope as dP, listActivepiecesCatalogEntries as dQ, listIntegrationCoverageSpecs as dR, listTangleIntegrationCatalogEntries as dS, listTangleIntegrationCatalogRuntimePackages as dT, listTangleIntegrationContracts as dU, manifestToConnector as dV, normalizeGatewayCatalog as dW, normalizeIntegrationError as dX, normalizeIntegrationResult as dY, parseIntegrationBridgeEnvironment as dZ, receiveIntegrationWebhook as d_, buildIntegrationInvocationEnvelope as da, buildTangleCatalogRuntimePackageManifest as db, buildTangleCatalogRuntimeRequest as dc, buildTangleIntegrationCatalogConnectors as dd, calendarExercisePlannerManifest as de, canonicalActionConnectorId as df, createActivepiecesExecutorProvider as dg, createActivepiecesHttpExecutor as dh, createApprovalBackedPolicyEngine as di, createAuditingActionGuard as dj, createCatalogExecutorProvider as dk, createConnectionCredentialResolver as dl, createConnectorAdapterCatalogSource as dm, createConnectorAdapterProvider as dn, createCredentialBackedAdapterProvider as dp, createDefaultIntegrationActionGuard as dq, createDefaultIntegrationPolicyEngine as dr, createGatewayCatalogProvider as ds, createHttpIntegrationProvider as dt, createIntegrationAuditEvent as du, createIntegrationWorkflowRuntime as dv, createMockIntegrationProvider as dw, createPlatformIntegrationPolicyPreset as dx, createTangleCatalogExecutorProvider as dy, createTangleCatalogHttpExecutor as dz, buildIntegrationToolCatalog as e, redactCapability as e0, redactIntegrationBridgePayload as e1, redactInvocationEnvelope as e2, renderApprovalCopy as e3, renderConsentSummary as e4, renderTangleCatalogRuntimePnpmAddCommand as e5, resolveConnectionCredentials as e6, resolveIntegrationApproval as e7, revokeConnection as e8, runIntegrationHealthcheck as e9, runIntegrationHealthchecks as ea, sanitizeAuditConnection as eb, sanitizeConnection as ec, signActivepiecesRuntimeRequest as ed, signCapability as ee, startTangleCatalogRuntimeNodeServer as ef, statusForCode as eg, storedEventToTriggerEvent as eh, validateIntegrationInvocationEnvelope as ei, validateIntegrationManifest as ej, validateProviderPassthroughRequest as ek, verifyActivepiecesRuntimeSignature as el, verifyCapabilityToken as em, 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 };
|
|
2165
|
+
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 IntegrationProvider 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 IntegrationErrorCode as bK, type IntegrationEventStore as bL, type IntegrationGuardContext as bM, type IntegrationHealthcheckCheck as bN, type IntegrationHealthcheckResult as bO, type IntegrationHealthcheckStatus as bP, type IntegrationHealthcheckStore as bQ, IntegrationHub as bR, type IntegrationHubOptions as bS, type IntegrationIdempotencyRecord as bT, type IntegrationIdempotencyStore as bU, type IntegrationInvocationEnvelope as bV, type IntegrationInvocationEnvelopeValidationOptions as bW, type IntegrationPolicyDecision as bX, type IntegrationPolicyEffect as bY, type IntegrationPolicyEngine as bZ, type IntegrationPolicyRule 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 TangleIntegrationsClientOptions as c$, type IntegrationProviderKind as c0, type IntegrationRateLimitDecision as c1, type IntegrationRateLimiter as c2, IntegrationRuntimeError as c3, IntegrationSandboxHost as c4, type IntegrationSandboxHostHub as c5, type IntegrationSandboxHostOptions as c6, type IntegrationSecretStore as c7, type IntegrationTriggerEvent as c8, type IntegrationTriggerSubscription as c9, type StartAuthResult as cA, type StartedTangleCatalogRuntimeNodeServer as cB, StaticIntegrationPolicyEngine as cC, type StaticIntegrationPolicyOptions as cD, type StoredIntegrationEvent as cE, TANGLE_INTEGRATIONS_CATALOG_PROVIDER_ID as cF, TANGLE_INTEGRATIONS_CATALOG_SOURCE as cG, type TangleCatalogExecutorInvocation as cH, type TangleCatalogExecutorProviderOptions as cI, type TangleCatalogHttpExecutorInvocation as cJ, type TangleCatalogHttpExecutorOptions as cK, type TangleCatalogRuntimeActionRequest as cL, type TangleCatalogRuntimeNodeServerOptions as cM, type TangleCatalogRuntimePackageManifest as cN, type TangleCatalogRuntimePackageManifestOptions as cO, type TangleCatalogRuntimePiece as cP, type TangleCatalogRuntimeRequest as cQ, type TangleCatalogTriggerInvocation as cR, type TangleIntegrationCatalogEntry as cS, type TangleIntegrationCatalogFreshnessOptions as cT, type TangleIntegrationCatalogFreshnessResult as cU, type TangleIntegrationContract as cV, type TangleIntegrationContractStatus as cW, type TangleIntegrationImplementationKind as cX, type TangleIntegrationInvokeInput as cY, type TangleIntegrationInvokeResult as cZ, TangleIntegrationsClient as c_, type IntegrationUserAction as ca, canonicalConnectorId, type IntegrationWebhookReceiverResult as cb, type IntegrationWorkflowDefinition as cc, IntegrationWorkflowRuntime as cd, type IntegrationWorkflowRuntimeHub as ce, type IntegrationWorkflowRuntimeOptions as cf, type IntegrationWorkflowStore as cg, type InvokeWithCapabilityRequest as ch, type IssueCapabilityRequest as ci, type IssuedIntegrationCapability as cj, type ManifestValidationIssue as ck, type ManifestValidationResult as cl, type McpCatalog as cm, type McpCatalogTool as cn, type MissingRequirementExplanation as co, composeIntegrationRegistry, type NormalizedIntegrationError as cp, type NormalizedIntegrationResult as cq, type OpenApiDocument as cr, type OpenApiOperation as cs, PROVIDER_PASSTHROUGH_ACTION as ct, type PlatformIntegrationPolicyPresetOptions as cu, type ProviderHttpRequestInput as cv, type ProviderPassthroughPolicy as cw, type RenderConsentOptions as cx, type SecretRef as cy, type StartAuthRequest as cz, buildIntegrationCatalogView as d, listTangleIntegrationContracts as d$, type WorkspaceCapability as d0, type WorkspaceCapabilityDiscovery as d1, type WorkspaceToolSchema as d2, type WorkspaceTrigger as d3, adapterManifestsToConnectors as d4, assertValidIntegrationManifest as d5, auditIntegrationCatalogFreshness as d6, auditTangleIntegrationCatalogFreshness as d7, buildActivepiecesConnectors as d8, buildActivepiecesRuntimeRequest as d9, createIntegrationWorkflowRuntime as dA, createMockIntegrationProvider as dB, createPlatformIntegrationPolicyPreset as dC, createTangleCatalogExecutorProvider as dD, createTangleCatalogHttpExecutor as dE, createTangleCatalogRuntimeNodeRequestListener as dF, createTangleIntegrationsClient as dG, decodeIntegrationBridgePayload as dH, discoverWorkspaceCapabilities as dI, dispatchIntegrationInvocation as dJ, encodeIntegrationBridgePayload as dK, explainMissingRequirements as dL, extractActivepiecesPublicPieceCount as dM, extractExternalCatalogPublicCount as dN, filterDiscoveryByWorkspaceScopes as dO, getActivepiecesOverride as dP, healthcheckRequest as dQ, importGraphqlConnector as dR, importMcpConnector as dS, importOpenApiConnector as dT, inferIntegrationManifestFromTools as dU, integrationCoverageChecklistMarkdown as dV, invocationRequestFromEnvelope as dW, listActivepiecesCatalogEntries as dX, listIntegrationCoverageSpecs as dY, listTangleIntegrationCatalogEntries as dZ, listTangleIntegrationCatalogRuntimePackages as d_, buildApprovalRequest as da, buildCanonicalLaunchConnectors as db, buildIntegrationBridgeEnvironment as dc, buildIntegrationBridgePayload as dd, buildIntegrationCoverageConnectors as de, buildIntegrationInvocationEnvelope as df, buildTangleCatalogRuntimePackageManifest as dg, buildTangleCatalogRuntimeRequest as dh, buildTangleIntegrationCatalogConnectors as di, calendarExercisePlannerManifest as dj, canonicalActionConnectorId as dk, createActivepiecesExecutorProvider as dl, createActivepiecesHttpExecutor as dm, createApprovalBackedPolicyEngine as dn, createAuditingActionGuard as dp, createCatalogExecutorProvider as dq, createConnectionCredentialResolver as dr, createConnectorAdapterCatalogSource as ds, createConnectorAdapterProvider as dt, createCredentialBackedAdapterProvider as du, createDefaultIntegrationActionGuard as dv, createDefaultIntegrationPolicyEngine as dw, createGatewayCatalogProvider as dx, createHttpIntegrationProvider as dy, createIntegrationAuditEvent as dz, buildIntegrationToolCatalog as e, manifestToConnector as e0, normalizeGatewayCatalog as e1, normalizeIntegrationError as e2, normalizeIntegrationResult as e3, parseIntegrationBridgeEnvironment as e4, receiveIntegrationWebhook as e5, redactApprovalRequest as e6, redactCapability as e7, redactIntegrationBridgePayload as e8, redactInvocationEnvelope as e9, renderApprovalCopy as ea, renderConsentSummary as eb, renderTangleCatalogRuntimePnpmAddCommand as ec, resolveConnectionCredentials as ed, resolveIntegrationApproval as ee, revokeConnection as ef, runIntegrationHealthcheck as eg, runIntegrationHealthchecks as eh, sanitizeAuditConnection as ei, sanitizeConnection as ej, signActivepiecesRuntimeRequest as ek, signCapability as el, startTangleCatalogRuntimeNodeServer as em, statusForCode as en, storedEventToTriggerEvent as eo, validateIntegrationInvocationEnvelope as ep, validateIntegrationManifest as eq, validateProviderPassthroughRequest as er, verifyActivepiecesRuntimeSignature as es, verifyCapabilityToken as et, 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 };
|
package/dist/registry.js
CHANGED
|
@@ -4,10 +4,14 @@ import {
|
|
|
4
4
|
composeIntegrationRegistry,
|
|
5
5
|
inferIntegrationSupportTier,
|
|
6
6
|
summarizeIntegrationRegistry
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-ICSBYCE2.js";
|
|
8
|
+
import "./chunk-SVQ4PHDZ.js";
|
|
8
9
|
import "./chunk-4JQ754PA.js";
|
|
9
10
|
import "./chunk-376UBTNB.js";
|
|
10
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-JU25UDN2.js";
|
|
12
|
+
import "./chunk-2TW2QKGZ.js";
|
|
13
|
+
import "./chunk-P24T3MLM.js";
|
|
14
|
+
import "./chunk-ATYHZXLL.js";
|
|
11
15
|
export {
|
|
12
16
|
buildDefaultIntegrationRegistry,
|
|
13
17
|
canonicalConnectorId,
|
package/dist/runtime.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export { f as InMemoryIntegrationGrantStore, g as IntegrationCapabilityBinding, h as IntegrationGrant, j as IntegrationGrantStore, k as IntegrationManifest, l as IntegrationManifestResolution, m as IntegrationRequirement, n as IntegrationRequirementMode, o as IntegrationRequirementResolution, q as IntegrationRequirementStatus, r as IntegrationRuntime, u as IntegrationRuntimeHub, v as IntegrationRuntimeOptions, w as IntegrationSandboxBundle, x as createIntegrationRuntime } from './registry.js';
|
|
2
|
-
import './
|
|
2
|
+
import './tangle-id-CTU4kGId.js';
|
|
3
|
+
import './connect/index.js';
|
|
4
|
+
import './middleware/index.js';
|
|
3
5
|
import './connectors/index.js';
|
|
6
|
+
import './connectors/adapters/index.js';
|
|
4
7
|
import 'node:http';
|
package/dist/runtime.js
CHANGED
|
@@ -2,10 +2,14 @@ import {
|
|
|
2
2
|
InMemoryIntegrationGrantStore,
|
|
3
3
|
IntegrationRuntime,
|
|
4
4
|
createIntegrationRuntime
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-ICSBYCE2.js";
|
|
6
|
+
import "./chunk-SVQ4PHDZ.js";
|
|
6
7
|
import "./chunk-4JQ754PA.js";
|
|
7
8
|
import "./chunk-376UBTNB.js";
|
|
8
|
-
import "./chunk-
|
|
9
|
+
import "./chunk-JU25UDN2.js";
|
|
10
|
+
import "./chunk-2TW2QKGZ.js";
|
|
11
|
+
import "./chunk-P24T3MLM.js";
|
|
12
|
+
import "./chunk-ATYHZXLL.js";
|
|
9
13
|
export {
|
|
10
14
|
InMemoryIntegrationGrantStore,
|
|
11
15
|
IntegrationRuntime,
|
package/dist/specs.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export { U as ApiKeyAuthSpec, V as ConsoleStep, W as CredentialFieldSpec, X as CredentialValidationInput, Y as CredentialValidationResult, Z as CustomAuthSpec, _ as HealthcheckPlan, $ as HealthcheckSpec, a0 as HmacAuthSpec, a1 as INTEGRATION_FAMILIES, a2 as IntegrationAuthMode, a3 as IntegrationAuthSpec, a4 as IntegrationFamilyId, a5 as IntegrationFamilySpec, a6 as IntegrationLifecycleSpec, a7 as IntegrationPlannerHints, a8 as IntegrationSetupSpec, a9 as IntegrationSpec, aa as IntegrationSpecStatus, ab as IntegrationSpecValidationIssue, ac as IntegrationSpecValidationResult, ad as NoneAuthSpec, ae as NormalizedPermission, af as OAuth2AuthSpec, ag as PermissionDescriptor, ah as PostSetupCheck, ai as Quirk, aj as RenderSpecOptions, ak as RenderedConsoleStep, al as ScopeDescriptor, am as assertValidIntegrationSpec, an as buildHealthcheckPlan, ao as consoleStepsToText, ap as getIntegrationFamily, aq as getIntegrationSpec, ar as integrationSpecToConnector, as as listExecutableIntegrationSpecs, at as listIntegrationSpecs, au as renderAgentToolDescription, av as renderConsoleSteps, aw as renderRunbookMarkdown, ax as specAuthToConnectorAuth, ay as validateCredentialFormat, az as validateCredentialSet, aA as validateIntegrationSpec } from './registry.js';
|
|
2
|
-
import './
|
|
2
|
+
import './tangle-id-CTU4kGId.js';
|
|
3
|
+
import './connect/index.js';
|
|
4
|
+
import './middleware/index.js';
|
|
3
5
|
import './connectors/index.js';
|
|
6
|
+
import './connectors/adapters/index.js';
|
|
4
7
|
import 'node:http';
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export { T as TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER, y as TangleCatalogAuthResolverOptions, z as TangleCatalogHttpAuthResolverOptions, A as TangleCatalogHttpAuthResolverRequest, B as TangleCatalogInstalledPackageExecutorOptions, C as TangleCatalogRuntimeHandlerOptions, D as TangleCatalogRuntimeHttpRequest, E as TangleCatalogRuntimeHttpResponse, F as TangleCatalogRuntimeInvocation, G as TangleCatalogRuntimeModuleAction, H as TangleCatalogRuntimePackageCoverageOptions, J as TangleCatalogRuntimePackageCoverageRow, K as auditTangleCatalogRuntimePackages, L as createTangleCatalogCredentialAuthResolver, N as createTangleCatalogHttpAuthResolver, O as createTangleCatalogInstalledPackageExecutor, P as createTangleCatalogRuntimeHandler, Q as signTangleCatalogRuntimeRequest, R as tangleCatalogAuthValue, S as verifyTangleCatalogRuntimeSignature } from './registry.js';
|
|
2
|
-
import './
|
|
2
|
+
import './tangle-id-CTU4kGId.js';
|
|
3
|
+
import './connect/index.js';
|
|
4
|
+
import './middleware/index.js';
|
|
3
5
|
import './connectors/index.js';
|
|
6
|
+
import './connectors/adapters/index.js';
|
|
4
7
|
import 'node:http';
|
|
@@ -8,10 +8,14 @@ import {
|
|
|
8
8
|
signTangleCatalogRuntimeRequest,
|
|
9
9
|
tangleCatalogAuthValue,
|
|
10
10
|
verifyTangleCatalogRuntimeSignature
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-ICSBYCE2.js";
|
|
12
|
+
import "./chunk-SVQ4PHDZ.js";
|
|
12
13
|
import "./chunk-4JQ754PA.js";
|
|
13
14
|
import "./chunk-376UBTNB.js";
|
|
14
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-JU25UDN2.js";
|
|
16
|
+
import "./chunk-2TW2QKGZ.js";
|
|
17
|
+
import "./chunk-P24T3MLM.js";
|
|
18
|
+
import "./chunk-ATYHZXLL.js";
|
|
15
19
|
export {
|
|
16
20
|
TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER,
|
|
17
21
|
auditTangleCatalogRuntimePackages,
|