@tangle-network/tcloud 0.1.4 → 0.3.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 +69 -10
- package/dist/chunk-ADGH2R2R.js +263 -0
- package/dist/chunk-LN7XX5KG.js +1176 -0
- package/dist/{chunk-PILYAKCF.js → chunk-W7PUZZRE.js} +4 -2
- package/dist/cli.cjs +969 -193
- package/dist/cli.js +141 -26
- package/dist/client-DskWX_BT.d.cts +1117 -0
- package/dist/client-DskWX_BT.d.ts +1117 -0
- package/dist/index.cjs +835 -169
- package/dist/index.d.cts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +10 -4
- package/dist/instance.cjs +1434 -0
- package/dist/instance.d.cts +110 -0
- package/dist/instance.d.ts +110 -0
- package/dist/instance.js +229 -0
- package/dist/shielded.cjs +831 -169
- package/dist/shielded.d.cts +61 -2
- package/dist/shielded.d.ts +61 -2
- package/dist/shielded.js +2 -1
- package/package.json +15 -2
- package/dist/chunk-KVXWEAK3.js +0 -771
- package/dist/shielded-BTi_OftW.d.cts +0 -513
- package/dist/shielded-BTi_OftW.d.ts +0 -513
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { ShieldedWallet, generateWallet } from './shielded.cjs';
|
|
2
|
+
export { createShieldedClient, estimateCost, signSpendAuth } from './shielded.cjs';
|
|
3
|
+
import { T as TCloudClient, a as TCloudConfig } from './client-DskWX_BT.cjs';
|
|
4
|
+
export { A as ApiKeyInfo, b as AvatarGenerateRequest, c as AvatarGenerateResponse, d as AvatarJobStatus, e as AvatarResult, B as BatchJobResponse, f as BatchRequest, g as BridgeOptions, h as BridgeSession, C as ChatCompletion, i as ChatCompletionChunk, j as ChatMessage, k as ChatOptions, l as CompletionOptions, m as CompletionResponse, n as CreateKeyOptions, o as CreatedKey, p as CreditBalance, E as EmbeddingOptions, q as EmbeddingResponse, F as FineTuningJob, r as FineTuningJobOptions, G as GatewayOptions, I as ImageGenerateOptions, s as ImageResponse, J as JobEvent, M as Model, O as Operator, t as OperatorInfo, P as PricingTier, u as PrivacyConfig, v as PrivateRouter, w as PrivateRouterConfig, R as RerankOptions, x as RerankResponse, y as RetryConfig, z as RoutingConfig, D as RoutingStrategy, S as ShieldedConfig, H as SpendAuth, K as SpendingLimits, L as TCloudError, N as TierConfig, Q as TranscriptionResponse, U as UpdateKeyOptions, V as VideoGenerateOptions, W as VideoResponse, X as WatchJobOptions } from './client-DskWX_BT.cjs';
|
|
5
|
+
export { AgentProfile, AgentProfileCapabilities, AgentProfileMcpServer, AgentProfileModelHints, AgentProfilePermissionValue, AgentProfilePrompt, AgentProfileResources } from '@tangle-network/sandbox';
|
|
3
6
|
import 'viem';
|
|
4
7
|
|
|
5
8
|
declare class TCloud extends TCloudClient {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { ShieldedWallet, generateWallet } from './shielded.js';
|
|
2
|
+
export { createShieldedClient, estimateCost, signSpendAuth } from './shielded.js';
|
|
3
|
+
import { T as TCloudClient, a as TCloudConfig } from './client-DskWX_BT.js';
|
|
4
|
+
export { A as ApiKeyInfo, b as AvatarGenerateRequest, c as AvatarGenerateResponse, d as AvatarJobStatus, e as AvatarResult, B as BatchJobResponse, f as BatchRequest, g as BridgeOptions, h as BridgeSession, C as ChatCompletion, i as ChatCompletionChunk, j as ChatMessage, k as ChatOptions, l as CompletionOptions, m as CompletionResponse, n as CreateKeyOptions, o as CreatedKey, p as CreditBalance, E as EmbeddingOptions, q as EmbeddingResponse, F as FineTuningJob, r as FineTuningJobOptions, G as GatewayOptions, I as ImageGenerateOptions, s as ImageResponse, J as JobEvent, M as Model, O as Operator, t as OperatorInfo, P as PricingTier, u as PrivacyConfig, v as PrivateRouter, w as PrivateRouterConfig, R as RerankOptions, x as RerankResponse, y as RetryConfig, z as RoutingConfig, D as RoutingStrategy, S as ShieldedConfig, H as SpendAuth, K as SpendingLimits, L as TCloudError, N as TierConfig, Q as TranscriptionResponse, U as UpdateKeyOptions, V as VideoGenerateOptions, W as VideoResponse, X as WatchJobOptions } from './client-DskWX_BT.js';
|
|
5
|
+
export { AgentProfile, AgentProfileCapabilities, AgentProfileMcpServer, AgentProfileModelHints, AgentProfilePermissionValue, AgentProfilePrompt, AgentProfileResources } from '@tangle-network/sandbox';
|
|
3
6
|
import 'viem';
|
|
4
7
|
|
|
5
8
|
declare class TCloud extends TCloudClient {
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
import {
|
|
2
2
|
TCloud
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-W7PUZZRE.js";
|
|
4
4
|
import {
|
|
5
|
-
TCloudClient,
|
|
6
|
-
TCloudError,
|
|
7
5
|
createShieldedClient,
|
|
8
6
|
estimateCost,
|
|
9
7
|
generateWallet,
|
|
10
8
|
signSpendAuth
|
|
11
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ADGH2R2R.js";
|
|
10
|
+
import {
|
|
11
|
+
BridgeSession,
|
|
12
|
+
PrivateRouter,
|
|
13
|
+
TCloudClient,
|
|
14
|
+
TCloudError
|
|
15
|
+
} from "./chunk-LN7XX5KG.js";
|
|
12
16
|
export {
|
|
17
|
+
BridgeSession,
|
|
18
|
+
PrivateRouter,
|
|
13
19
|
TCloud,
|
|
14
20
|
TCloudClient,
|
|
15
21
|
TCloudError,
|