@hsuite/smart-engines-sdk 3.10.0 → 3.12.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/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/dist/index.d.ts +147 -47
- package/dist/index.js +404 -94
- package/dist/index.js.map +1 -1
- package/dist/nestjs/index.d.ts +90 -46
- package/dist/nestjs/index.js +190 -94
- package/dist/nestjs/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -252,7 +252,7 @@ class MyService {
|
|
|
252
252
|
ValidatorRules` section, two new rows in the "Available clients" table,
|
|
253
253
|
and a pointer to the full developer guide.
|
|
254
254
|
- Complete developer guide added at
|
|
255
|
-
`docs/developers/libs/rules-engine.md#smart-app-sdk-guide` — covers
|
|
255
|
+
`docs/internal/developers/libs/rules-engine.md#smart-app-sdk-guide` — covers
|
|
256
256
|
authoring paths, composer reference tables, publish + entity-create
|
|
257
257
|
end-to-end flow, `baas.rules.*` + `baas.entities.*` reference, and 7
|
|
258
258
|
common pitfalls.
|
package/README.md
CHANGED
|
@@ -235,7 +235,7 @@ const sim = await baas.rules.simulate({ ruleRef, action: 'mint', context: { amou
|
|
|
235
235
|
// sim.isValid === true | false (+ reason)
|
|
236
236
|
```
|
|
237
237
|
|
|
238
|
-
Full reference: [Smart-App SDK Guide](../../docs/developers/libs/rules-engine.md#smart-app-sdk-guide)
|
|
238
|
+
Full reference: [Smart-App SDK Guide](../../docs/internal/developers/libs/rules-engine.md#smart-app-sdk-guide)
|
|
239
239
|
|
|
240
240
|
---
|
|
241
241
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1954,14 +1954,19 @@ export declare class ClusterDiscoveryClient {
|
|
|
1954
1954
|
private verifyAgainstTrustAnchor;
|
|
1955
1955
|
private pickRandomIndex;
|
|
1956
1956
|
}
|
|
1957
|
+
export type HttpCallOptions = {
|
|
1958
|
+
customerToken?: string;
|
|
1959
|
+
headers?: Record<string, string>;
|
|
1960
|
+
};
|
|
1957
1961
|
export type HttpClient = {
|
|
1958
|
-
post<T = any>(path: string, body: unknown): Promise<T>;
|
|
1959
|
-
get<T = any>(path: string): Promise<T>;
|
|
1960
|
-
put<T = any>(path: string, body: unknown): Promise<T>;
|
|
1961
|
-
patch<T = any>(path: string, body: unknown): Promise<T>;
|
|
1962
|
-
delete<T = any>(path: string): Promise<T>;
|
|
1963
|
-
getText(path: string): Promise<string>;
|
|
1964
|
-
|
|
1962
|
+
post<T = any>(path: string, body: unknown, opts?: HttpCallOptions): Promise<T>;
|
|
1963
|
+
get<T = any>(path: string, opts?: HttpCallOptions): Promise<T>;
|
|
1964
|
+
put<T = any>(path: string, body: unknown, opts?: HttpCallOptions): Promise<T>;
|
|
1965
|
+
patch<T = any>(path: string, body: unknown, opts?: HttpCallOptions): Promise<T>;
|
|
1966
|
+
delete<T = any>(path: string, opts?: HttpCallOptions): Promise<T>;
|
|
1967
|
+
getText(path: string, opts?: HttpCallOptions): Promise<string>;
|
|
1968
|
+
getBinary(path: string, opts?: HttpCallOptions): Promise<Uint8Array>;
|
|
1969
|
+
upload<T = any>(path: string, file: Blob | Buffer, filename: string, metadata?: Record<string, string>, fieldName?: string, opts?: HttpCallOptions): Promise<T>;
|
|
1965
1970
|
setAuthToken(token: string | undefined): void;
|
|
1966
1971
|
getAuthToken(): string | undefined;
|
|
1967
1972
|
};
|
|
@@ -3874,45 +3879,66 @@ export type AgentWithdrawRequest = {
|
|
|
3874
3879
|
amount: string;
|
|
3875
3880
|
destination: string;
|
|
3876
3881
|
};
|
|
3882
|
+
export type AgentExecuteRequest = {
|
|
3883
|
+
capability: string;
|
|
3884
|
+
chain?: string;
|
|
3885
|
+
params: Record<string, unknown>;
|
|
3886
|
+
};
|
|
3887
|
+
export type AgentExecuteStepResult = {
|
|
3888
|
+
kind: "onchain" | "offchain";
|
|
3889
|
+
status: string;
|
|
3890
|
+
transactionBytes?: string;
|
|
3891
|
+
ref?: string;
|
|
3892
|
+
detail?: Record<string, unknown>;
|
|
3893
|
+
};
|
|
3894
|
+
export type AgentExecuteResponse = {
|
|
3895
|
+
capability: string;
|
|
3896
|
+
steps: AgentExecuteStepResult[];
|
|
3897
|
+
awaitingApproval?: boolean;
|
|
3898
|
+
pendingOpId?: string;
|
|
3899
|
+
};
|
|
3877
3900
|
export type AgentPreparedTransactionResponse = PreparedTransactionResponse & {
|
|
3878
3901
|
success: true;
|
|
3879
3902
|
};
|
|
3880
3903
|
export declare class AgentsClient {
|
|
3881
3904
|
private readonly http;
|
|
3882
3905
|
constructor(http: HttpClient);
|
|
3883
|
-
register(request: AgentRegisterRequest): Promise<AgentInfo>;
|
|
3884
|
-
get(agentId: string): Promise<AgentInfo>;
|
|
3885
|
-
list(): Promise<{
|
|
3906
|
+
register(request: AgentRegisterRequest, opts?: HttpCallOptions): Promise<AgentInfo>;
|
|
3907
|
+
get(agentId: string, opts?: HttpCallOptions): Promise<AgentInfo>;
|
|
3908
|
+
list(opts?: HttpCallOptions): Promise<{
|
|
3886
3909
|
agents: AgentInfo[];
|
|
3887
3910
|
total: number;
|
|
3888
3911
|
}>;
|
|
3889
|
-
fund(agentId: string, request: AgentFundRequest): Promise<AgentPreparedTransactionResponse>;
|
|
3890
|
-
trade(agentId: string, request: AgentTradeRequest): Promise<AgentPreparedTransactionResponse>;
|
|
3891
|
-
withdraw(agentId: string, request: AgentWithdrawRequest): Promise<AgentPreparedTransactionResponse>;
|
|
3892
|
-
|
|
3912
|
+
fund(agentId: string, request: AgentFundRequest, opts?: HttpCallOptions): Promise<AgentPreparedTransactionResponse>;
|
|
3913
|
+
trade(agentId: string, request: AgentTradeRequest, opts?: HttpCallOptions): Promise<AgentPreparedTransactionResponse>;
|
|
3914
|
+
withdraw(agentId: string, request: AgentWithdrawRequest, opts?: HttpCallOptions): Promise<AgentPreparedTransactionResponse>;
|
|
3915
|
+
execute(agentId: string, request: AgentExecuteRequest, opts?: HttpCallOptions): Promise<AgentExecuteResponse & {
|
|
3916
|
+
success: true;
|
|
3917
|
+
}>;
|
|
3918
|
+
pause(agentId: string, opts?: HttpCallOptions): Promise<{
|
|
3893
3919
|
success: boolean;
|
|
3894
3920
|
status: string;
|
|
3895
3921
|
}>;
|
|
3896
|
-
resume(agentId: string): Promise<{
|
|
3922
|
+
resume(agentId: string, opts?: HttpCallOptions): Promise<{
|
|
3897
3923
|
success: boolean;
|
|
3898
3924
|
status: string;
|
|
3899
3925
|
}>;
|
|
3900
|
-
revoke(agentId: string): Promise<{
|
|
3926
|
+
revoke(agentId: string, opts?: HttpCallOptions): Promise<{
|
|
3901
3927
|
success: boolean;
|
|
3902
3928
|
status: string;
|
|
3903
3929
|
}>;
|
|
3904
|
-
updateRules(agentId: string, rules: Partial<AgentRules
|
|
3905
|
-
getEvents(agentId: string): Promise<{
|
|
3930
|
+
updateRules(agentId: string, rules: Partial<AgentRules>, opts?: HttpCallOptions): Promise<AgentInfo>;
|
|
3931
|
+
getEvents(agentId: string, opts?: HttpCallOptions): Promise<{
|
|
3906
3932
|
events: AgentEvent[];
|
|
3907
3933
|
total: number;
|
|
3908
3934
|
}>;
|
|
3909
|
-
getBalances(agentId: string): Promise<{
|
|
3935
|
+
getBalances(agentId: string, opts?: HttpCallOptions): Promise<{
|
|
3910
3936
|
balances: AgentBalance[];
|
|
3911
3937
|
}>;
|
|
3912
|
-
approve(agentId: string, operationId: string): Promise<{
|
|
3938
|
+
approve(agentId: string, operationId: string, opts?: HttpCallOptions): Promise<{
|
|
3913
3939
|
success: boolean;
|
|
3914
3940
|
}>;
|
|
3915
|
-
reject(agentId: string, operationId: string): Promise<{
|
|
3941
|
+
reject(agentId: string, operationId: string, opts?: HttpCallOptions): Promise<{
|
|
3916
3942
|
success: boolean;
|
|
3917
3943
|
}>;
|
|
3918
3944
|
}
|
|
@@ -4128,6 +4154,13 @@ export type BaasFunctionResources = {
|
|
|
4128
4154
|
timeout: number;
|
|
4129
4155
|
maxConcurrency?: number;
|
|
4130
4156
|
};
|
|
4157
|
+
export type BaasSignedCode = {
|
|
4158
|
+
code: string;
|
|
4159
|
+
signature: string;
|
|
4160
|
+
publicKey: string;
|
|
4161
|
+
timestamp: string;
|
|
4162
|
+
hash: string;
|
|
4163
|
+
};
|
|
4131
4164
|
export type BaasFunctionDeployRequest = {
|
|
4132
4165
|
name: string;
|
|
4133
4166
|
description?: string;
|
|
@@ -4141,6 +4174,15 @@ export type BaasFunctionDeployRequest = {
|
|
|
4141
4174
|
}>;
|
|
4142
4175
|
resources?: Partial<BaasFunctionResources>;
|
|
4143
4176
|
environment?: Record<string, string>;
|
|
4177
|
+
signedCode?: BaasSignedCode;
|
|
4178
|
+
};
|
|
4179
|
+
export type BaasFunctionEvalRequest = {
|
|
4180
|
+
name?: string;
|
|
4181
|
+
code: string;
|
|
4182
|
+
runtime?: BaasFunctionRuntime;
|
|
4183
|
+
resources?: Partial<BaasFunctionResources>;
|
|
4184
|
+
input?: Record<string, unknown>;
|
|
4185
|
+
signedCode?: BaasSignedCode;
|
|
4144
4186
|
};
|
|
4145
4187
|
export type BaasFunctionDeployResult = {
|
|
4146
4188
|
functionId: string;
|
|
@@ -5354,6 +5396,58 @@ declare function xlmToStroops(xlm: string | number): string;
|
|
|
5354
5396
|
declare function validateBitcoinAddress(address: string): boolean;
|
|
5355
5397
|
declare function satoshisToBtc(satoshis: string | number): string;
|
|
5356
5398
|
declare function btcToSatoshis(btc: string | number): string;
|
|
5399
|
+
export type ModelProvider = "anthropic" | "openai" | "gemini";
|
|
5400
|
+
export type ChatMessage = {
|
|
5401
|
+
role: "system" | "user" | "assistant";
|
|
5402
|
+
content: string;
|
|
5403
|
+
};
|
|
5404
|
+
export type InferArgs = {
|
|
5405
|
+
system?: string;
|
|
5406
|
+
messages: ChatMessage[];
|
|
5407
|
+
maxTokens?: number;
|
|
5408
|
+
};
|
|
5409
|
+
export type InferResult = {
|
|
5410
|
+
ok: boolean;
|
|
5411
|
+
text?: string;
|
|
5412
|
+
error?: string;
|
|
5413
|
+
raw?: unknown;
|
|
5414
|
+
};
|
|
5415
|
+
export type IModelProvider = {
|
|
5416
|
+
readonly provider: ModelProvider;
|
|
5417
|
+
infer(args: InferArgs): Promise<InferResult>;
|
|
5418
|
+
};
|
|
5419
|
+
export declare function createAnthropicProvider(opts: {
|
|
5420
|
+
apiKey: string;
|
|
5421
|
+
model: string;
|
|
5422
|
+
}): IModelProvider;
|
|
5423
|
+
export declare function createOpenAiProvider(opts: {
|
|
5424
|
+
apiKey: string;
|
|
5425
|
+
model: string;
|
|
5426
|
+
}): IModelProvider;
|
|
5427
|
+
export declare function createGeminiProvider(opts: {
|
|
5428
|
+
apiKey: string;
|
|
5429
|
+
model: string;
|
|
5430
|
+
}): IModelProvider;
|
|
5431
|
+
export declare function createModelProvider(opts: {
|
|
5432
|
+
provider: ModelProvider;
|
|
5433
|
+
apiKey: string;
|
|
5434
|
+
model: string;
|
|
5435
|
+
}): IModelProvider;
|
|
5436
|
+
export type InferJsonResult<T> = {
|
|
5437
|
+
ok: boolean;
|
|
5438
|
+
value?: T;
|
|
5439
|
+
error?: string;
|
|
5440
|
+
raw?: string;
|
|
5441
|
+
};
|
|
5442
|
+
export declare function inferJson<T = unknown>(opts: {
|
|
5443
|
+
provider: ModelProvider;
|
|
5444
|
+
apiKey: string;
|
|
5445
|
+
model: string;
|
|
5446
|
+
system?: string;
|
|
5447
|
+
input: unknown;
|
|
5448
|
+
maxTokens?: number;
|
|
5449
|
+
parse?: (raw: unknown) => T;
|
|
5450
|
+
}): Promise<InferJsonResult<T>>;
|
|
5357
5451
|
export type StateRootResponse = {
|
|
5358
5452
|
appId: string;
|
|
5359
5453
|
stateRoot: string;
|
|
@@ -5410,21 +5504,21 @@ export declare class StorageClient {
|
|
|
5410
5504
|
private readonly http;
|
|
5411
5505
|
private readonly getAppId;
|
|
5412
5506
|
constructor(http: HttpClient, getAppId: () => string);
|
|
5413
|
-
upload(file: Blob | Buffer, filename: string, metadata?: Record<string, string
|
|
5414
|
-
download(cid: string): Promise<
|
|
5415
|
-
getMetadata(cid: string): Promise<BaasFileMetadata>;
|
|
5416
|
-
delete(cid: string): Promise<{
|
|
5507
|
+
upload(file: Blob | Buffer, filename: string, metadata?: Record<string, string>, opts?: HttpCallOptions): Promise<BaasUploadResult>;
|
|
5508
|
+
download(cid: string, opts?: HttpCallOptions): Promise<Uint8Array>;
|
|
5509
|
+
getMetadata(cid: string, opts?: HttpCallOptions): Promise<BaasFileMetadata>;
|
|
5510
|
+
delete(cid: string, opts?: HttpCallOptions): Promise<{
|
|
5417
5511
|
success: boolean;
|
|
5418
5512
|
}>;
|
|
5419
5513
|
listFiles(pagination?: {
|
|
5420
5514
|
limit?: number;
|
|
5421
5515
|
offset?: number;
|
|
5422
|
-
}): Promise<{
|
|
5516
|
+
}, opts?: HttpCallOptions): Promise<{
|
|
5423
5517
|
files: BaasFileInfo[];
|
|
5424
5518
|
total: number;
|
|
5425
5519
|
}>;
|
|
5426
|
-
getUsage(): Promise<BaasStorageUsage>;
|
|
5427
|
-
exists(cid: string): Promise<{
|
|
5520
|
+
getUsage(opts?: HttpCallOptions): Promise<BaasStorageUsage>;
|
|
5521
|
+
exists(cid: string, opts?: HttpCallOptions): Promise<{
|
|
5428
5522
|
exists: boolean;
|
|
5429
5523
|
cid: string;
|
|
5430
5524
|
}>;
|
|
@@ -5433,57 +5527,59 @@ export declare class FunctionsClient {
|
|
|
5433
5527
|
private readonly http;
|
|
5434
5528
|
private readonly getAppId;
|
|
5435
5529
|
constructor(http: HttpClient, getAppId: () => string);
|
|
5436
|
-
|
|
5437
|
-
|
|
5438
|
-
|
|
5530
|
+
signCode(code: string): Promise<BaasSignedCode>;
|
|
5531
|
+
deploy(request: BaasFunctionDeployRequest, opts?: HttpCallOptions): Promise<BaasFunctionDeployResult>;
|
|
5532
|
+
invoke(functionId: string, payload?: unknown, opts?: HttpCallOptions): Promise<BaasFunctionResult>;
|
|
5533
|
+
eval(request: BaasFunctionEvalRequest, opts?: HttpCallOptions): Promise<BaasFunctionResult>;
|
|
5534
|
+
list(opts?: HttpCallOptions): Promise<{
|
|
5439
5535
|
functions: BaasFunctionInfo[];
|
|
5440
5536
|
total: number;
|
|
5441
5537
|
}>;
|
|
5442
|
-
get(functionId: string): Promise<BaasFunctionInfo>;
|
|
5443
|
-
update(functionId: string, updates: Partial<BaasFunctionDeployRequest
|
|
5444
|
-
delete(functionId: string): Promise<{
|
|
5538
|
+
get(functionId: string, opts?: HttpCallOptions): Promise<BaasFunctionInfo>;
|
|
5539
|
+
update(functionId: string, updates: Partial<BaasFunctionDeployRequest>, opts?: HttpCallOptions): Promise<BaasFunctionInfo>;
|
|
5540
|
+
delete(functionId: string, opts?: HttpCallOptions): Promise<{
|
|
5445
5541
|
success: boolean;
|
|
5446
5542
|
}>;
|
|
5447
|
-
getLogs(functionId: string, options?: BaasFunctionLogOptions): Promise<{
|
|
5543
|
+
getLogs(functionId: string, options?: BaasFunctionLogOptions, opts?: HttpCallOptions): Promise<{
|
|
5448
5544
|
logs: BaasFunctionLog[];
|
|
5449
5545
|
total: number;
|
|
5450
5546
|
}>;
|
|
5451
|
-
getStats(): Promise<any>;
|
|
5547
|
+
getStats(opts?: HttpCallOptions): Promise<any>;
|
|
5452
5548
|
}
|
|
5453
5549
|
export declare class MessagingClient {
|
|
5454
5550
|
private readonly http;
|
|
5455
5551
|
private readonly getAppId;
|
|
5456
5552
|
constructor(http: HttpClient, getAppId: () => string);
|
|
5457
|
-
createChannel(config: BaasChannelConfig): Promise<BaasChannelConfig & {
|
|
5553
|
+
createChannel(config: BaasChannelConfig, opts?: HttpCallOptions): Promise<BaasChannelConfig & {
|
|
5458
5554
|
channelId: string;
|
|
5459
5555
|
}>;
|
|
5460
|
-
deleteChannel(channelId: string): Promise<{
|
|
5556
|
+
deleteChannel(channelId: string, opts?: HttpCallOptions): Promise<{
|
|
5461
5557
|
success: boolean;
|
|
5462
5558
|
}>;
|
|
5463
|
-
getChannel(channelId: string): Promise<BaasChannelConfig & {
|
|
5559
|
+
getChannel(channelId: string, opts?: HttpCallOptions): Promise<BaasChannelConfig & {
|
|
5464
5560
|
channelId: string;
|
|
5465
5561
|
messageCount: number;
|
|
5466
5562
|
}>;
|
|
5467
|
-
listChannels(): Promise<{
|
|
5563
|
+
listChannels(opts?: HttpCallOptions): Promise<{
|
|
5468
5564
|
channels: Array<BaasChannelConfig & {
|
|
5469
5565
|
channelId: string;
|
|
5470
5566
|
}>;
|
|
5471
5567
|
total: number;
|
|
5472
5568
|
}>;
|
|
5473
|
-
publish(channel: string, message: Record<string, unknown>, metadata?: Record<string, unknown
|
|
5474
|
-
getHistory(channel: string, options?: BaasHistoryOptions): Promise<{
|
|
5569
|
+
publish(channel: string, message: Record<string, unknown>, metadata?: Record<string, unknown>, opts?: HttpCallOptions): Promise<BaasPublishResult>;
|
|
5570
|
+
getHistory(channel: string, options?: BaasHistoryOptions, opts?: HttpCallOptions): Promise<{
|
|
5475
5571
|
messages: BaasMessage[];
|
|
5476
5572
|
total: number;
|
|
5477
5573
|
hasMore: boolean;
|
|
5478
5574
|
}>;
|
|
5479
|
-
setPresence(channel: string, member: BaasPresenceMember): Promise<{
|
|
5575
|
+
setPresence(channel: string, member: BaasPresenceMember, opts?: HttpCallOptions): Promise<{
|
|
5480
5576
|
success: boolean;
|
|
5481
5577
|
}>;
|
|
5482
|
-
removePresence(channel: string, clientId: string): Promise<{
|
|
5578
|
+
removePresence(channel: string, clientId: string, opts?: HttpCallOptions): Promise<{
|
|
5483
5579
|
success: boolean;
|
|
5484
5580
|
}>;
|
|
5485
|
-
getPresence(channel: string): Promise<BaasPresenceInfo>;
|
|
5486
|
-
getStats(): Promise<any>;
|
|
5581
|
+
getPresence(channel: string, opts?: HttpCallOptions): Promise<BaasPresenceInfo>;
|
|
5582
|
+
getStats(opts?: HttpCallOptions): Promise<any>;
|
|
5487
5583
|
}
|
|
5488
5584
|
export type CustomerSessionChallenge = {
|
|
5489
5585
|
challenge: string;
|
|
@@ -25514,6 +25610,9 @@ declare namespace subscription {
|
|
|
25514
25610
|
declare namespace faucet {
|
|
25515
25611
|
export { FaucetChallenge, FaucetClient, FaucetDispenseRequest, FaucetDispenseResult, FaucetDispensed, FaucetRateLimited, FaucetStatusResponse, FaucetTrustlineRequired };
|
|
25516
25612
|
}
|
|
25613
|
+
declare namespace ai {
|
|
25614
|
+
export { ChatMessage, IModelProvider, InferArgs, InferJsonResult, InferResult, ModelProvider, createAnthropicProvider, createGeminiProvider, createModelProvider, createOpenAiProvider, inferJson };
|
|
25615
|
+
}
|
|
25517
25616
|
declare namespace bridge {
|
|
25518
25617
|
export { BridgeChain, BridgeClaimRecord, BridgeClaimStatus, BridgeClient, BridgeConfig, BridgeDestinationConfig, BridgeDirection, BridgeGenesisBinding, BridgeMode, BridgeOperationConfig, BridgeRulesConfig, BridgeSourceConfig, BridgeStatus, BridgeSupply, BridgeTrustLevel, CreateBridgeRequest, CreateBridgeResponse, ListBridgesOptions, ListBridgesResponse, ListClaimsOptions, ListClaimsResponse, PortRequest, PortResult, ReturnRequest };
|
|
25519
25618
|
}
|
|
@@ -25542,7 +25641,7 @@ declare namespace personhood {
|
|
|
25542
25641
|
export { PERSONHOOD_VERIFIER_NOT_CONFIGURED, PersonhoodAttestationMethod, PersonhoodCert, PersonhoodClient, PersonhoodProof, PersonhoodVerifyParams, isPersonhoodVerifierNotConfigured };
|
|
25543
25642
|
}
|
|
25544
25643
|
declare namespace baas {
|
|
25545
|
-
export { AgentBalance, AgentEvent, AgentFundRequest, AgentInfo, AgentOperation, AgentRegisterRequest, AgentRules, AgentRulesValidationResult, AgentStatus, AgentTradeRequest, AgentWithdrawRequest, AgentsClient, AuthenticateOptions, BaasAppListResponse, BaasAuthConfig, BaasAuthResult, BaasChallengeRequest, BaasChallengeResponse, BaasChannelConfig, BaasClient, BaasClientConfig, BaasConnectToClusterConfig, BaasDeleteResult, BaasDeployRequest, BaasDeployResponse, BaasDocument, BaasEndpoints, BaasError, BaasErrorDetails, BaasErrorResponse, BaasFileInfo, BaasFileMetadata, BaasFindResult, BaasFunctionDeployRequest, BaasFunctionDeployResult, BaasFunctionInfo, BaasFunctionLog, BaasFunctionLogOptions, BaasFunctionResources, BaasFunctionResult, BaasFunctionRuntime, BaasHistoryOptions, BaasInitRequest, BaasInitResponse, BaasInsertResult, BaasMerkleProof, BaasMessage, BaasPresenceInfo, BaasPresenceMember, BaasPublishResult, BaasQueryOptions, BaasReissuePushCredentialsResponse, BaasRevokeKekResponse, BaasRollbackRequest, BaasRotateKekResponse, BaasRuntimeStatus, BaasService, BaasSessionInfo, BaasSetWebhookResponse, BaasStateTransition, BaasStorageUsage, BaasSupportedChain, BaasTriggerType, BaasUpdateResult, BaasUploadFrontendResponse, BaasUploadResult, BaasVerifyRequest, ChannelSubscription, CreateAccountRequest$1 as BaasCreateAccountRequest, CreateAgentRequest, CreateTokenRequest$1 as CreateTokenRequest, CreateTopicRequest, DatabaseClient, DatabaseStatsResponse, DbComparisonOperator, DbDocument, DbQuery, DeployedApp, DeployedAppInfo, DeployedAppLimits, DeployedAppStatus, DeployedAppUsage, DeploymentClient, DeprecateRuleResponse, DocumentProofResponse, EntitiesClient, EntityCreationResult, EntityInfo, EntitySecurityMode, EntityType$1 as BaasEntityType, FunctionsClient, FundWith, LaunchpadEntityRequest, LaunchpadEntityResult, ListEntitiesFilter, ListEntitiesResponse, ListRulesFilter, ListRulesResponse, MessageHandler, MessagingClient, PreparedEntityCreation, PublishRuleResponse, RulesClient, SimulateRuleRequest, StateRootResponse, StateTransitionsResponse, StorageClient, ValidationResult, VersionHistoryResponse, validateAgentRules };
|
|
25644
|
+
export { AgentBalance, AgentEvent, AgentFundRequest, AgentInfo, AgentOperation, AgentRegisterRequest, AgentRules, AgentRulesValidationResult, AgentStatus, AgentTradeRequest, AgentWithdrawRequest, AgentsClient, AuthenticateOptions, BaasAppListResponse, BaasAuthConfig, BaasAuthResult, BaasChallengeRequest, BaasChallengeResponse, BaasChannelConfig, BaasClient, BaasClientConfig, BaasConnectToClusterConfig, BaasDeleteResult, BaasDeployRequest, BaasDeployResponse, BaasDocument, BaasEndpoints, BaasError, BaasErrorDetails, BaasErrorResponse, BaasFileInfo, BaasFileMetadata, BaasFindResult, BaasFunctionDeployRequest, BaasFunctionDeployResult, BaasFunctionEvalRequest, BaasFunctionInfo, BaasFunctionLog, BaasFunctionLogOptions, BaasFunctionResources, BaasFunctionResult, BaasFunctionRuntime, BaasHistoryOptions, BaasInitRequest, BaasInitResponse, BaasInsertResult, BaasMerkleProof, BaasMessage, BaasPresenceInfo, BaasPresenceMember, BaasPublishResult, BaasQueryOptions, BaasReissuePushCredentialsResponse, BaasRevokeKekResponse, BaasRollbackRequest, BaasRotateKekResponse, BaasRuntimeStatus, BaasService, BaasSessionInfo, BaasSetWebhookResponse, BaasSignedCode, BaasStateTransition, BaasStorageUsage, BaasSupportedChain, BaasTriggerType, BaasUpdateResult, BaasUploadFrontendResponse, BaasUploadResult, BaasVerifyRequest, ChannelSubscription, CreateAccountRequest$1 as BaasCreateAccountRequest, CreateAgentRequest, CreateTokenRequest$1 as CreateTokenRequest, CreateTopicRequest, DatabaseClient, DatabaseStatsResponse, DbComparisonOperator, DbDocument, DbQuery, DeployedApp, DeployedAppInfo, DeployedAppLimits, DeployedAppStatus, DeployedAppUsage, DeploymentClient, DeprecateRuleResponse, DocumentProofResponse, EntitiesClient, EntityCreationResult, EntityInfo, EntitySecurityMode, EntityType$1 as BaasEntityType, FunctionsClient, FundWith, LaunchpadEntityRequest, LaunchpadEntityResult, ListEntitiesFilter, ListEntitiesResponse, ListRulesFilter, ListRulesResponse, MessageHandler, MessagingClient, PreparedEntityCreation, PublishRuleResponse, RulesClient, SimulateRuleRequest, StateRootResponse, StateTransitionsResponse, StorageClient, ValidationResult, VersionHistoryResponse, validateAgentRules };
|
|
25546
25645
|
}
|
|
25547
25646
|
declare namespace pqcVerify {
|
|
25548
25647
|
export { FetchRegistryOptions, PqcCertV1, PqcCertV1Schema, PqcCertV1Signer, ValidatorRegistrySnapshot, VerifyResult, fetchRegistrySnapshot, parsePqcCert, verifyPqcAttestation };
|
|
@@ -25551,6 +25650,7 @@ declare namespace pqcVerify {
|
|
|
25551
25650
|
export {
|
|
25552
25651
|
RetryConfig as ResilienceRetryConfig,
|
|
25553
25652
|
RetryConfig$1 as RetryConfig,
|
|
25653
|
+
ai,
|
|
25554
25654
|
auth,
|
|
25555
25655
|
baas,
|
|
25556
25656
|
bridge,
|