@tangle-network/agent-integrations 0.33.1 → 0.34.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 -7
- package/dist/catalog.d.ts +2 -2
- package/dist/catalog.js +9 -7
- package/dist/{chunk-7T5YTVER.js → chunk-53NQJZAT.js} +8 -318
- package/dist/chunk-53NQJZAT.js.map +1 -0
- package/dist/{chunk-6N23S4JY.js → chunk-6W72E2KN.js} +607 -7
- package/dist/chunk-6W72E2KN.js.map +1 -0
- package/dist/chunk-7P2LN4VT.js +318 -0
- package/dist/chunk-7P2LN4VT.js.map +1 -0
- package/dist/{chunk-YPZORI3G.js → chunk-CR35IEKW.js} +2 -2
- package/dist/{chunk-43VQSANC.js → chunk-D57YS6XC.js} +2 -2
- package/dist/{chunk-RF3RH374.js → chunk-O553GSCX.js} +2 -2
- package/dist/chunk-PZ5AY32C.js +10 -0
- package/dist/{chunk-NQ7OPDUM.js → chunk-ZDK7Y4QG.js} +12 -1
- package/dist/chunk-ZDK7Y4QG.js.map +1 -0
- package/dist/{chunk-XO2RSS6Y.js → chunk-ZVGYRP2O.js} +52 -669
- package/dist/chunk-ZVGYRP2O.js.map +1 -0
- package/dist/connect/index.d.ts +2 -2
- package/dist/connect/index.js +3 -2
- package/dist/connectors/adapters/index.d.ts +31 -3
- package/dist/connectors/adapters/index.js +5 -2
- package/dist/connectors/index.d.ts +3 -3
- package/dist/connectors/index.js +5 -2
- package/dist/{consumer-CzJgntej.d.ts → consumer-yV4NtH2h.d.ts} +1 -1
- package/dist/consumer.d.ts +3 -3
- package/dist/consumer.js +3 -2
- package/dist/{core-types-D5Dc65Ud.d.ts → core-types-CjWifQOf.d.ts} +2 -2
- package/dist/coverage-catalog.d.ts +26 -0
- package/dist/coverage-catalog.js +12 -0
- package/dist/coverage-catalog.js.map +1 -0
- package/dist/index.d.ts +75 -59
- package/dist/index.js +18 -47
- package/dist/middleware/index.d.ts +2 -2
- package/dist/middleware/index.js +3 -2
- package/dist/registry.d.ts +2 -2
- package/dist/registry.js +9 -7
- package/dist/runtime.d.ts +2 -2
- package/dist/runtime.js +9 -7
- package/dist/specs.d.ts +2 -2
- package/dist/specs.js +3 -1
- package/dist/stripe/index.js +1 -0
- package/dist/stripe/index.js.map +1 -1
- package/dist/{tangle-id-DA_qj-O_.d.ts → tangle-id-hDDWP-2f.d.ts} +1 -1
- package/dist/{types-XdpvaIzW.d.ts → types-Bxg-wJkW.d.ts} +12 -3
- package/dist/webhooks/index.js +1 -0
- package/dist/webhooks/index.js.map +1 -1
- package/docs/adapter-triage.md +9 -42
- package/docs/external-product-integration.md +3 -4
- package/docs/integration-execution-audit.md +134 -70
- package/docs/integration-execution-matrix.json +3062 -1823
- package/package.json +14 -25
- package/dist/bin/tangle-catalog-runtime.d.ts +0 -1
- package/dist/bin/tangle-catalog-runtime.js +0 -82
- package/dist/bin/tangle-catalog-runtime.js.map +0 -1
- package/dist/chunk-6N23S4JY.js.map +0 -1
- package/dist/chunk-7T5YTVER.js.map +0 -1
- package/dist/chunk-NQ7OPDUM.js.map +0 -1
- package/dist/chunk-XO2RSS6Y.js.map +0 -1
- package/dist/tangle-catalog-runtime-2HddXxoM.d.ts +0 -242
- package/dist/tangle-catalog-runtime.d.ts +0 -3
- package/dist/tangle-catalog-runtime.js +0 -32
- /package/dist/{chunk-YPZORI3G.js.map → chunk-CR35IEKW.js.map} +0 -0
- /package/dist/{chunk-43VQSANC.js.map → chunk-D57YS6XC.js.map} +0 -0
- /package/dist/{chunk-RF3RH374.js.map → chunk-O553GSCX.js.map} +0 -0
- /package/dist/{tangle-catalog-runtime.js.map → chunk-PZ5AY32C.js.map} +0 -0
|
@@ -1,242 +0,0 @@
|
|
|
1
|
-
import { d as IntegrationConnectorCategory, b as IntegrationConnector, f as IntegrationActionRisk, c as IntegrationConnection, j as IntegrationActionRequest, S as StartAuthRequest, l as StartAuthResult, C as CompleteAuthRequest, k as IntegrationActionResult, m as IntegrationProvider, n as IntegrationSecretStore, e as IntegrationConnectorAction } from './core-types-D5Dc65Ud.js';
|
|
2
|
-
import { a as ConnectorCredentials } from './types-XdpvaIzW.js';
|
|
3
|
-
|
|
4
|
-
interface ActivepiecesCatalogEntry {
|
|
5
|
-
id: string;
|
|
6
|
-
title: string;
|
|
7
|
-
description: string;
|
|
8
|
-
npmPackage?: string;
|
|
9
|
-
version?: string;
|
|
10
|
-
category: IntegrationConnectorCategory;
|
|
11
|
-
auth: IntegrationConnector['auth'];
|
|
12
|
-
authFields?: ActivepiecesCatalogAuthField[];
|
|
13
|
-
domains: string[];
|
|
14
|
-
actions: Array<{
|
|
15
|
-
id: string;
|
|
16
|
-
title: string;
|
|
17
|
-
risk: IntegrationActionRisk;
|
|
18
|
-
upstreamName?: string;
|
|
19
|
-
}>;
|
|
20
|
-
triggers: Array<{
|
|
21
|
-
id: string;
|
|
22
|
-
title: string;
|
|
23
|
-
upstreamName?: string;
|
|
24
|
-
}>;
|
|
25
|
-
source: {
|
|
26
|
-
repository: string;
|
|
27
|
-
path: string;
|
|
28
|
-
license: 'MIT';
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
interface ActivepiecesCatalogAuthField {
|
|
32
|
-
key: string;
|
|
33
|
-
label: string;
|
|
34
|
-
required: boolean;
|
|
35
|
-
secret: boolean;
|
|
36
|
-
kind: 'text' | 'number' | 'boolean' | 'select' | 'object' | 'unknown';
|
|
37
|
-
description?: string;
|
|
38
|
-
}
|
|
39
|
-
declare function listActivepiecesCatalogEntries(): ActivepiecesCatalogEntry[];
|
|
40
|
-
declare function buildActivepiecesConnectors(options?: {
|
|
41
|
-
providerId?: string;
|
|
42
|
-
includeCatalogActions?: boolean;
|
|
43
|
-
executable?: boolean;
|
|
44
|
-
}): IntegrationConnector[];
|
|
45
|
-
|
|
46
|
-
interface ActivepiecesExecutorInvocation {
|
|
47
|
-
connection: IntegrationConnection;
|
|
48
|
-
request: IntegrationActionRequest;
|
|
49
|
-
connector: IntegrationConnector;
|
|
50
|
-
catalogEntry: ActivepiecesCatalogEntry;
|
|
51
|
-
piece: {
|
|
52
|
-
id: string;
|
|
53
|
-
npmPackage?: string;
|
|
54
|
-
version?: string;
|
|
55
|
-
actionId: string;
|
|
56
|
-
upstreamActionName?: string;
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
interface ActivepiecesExecutorProviderOptions {
|
|
60
|
-
id?: string;
|
|
61
|
-
connectors?: IntegrationConnector[];
|
|
62
|
-
startAuth?: (request: StartAuthRequest) => Promise<StartAuthResult> | StartAuthResult;
|
|
63
|
-
completeAuth?: (request: CompleteAuthRequest) => Promise<IntegrationConnection> | IntegrationConnection;
|
|
64
|
-
executeAction: (invocation: ActivepiecesExecutorInvocation) => Promise<IntegrationActionResult> | IntegrationActionResult;
|
|
65
|
-
}
|
|
66
|
-
declare function createActivepiecesExecutorProvider(options: ActivepiecesExecutorProviderOptions): IntegrationProvider;
|
|
67
|
-
|
|
68
|
-
declare const ACTIVEPIECES_RUNTIME_SIGNATURE_HEADER = "x-tangle-activepieces-signature";
|
|
69
|
-
declare const TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER = "x-tangle-catalog-signature";
|
|
70
|
-
interface TangleCatalogRuntimeActionRequest {
|
|
71
|
-
id: string;
|
|
72
|
-
input: unknown;
|
|
73
|
-
idempotencyKey?: string;
|
|
74
|
-
dryRun?: boolean;
|
|
75
|
-
metadata?: Record<string, unknown>;
|
|
76
|
-
}
|
|
77
|
-
interface TangleCatalogRuntimePiece {
|
|
78
|
-
id: string;
|
|
79
|
-
packageName?: string;
|
|
80
|
-
version?: string;
|
|
81
|
-
actionId: string;
|
|
82
|
-
upstreamActionName?: string;
|
|
83
|
-
}
|
|
84
|
-
interface TangleCatalogHttpExecutorOptions {
|
|
85
|
-
endpoint: string;
|
|
86
|
-
path?: string;
|
|
87
|
-
signatureHeader?: string;
|
|
88
|
-
secret?: string;
|
|
89
|
-
fetchImpl?: typeof fetch;
|
|
90
|
-
headers?: Record<string, string>;
|
|
91
|
-
timeoutMs?: number;
|
|
92
|
-
requestId?: () => string;
|
|
93
|
-
}
|
|
94
|
-
interface TangleCatalogHttpExecutorInvocation extends Omit<ActivepiecesExecutorInvocation, 'catalogEntry' | 'piece'> {
|
|
95
|
-
catalogEntry: unknown;
|
|
96
|
-
piece: TangleCatalogRuntimePiece;
|
|
97
|
-
}
|
|
98
|
-
/**
|
|
99
|
-
* @deprecated Use the Tangle catalog runtime types. This name is kept only for
|
|
100
|
-
* compatibility with the upstream catalog ingestion backend.
|
|
101
|
-
*/
|
|
102
|
-
interface ActivepiecesRuntimeRequest {
|
|
103
|
-
version: 1;
|
|
104
|
-
requestId: string;
|
|
105
|
-
providerId: string;
|
|
106
|
-
connection: IntegrationConnection;
|
|
107
|
-
connector: Pick<IntegrationConnector, 'id' | 'title' | 'auth' | 'scopes' | 'metadata'>;
|
|
108
|
-
piece: ActivepiecesExecutorInvocation['piece'];
|
|
109
|
-
action: TangleCatalogRuntimeActionRequest;
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* @deprecated Use `TangleCatalogHttpExecutorOptions`.
|
|
113
|
-
*/
|
|
114
|
-
type ActivepiecesHttpExecutorOptions = TangleCatalogHttpExecutorOptions;
|
|
115
|
-
/**
|
|
116
|
-
* @deprecated Use `createTangleCatalogHttpExecutor`.
|
|
117
|
-
*/
|
|
118
|
-
declare function createActivepiecesHttpExecutor(options: ActivepiecesHttpExecutorOptions): ActivepiecesExecutorProviderOptions['executeAction'];
|
|
119
|
-
/**
|
|
120
|
-
* @deprecated Use `buildTangleCatalogRuntimeRequest`.
|
|
121
|
-
*/
|
|
122
|
-
declare function buildActivepiecesRuntimeRequest(invocation: ActivepiecesExecutorInvocation, requestId?: string): ActivepiecesRuntimeRequest;
|
|
123
|
-
/**
|
|
124
|
-
* @deprecated Use `signTangleCatalogRuntimeRequest`.
|
|
125
|
-
*/
|
|
126
|
-
declare function signActivepiecesRuntimeRequest(serializedBody: string, secret: string): string;
|
|
127
|
-
/**
|
|
128
|
-
* @deprecated Use `verifyTangleCatalogRuntimeSignature`.
|
|
129
|
-
*/
|
|
130
|
-
declare function verifyActivepiecesRuntimeSignature(serializedBody: string, signature: string | null | undefined, secret: string): boolean;
|
|
131
|
-
interface TangleCatalogRuntimeRequest {
|
|
132
|
-
version: 1;
|
|
133
|
-
requestId: string;
|
|
134
|
-
providerId: string;
|
|
135
|
-
connection: IntegrationConnection;
|
|
136
|
-
connector: Pick<IntegrationConnector, 'id' | 'title' | 'auth' | 'scopes' | 'metadata'>;
|
|
137
|
-
piece: TangleCatalogRuntimePiece;
|
|
138
|
-
action: TangleCatalogRuntimeActionRequest;
|
|
139
|
-
}
|
|
140
|
-
declare function createTangleCatalogHttpExecutor(options: TangleCatalogHttpExecutorOptions): (invocation: TangleCatalogHttpExecutorInvocation) => Promise<IntegrationActionResult>;
|
|
141
|
-
declare function buildTangleCatalogRuntimeRequest(invocation: TangleCatalogHttpExecutorInvocation, requestId?: string): TangleCatalogRuntimeRequest;
|
|
142
|
-
declare const signTangleCatalogRuntimeRequest: typeof signActivepiecesRuntimeRequest;
|
|
143
|
-
declare const verifyTangleCatalogRuntimeSignature: typeof verifyActivepiecesRuntimeSignature;
|
|
144
|
-
|
|
145
|
-
interface TangleCatalogRuntimeInvocation {
|
|
146
|
-
request: TangleCatalogRuntimeRequest;
|
|
147
|
-
connection: IntegrationConnection;
|
|
148
|
-
connector: IntegrationConnector;
|
|
149
|
-
action: IntegrationConnectorAction;
|
|
150
|
-
}
|
|
151
|
-
interface TangleCatalogRuntimeHandlerOptions {
|
|
152
|
-
secret?: string;
|
|
153
|
-
requireSignature?: boolean;
|
|
154
|
-
signatureHeader?: string;
|
|
155
|
-
connectors?: IntegrationConnector[];
|
|
156
|
-
maxBodyBytes?: number;
|
|
157
|
-
executeAction: (invocation: TangleCatalogRuntimeInvocation) => Promise<IntegrationActionResult> | IntegrationActionResult;
|
|
158
|
-
}
|
|
159
|
-
interface TangleCatalogInstalledPackageExecutorOptions {
|
|
160
|
-
moduleLoader?: (packageName: string) => Promise<unknown> | unknown;
|
|
161
|
-
actionAliases?: Record<string, Record<string, string>>;
|
|
162
|
-
allowFuzzyActionMatch?: boolean;
|
|
163
|
-
resolveAuth?: (connection: IntegrationConnection) => Promise<unknown> | unknown;
|
|
164
|
-
beforeRun?: (invocation: TangleCatalogRuntimeInvocation) => Promise<void> | void;
|
|
165
|
-
}
|
|
166
|
-
interface TangleCatalogAuthResolverOptions {
|
|
167
|
-
secrets: IntegrationSecretStore;
|
|
168
|
-
mapCredentials?: (input: {
|
|
169
|
-
connection: IntegrationConnection;
|
|
170
|
-
credentials: ConnectorCredentials;
|
|
171
|
-
connectorId: string;
|
|
172
|
-
}) => unknown;
|
|
173
|
-
}
|
|
174
|
-
interface TangleCatalogHttpAuthResolverOptions {
|
|
175
|
-
endpoint: string;
|
|
176
|
-
secret: string;
|
|
177
|
-
path?: string;
|
|
178
|
-
timeoutMs?: number;
|
|
179
|
-
fetchImpl?: typeof fetch;
|
|
180
|
-
headers?: Record<string, string>;
|
|
181
|
-
requestId?: () => string;
|
|
182
|
-
}
|
|
183
|
-
interface TangleCatalogHttpAuthResolverRequest {
|
|
184
|
-
version: 1;
|
|
185
|
-
requestId: string;
|
|
186
|
-
providerId: string;
|
|
187
|
-
connectorId: string;
|
|
188
|
-
connectionId: string;
|
|
189
|
-
secretRef?: IntegrationConnection['secretRef'];
|
|
190
|
-
}
|
|
191
|
-
interface TangleCatalogRuntimeModuleAction {
|
|
192
|
-
name?: string;
|
|
193
|
-
displayName?: string;
|
|
194
|
-
run?: (context: {
|
|
195
|
-
auth: unknown;
|
|
196
|
-
propsValue: unknown;
|
|
197
|
-
input: unknown;
|
|
198
|
-
connection: IntegrationConnection;
|
|
199
|
-
request: TangleCatalogRuntimeRequest;
|
|
200
|
-
}) => Promise<unknown> | unknown;
|
|
201
|
-
}
|
|
202
|
-
interface TangleCatalogRuntimeHttpRequest {
|
|
203
|
-
body: string | Uint8Array | TangleCatalogRuntimeRequest;
|
|
204
|
-
headers?: Headers | Record<string, string | string[] | undefined>;
|
|
205
|
-
}
|
|
206
|
-
interface TangleCatalogRuntimeHttpResponse {
|
|
207
|
-
status: number;
|
|
208
|
-
headers: Record<string, string>;
|
|
209
|
-
body: IntegrationActionResult | {
|
|
210
|
-
ok: false;
|
|
211
|
-
action: string;
|
|
212
|
-
output: {
|
|
213
|
-
code: string;
|
|
214
|
-
message: string;
|
|
215
|
-
};
|
|
216
|
-
};
|
|
217
|
-
}
|
|
218
|
-
interface TangleCatalogRuntimePackageCoverageRow {
|
|
219
|
-
connectorId: string;
|
|
220
|
-
packageName: string;
|
|
221
|
-
packageInstalled: boolean;
|
|
222
|
-
packageLoads: boolean;
|
|
223
|
-
pieceExportFound: boolean;
|
|
224
|
-
actionMappingsVerified: number;
|
|
225
|
-
actionMappingsTotal: number;
|
|
226
|
-
triggerMappingsFound: number;
|
|
227
|
-
triggerMappingsTotal: number;
|
|
228
|
-
triggerHostingSupported: boolean;
|
|
229
|
-
error?: string;
|
|
230
|
-
}
|
|
231
|
-
interface TangleCatalogRuntimePackageCoverageOptions {
|
|
232
|
-
connectorIds?: string[];
|
|
233
|
-
moduleLoader?: (packageName: string) => Promise<unknown> | unknown;
|
|
234
|
-
}
|
|
235
|
-
declare function createTangleCatalogRuntimeHandler(options: TangleCatalogRuntimeHandlerOptions): (input: TangleCatalogRuntimeHttpRequest) => Promise<TangleCatalogRuntimeHttpResponse>;
|
|
236
|
-
declare function createTangleCatalogInstalledPackageExecutor(options?: TangleCatalogInstalledPackageExecutorOptions): TangleCatalogRuntimeHandlerOptions['executeAction'];
|
|
237
|
-
declare function auditTangleCatalogRuntimePackages(options?: TangleCatalogRuntimePackageCoverageOptions): Promise<TangleCatalogRuntimePackageCoverageRow[]>;
|
|
238
|
-
declare function createTangleCatalogCredentialAuthResolver(options: TangleCatalogAuthResolverOptions): (connection: IntegrationConnection) => Promise<unknown>;
|
|
239
|
-
declare function createTangleCatalogHttpAuthResolver(options: TangleCatalogHttpAuthResolverOptions): (connection: IntegrationConnection) => Promise<unknown>;
|
|
240
|
-
declare function tangleCatalogAuthValue(credentials: ConnectorCredentials): unknown;
|
|
241
|
-
|
|
242
|
-
export { type ActivepiecesCatalogEntry as A, createActivepiecesExecutorProvider as B, createActivepiecesHttpExecutor as C, createTangleCatalogCredentialAuthResolver as D, createTangleCatalogHttpAuthResolver as E, createTangleCatalogHttpExecutor as F, createTangleCatalogInstalledPackageExecutor as G, createTangleCatalogRuntimeHandler as H, listActivepiecesCatalogEntries as I, signActivepiecesRuntimeRequest as J, signTangleCatalogRuntimeRequest as K, tangleCatalogAuthValue as L, verifyActivepiecesRuntimeSignature as M, verifyTangleCatalogRuntimeSignature as N, type TangleCatalogHttpAuthResolverOptions as T, type TangleCatalogInstalledPackageExecutorOptions as a, ACTIVEPIECES_RUNTIME_SIGNATURE_HEADER as b, type ActivepiecesCatalogAuthField as c, type ActivepiecesExecutorInvocation as d, type ActivepiecesExecutorProviderOptions as e, type ActivepiecesHttpExecutorOptions as f, type ActivepiecesRuntimeRequest as g, TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER as h, type TangleCatalogAuthResolverOptions as i, type TangleCatalogHttpAuthResolverRequest as j, type TangleCatalogHttpExecutorInvocation as k, type TangleCatalogHttpExecutorOptions as l, type TangleCatalogRuntimeActionRequest as m, type TangleCatalogRuntimeHandlerOptions as n, type TangleCatalogRuntimeHttpRequest as o, type TangleCatalogRuntimeHttpResponse as p, type TangleCatalogRuntimeInvocation as q, type TangleCatalogRuntimeModuleAction as r, type TangleCatalogRuntimePackageCoverageOptions as s, type TangleCatalogRuntimePackageCoverageRow as t, type TangleCatalogRuntimePiece as u, type TangleCatalogRuntimeRequest as v, auditTangleCatalogRuntimePackages as w, buildActivepiecesConnectors as x, buildActivepiecesRuntimeRequest as y, buildTangleCatalogRuntimeRequest as z };
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export { h as TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER, i as TangleCatalogAuthResolverOptions, T as TangleCatalogHttpAuthResolverOptions, j as TangleCatalogHttpAuthResolverRequest, a as TangleCatalogInstalledPackageExecutorOptions, n as TangleCatalogRuntimeHandlerOptions, o as TangleCatalogRuntimeHttpRequest, p as TangleCatalogRuntimeHttpResponse, q as TangleCatalogRuntimeInvocation, r as TangleCatalogRuntimeModuleAction, s as TangleCatalogRuntimePackageCoverageOptions, t as TangleCatalogRuntimePackageCoverageRow, w as auditTangleCatalogRuntimePackages, D as createTangleCatalogCredentialAuthResolver, E as createTangleCatalogHttpAuthResolver, G as createTangleCatalogInstalledPackageExecutor, H as createTangleCatalogRuntimeHandler, K as signTangleCatalogRuntimeRequest, L as tangleCatalogAuthValue, N as verifyTangleCatalogRuntimeSignature } from './tangle-catalog-runtime-2HddXxoM.js';
|
|
2
|
-
import './core-types-D5Dc65Ud.js';
|
|
3
|
-
import './types-XdpvaIzW.js';
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER,
|
|
3
|
-
auditTangleCatalogRuntimePackages,
|
|
4
|
-
createTangleCatalogCredentialAuthResolver,
|
|
5
|
-
createTangleCatalogHttpAuthResolver,
|
|
6
|
-
createTangleCatalogInstalledPackageExecutor,
|
|
7
|
-
createTangleCatalogRuntimeHandler,
|
|
8
|
-
signTangleCatalogRuntimeRequest,
|
|
9
|
-
tangleCatalogAuthValue,
|
|
10
|
-
verifyTangleCatalogRuntimeSignature
|
|
11
|
-
} from "./chunk-XO2RSS6Y.js";
|
|
12
|
-
import "./chunk-43VQSANC.js";
|
|
13
|
-
import "./chunk-YPZORI3G.js";
|
|
14
|
-
import "./chunk-H4XYLS7T.js";
|
|
15
|
-
import "./chunk-RF3RH374.js";
|
|
16
|
-
import "./chunk-7T5YTVER.js";
|
|
17
|
-
import "./chunk-376UBTNB.js";
|
|
18
|
-
import "./chunk-6N23S4JY.js";
|
|
19
|
-
import "./chunk-2TW2QKGZ.js";
|
|
20
|
-
import "./chunk-NQ7OPDUM.js";
|
|
21
|
-
export {
|
|
22
|
-
TANGLE_CATALOG_RUNTIME_SIGNATURE_HEADER,
|
|
23
|
-
auditTangleCatalogRuntimePackages,
|
|
24
|
-
createTangleCatalogCredentialAuthResolver,
|
|
25
|
-
createTangleCatalogHttpAuthResolver,
|
|
26
|
-
createTangleCatalogInstalledPackageExecutor,
|
|
27
|
-
createTangleCatalogRuntimeHandler,
|
|
28
|
-
signTangleCatalogRuntimeRequest,
|
|
29
|
-
tangleCatalogAuthValue,
|
|
30
|
-
verifyTangleCatalogRuntimeSignature
|
|
31
|
-
};
|
|
32
|
-
//# sourceMappingURL=tangle-catalog-runtime.js.map
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|