@tangle-network/tcloud 0.1.4 → 0.2.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-HL4CXKET.js +976 -0
- package/dist/{chunk-PILYAKCF.js → chunk-STNZT6YR.js} +4 -2
- package/dist/chunk-VD4RNZOC.js +263 -0
- package/dist/cli.cjs +616 -153
- package/dist/cli.js +3 -2
- package/dist/{shielded-BTi_OftW.d.cts → client-CcuHG7_w.d.cts} +275 -60
- package/dist/{shielded-BTi_OftW.d.ts → client-CcuHG7_w.d.ts} +275 -60
- package/dist/index.cjs +618 -153
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +8 -4
- package/dist/instance.cjs +1235 -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 +616 -153
- package/dist/shielded.d.cts +61 -2
- package/dist/shielded.d.ts +61 -2
- package/dist/shielded.js +2 -1
- package/package.json +14 -2
- package/dist/chunk-KVXWEAK3.js +0 -771
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
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-CcuHG7_w.cjs';
|
|
4
|
+
export { A as AvatarGenerateRequest, b as AvatarGenerateResponse, c as AvatarJobStatus, d as AvatarResult, B as BatchJobResponse, e as BatchRequest, C as ChatCompletion, f as ChatCompletionChunk, g as ChatMessage, h as ChatOptions, i as CompletionOptions, j as CompletionResponse, k as CreditBalance, E as EmbeddingOptions, l as EmbeddingResponse, F as FineTuningJob, m as FineTuningJobOptions, I as ImageGenerateOptions, n as ImageResponse, J as JobEvent, M as Model, O as Operator, o as OperatorInfo, P as PricingTier, p as PrivacyConfig, q as PrivateRouter, r as PrivateRouterConfig, R as RerankOptions, s as RerankResponse, t as RetryConfig, u as RoutingConfig, v as RoutingStrategy, S as ShieldedConfig, w as SpendAuth, x as SpendingLimits, y as TCloudError, z as TierConfig, D as TranscriptionResponse, V as VideoGenerateOptions, G as VideoResponse, W as WatchJobOptions } from './client-CcuHG7_w.cjs';
|
|
3
5
|
import 'viem';
|
|
4
6
|
|
|
5
7
|
declare class TCloud extends TCloudClient {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
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-CcuHG7_w.js';
|
|
4
|
+
export { A as AvatarGenerateRequest, b as AvatarGenerateResponse, c as AvatarJobStatus, d as AvatarResult, B as BatchJobResponse, e as BatchRequest, C as ChatCompletion, f as ChatCompletionChunk, g as ChatMessage, h as ChatOptions, i as CompletionOptions, j as CompletionResponse, k as CreditBalance, E as EmbeddingOptions, l as EmbeddingResponse, F as FineTuningJob, m as FineTuningJobOptions, I as ImageGenerateOptions, n as ImageResponse, J as JobEvent, M as Model, O as Operator, o as OperatorInfo, P as PricingTier, p as PrivacyConfig, q as PrivateRouter, r as PrivateRouterConfig, R as RerankOptions, s as RerankResponse, t as RetryConfig, u as RoutingConfig, v as RoutingStrategy, S as ShieldedConfig, w as SpendAuth, x as SpendingLimits, y as TCloudError, z as TierConfig, D as TranscriptionResponse, V as VideoGenerateOptions, G as VideoResponse, W as WatchJobOptions } from './client-CcuHG7_w.js';
|
|
3
5
|
import 'viem';
|
|
4
6
|
|
|
5
7
|
declare class TCloud extends TCloudClient {
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
import {
|
|
2
2
|
TCloud
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-STNZT6YR.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-VD4RNZOC.js";
|
|
10
|
+
import {
|
|
11
|
+
PrivateRouter,
|
|
12
|
+
TCloudClient,
|
|
13
|
+
TCloudError
|
|
14
|
+
} from "./chunk-HL4CXKET.js";
|
|
12
15
|
export {
|
|
16
|
+
PrivateRouter,
|
|
13
17
|
TCloud,
|
|
14
18
|
TCloudClient,
|
|
15
19
|
TCloudError,
|