@tangle-network/agent-integrations 0.22.1 → 0.23.1

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/dist/specs.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import { Server, IncomingMessage, ServerResponse } from 'node:http';
2
+
1
3
  type IntegrationSupportTier = 'catalogOnly' | 'setupReady' | 'gatewayExecutable' | 'firstPartyExecutable' | 'sandboxExecutable';
2
4
  interface IntegrationCatalogSource {
3
5
  id: string;
@@ -572,6 +574,9 @@ type ConnectorCredentials = {
572
574
  } | {
573
575
  kind: 'api-key';
574
576
  apiKey: string;
577
+ } | {
578
+ kind: 'custom';
579
+ values: Record<string, unknown>;
575
580
  } | {
576
581
  kind: 'hmac';
577
582
  secret: string;
@@ -1815,6 +1820,9 @@ interface CatalogExecutorProviderOptions {
1815
1820
  startAuth?: (request: StartAuthRequest) => Promise<StartAuthResult> | StartAuthResult;
1816
1821
  completeAuth?: (request: CompleteAuthRequest) => Promise<IntegrationConnection> | IntegrationConnection;
1817
1822
  executeAction: (invocation: CatalogExecutorInvocation) => Promise<IntegrationActionResult> | IntegrationActionResult;
1823
+ subscribeTrigger?: (connection: IntegrationConnection, trigger: NonNullable<IntegrationConnector['triggers']>[number], targetUrl?: string) => Promise<IntegrationTriggerSubscription> | IntegrationTriggerSubscription;
1824
+ unsubscribeTrigger?: (subscriptionId: string) => Promise<void> | void;
1825
+ normalizeTriggerEvent?: (raw: unknown) => Promise<IntegrationTriggerEvent> | IntegrationTriggerEvent;
1818
1826
  }
1819
1827
  declare function createCatalogExecutorProvider(options: CatalogExecutorProviderOptions): IntegrationProvider;
1820
1828
 
@@ -1992,6 +2000,7 @@ interface ActivepiecesCatalogEntry {
1992
2000
  version?: string;
1993
2001
  category: IntegrationConnectorCategory;
1994
2002
  auth: IntegrationConnector['auth'];
2003
+ authFields?: ActivepiecesCatalogAuthField[];
1995
2004
  domains: string[];
1996
2005
  actions: Array<{
1997
2006
  id: string;
@@ -2002,6 +2011,7 @@ interface ActivepiecesCatalogEntry {
2002
2011
  triggers: Array<{
2003
2012
  id: string;
2004
2013
  title: string;
2014
+ upstreamName?: string;
2005
2015
  }>;
2006
2016
  source: {
2007
2017
  repository: string;
@@ -2009,6 +2019,14 @@ interface ActivepiecesCatalogEntry {
2009
2019
  license: 'MIT';
2010
2020
  };
2011
2021
  }
2022
+ interface ActivepiecesCatalogAuthField {
2023
+ key: string;
2024
+ label: string;
2025
+ required: boolean;
2026
+ secret: boolean;
2027
+ kind: 'text' | 'number' | 'boolean' | 'select' | 'object' | 'unknown';
2028
+ description?: string;
2029
+ }
2012
2030
  declare function listActivepiecesCatalogEntries(): ActivepiecesCatalogEntry[];
2013
2031
  declare function buildActivepiecesConnectors(options?: {
2014
2032
  providerId?: string;
@@ -2145,6 +2163,7 @@ interface TangleIntegrationCatalogEntry {
2145
2163
  description: string;
2146
2164
  category: IntegrationConnector['category'];
2147
2165
  auth: IntegrationConnector['auth'];
2166
+ authFields?: ActivepiecesCatalogEntry['authFields'];
2148
2167
  domains: string[];
2149
2168
  actions: Array<{
2150
2169
  id: string;
@@ -2154,6 +2173,7 @@ interface TangleIntegrationCatalogEntry {
2154
2173
  triggers: Array<{
2155
2174
  id: string;
2156
2175
  title: string;
2176
+ upstreamName?: string;
2157
2177
  }>;
2158
2178
  }
2159
2179
  interface TangleCatalogExecutorInvocation {
@@ -2169,12 +2189,29 @@ interface TangleCatalogExecutorInvocation {
2169
2189
  upstreamActionName?: string;
2170
2190
  };
2171
2191
  }
2192
+ interface TangleCatalogTriggerInvocation {
2193
+ connection: IntegrationConnection;
2194
+ connector: IntegrationConnector;
2195
+ catalogEntry: TangleIntegrationCatalogEntry;
2196
+ trigger: NonNullable<IntegrationConnector['triggers']>[number];
2197
+ targetUrl?: string;
2198
+ piece: {
2199
+ id: string;
2200
+ packageName?: string;
2201
+ version?: string;
2202
+ triggerId: string;
2203
+ upstreamTriggerName?: string;
2204
+ };
2205
+ }
2172
2206
  interface TangleCatalogExecutorProviderOptions {
2173
2207
  id?: string;
2174
2208
  connectors?: IntegrationConnector[];
2175
2209
  startAuth?: (request: StartAuthRequest) => Promise<StartAuthResult> | StartAuthResult;
2176
2210
  completeAuth?: (request: CompleteAuthRequest) => Promise<IntegrationConnection> | IntegrationConnection;
2177
2211
  executeAction: (invocation: TangleCatalogExecutorInvocation) => Promise<IntegrationActionResult> | IntegrationActionResult;
2212
+ subscribeTrigger?: (invocation: TangleCatalogTriggerInvocation) => Promise<IntegrationTriggerSubscription> | IntegrationTriggerSubscription;
2213
+ unsubscribeTrigger?: (subscriptionId: string) => Promise<void> | void;
2214
+ normalizeTriggerEvent?: (raw: unknown) => Promise<IntegrationTriggerEvent> | IntegrationTriggerEvent;
2178
2215
  }
2179
2216
  type TangleIntegrationCatalogFreshnessOptions = IntegrationCatalogFreshnessOptions;
2180
2217
  interface TangleIntegrationCatalogFreshnessResult {
@@ -2203,6 +2240,11 @@ interface TangleIntegrationCatalogFreshnessResult {
2203
2240
  warnings: string[];
2204
2241
  }
2205
2242
  declare function listTangleIntegrationCatalogEntries(): TangleIntegrationCatalogEntry[];
2243
+ declare function listTangleIntegrationCatalogRuntimePackages(): Array<{
2244
+ connectorId: string;
2245
+ packageName: string;
2246
+ version?: string;
2247
+ }>;
2206
2248
  declare function buildTangleIntegrationCatalogConnectors(options?: {
2207
2249
  providerId?: string;
2208
2250
  includeCatalogActions?: boolean;
@@ -2232,6 +2274,31 @@ interface TangleCatalogInstalledPackageExecutorOptions {
2232
2274
  resolveAuth?: (connection: IntegrationConnection) => Promise<unknown> | unknown;
2233
2275
  beforeRun?: (invocation: TangleCatalogRuntimeInvocation) => Promise<void> | void;
2234
2276
  }
2277
+ interface TangleCatalogAuthResolverOptions {
2278
+ secrets: IntegrationSecretStore;
2279
+ mapCredentials?: (input: {
2280
+ connection: IntegrationConnection;
2281
+ credentials: ConnectorCredentials;
2282
+ connectorId: string;
2283
+ }) => unknown;
2284
+ }
2285
+ interface TangleCatalogHttpAuthResolverOptions {
2286
+ endpoint: string;
2287
+ secret: string;
2288
+ path?: string;
2289
+ timeoutMs?: number;
2290
+ fetchImpl?: typeof fetch;
2291
+ headers?: Record<string, string>;
2292
+ requestId?: () => string;
2293
+ }
2294
+ interface TangleCatalogHttpAuthResolverRequest {
2295
+ version: 1;
2296
+ requestId: string;
2297
+ providerId: string;
2298
+ connectorId: string;
2299
+ connectionId: string;
2300
+ secretRef?: IntegrationConnection['secretRef'];
2301
+ }
2235
2302
  interface TangleCatalogRuntimeModuleAction {
2236
2303
  name?: string;
2237
2304
  displayName?: string;
@@ -2261,6 +2328,34 @@ interface TangleCatalogRuntimeHttpResponse {
2261
2328
  }
2262
2329
  declare function createTangleCatalogRuntimeHandler(options: TangleCatalogRuntimeHandlerOptions): (input: TangleCatalogRuntimeHttpRequest) => Promise<TangleCatalogRuntimeHttpResponse>;
2263
2330
  declare function createTangleCatalogInstalledPackageExecutor(options?: TangleCatalogInstalledPackageExecutorOptions): TangleCatalogRuntimeHandlerOptions['executeAction'];
2331
+ declare function createTangleCatalogCredentialAuthResolver(options: TangleCatalogAuthResolverOptions): (connection: IntegrationConnection) => Promise<unknown>;
2332
+ declare function createTangleCatalogHttpAuthResolver(options: TangleCatalogHttpAuthResolverOptions): (connection: IntegrationConnection) => Promise<unknown>;
2333
+ declare function tangleCatalogAuthValue(credentials: ConnectorCredentials): unknown;
2334
+
2335
+ interface TangleCatalogRuntimeNodeServerOptions {
2336
+ secret: string;
2337
+ host?: string;
2338
+ port?: number;
2339
+ path?: string;
2340
+ maxBodyBytes?: number;
2341
+ requireSignature?: boolean;
2342
+ authResolver?: false | TangleCatalogHttpAuthResolverOptions;
2343
+ executor?: Omit<TangleCatalogInstalledPackageExecutorOptions, 'resolveAuth'> & {
2344
+ resolveAuth?: TangleCatalogInstalledPackageExecutorOptions['resolveAuth'];
2345
+ };
2346
+ onLog?: (event: {
2347
+ level: 'info' | 'warn' | 'error';
2348
+ message: string;
2349
+ metadata?: Record<string, unknown>;
2350
+ }) => void;
2351
+ }
2352
+ interface StartedTangleCatalogRuntimeNodeServer {
2353
+ server: Server;
2354
+ url: string;
2355
+ close: () => Promise<void>;
2356
+ }
2357
+ declare function createTangleCatalogRuntimeNodeRequestListener(options: TangleCatalogRuntimeNodeServerOptions): (request: IncomingMessage, response: ServerResponse) => Promise<void>;
2358
+ declare function startTangleCatalogRuntimeNodeServer(options: TangleCatalogRuntimeNodeServerOptions): Promise<StartedTangleCatalogRuntimeNodeServer>;
2264
2359
 
2265
2360
  type IntegrationCoveragePriority = 'tier_0' | 'tier_1' | 'tier_2' | 'long_tail';
2266
2361
  interface IntegrationCoverageSpec {
@@ -2721,8 +2816,8 @@ interface InvokeWithCapabilityRequest extends Omit<IntegrationActionRequest, 'co
2721
2816
  connectionId?: never;
2722
2817
  }
2723
2818
  declare class IntegrationError extends Error {
2724
- readonly code: 'provider_not_found' | 'connector_not_found' | 'connection_not_found' | 'connection_not_active' | 'auth_not_supported' | 'capability_invalid' | 'capability_expired' | 'scope_denied' | 'action_denied' | 'action_not_found' | 'approval_required' | 'policy_denied';
2725
- constructor(message: string, code: 'provider_not_found' | 'connector_not_found' | 'connection_not_found' | 'connection_not_active' | 'auth_not_supported' | 'capability_invalid' | 'capability_expired' | 'scope_denied' | 'action_denied' | 'action_not_found' | 'approval_required' | 'policy_denied');
2819
+ readonly code: 'provider_not_found' | 'connector_not_found' | 'connection_not_found' | 'connection_not_active' | 'auth_not_supported' | 'capability_invalid' | 'capability_expired' | 'scope_denied' | 'action_denied' | 'action_not_found' | 'trigger_not_found' | 'approval_required' | 'policy_denied';
2820
+ constructor(message: string, code: 'provider_not_found' | 'connector_not_found' | 'connection_not_found' | 'connection_not_active' | 'auth_not_supported' | 'capability_invalid' | 'capability_expired' | 'scope_denied' | 'action_denied' | 'action_not_found' | 'trigger_not_found' | 'approval_required' | 'policy_denied');
2726
2821
  }
2727
2822
  declare class InMemoryConnectionStore implements IntegrationConnectionStore {
2728
2823
  private readonly connections;
@@ -2764,4 +2859,4 @@ declare function createHttpIntegrationProvider(options: HttpIntegrationProviderO
2764
2859
  declare function signCapability(capability: IntegrationCapability, secret: string): string;
2765
2860
  declare function verifyCapabilityToken(token: string, secret: string): IntegrationCapability;
2766
2861
 
2767
- export { type HubSpotOptions as $, ACTIVEPIECES_OVERRIDES as A, type ApiKeyAuthSpec, type ConnectorAdapter as B, CANONICAL_INTEGRATION_ACTIONS as C, type ConsoleStep, type CredentialFieldSpec, type CredentialValidationInput, type CredentialValidationResult, type CustomAuthSpec, type ConnectorAdapterProviderOptions as D, type ConnectorCredentials as E, type ConnectorInvocation as F, type ConnectorManifest as G, type ConnectorManifestValidationIssue as H, type HealthcheckPlan, type HealthcheckSpec, type HmacAuthSpec, type ConnectorManifestValidationResult as I, INTEGRATION_FAMILIES, type IntegrationAuthMode, type IntegrationAuthSpec, type IntegrationFamilyId, type IntegrationFamilySpec, type IntegrationLifecycleSpec, type IntegrationPlannerHints, type IntegrationSetupSpec, type IntegrationSpec, type IntegrationSpecStatus, type IntegrationSpecValidationIssue, type IntegrationSpecValidationResult, type ConsentSummary as J, type ConsistencyModel as K, CredentialsExpired as L, DEFAULT_INTEGRATION_BRIDGE_ENV as M, DEFAULT_SIGNATURE_TOLERANCE_SECONDS as N, type NoneAuthSpec, type NormalizedPermission, type DataSourceMetadata as O, type OAuth2AuthSpec, DefaultIntegrationActionGuard as P, type PermissionDescriptor, type PostSetupCheck, type EventHandlerResult as Q, type Quirk, type ExchangeCodeInput as R, type RenderSpecOptions, type RenderedConsoleStep, type GatewayCatalogAction as S, type ScopeDescriptor, type GatewayCatalogEntry as T, type GatewayCatalogProviderOptions as U, type GatewayCatalogTrigger as V, type GenericHmacVerifyOptions as W, type GoogleCalendarOptions as X, type GoogleSheetsOptions as Y, type GraphqlOperationSpec as Z, type HttpIntegrationProviderOptions as _, ACTIVEPIECES_PUBLIC_CATALOG_URL as a, type IntegrationManifest as a$, type ImportCatalogOptions as a0, InMemoryConnectionStore as a1, InMemoryIntegrationApprovalStore as a2, InMemoryIntegrationAuditStore as a3, InMemoryIntegrationEventStore as a4, InMemoryIntegrationGrantStore as a5, InMemoryIntegrationHealthcheckStore as a6, InMemoryIntegrationIdempotencyStore as a7, InMemoryIntegrationSecretStore as a8, InMemoryIntegrationWorkflowStore as a9, type IntegrationCatalogFreshnessResult as aA, type IntegrationCatalogSource as aB, type IntegrationConnection as aC, type IntegrationConnectionStore as aD, type IntegrationConnector as aE, type IntegrationConnectorAction as aF, type IntegrationConnectorCategory as aG, type IntegrationConnectorTrigger as aH, type IntegrationCoveragePriority as aI, type IntegrationCoverageSpec as aJ, type IntegrationDataClass as aK, IntegrationError as aL, type IntegrationErrorCode as aM, type IntegrationEventStore as aN, type IntegrationGrant as aO, type IntegrationGrantStore as aP, type IntegrationGuardContext as aQ, type IntegrationHealthcheckCheck as aR, type IntegrationHealthcheckResult as aS, type IntegrationHealthcheckStatus as aT, type IntegrationHealthcheckStore as aU, IntegrationHub as aV, type IntegrationHubOptions as aW, type IntegrationIdempotencyRecord as aX, type IntegrationIdempotencyStore as aY, type IntegrationInvocationEnvelope as aZ, type IntegrationInvocationEnvelopeValidationOptions as a_, InMemoryOAuthFlowStore as aa, type InboundEvent as ab, type InferIntegrationRequirementsOptions as ac, type InstalledIntegrationWorkflow as ad, type IntegrationActionGuard as ae, type IntegrationActionPack as af, type IntegrationActionRequest as ag, type IntegrationActionResult as ah, type IntegrationActionRisk as ai, type IntegrationActor as aj, type IntegrationApprovalFilter as ak, type IntegrationApprovalRecord as al, type IntegrationApprovalRequest as am, type IntegrationApprovalResolution as an, type IntegrationApprovalStatus as ao, type IntegrationApprovalStore as ap, type IntegrationAuditEvent as aq, type IntegrationAuditEventType as ar, type IntegrationAuditFilter as as, assertValidIntegrationSpec, type IntegrationAuditSink as at, type IntegrationAuditStore as au, type IntegrationBridgePayload as av, type IntegrationBridgeToolBinding as aw, type IntegrationCapability as ax, type IntegrationCapabilityBinding as ay, type IntegrationCatalogFreshnessOptions as az, ACTIVEPIECES_RUNTIME_SIGNATURE_HEADER as b, type RateLimitSpec as b$, type IntegrationManifestResolution as b0, type IntegrationPolicyDecision as b1, type IntegrationPolicyEffect as b2, type IntegrationPolicyEngine as b3, type IntegrationPolicyRule as b4, type IntegrationProvider as b5, type IntegrationProviderKind as b6, type IntegrationRateLimitDecision as b7, type IntegrationRateLimiter as b8, type IntegrationRegistry as b9, IntegrationWorkflowRuntime as bA, type IntegrationWorkflowRuntimeHub as bB, type IntegrationWorkflowRuntimeOptions as bC, type IntegrationWorkflowStore as bD, type InvokeWithCapabilityRequest as bE, type IssueCapabilityRequest as bF, type IssuedIntegrationCapability as bG, type ManifestValidationIssue as bH, type ManifestValidationResult as bI, type McpCatalog as bJ, type McpCatalogTool as bK, type McpToolDefinition as bL, type MicrosoftCalendarOptions as bM, type MissingRequirementExplanation as bN, type NormalizedIntegrationError as bO, type NormalizedIntegrationResult as bP, type NotionDatabaseOptions as bQ, type OAuthFlowStore as bR, type OAuthTokens as bS, type OpenApiDocument as bT, type OpenApiOperation as bU, PROVIDER_PASSTHROUGH_ACTION as bV, type ParsedStripeSignatureHeader as bW, type PendingOAuthFlow as bX, type PlatformIntegrationPolicyPresetOptions as bY, type ProviderHttpRequestInput as bZ, type ProviderPassthroughPolicy as b_, type IntegrationRegistryConflict as ba, type IntegrationRegistryEntry as bb, type IntegrationRegistrySourceRef as bc, type IntegrationRegistrySummary as bd, type IntegrationRequirement as be, type IntegrationRequirementMode as bf, type IntegrationRequirementResolution as bg, type IntegrationRequirementStatus as bh, IntegrationRuntime as bi, IntegrationRuntimeError as bj, type IntegrationRuntimeHub as bk, type IntegrationRuntimeOptions as bl, type IntegrationSandboxBundle as bm, IntegrationSandboxHost as bn, type IntegrationSandboxHostHub as bo, type IntegrationSandboxHostOptions as bp, type IntegrationSecretStore as bq, type IntegrationSupportTier as br, type IntegrationToolDefinition as bs, type IntegrationToolSearchFilters as bt, type IntegrationToolSearchResult as bu, buildHealthcheckPlan, type IntegrationTriggerEvent as bv, type IntegrationTriggerSubscription as bw, type IntegrationUserAction as bx, type IntegrationWebhookReceiverResult as by, type IntegrationWorkflowDefinition as bz, type ActivepiecesCatalogEntry as c, canonicalConnectorId as c$, type RefreshInput as c0, type RenderConsentOptions as c1, type ResolvedDataSource as c2, ResourceContention as c3, type RestConnectorSpec as c4, type RestCredentialPlacement as c5, type RestOperationSpec as c6, type RestRequestSpec as c7, type SecretRef as c8, type SlackOptions as c9, type TangleIntegrationInvokeInput as cA, type TangleIntegrationInvokeResult as cB, TangleIntegrationsClient as cC, type TangleIntegrationsClientOptions as cD, type TwilioVerifyOptions as cE, _resetPendingFlowsForTests as cF, adapterManifestsToConnectors as cG, airtableConnector as cH, asanaConnector as cI, assertValidConnectorManifest as cJ, assertValidIntegrationManifest as cK, auditIntegrationCatalogFreshness as cL, auditTangleIntegrationCatalogFreshness as cM, buildActivepiecesConnectors as cN, buildActivepiecesRuntimeRequest as cO, buildApprovalRequest as cP, buildCanonicalLaunchConnectors as cQ, buildDefaultIntegrationRegistry as cR, buildIntegrationBridgeEnvironment as cS, buildIntegrationBridgePayload as cT, buildIntegrationCoverageConnectors as cU, buildIntegrationInvocationEnvelope as cV, buildIntegrationToolCatalog as cW, buildTangleCatalogRuntimeRequest as cX, buildTangleIntegrationCatalogConnectors as cY, calendarExercisePlannerManifest as cZ, canonicalActionConnectorId as c_, type SlackVerifyOptions as ca, type StartAuthRequest as cb, type StartAuthResult as cc, type StartOAuthInput as cd, type StartOAuthOutput as ce, StaticIntegrationPolicyEngine as cf, type StaticIntegrationPolicyOptions as cg, type StoredIntegrationEvent as ch, type StripeVerifyOptions as ci, TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER as cj, TANGLE_INTEGRATIONS_CATALOG_PROVIDER_ID as ck, TANGLE_INTEGRATIONS_CATALOG_SOURCE as cl, type TangleCatalogExecutorInvocation as cm, type TangleCatalogExecutorProviderOptions as cn, type TangleCatalogHttpExecutorInvocation as co, consoleStepsToText, type TangleCatalogHttpExecutorOptions as cp, type TangleCatalogInstalledPackageExecutorOptions as cq, type TangleCatalogRuntimeHandlerOptions as cr, type TangleCatalogRuntimeHttpRequest as cs, type TangleCatalogRuntimeHttpResponse as ct, type TangleCatalogRuntimeInvocation as cu, type TangleCatalogRuntimeModuleAction as cv, type TangleCatalogRuntimeRequest as cw, type TangleIntegrationCatalogEntry as cx, type TangleIntegrationCatalogFreshnessOptions as cy, type TangleIntegrationCatalogFreshnessResult as cz, type ActivepiecesExecutorInvocation as d, redactApprovalRequest as d$, composeIntegrationRegistry as d0, consumePendingFlow as d1, createActivepiecesExecutorProvider as d2, createActivepiecesHttpExecutor as d3, createApprovalBackedPolicyEngine as d4, createAuditingActionGuard as d5, createCatalogExecutorProvider as d6, createConnectionCredentialResolver as d7, createConnectorAdapterCatalogSource as d8, createConnectorAdapterProvider as d9, githubConnector as dA, gitlabConnector as dB, googleCalendar as dC, googleSheets as dD, healthcheckRequest as dE, hubspot as dF, importGraphqlConnector as dG, importMcpConnector as dH, importOpenApiConnector as dI, inferIntegrationManifestFromTools as dJ, inferIntegrationSupportTier as dK, integrationCoverageChecklistMarkdown as dL, integrationToolName as dM, invocationRequestFromEnvelope as dN, listActivepiecesCatalogEntries as dO, listIntegrationCoverageSpecs as dP, listTangleIntegrationCatalogEntries as dQ, manifestToConnector as dR, microsoftCalendar as dS, normalizeGatewayCatalog as dT, normalizeIntegrationError as dU, normalizeIntegrationResult as dV, notionDatabase as dW, parseIntegrationBridgeEnvironment as dX, parseIntegrationToolName as dY, parseStripeSignatureHeader as dZ, receiveIntegrationWebhook as d_, createCredentialBackedAdapterProvider as da, createDefaultIntegrationActionGuard as db, createDefaultIntegrationPolicyEngine as dc, createGatewayCatalogProvider as dd, createHttpIntegrationProvider as de, createIntegrationAuditEvent as df, createIntegrationRuntime as dg, createIntegrationWorkflowRuntime as dh, createMockIntegrationProvider as di, createPlatformIntegrationPolicyPreset as dj, createTangleCatalogExecutorProvider as dk, createTangleCatalogHttpExecutor as dl, createTangleCatalogInstalledPackageExecutor as dm, createTangleCatalogRuntimeHandler as dn, createTangleIntegrationsClient as dp, declarativeRestConnector as dq, decodeIntegrationBridgePayload as dr, dispatchIntegrationInvocation as ds, encodeIntegrationBridgePayload as dt, exchangeAuthorizationCode as du, explainMissingRequirements as dv, extractActivepiecesPublicPieceCount as dw, extractExternalCatalogPublicCount as dx, firstHeader as dy, getActivepiecesOverride as dz, type ActivepiecesExecutorProviderOptions as e, redactCapability as e0, redactIntegrationBridgePayload as e1, redactInvocationEnvelope as e2, refreshAccessToken as e3, renderApprovalCopy as e4, renderConsentSummary as e5, resolveConnectionCredentials as e6, resolveIntegrationApproval as e7, revokeConnection as e8, runIntegrationHealthcheck as e9, verifyStripeSignature as eA, verifyTangleCatalogRuntimeSignature as eB, verifyTwilioSignature as eC, webhookConnector as eD, runIntegrationHealthchecks as ea, salesforceConnector as eb, sanitizeAuditConnection as ec, sanitizeConnection as ed, searchIntegrationTools as ee, signActivepiecesRuntimeRequest as ef, signCapability as eg, signTangleCatalogRuntimeRequest as eh, slack as ei, slackEventsConnector as ej, startOAuthFlow as ek, statusForCode as el, storedEventToTriggerEvent as em, stripePackConnector as en, stripeWebhookReceiverConnector as eo, summarizeIntegrationRegistry as ep, toMcpTools as eq, twilioSmsConnector as er, validateConnectorManifest as es, validateIntegrationInvocationEnvelope as et, validateIntegrationManifest as eu, validateProviderPassthroughRequest as ev, verifyActivepiecesRuntimeSignature as ew, verifyCapabilityToken as ex, verifyHmacSignature as ey, verifySlackSignature as ez, type ActivepiecesHttpExecutorOptions as f, type ActivepiecesPieceOverride as g, getIntegrationFamily, getIntegrationSpec, type ActivepiecesRuntimeRequest as h, ApprovalBackedPolicyEngine as i, integrationSpecToConnector, type ApprovalBackedPolicyOptions as j, type AuthSpec as k, type CASStrategy as l, listExecutableIntegrationSpecs, listIntegrationSpecs, type CanonicalIntegrationActionId as m, type CanonicalLaunchConnectorOptions as n, type Capability as o, type CapabilityClass as p, type CapabilityMutation as q, type CapabilityMutationResult as r, renderAgentToolDescription, renderConsoleSteps, renderRunbookMarkdown, type CapabilityParameterSchema as s, specAuthToConnectorAuth, type CapabilityRead as t, type CapabilityReadResult as u, type CatalogExecutorInvocation as v, validateCredentialFormat, validateCredentialSet, validateIntegrationSpec, type CatalogExecutorProviderOptions as w, type CompleteAuthRequest as x, type ComposeIntegrationRegistryOptions as y, type ConnectionCredentialResolverOptions as z };
2862
+ export { type HttpIntegrationProviderOptions as $, ACTIVEPIECES_OVERRIDES as A, type ApiKeyAuthSpec, type ConnectionCredentialResolverOptions as B, CANONICAL_INTEGRATION_ACTIONS as C, type ConsoleStep, type CredentialFieldSpec, type CredentialValidationInput, type CredentialValidationResult, type CustomAuthSpec, type ConnectorAdapter as D, type ConnectorAdapterProviderOptions as E, type ConnectorCredentials as F, type ConnectorInvocation as G, type ConnectorManifest as H, type HealthcheckPlan, type HealthcheckSpec, type HmacAuthSpec, type ConnectorManifestValidationIssue as I, INTEGRATION_FAMILIES, type IntegrationAuthMode, type IntegrationAuthSpec, type IntegrationFamilyId, type IntegrationFamilySpec, type IntegrationLifecycleSpec, type IntegrationPlannerHints, type IntegrationSetupSpec, type IntegrationSpec, type IntegrationSpecStatus, type IntegrationSpecValidationIssue, type IntegrationSpecValidationResult, type ConnectorManifestValidationResult as J, type ConsentSummary as K, type ConsistencyModel as L, CredentialsExpired as M, DEFAULT_INTEGRATION_BRIDGE_ENV as N, type NoneAuthSpec, type NormalizedPermission, DEFAULT_SIGNATURE_TOLERANCE_SECONDS as O, type OAuth2AuthSpec, type DataSourceMetadata as P, type PermissionDescriptor, type PostSetupCheck, DefaultIntegrationActionGuard as Q, type Quirk, type EventHandlerResult as R, type RenderSpecOptions, type RenderedConsoleStep, type ExchangeCodeInput as S, type ScopeDescriptor, type GatewayCatalogAction as T, type GatewayCatalogEntry as U, type GatewayCatalogProviderOptions as V, type GatewayCatalogTrigger as W, type GenericHmacVerifyOptions as X, type GoogleCalendarOptions as Y, type GoogleSheetsOptions as Z, type GraphqlOperationSpec as _, ACTIVEPIECES_PUBLIC_CATALOG_URL as a, type IntegrationInvocationEnvelopeValidationOptions as a$, type HubSpotOptions as a0, type ImportCatalogOptions as a1, InMemoryConnectionStore as a2, InMemoryIntegrationApprovalStore as a3, InMemoryIntegrationAuditStore as a4, InMemoryIntegrationEventStore as a5, InMemoryIntegrationGrantStore as a6, InMemoryIntegrationHealthcheckStore as a7, InMemoryIntegrationIdempotencyStore as a8, InMemoryIntegrationSecretStore as a9, type IntegrationCatalogFreshnessOptions as aA, type IntegrationCatalogFreshnessResult as aB, type IntegrationCatalogSource as aC, type IntegrationConnection as aD, type IntegrationConnectionStore as aE, type IntegrationConnector as aF, type IntegrationConnectorAction as aG, type IntegrationConnectorCategory as aH, type IntegrationConnectorTrigger as aI, type IntegrationCoveragePriority as aJ, type IntegrationCoverageSpec as aK, type IntegrationDataClass as aL, IntegrationError as aM, type IntegrationErrorCode as aN, type IntegrationEventStore as aO, type IntegrationGrant as aP, type IntegrationGrantStore as aQ, type IntegrationGuardContext as aR, type IntegrationHealthcheckCheck as aS, type IntegrationHealthcheckResult as aT, type IntegrationHealthcheckStatus as aU, type IntegrationHealthcheckStore as aV, IntegrationHub as aW, type IntegrationHubOptions as aX, type IntegrationIdempotencyRecord as aY, type IntegrationIdempotencyStore as aZ, type IntegrationInvocationEnvelope as a_, InMemoryIntegrationWorkflowStore as aa, InMemoryOAuthFlowStore as ab, type InboundEvent as ac, type InferIntegrationRequirementsOptions as ad, type InstalledIntegrationWorkflow as ae, type IntegrationActionGuard as af, type IntegrationActionPack as ag, type IntegrationActionRequest as ah, type IntegrationActionResult as ai, type IntegrationActionRisk as aj, type IntegrationActor as ak, type IntegrationApprovalFilter as al, type IntegrationApprovalRecord as am, type IntegrationApprovalRequest as an, type IntegrationApprovalResolution as ao, type IntegrationApprovalStatus as ap, type IntegrationApprovalStore as aq, type IntegrationAuditEvent as ar, type IntegrationAuditEventType as as, assertValidIntegrationSpec, type IntegrationAuditFilter as at, type IntegrationAuditSink as au, type IntegrationAuditStore as av, type IntegrationBridgePayload as aw, type IntegrationBridgeToolBinding as ax, type IntegrationCapability as ay, type IntegrationCapabilityBinding as az, ACTIVEPIECES_RUNTIME_SIGNATURE_HEADER as b, type ProviderPassthroughPolicy as b$, type IntegrationManifest as b0, type IntegrationManifestResolution as b1, type IntegrationPolicyDecision as b2, type IntegrationPolicyEffect as b3, type IntegrationPolicyEngine as b4, type IntegrationPolicyRule as b5, type IntegrationProvider as b6, type IntegrationProviderKind as b7, type IntegrationRateLimitDecision as b8, type IntegrationRateLimiter as b9, type IntegrationWorkflowDefinition as bA, IntegrationWorkflowRuntime as bB, type IntegrationWorkflowRuntimeHub as bC, type IntegrationWorkflowRuntimeOptions as bD, type IntegrationWorkflowStore as bE, type InvokeWithCapabilityRequest as bF, type IssueCapabilityRequest as bG, type IssuedIntegrationCapability as bH, type ManifestValidationIssue as bI, type ManifestValidationResult as bJ, type McpCatalog as bK, type McpCatalogTool as bL, type McpToolDefinition as bM, type MicrosoftCalendarOptions as bN, type MissingRequirementExplanation as bO, type NormalizedIntegrationError as bP, type NormalizedIntegrationResult as bQ, type NotionDatabaseOptions as bR, type OAuthFlowStore as bS, type OAuthTokens as bT, type OpenApiDocument as bU, type OpenApiOperation as bV, PROVIDER_PASSTHROUGH_ACTION as bW, type ParsedStripeSignatureHeader as bX, type PendingOAuthFlow as bY, type PlatformIntegrationPolicyPresetOptions as bZ, type ProviderHttpRequestInput as b_, type IntegrationRegistry as ba, type IntegrationRegistryConflict as bb, type IntegrationRegistryEntry as bc, type IntegrationRegistrySourceRef as bd, type IntegrationRegistrySummary as be, type IntegrationRequirement as bf, type IntegrationRequirementMode as bg, type IntegrationRequirementResolution as bh, type IntegrationRequirementStatus as bi, IntegrationRuntime as bj, IntegrationRuntimeError as bk, type IntegrationRuntimeHub as bl, type IntegrationRuntimeOptions as bm, type IntegrationSandboxBundle as bn, IntegrationSandboxHost as bo, type IntegrationSandboxHostHub as bp, type IntegrationSandboxHostOptions as bq, type IntegrationSecretStore as br, type IntegrationSupportTier as bs, type IntegrationToolDefinition as bt, type IntegrationToolSearchFilters as bu, buildHealthcheckPlan, type IntegrationToolSearchResult as bv, type IntegrationTriggerEvent as bw, type IntegrationTriggerSubscription as bx, type IntegrationUserAction as by, type IntegrationWebhookReceiverResult as bz, type ActivepiecesCatalogAuthField as c, buildIntegrationCoverageConnectors as c$, type RateLimitSpec as c0, type RefreshInput as c1, type RenderConsentOptions as c2, type ResolvedDataSource as c3, ResourceContention as c4, type RestConnectorSpec as c5, type RestCredentialPlacement as c6, type RestOperationSpec as c7, type RestRequestSpec as c8, type SecretRef as c9, type TangleCatalogRuntimeModuleAction as cA, type TangleCatalogRuntimeNodeServerOptions as cB, type TangleCatalogRuntimeRequest as cC, type TangleCatalogTriggerInvocation as cD, type TangleIntegrationCatalogEntry as cE, type TangleIntegrationCatalogFreshnessOptions as cF, type TangleIntegrationCatalogFreshnessResult as cG, type TangleIntegrationInvokeInput as cH, type TangleIntegrationInvokeResult as cI, TangleIntegrationsClient as cJ, type TangleIntegrationsClientOptions as cK, type TwilioVerifyOptions as cL, _resetPendingFlowsForTests as cM, adapterManifestsToConnectors as cN, airtableConnector as cO, asanaConnector as cP, assertValidConnectorManifest as cQ, assertValidIntegrationManifest as cR, auditIntegrationCatalogFreshness as cS, auditTangleIntegrationCatalogFreshness as cT, buildActivepiecesConnectors as cU, buildActivepiecesRuntimeRequest as cV, buildApprovalRequest as cW, buildCanonicalLaunchConnectors as cX, buildDefaultIntegrationRegistry as cY, buildIntegrationBridgeEnvironment as cZ, buildIntegrationBridgePayload as c_, type SlackOptions as ca, type SlackVerifyOptions as cb, type StartAuthRequest as cc, type StartAuthResult as cd, type StartOAuthInput as ce, type StartOAuthOutput as cf, type StartedTangleCatalogRuntimeNodeServer as cg, StaticIntegrationPolicyEngine as ch, type StaticIntegrationPolicyOptions as ci, type StoredIntegrationEvent as cj, type StripeVerifyOptions as ck, TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER as cl, TANGLE_INTEGRATIONS_CATALOG_PROVIDER_ID as cm, TANGLE_INTEGRATIONS_CATALOG_SOURCE as cn, type TangleCatalogAuthResolverOptions as co, consoleStepsToText, type TangleCatalogExecutorInvocation as cp, type TangleCatalogExecutorProviderOptions as cq, type TangleCatalogHttpAuthResolverOptions as cr, type TangleCatalogHttpAuthResolverRequest as cs, type TangleCatalogHttpExecutorInvocation as ct, type TangleCatalogHttpExecutorOptions as cu, type TangleCatalogInstalledPackageExecutorOptions as cv, type TangleCatalogRuntimeHandlerOptions as cw, type TangleCatalogRuntimeHttpRequest as cx, type TangleCatalogRuntimeHttpResponse as cy, type TangleCatalogRuntimeInvocation as cz, type ActivepiecesCatalogEntry as d, listTangleIntegrationCatalogRuntimePackages as d$, buildIntegrationInvocationEnvelope as d0, buildIntegrationToolCatalog as d1, buildTangleCatalogRuntimeRequest as d2, buildTangleIntegrationCatalogConnectors as d3, calendarExercisePlannerManifest as d4, canonicalActionConnectorId as d5, canonicalConnectorId as d6, composeIntegrationRegistry as d7, consumePendingFlow as d8, createActivepiecesExecutorProvider as d9, declarativeRestConnector as dA, decodeIntegrationBridgePayload as dB, dispatchIntegrationInvocation as dC, encodeIntegrationBridgePayload as dD, exchangeAuthorizationCode as dE, explainMissingRequirements as dF, extractActivepiecesPublicPieceCount as dG, extractExternalCatalogPublicCount as dH, firstHeader as dI, getActivepiecesOverride as dJ, githubConnector as dK, gitlabConnector as dL, googleCalendar as dM, googleSheets as dN, healthcheckRequest as dO, hubspot as dP, importGraphqlConnector as dQ, importMcpConnector as dR, importOpenApiConnector as dS, inferIntegrationManifestFromTools as dT, inferIntegrationSupportTier as dU, integrationCoverageChecklistMarkdown as dV, integrationToolName as dW, invocationRequestFromEnvelope as dX, listActivepiecesCatalogEntries as dY, listIntegrationCoverageSpecs as dZ, listTangleIntegrationCatalogEntries as d_, createActivepiecesHttpExecutor as da, createApprovalBackedPolicyEngine as db, createAuditingActionGuard as dc, createCatalogExecutorProvider as dd, createConnectionCredentialResolver as de, createConnectorAdapterCatalogSource as df, createConnectorAdapterProvider as dg, createCredentialBackedAdapterProvider as dh, createDefaultIntegrationActionGuard as di, createDefaultIntegrationPolicyEngine as dj, createGatewayCatalogProvider as dk, createHttpIntegrationProvider as dl, createIntegrationAuditEvent as dm, createIntegrationRuntime as dn, createIntegrationWorkflowRuntime as dp, createMockIntegrationProvider as dq, createPlatformIntegrationPolicyPreset as dr, createTangleCatalogCredentialAuthResolver as ds, createTangleCatalogExecutorProvider as dt, createTangleCatalogHttpAuthResolver as du, createTangleCatalogHttpExecutor as dv, createTangleCatalogInstalledPackageExecutor as dw, createTangleCatalogRuntimeHandler as dx, createTangleCatalogRuntimeNodeRequestListener as dy, createTangleIntegrationsClient as dz, type ActivepiecesExecutorInvocation as e, manifestToConnector as e0, microsoftCalendar as e1, normalizeGatewayCatalog as e2, normalizeIntegrationError as e3, normalizeIntegrationResult as e4, notionDatabase as e5, parseIntegrationBridgeEnvironment as e6, parseIntegrationToolName as e7, parseStripeSignatureHeader as e8, receiveIntegrationWebhook as e9, stripeWebhookReceiverConnector as eA, summarizeIntegrationRegistry as eB, tangleCatalogAuthValue as eC, toMcpTools as eD, twilioSmsConnector as eE, validateConnectorManifest as eF, validateIntegrationInvocationEnvelope as eG, validateIntegrationManifest as eH, validateProviderPassthroughRequest as eI, verifyActivepiecesRuntimeSignature as eJ, verifyCapabilityToken as eK, verifyHmacSignature as eL, verifySlackSignature as eM, verifyStripeSignature as eN, verifyTangleCatalogRuntimeSignature as eO, verifyTwilioSignature as eP, webhookConnector as eQ, redactApprovalRequest as ea, redactCapability as eb, redactIntegrationBridgePayload as ec, redactInvocationEnvelope as ed, refreshAccessToken as ee, renderApprovalCopy as ef, renderConsentSummary as eg, resolveConnectionCredentials as eh, resolveIntegrationApproval as ei, revokeConnection as ej, runIntegrationHealthcheck as ek, runIntegrationHealthchecks as el, salesforceConnector as em, sanitizeAuditConnection as en, sanitizeConnection as eo, searchIntegrationTools as ep, signActivepiecesRuntimeRequest as eq, signCapability as er, signTangleCatalogRuntimeRequest as es, slack as et, slackEventsConnector as eu, startOAuthFlow as ev, startTangleCatalogRuntimeNodeServer as ew, statusForCode as ex, storedEventToTriggerEvent as ey, stripePackConnector as ez, type ActivepiecesExecutorProviderOptions as f, type ActivepiecesHttpExecutorOptions as g, getIntegrationFamily, getIntegrationSpec, type ActivepiecesPieceOverride as h, type ActivepiecesRuntimeRequest as i, integrationSpecToConnector, ApprovalBackedPolicyEngine as j, type ApprovalBackedPolicyOptions as k, type AuthSpec as l, listExecutableIntegrationSpecs, listIntegrationSpecs, type CASStrategy as m, type CanonicalIntegrationActionId as n, type CanonicalLaunchConnectorOptions as o, type Capability as p, type CapabilityClass as q, type CapabilityMutation as r, renderAgentToolDescription, renderConsoleSteps, renderRunbookMarkdown, type CapabilityMutationResult as s, specAuthToConnectorAuth, type CapabilityParameterSchema as t, type CapabilityRead as u, type CapabilityReadResult as v, validateCredentialFormat, validateCredentialSet, validateIntegrationSpec, type CatalogExecutorInvocation as w, type CatalogExecutorProviderOptions as x, type CompleteAuthRequest as y, type ComposeIntegrationRegistryOptions as z };
@@ -15,16 +15,19 @@ This audit separates four very different states that were getting conflated:
15
15
  | --- | ---: |
16
16
  | Catalog connectors | 669 |
17
17
  | Catalog connectors with runtime package names | 669 |
18
- | Catalog actions | 3783 |
19
- | Catalog triggers | 999 |
20
- | Catalog actions with verified upstream action names in this repo | 0 |
18
+ | Catalog actions | 3790 |
19
+ | Catalog triggers | 998 |
20
+ | Catalog triggers with verified upstream names in this repo | 998 |
21
+ | Catalog actions with verified upstream action names in this repo | 3790 |
22
+ | Catalog connectors with auth field metadata | 648 |
23
+ | Custom-auth connectors with auth field metadata | 11 |
21
24
  | Runtime package dependencies declared by this package | 0 |
22
25
  | Setup specs | 142 |
23
26
  | Executable setup specs | 14 |
24
27
  | Catalog/setup-only specs | 128 |
25
28
  | First-party adapter surfaces | 16 |
26
29
  | Tangle catalog connectors exposable behind runtime | 669 |
27
- | Tangle catalog actions exposable behind runtime | 3963 |
30
+ | Tangle catalog actions exposable behind runtime | 3970 |
28
31
 
29
32
  Full machine-readable matrix: [integration-execution-matrix.json](./integration-execution-matrix.json).
30
33
 
@@ -32,25 +35,25 @@ Full machine-readable matrix: [integration-execution-matrix.json](./integration-
32
35
 
33
36
  | Auth | Connectors |
34
37
  | --- | --- |
35
- | api_key | 334 |
36
- | custom | 248 |
37
- | oauth2 | 69 |
38
- | none | 18 |
38
+ | api_key | 519 |
39
+ | oauth2 | 118 |
40
+ | none | 21 |
41
+ | custom | 11 |
39
42
 
40
43
  ## Category Breakdown
41
44
 
42
45
  | Category | Connectors |
43
46
  | --- | --- |
44
- | workflow | 296 |
45
- | webhook | 91 |
46
- | crm | 63 |
47
- | storage | 50 |
48
- | email | 49 |
49
- | chat | 48 |
50
- | docs | 23 |
51
- | calendar | 22 |
52
- | database | 16 |
53
- | internal | 11 |
47
+ | workflow | 271 |
48
+ | crm | 178 |
49
+ | docs | 76 |
50
+ | chat | 58 |
51
+ | storage | 29 |
52
+ | database | 28 |
53
+ | webhook | 18 |
54
+ | email | 5 |
55
+ | calendar | 3 |
56
+ | internal | 3 |
54
57
 
55
58
  ## First-Party Executable Surfaces
56
59
 
@@ -94,12 +97,12 @@ Executable setup specs:
94
97
 
95
98
  | Flow | Status | Concrete state |
96
99
  | --- | --- | --- |
97
- | Connector discovery/catalog search | Done | 669 catalog connectors, 3783 actions, 999 triggers normalized into Tangle catalog shapes. |
100
+ | Connector discovery/catalog search | Done | 669 catalog connectors, 3790 actions, 998 triggers normalized into Tangle catalog shapes. |
98
101
  | First-party action execution | Done for listed adapters | 16 reviewed adapter surfaces ship from this package. |
99
102
  | OAuth/API-key setup metadata | Partial | 142 setup specs exist; 14 are executable setup specs and 128 are catalog/setup-only. |
100
- | Long-tail package action execution | Runtime path exists; coverage unverified | 669 entries have package names, but runtime packages are not bundled and 0 catalog actions have verified upstream action mappings. |
101
- | Long-tail credential mapping | Partial | api_key: 334, oauth2: 69, custom: 248, none: 18. Custom connectors need per-package credential shaping before execution can be claimed. |
102
- | Trigger hosting/subscription | Partial | 999 triggers are cataloged. Runtime action invocation exists; universal trigger install/hosting is not done. |
103
+ | Long-tail package action execution | Wiring done; package install/smoke pending | 669 entries have package names and 3790 actions have upstream names. Runtime packages are not bundled into this npm package. |
104
+ | Long-tail credential mapping | Mostly mapped | 648 connectors have auth field metadata. 0 custom-auth connectors still need exact manual auth fields. |
105
+ | Trigger provider flow | Done structurally | 998 triggers are cataloged, 998 have upstream names, and catalog providers can route subscribe/unsubscribe/normalize hooks. Runtime services still need package-specific trigger hosting. |
103
106
  | Sandbox/app invocation envelope | Done | The library has capability bundles, invocation envelopes, policy checks, guard hooks, signed catalog runtime HTTP calls, and generated-app client helpers. |
104
107
  | Live provider smoke tests | Not globally done | First-party adapters can be tested by consumers with credentials; long-tail smoke matrix is not generated yet. |
105
108
 
@@ -108,9 +111,9 @@ Executable setup specs:
108
111
  | Bucket | Count | What it means |
109
112
  | --- | ---: | --- |
110
113
  | Catalog connectors needing package-runtime verification | 659 | Connector has a known runtime package but is not a first-party adapter here. |
111
- | Catalog connectors with zero verified action mappings | 570 | We normalized action labels, but have not checked the exact runtime action export names into the catalog. |
112
- | Custom-auth catalog connectors needing credential shape mapping | 248 | A generic OAuth/API-key form is not enough; the runtime must shape auth exactly as the package expects. |
113
- | Catalog connectors with triggers needing hosted trigger support | 288 | Trigger metadata exists, but trigger subscription/webhook execution is not universally implemented. |
114
+ | Catalog connectors with zero verified action mappings | 0 | We normalized action labels, but have not checked the exact runtime action export names into the catalog. |
115
+ | Custom-auth catalog connectors needing manual credential-field mapping | 0 | These are still custom auth and no field names were extracted from source. |
116
+ | Catalog connectors with triggers needing runtime-service hosting | 288 | Trigger metadata and provider hooks exist; runtime services still need package-specific webhook/polling hosting. |
114
117
 
115
118
  Examples needing package-runtime verification:
116
119
 
@@ -155,62 +158,23 @@ Examples needing package-runtime verification:
155
158
  - `assembled` -> `@activepieces/piece-assembled`
156
159
  - `assemblyai` -> `@activepieces/piece-assemblyai`
157
160
 
158
- Examples needing custom auth mapping:
161
+ Examples needing manual custom auth mapping:
162
+
159
163
 
160
- - `activecampaign` -> `@activepieces/piece-activecampaign`
161
- - `acumbamail` -> `@activepieces/piece-acumbamail`
162
- - `afforai` -> `@activepieces/piece-afforai`
163
- - `agentx` -> `@activepieces/piece-agentx`
164
- - `aiprise` -> `@activepieces/piece-aiprise`
165
- - `aircall` -> `@activepieces/piece-aircall`
166
- - `airparser` -> `@activepieces/piece-airparser`
167
- - `alt-text-ai` -> `@activepieces/piece-alt-text-ai`
168
- - `alttextify` -> `@activepieces/piece-alttextify`
169
- - `amazon-bedrock` -> `@activepieces/piece-amazon-bedrock`
170
- - `amazon-s3` -> `@activepieces/piece-amazon-s3`
171
- - `amazon-secrets-manager` -> `@activepieces/piece-amazon-secrets-manager`
172
- - `amazon-ses` -> `@activepieces/piece-amazon-ses`
173
- - `amazon-textract` -> `@activepieces/piece-amazon-textract`
174
- - `anyhook-graphql` -> `@activepieces/piece-anyhook-graphql`
175
- - `anyhook-websocket` -> `@activepieces/piece-anyhook-websocket`
176
- - `apollo` -> `@activepieces/piece-apollo`
177
- - `ask-handle` -> `@activepieces/piece-ask-handle`
178
- - `assembled` -> `@activepieces/piece-assembled`
179
- - `assemblyai` -> `@activepieces/piece-assemblyai`
180
- - `avian` -> `@activepieces/piece-avian`
181
- - `avoma` -> `@activepieces/piece-avoma`
182
- - `azure-blob-storage` -> `@activepieces/piece-azure-blob-storage`
183
- - `azure-openai` -> `@activepieces/piece-azure-openai`
184
- - `barcode-lookup` -> `@activepieces/piece-barcode-lookup`
185
- - `baremetrics` -> `@activepieces/piece-baremetrics`
186
- - `beamer` -> `@activepieces/piece-beamer`
187
- - `bigin-by-zoho` -> `@activepieces/piece-bigin-by-zoho`
188
- - `billplz` -> `@activepieces/piece-billplz`
189
- - `bland-ai` -> `@activepieces/piece-bland-ai`
190
- - `bluesky` -> `@activepieces/piece-bluesky`
191
- - `browserless` -> `@activepieces/piece-browserless`
192
- - `bumpups` -> `@activepieces/piece-bumpups`
193
- - `bursty-ai` -> `@activepieces/piece-bursty-ai`
194
- - `buttondown` -> `@activepieces/piece-buttondown`
195
- - `camb-ai` -> `@activepieces/piece-camb-ai`
196
- - `campaign-monitor` -> `@activepieces/piece-campaign-monitor`
197
- - `canny` -> `@activepieces/piece-canny`
198
- - `capsule-crm` -> `@activepieces/piece-capsule-crm`
199
- - `cashfree-payments` -> `@activepieces/piece-cashfree-payments`
200
164
 
201
165
  ## What Is Not Done
202
166
 
203
167
  1. **Package runtime installation is not bundled into this npm package.**
204
168
  All 669 catalog entries have runtime package names, but `package.json` intentionally declares 0 long-tail runtime packages. The runtime service must install the packages it wants to execute.
205
169
 
206
- 2. **Action-name mapping is not complete.**
207
- The catalog currently has 3783 actions and 0 verified upstream action-name mappings in the checked-in catalog. The runtime executor supports `actionAliases`, but production aliases must be generated/verified before claiming every action works.
170
+ 2. **Action-name mapping is complete for cataloged actions.**
171
+ Done for cataloged actions: the catalog currently has 3790 actions and 3790 verified upstream action-name mappings in the checked-in catalog. The runtime executor uses those names automatically and still accepts explicit `actionAliases` for overrides.
208
172
 
209
- 3. **Credential shape mapping is not complete for every connector.**
210
- Auth shapes are custom: 248, api_key: 334, oauth2: 69, none: 18. The runtime must map each user connection/secret into the shape expected by that package.
173
+ 3. **Credential field mapping is complete for catalog auth setup.**
174
+ Auth shapes are api_key: 519, oauth2: 118, none: 21, custom: 11. The catalog now includes auth field metadata for all 648 connectors that require credentials. 0 custom-auth connectors need manual auth-field mapping.
211
175
 
212
176
  4. **Triggers are cataloged, not universally hosted.**
213
- There are 999 catalog triggers. The current Tangle catalog runtime executes actions. Trigger subscription/webhook hosting still needs per-provider runtime support.
177
+ There are 998 catalog triggers and 998 upstream trigger names. The provider flow now supports trigger subscribe/unsubscribe/normalize hooks. Runtime services still need package-specific webhook/polling hosting.
214
178
 
215
179
  5. **First-party coverage is intentionally smaller than catalog breadth.**
216
180
  This repo ships 16 first-party surfaces. The other catalog connectors depend on the package-runtime path.
@@ -226,8 +190,9 @@ Examples needing custom auth mapping:
226
190
  Build a runtime coverage generator that installs/imports each package in isolation, extracts real action names, writes `actionAliases`, and emits a pass/fail matrix per connector:
227
191
 
228
192
  - package loads
229
- - action list extracted
193
+ - package installed in the runtime service
194
+ - package load verified
230
195
  - normalized action maps to real action
231
- - auth shape identified
196
+ - auth shape identified or marked as manual
232
197
  - dry-run invocation possible
233
198
  - live smoke credential available