@thisispandora/agent-sdk 0.1.0-alpha.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/README.md +229 -0
- package/backends.d.ts +15 -0
- package/backends.js +20 -0
- package/backends.mjs +14 -0
- package/catalog.d.ts +26 -0
- package/catalog.js +24 -0
- package/catalog.mjs +18 -0
- package/errors.d.ts +7 -0
- package/errors.js +13 -0
- package/errors.mjs +7 -0
- package/examples/local-stdio.cjs +22 -0
- package/examples/remote-http.cjs +23 -0
- package/generated/command-descriptors.d.ts +5 -0
- package/generated/command-descriptors.json +18526 -0
- package/generated/command-descriptors.mjs +3 -0
- package/generated/contract-registry.d.ts +5 -0
- package/generated/contract-registry.json +120117 -0
- package/generated/contract-registry.mjs +3 -0
- package/generated/index.d.ts +21 -0
- package/generated/index.js +42 -0
- package/generated/index.mjs +14 -0
- package/generated/manifest.d.ts +5 -0
- package/generated/manifest.json +374 -0
- package/generated/manifest.mjs +3 -0
- package/generated/mcp-tool-definitions.d.ts +5 -0
- package/generated/mcp-tool-definitions.json +37871 -0
- package/generated/mcp-tool-definitions.mjs +3 -0
- package/index.d.ts +401 -0
- package/index.js +757 -0
- package/index.mjs +34 -0
- package/package.json +148 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,401 @@
|
|
|
1
|
+
export interface PandoraRootPublishedSurface {
|
|
2
|
+
artifactSubpaths: {
|
|
3
|
+
bundle: string;
|
|
4
|
+
commandDescriptors: string;
|
|
5
|
+
entrypoint: string;
|
|
6
|
+
manifest: string;
|
|
7
|
+
mcpToolDefinitions: string;
|
|
8
|
+
types: string;
|
|
9
|
+
};
|
|
10
|
+
binNames: string[];
|
|
11
|
+
exportSubpaths: string[];
|
|
12
|
+
format: 'node';
|
|
13
|
+
main: string | null;
|
|
14
|
+
name: string;
|
|
15
|
+
sourceProjectPath: string;
|
|
16
|
+
version: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface PandoraTypescriptPublishedSurface {
|
|
20
|
+
artifactSubpaths: {
|
|
21
|
+
bundle: string;
|
|
22
|
+
commandDescriptors: string;
|
|
23
|
+
entrypoint: string;
|
|
24
|
+
manifest: string;
|
|
25
|
+
mcpToolDefinitions: string;
|
|
26
|
+
types: string;
|
|
27
|
+
};
|
|
28
|
+
exportSubpaths: string[];
|
|
29
|
+
format: 'node';
|
|
30
|
+
name: string;
|
|
31
|
+
sourceProjectPath: string;
|
|
32
|
+
version: string;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface PandoraPythonPublishedSurface {
|
|
36
|
+
artifactSubpaths: {
|
|
37
|
+
bundle: string;
|
|
38
|
+
commandDescriptors: string;
|
|
39
|
+
manifest: string;
|
|
40
|
+
mcpToolDefinitions: string;
|
|
41
|
+
};
|
|
42
|
+
format: 'python';
|
|
43
|
+
module: 'pandora_agent';
|
|
44
|
+
name: string;
|
|
45
|
+
sourceProjectPath: string;
|
|
46
|
+
version: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export interface PandoraPublishedSurfaces {
|
|
50
|
+
root: PandoraRootPublishedSurface;
|
|
51
|
+
typescript: PandoraTypescriptPublishedSurface;
|
|
52
|
+
python: PandoraPythonPublishedSurface;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface PandoraGeneratedManifest {
|
|
56
|
+
artifactVersion: string;
|
|
57
|
+
schemaVersion: string | number;
|
|
58
|
+
packageVersion: string;
|
|
59
|
+
contractVersion?: string | null;
|
|
60
|
+
contractPackageVersion?: string | null;
|
|
61
|
+
contractCommandDescriptorVersion?: string | null;
|
|
62
|
+
generatedFrom: string;
|
|
63
|
+
generator: string;
|
|
64
|
+
commandDescriptorVersion: string;
|
|
65
|
+
commandCount: number;
|
|
66
|
+
mcpToolCount: number;
|
|
67
|
+
registryDigest?: Record<string, string>;
|
|
68
|
+
catalogSummary?: Record<string, unknown>;
|
|
69
|
+
backends?: Record<string, unknown>;
|
|
70
|
+
package?: PandoraRootPublishedSurface | PandoraTypescriptPublishedSurface | PandoraPythonPublishedSurface;
|
|
71
|
+
publishedSurfaces?: PandoraPublishedSurfaces;
|
|
72
|
+
artifacts: Record<string, string>;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export interface PandoraGeneratedMcpToolDefinition {
|
|
76
|
+
name: string;
|
|
77
|
+
command: string[];
|
|
78
|
+
description: string;
|
|
79
|
+
inputSchema: Record<string, unknown>;
|
|
80
|
+
xPandora?: PandoraCommandDescriptor | Record<string, unknown> | null;
|
|
81
|
+
mutating?: boolean;
|
|
82
|
+
safeFlags?: string[];
|
|
83
|
+
executeFlags?: string[];
|
|
84
|
+
longRunningBlocked?: boolean;
|
|
85
|
+
placeholderBlocked?: boolean;
|
|
86
|
+
aliasOf?: string | null;
|
|
87
|
+
canonicalTool?: string | null;
|
|
88
|
+
preferred?: boolean;
|
|
89
|
+
controlInputNames?: string[];
|
|
90
|
+
agentWorkflow?: Record<string, unknown> | null;
|
|
91
|
+
supportsRemote?: boolean;
|
|
92
|
+
remoteEligible?: boolean;
|
|
93
|
+
policyScopes?: string[];
|
|
94
|
+
canonicalCommandTokens?: string[];
|
|
95
|
+
canonicalUsage?: string | null;
|
|
96
|
+
metadataProvenance?: string | null;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export interface PandoraCommandDescriptor {
|
|
100
|
+
aliasOf?: string | null;
|
|
101
|
+
canonicalCommandTokens?: string[] | null;
|
|
102
|
+
canonicalTool?: string | null;
|
|
103
|
+
canonicalUsage?: string | null;
|
|
104
|
+
canRunConcurrent?: boolean;
|
|
105
|
+
controlInputNames?: string[];
|
|
106
|
+
dataSchema?: string | null;
|
|
107
|
+
emits?: string[];
|
|
108
|
+
executeFlags?: string[];
|
|
109
|
+
executeIntentRequired?: boolean;
|
|
110
|
+
executeIntentRequiredForLiveMode?: boolean;
|
|
111
|
+
expectedLatencyMs?: number | null;
|
|
112
|
+
externalDependencies?: string[];
|
|
113
|
+
helpDataSchema?: string | null;
|
|
114
|
+
idempotency?: string;
|
|
115
|
+
inputSchema?: Record<string, unknown> | null;
|
|
116
|
+
jobCapable?: boolean;
|
|
117
|
+
mcpExposed?: boolean;
|
|
118
|
+
mcpLongRunningBlocked?: boolean;
|
|
119
|
+
mcpMutating?: boolean;
|
|
120
|
+
outputModes?: string[];
|
|
121
|
+
policyScopes?: string[];
|
|
122
|
+
preferred?: boolean;
|
|
123
|
+
recommendedPreflightTool?: string | null;
|
|
124
|
+
remoteEligible?: boolean;
|
|
125
|
+
requiresSecrets?: boolean;
|
|
126
|
+
returnsOperationId?: boolean;
|
|
127
|
+
returnsRuntimeHandle?: boolean;
|
|
128
|
+
riskLevel?: string;
|
|
129
|
+
safeEquivalent?: string | null;
|
|
130
|
+
safeFlags?: string[];
|
|
131
|
+
summary?: string;
|
|
132
|
+
supportsRemote?: boolean;
|
|
133
|
+
supportsWebhook?: boolean;
|
|
134
|
+
usage?: string;
|
|
135
|
+
[key: string]: unknown;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
export interface PandoraCapabilityFeature {
|
|
139
|
+
supported: boolean;
|
|
140
|
+
status: string;
|
|
141
|
+
notes: string[];
|
|
142
|
+
[key: string]: unknown;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export interface PandoraPolicyPackCapability extends PandoraCapabilityFeature {
|
|
146
|
+
commandsWithPolicyScopes?: string[];
|
|
147
|
+
policyScopedCommandCount?: number;
|
|
148
|
+
samplePolicyScopedCommands?: string[];
|
|
149
|
+
builtinIds?: string[];
|
|
150
|
+
userCount?: number;
|
|
151
|
+
userSampleIds?: string[];
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface PandoraSignerProfileCapability extends PandoraCapabilityFeature {
|
|
155
|
+
commandsRequiringSecrets?: string[];
|
|
156
|
+
secretBearingCommandCount?: number;
|
|
157
|
+
sampleSecretBearingCommands?: string[];
|
|
158
|
+
builtinIds?: string[];
|
|
159
|
+
signerBackends?: string[];
|
|
160
|
+
implementedBackends?: string[];
|
|
161
|
+
placeholderBackends?: string[];
|
|
162
|
+
readyBuiltinIds?: string[];
|
|
163
|
+
pendingBuiltinIds?: string[];
|
|
164
|
+
degradedBuiltinIds?: string[];
|
|
165
|
+
placeholderBuiltinIds?: string[];
|
|
166
|
+
readyBuiltinCount?: number;
|
|
167
|
+
pendingBuiltinCount?: number;
|
|
168
|
+
degradedBuiltinCount?: number;
|
|
169
|
+
placeholderBuiltinCount?: number;
|
|
170
|
+
backendStatuses?: Record<string, unknown>;
|
|
171
|
+
statusAxes?: Record<string, unknown>;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export interface PandoraPolicyProfileCapabilities {
|
|
175
|
+
policyPacks: PandoraPolicyPackCapability;
|
|
176
|
+
signerProfiles: PandoraSignerProfileCapability;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface PandoraToolPolicySurface {
|
|
180
|
+
name: string;
|
|
181
|
+
canonicalTool: string;
|
|
182
|
+
aliasOf: string | null;
|
|
183
|
+
preferred: boolean;
|
|
184
|
+
policyScopes: string[];
|
|
185
|
+
requiresSecrets: boolean;
|
|
186
|
+
policyPackEligible: boolean;
|
|
187
|
+
signerProfileEligible: boolean;
|
|
188
|
+
supportsRemote: boolean;
|
|
189
|
+
remoteEligible: boolean;
|
|
190
|
+
policyPackStatus: string;
|
|
191
|
+
signerProfileStatus: string;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export interface PandoraPolicyScopeInspection {
|
|
195
|
+
scope: string;
|
|
196
|
+
commands: string[];
|
|
197
|
+
tools: PandoraToolPolicySurface[];
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
export interface PandoraToolContract {
|
|
201
|
+
name: string;
|
|
202
|
+
description: string | null;
|
|
203
|
+
inputSchema: Record<string, unknown>;
|
|
204
|
+
xPandora?: Record<string, unknown> | null;
|
|
205
|
+
commandDescriptor?: PandoraCommandDescriptor | null;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
export interface PandoraRuntimeToolDefinition {
|
|
209
|
+
name: string;
|
|
210
|
+
description: string | null;
|
|
211
|
+
inputSchema: Record<string, unknown>;
|
|
212
|
+
xPandora?: PandoraCommandDescriptor | Record<string, unknown> | null;
|
|
213
|
+
commandDescriptor?: PandoraCommandDescriptor | null;
|
|
214
|
+
policyScopes: string[];
|
|
215
|
+
requiresSecrets: boolean;
|
|
216
|
+
supportsRemote: boolean;
|
|
217
|
+
remoteEligible: boolean;
|
|
218
|
+
canonicalTool: string | null;
|
|
219
|
+
aliasOf: string | null;
|
|
220
|
+
preferred: boolean;
|
|
221
|
+
[key: string]: unknown;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export interface PandoraCompatibilityCatalogSummary {
|
|
225
|
+
mode: 'compatibility-aliases';
|
|
226
|
+
commandCount: number;
|
|
227
|
+
mcpToolCount: number;
|
|
228
|
+
commandNames: string[];
|
|
229
|
+
toolNames: string[];
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
export interface PandoraCompatibilityCatalog {
|
|
233
|
+
mode: 'explicit';
|
|
234
|
+
commandDescriptors: Record<string, PandoraCommandDescriptor>;
|
|
235
|
+
mcpToolDefinitions: PandoraGeneratedMcpToolDefinition[];
|
|
236
|
+
tools: Record<string, PandoraToolContract>;
|
|
237
|
+
summary: PandoraCompatibilityCatalogSummary;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface PandoraContractRegistry {
|
|
241
|
+
artifactVersion?: string;
|
|
242
|
+
schemaVersion: string;
|
|
243
|
+
packageVersion: string;
|
|
244
|
+
commandDescriptorVersion: string;
|
|
245
|
+
summary: Record<string, unknown>;
|
|
246
|
+
backends?: Record<string, unknown>;
|
|
247
|
+
registryDigest?: Record<string, string>;
|
|
248
|
+
tools: Record<string, PandoraToolContract>;
|
|
249
|
+
commandDescriptors?: Record<string, PandoraCommandDescriptor>;
|
|
250
|
+
compatibility?: PandoraCompatibilityCatalog;
|
|
251
|
+
schemas: {
|
|
252
|
+
envelope: Record<string, unknown>;
|
|
253
|
+
definitions: Record<string, unknown>;
|
|
254
|
+
};
|
|
255
|
+
capabilities: {
|
|
256
|
+
schemaVersion: string;
|
|
257
|
+
commandDescriptorVersion: string;
|
|
258
|
+
transports: Record<string, unknown>;
|
|
259
|
+
commandDigests: Record<string, PandoraCommandDescriptor>;
|
|
260
|
+
registryDigest: Record<string, string>;
|
|
261
|
+
policyProfiles?: PandoraPolicyProfileCapabilities;
|
|
262
|
+
[key: string]: unknown;
|
|
263
|
+
};
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export interface PandoraCallToolRawResult {
|
|
267
|
+
content?: Array<{ type?: string; text?: string }>;
|
|
268
|
+
structuredContent?: Record<string, unknown>;
|
|
269
|
+
isError?: boolean;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
export interface PandoraSdkErrorDetails {
|
|
273
|
+
cause?: unknown;
|
|
274
|
+
[key: string]: unknown;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export declare class PandoraSdkError extends Error {
|
|
278
|
+
code: string;
|
|
279
|
+
details?: PandoraSdkErrorDetails;
|
|
280
|
+
cause?: unknown;
|
|
281
|
+
constructor(code: string, message: string, details?: PandoraSdkErrorDetails);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export declare class PandoraToolCallError extends PandoraSdkError {
|
|
285
|
+
sdkCode: string;
|
|
286
|
+
envelope: Record<string, unknown> | null;
|
|
287
|
+
rawResult: PandoraCallToolRawResult | null;
|
|
288
|
+
toolName: string | null;
|
|
289
|
+
toolError: Record<string, unknown> | null;
|
|
290
|
+
constructor(message: string, details?: PandoraSdkErrorDetails);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export interface PandoraStdioBackendOptions {
|
|
294
|
+
command?: string;
|
|
295
|
+
args?: string[];
|
|
296
|
+
cwd?: string;
|
|
297
|
+
env?: Record<string, string>;
|
|
298
|
+
stderr?: 'pipe' | 'inherit' | 'overlapped';
|
|
299
|
+
clientName?: string;
|
|
300
|
+
clientVersion?: string;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
export interface PandoraRemoteBackendOptions {
|
|
304
|
+
url: string | URL;
|
|
305
|
+
authToken?: string;
|
|
306
|
+
headers?: Record<string, string>;
|
|
307
|
+
fetch?: typeof fetch;
|
|
308
|
+
clientName?: string;
|
|
309
|
+
clientVersion?: string;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
export interface PandoraAgentClientFactoryOptions extends PandoraStdioBackendOptions {
|
|
313
|
+
backend?: PandoraMcpBackend;
|
|
314
|
+
catalog?: PandoraContractRegistry;
|
|
315
|
+
mode?: 'local' | 'remote';
|
|
316
|
+
url?: string | URL;
|
|
317
|
+
authToken?: string;
|
|
318
|
+
headers?: Record<string, string>;
|
|
319
|
+
fetch?: typeof fetch;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface PandoraGeneratedCatalogModule {
|
|
323
|
+
manifest: PandoraGeneratedManifest;
|
|
324
|
+
commandDescriptors: Record<string, PandoraCommandDescriptor>;
|
|
325
|
+
mcpToolDefinitions: PandoraGeneratedMcpToolDefinition[];
|
|
326
|
+
contractRegistry: PandoraContractRegistry;
|
|
327
|
+
loadGeneratedManifest(): PandoraGeneratedManifest;
|
|
328
|
+
loadGeneratedCommandDescriptors(): Record<string, PandoraCommandDescriptor>;
|
|
329
|
+
loadGeneratedMcpToolDefinitions(): PandoraGeneratedMcpToolDefinition[];
|
|
330
|
+
loadGeneratedContractRegistry(): PandoraContractRegistry;
|
|
331
|
+
loadGeneratedCapabilities(): PandoraContractRegistry['capabilities'];
|
|
332
|
+
loadGeneratedToolCatalog(): PandoraContractRegistry['tools'];
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export declare class PandoraMcpBackend {
|
|
336
|
+
connect(): Promise<void>;
|
|
337
|
+
close(): Promise<void>;
|
|
338
|
+
listTools(): Promise<PandoraRuntimeToolDefinition[] | Array<Record<string, unknown>>>;
|
|
339
|
+
callTool(name: string, args?: Record<string, unknown>): Promise<PandoraCallToolRawResult>;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
export declare class PandoraStdioBackend extends PandoraMcpBackend {
|
|
343
|
+
constructor(options?: PandoraStdioBackendOptions);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export declare class PandoraRemoteBackend extends PandoraMcpBackend {
|
|
347
|
+
constructor(options: PandoraRemoteBackendOptions);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
export declare class PandoraAgentClient {
|
|
351
|
+
constructor(options: { backend: PandoraMcpBackend; catalog?: PandoraContractRegistry });
|
|
352
|
+
connect(): Promise<this>;
|
|
353
|
+
close(): Promise<void>;
|
|
354
|
+
getManifest(): PandoraGeneratedManifest;
|
|
355
|
+
getCatalog(): PandoraContractRegistry;
|
|
356
|
+
getPolicyProfileCapabilities(): PandoraPolicyProfileCapabilities;
|
|
357
|
+
getPolicyPackCapability(): PandoraPolicyPackCapability;
|
|
358
|
+
getSignerProfileCapability(): PandoraSignerProfileCapability;
|
|
359
|
+
listPolicyScopes(): string[];
|
|
360
|
+
listPolicyScopedCommands(): string[];
|
|
361
|
+
listSignerProfileCommands(): string[];
|
|
362
|
+
inspectPolicyScope(scope: string): PandoraPolicyScopeInspection;
|
|
363
|
+
inspectToolPolicySurface(name: string): PandoraToolPolicySurface;
|
|
364
|
+
listGeneratedTools(): string[];
|
|
365
|
+
getTool(name: string): PandoraToolContract | null;
|
|
366
|
+
requireTool(name: string): PandoraToolContract;
|
|
367
|
+
listTools(): Promise<PandoraRuntimeToolDefinition[]>;
|
|
368
|
+
callToolRaw(name: string, args?: Record<string, unknown>): Promise<PandoraCallToolRawResult>;
|
|
369
|
+
callToolEnvelope(name: string, args?: Record<string, unknown>): Promise<Record<string, unknown>>;
|
|
370
|
+
callToolData(name: string, args?: Record<string, unknown>): Promise<unknown>;
|
|
371
|
+
getBootstrapEnvelope(args?: Record<string, unknown>): Promise<Record<string, unknown>>;
|
|
372
|
+
getBootstrap(args?: Record<string, unknown>): Promise<unknown>;
|
|
373
|
+
callTool(name: string, args?: Record<string, unknown>): Promise<Record<string, unknown>>;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
export declare function loadGeneratedContractRegistry(): PandoraContractRegistry;
|
|
377
|
+
export declare function loadGeneratedManifest(): PandoraGeneratedManifest;
|
|
378
|
+
export declare function loadGeneratedCommandDescriptors(): Record<string, PandoraCommandDescriptor>;
|
|
379
|
+
export declare function loadGeneratedMcpToolDefinitions(): PandoraGeneratedMcpToolDefinition[];
|
|
380
|
+
export declare function loadGeneratedCapabilities(): PandoraContractRegistry['capabilities'];
|
|
381
|
+
export declare function loadGeneratedToolCatalog(): PandoraContractRegistry['tools'];
|
|
382
|
+
export declare function normalizeStructuredEnvelope(result: PandoraCallToolRawResult): Record<string, unknown>;
|
|
383
|
+
export declare function normalizeRuntimeToolDefinition(
|
|
384
|
+
tool: Record<string, unknown>,
|
|
385
|
+
catalog?: PandoraContractRegistry,
|
|
386
|
+
): PandoraRuntimeToolDefinition;
|
|
387
|
+
export declare function getPolicyProfileCapabilities(catalog?: PandoraContractRegistry): PandoraPolicyProfileCapabilities;
|
|
388
|
+
export declare function getPolicyPackCapability(catalog?: PandoraContractRegistry): PandoraPolicyPackCapability;
|
|
389
|
+
export declare function getSignerProfileCapability(catalog?: PandoraContractRegistry): PandoraSignerProfileCapability;
|
|
390
|
+
export declare function listPolicyScopes(catalog?: PandoraContractRegistry): string[];
|
|
391
|
+
export declare function listPolicyScopedCommands(catalog?: PandoraContractRegistry): string[];
|
|
392
|
+
export declare function listSignerProfileCommands(catalog?: PandoraContractRegistry): string[];
|
|
393
|
+
export declare function inspectPolicyScope(scope: string, catalog?: PandoraContractRegistry): PandoraPolicyScopeInspection;
|
|
394
|
+
export declare function inspectToolPolicySurface(name: string, catalog?: PandoraContractRegistry): PandoraToolPolicySurface;
|
|
395
|
+
export declare function createPandoraStdioBackend(options?: PandoraStdioBackendOptions): PandoraStdioBackend;
|
|
396
|
+
export declare function createPandoraRemoteBackend(options: PandoraRemoteBackendOptions): PandoraRemoteBackend;
|
|
397
|
+
export declare function createLocalPandoraAgentClient(options?: PandoraStdioBackendOptions & { catalog?: PandoraContractRegistry }): PandoraAgentClient;
|
|
398
|
+
export declare function createRemotePandoraAgentClient(options: PandoraRemoteBackendOptions & { catalog?: PandoraContractRegistry }): PandoraAgentClient;
|
|
399
|
+
export declare function createPandoraAgentClient(options?: PandoraAgentClientFactoryOptions): PandoraAgentClient;
|
|
400
|
+
export declare function connectPandoraAgentClient(options?: PandoraAgentClientFactoryOptions): Promise<PandoraAgentClient>;
|
|
401
|
+
export declare const generated: PandoraGeneratedCatalogModule;
|