@tangle-network/agent-integrations 0.20.0 → 0.22.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 +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +195 -0
- package/dist/index.js.map +1 -1
- package/dist/specs.d.ts +51 -1
- package/package.json +1 -1
package/dist/specs.d.ts
CHANGED
|
@@ -2212,6 +2212,56 @@ declare function createTangleCatalogExecutorProvider(options: TangleCatalogExecu
|
|
|
2212
2212
|
declare const extractExternalCatalogPublicCount: typeof extractActivepiecesPublicPieceCount;
|
|
2213
2213
|
declare function auditTangleIntegrationCatalogFreshness(options?: TangleIntegrationCatalogFreshnessOptions): Promise<TangleIntegrationCatalogFreshnessResult>;
|
|
2214
2214
|
|
|
2215
|
+
interface TangleCatalogRuntimeInvocation {
|
|
2216
|
+
request: TangleCatalogRuntimeRequest;
|
|
2217
|
+
connection: IntegrationConnection;
|
|
2218
|
+
connector: IntegrationConnector;
|
|
2219
|
+
action: IntegrationConnectorAction;
|
|
2220
|
+
}
|
|
2221
|
+
interface TangleCatalogRuntimeHandlerOptions {
|
|
2222
|
+
secret?: string;
|
|
2223
|
+
requireSignature?: boolean;
|
|
2224
|
+
signatureHeader?: string;
|
|
2225
|
+
connectors?: IntegrationConnector[];
|
|
2226
|
+
maxBodyBytes?: number;
|
|
2227
|
+
executeAction: (invocation: TangleCatalogRuntimeInvocation) => Promise<IntegrationActionResult> | IntegrationActionResult;
|
|
2228
|
+
}
|
|
2229
|
+
interface TangleCatalogInstalledPackageExecutorOptions {
|
|
2230
|
+
moduleLoader?: (packageName: string) => Promise<unknown> | unknown;
|
|
2231
|
+
actionAliases?: Record<string, Record<string, string>>;
|
|
2232
|
+
resolveAuth?: (connection: IntegrationConnection) => Promise<unknown> | unknown;
|
|
2233
|
+
beforeRun?: (invocation: TangleCatalogRuntimeInvocation) => Promise<void> | void;
|
|
2234
|
+
}
|
|
2235
|
+
interface TangleCatalogRuntimeModuleAction {
|
|
2236
|
+
name?: string;
|
|
2237
|
+
displayName?: string;
|
|
2238
|
+
run?: (context: {
|
|
2239
|
+
auth: unknown;
|
|
2240
|
+
propsValue: unknown;
|
|
2241
|
+
input: unknown;
|
|
2242
|
+
connection: IntegrationConnection;
|
|
2243
|
+
request: TangleCatalogRuntimeRequest;
|
|
2244
|
+
}) => Promise<unknown> | unknown;
|
|
2245
|
+
}
|
|
2246
|
+
interface TangleCatalogRuntimeHttpRequest {
|
|
2247
|
+
body: string | Uint8Array | TangleCatalogRuntimeRequest;
|
|
2248
|
+
headers?: Headers | Record<string, string | string[] | undefined>;
|
|
2249
|
+
}
|
|
2250
|
+
interface TangleCatalogRuntimeHttpResponse {
|
|
2251
|
+
status: number;
|
|
2252
|
+
headers: Record<string, string>;
|
|
2253
|
+
body: IntegrationActionResult | {
|
|
2254
|
+
ok: false;
|
|
2255
|
+
action: string;
|
|
2256
|
+
output: {
|
|
2257
|
+
code: string;
|
|
2258
|
+
message: string;
|
|
2259
|
+
};
|
|
2260
|
+
};
|
|
2261
|
+
}
|
|
2262
|
+
declare function createTangleCatalogRuntimeHandler(options: TangleCatalogRuntimeHandlerOptions): (input: TangleCatalogRuntimeHttpRequest) => Promise<TangleCatalogRuntimeHttpResponse>;
|
|
2263
|
+
declare function createTangleCatalogInstalledPackageExecutor(options?: TangleCatalogInstalledPackageExecutorOptions): TangleCatalogRuntimeHandlerOptions['executeAction'];
|
|
2264
|
+
|
|
2215
2265
|
type IntegrationCoveragePriority = 'tier_0' | 'tier_1' | 'tier_2' | 'long_tail';
|
|
2216
2266
|
interface IntegrationCoverageSpec {
|
|
2217
2267
|
id: string;
|
|
@@ -2714,4 +2764,4 @@ declare function createHttpIntegrationProvider(options: HttpIntegrationProviderO
|
|
|
2714
2764
|
declare function signCapability(capability: IntegrationCapability, secret: string): string;
|
|
2715
2765
|
declare function verifyCapabilityToken(token: string, secret: string): IntegrationCapability;
|
|
2716
2766
|
|
|
2717
|
-
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, createAuditingActionGuard 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, adapterManifestsToConnectors as cA, airtableConnector as cB, asanaConnector as cC, assertValidConnectorManifest as cD, assertValidIntegrationManifest as cE, auditIntegrationCatalogFreshness as cF, auditTangleIntegrationCatalogFreshness as cG, buildActivepiecesConnectors as cH, buildActivepiecesRuntimeRequest as cI, buildApprovalRequest as cJ, buildCanonicalLaunchConnectors as cK, buildDefaultIntegrationRegistry as cL, buildIntegrationBridgeEnvironment as cM, buildIntegrationBridgePayload as cN, buildIntegrationCoverageConnectors as cO, buildIntegrationInvocationEnvelope as cP, buildIntegrationToolCatalog as cQ, buildTangleCatalogRuntimeRequest as cR, buildTangleIntegrationCatalogConnectors as cS, calendarExercisePlannerManifest as cT, canonicalActionConnectorId as cU, canonicalConnectorId as cV, composeIntegrationRegistry as cW, consumePendingFlow as cX, createActivepiecesExecutorProvider as cY, createActivepiecesHttpExecutor as cZ, createApprovalBackedPolicyEngine 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 TangleCatalogRuntimeRequest as cq, type TangleIntegrationCatalogEntry as cr, type TangleIntegrationCatalogFreshnessOptions as cs, type TangleIntegrationCatalogFreshnessResult as ct, type TangleIntegrationInvokeInput as cu, type TangleIntegrationInvokeResult as cv, TangleIntegrationsClient as cw, type TangleIntegrationsClientOptions as cx, type TwilioVerifyOptions as cy, _resetPendingFlowsForTests as cz, type ActivepiecesExecutorInvocation as d, resolveIntegrationApproval as d$, createCatalogExecutorProvider as d0, createConnectionCredentialResolver as d1, createConnectorAdapterCatalogSource as d2, createConnectorAdapterProvider as d3, createCredentialBackedAdapterProvider as d4, createDefaultIntegrationActionGuard as d5, createDefaultIntegrationPolicyEngine as d6, createGatewayCatalogProvider as d7, createHttpIntegrationProvider as d8, createIntegrationAuditEvent as d9, importOpenApiConnector as dA, inferIntegrationManifestFromTools as dB, inferIntegrationSupportTier as dC, integrationCoverageChecklistMarkdown as dD, integrationToolName as dE, invocationRequestFromEnvelope as dF, listActivepiecesCatalogEntries as dG, listIntegrationCoverageSpecs as dH, listTangleIntegrationCatalogEntries as dI, manifestToConnector as dJ, microsoftCalendar as dK, normalizeGatewayCatalog as dL, normalizeIntegrationError as dM, normalizeIntegrationResult as dN, notionDatabase as dO, parseIntegrationBridgeEnvironment as dP, parseIntegrationToolName as dQ, parseStripeSignatureHeader as dR, receiveIntegrationWebhook as dS, redactApprovalRequest as dT, redactCapability as dU, redactIntegrationBridgePayload as dV, redactInvocationEnvelope as dW, refreshAccessToken as dX, renderApprovalCopy as dY, renderConsentSummary as dZ, resolveConnectionCredentials as d_, createIntegrationRuntime as da, createIntegrationWorkflowRuntime as db, createMockIntegrationProvider as dc, createPlatformIntegrationPolicyPreset as dd, createTangleCatalogExecutorProvider as de, createTangleCatalogHttpExecutor as df, createTangleIntegrationsClient as dg, declarativeRestConnector as dh, decodeIntegrationBridgePayload as di, dispatchIntegrationInvocation as dj, encodeIntegrationBridgePayload as dk, exchangeAuthorizationCode as dl, explainMissingRequirements as dm, extractActivepiecesPublicPieceCount as dn, extractExternalCatalogPublicCount as dp, firstHeader as dq, getActivepiecesOverride as dr, githubConnector as ds, gitlabConnector as dt, googleCalendar as du, googleSheets as dv, healthcheckRequest as dw, hubspot as dx, importGraphqlConnector as dy, importMcpConnector as dz, type ActivepiecesExecutorProviderOptions as e, revokeConnection as e0, runIntegrationHealthcheck as e1, runIntegrationHealthchecks as e2, salesforceConnector as e3, sanitizeAuditConnection as e4, sanitizeConnection as e5, searchIntegrationTools as e6, signActivepiecesRuntimeRequest as e7, signCapability as e8, signTangleCatalogRuntimeRequest as e9, slack as ea, slackEventsConnector as eb, startOAuthFlow as ec, statusForCode as ed, storedEventToTriggerEvent as ee, stripePackConnector as ef, stripeWebhookReceiverConnector as eg, summarizeIntegrationRegistry as eh, toMcpTools as ei, twilioSmsConnector as ej, validateConnectorManifest as ek, validateIntegrationInvocationEnvelope as el, validateIntegrationManifest as em, validateProviderPassthroughRequest as en, verifyActivepiecesRuntimeSignature as eo, verifyCapabilityToken as ep, verifyHmacSignature as eq, verifySlackSignature as er, verifyStripeSignature as es, verifyTangleCatalogRuntimeSignature as et, verifyTwilioSignature as eu, webhookConnector as ev, 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 };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-integrations",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "Vendor-neutral integration contracts and runtime helpers for sandbox and agent apps.",
|
|
5
5
|
"homepage": "https://github.com/tangle-network/agent-integrations#readme",
|
|
6
6
|
"repository": {
|