@vertesia/client 0.58.0 → 0.59.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.
@@ -56,4 +56,3 @@ export default class AccountApi extends ApiTopic {
56
56
  }>;
57
57
  getStripeBillingStatus(): Promise<StripeBillingStatusResponse>;
58
58
  }
59
- //# sourceMappingURL=AccountApi.d.ts.map
@@ -5,4 +5,3 @@ export default class AccountsApi extends ApiTopic {
5
5
  create(name: string): Promise<Account>;
6
6
  list(): Promise<Account[]>;
7
7
  }
8
- //# sourceMappingURL=AccountsApi.d.ts.map
@@ -4,4 +4,3 @@ export default class AnalyticsApi extends ApiTopic {
4
4
  constructor(parent: ClientBase);
5
5
  runs(params: RunAnalyticsQuery): Promise<RunAnalyticsResult[]>;
6
6
  }
7
- //# sourceMappingURL=AnalyticsApi.d.ts.map
@@ -40,4 +40,3 @@ export declare class ApiKeysApi extends ApiTopic {
40
40
  */
41
41
  requestPublicKey(payload?: CreatePublicKeyPayload): Promise<string>;
42
42
  }
43
- //# sourceMappingURL=ApiKeysApi.d.ts.map
@@ -8,4 +8,3 @@ export default class CommandsApi extends ApiTopic {
8
8
  isNamespaceAvailable(name: string): Promise<boolean>;
9
9
  initSamples(): Promise<GenericCommandResponse>;
10
10
  }
11
- //# sourceMappingURL=CommandsApi.d.ts.map
@@ -28,4 +28,3 @@ export default class EnvironmentsApi extends ApiTopic {
28
28
  listTrainableModels(id: string): Promise<AIModel[]>;
29
29
  embeddings(id: string, payload?: EmbeddingsOptions): Promise<EmbeddingsResult>;
30
30
  }
31
- //# sourceMappingURL=EnvironmentsApi.d.ts.map
@@ -37,4 +37,3 @@ export declare class AcesApi extends ApiTopic {
37
37
  id: string;
38
38
  }>;
39
39
  }
40
- //# sourceMappingURL=IamApi.d.ts.map
@@ -20,4 +20,3 @@ export declare class InteractionBase<P = any, R = any> {
20
20
  */
21
21
  execute(payload?: InteractionExecutionPayload, onChunk?: (chunk: string) => void): Promise<ExecutionRun<P, R>>;
22
22
  }
23
- //# sourceMappingURL=InteractionBase.d.ts.map
@@ -148,4 +148,3 @@ export default class InteractionsApi extends ApiTopic {
148
148
  */
149
149
  listForks(id: string): Promise<InteractionRef[]>;
150
150
  }
151
- //# sourceMappingURL=InteractionsApi.d.ts.map
@@ -10,4 +10,3 @@ export default class PluginsApi extends ApiTopic {
10
10
  */
11
11
  list(ids?: string[]): Promise<PluginManifest[]>;
12
12
  }
13
- //# sourceMappingURL=PluginsApi.d.ts.map
@@ -19,4 +19,3 @@ declare class IntegrationsConfigurationApi extends ApiTopic {
19
19
  update(projectId: string, integrationId: string, payload: any): Promise<GladiaConfiguration | GithubConfiguration>;
20
20
  }
21
21
  export {};
22
- //# sourceMappingURL=ProjectsApi.d.ts.map
@@ -104,4 +104,3 @@ export interface ListInteractionsResponse {
104
104
  versions: string[];
105
105
  }[];
106
106
  }
107
- //# sourceMappingURL=PromptsApi.d.ts.map
@@ -4,4 +4,3 @@ export declare class RefsApi extends ApiTopic {
4
4
  constructor(parent: ClientBase);
5
5
  resolve(refs: ResolvableRef[]): Promise<ResourceRef[]>;
6
6
  }
7
- //# sourceMappingURL=RefsApi.d.ts.map
@@ -75,4 +75,3 @@ export declare class RunsApi extends ApiTopic {
75
75
  computeFacets(query: ComputeRunFacetPayload): Promise<ComputeRunFacetsResponse>;
76
76
  search(payload: RunSearchPayload): Promise<ExecutionRunRef[]>;
77
77
  }
78
- //# sourceMappingURL=RunsApi.d.ts.map
@@ -5,4 +5,3 @@ export declare class StreamSource {
5
5
  id?: string | undefined;
6
6
  constructor(stream: ReadableStream, name: string, type?: string | undefined, id?: string | undefined);
7
7
  }
8
- //# sourceMappingURL=StreamSource.d.ts.map
@@ -25,4 +25,3 @@ export default class TrainingApi extends ApiTopic {
25
25
  getAndSyncTrainingJob(jobId: string): Promise<TrainingJob>;
26
26
  setDataset(sessionId: string, name?: string): Promise<any>;
27
27
  }
28
- //# sourceMappingURL=TrainingApi.d.ts.map
@@ -4,4 +4,3 @@ export default class UsersApi extends ApiTopic {
4
4
  constructor(parent: ClientBase);
5
5
  retrieve(userId: string): Promise<User>;
6
6
  }
7
- //# sourceMappingURL=UsersApi.d.ts.map
@@ -101,4 +101,3 @@ export declare class VertesiaClient extends AbstractFetchClient<VertesiaClient>
101
101
  commands: CommandsApi;
102
102
  plugins: PluginsApi;
103
103
  }
104
- //# sourceMappingURL=client.d.ts.map
@@ -34,4 +34,3 @@ export declare function executeInteractionAsync(client: VertesiaClient, payload:
34
34
  runId: string;
35
35
  workflowId: string;
36
36
  }>;
37
- //# sourceMappingURL=execute.d.ts.map
@@ -5,4 +5,3 @@ export type { ComputePromptFacetsResponse, ListInteractionsResponse } from './Pr
5
5
  export type { ComputeRunFacetsResponse, FilterOption } from './RunsApi.js';
6
6
  export * from "./store/index.js";
7
7
  export * from "./StreamSource.js";
8
- //# sourceMappingURL=index.d.ts.map
@@ -7,4 +7,3 @@ import { StreamSource } from "../StreamSource.js";
7
7
  export declare class NodeStreamSource extends StreamSource {
8
8
  constructor(stream: Readable, name: string, type?: string, id?: string);
9
9
  }
10
- //# sourceMappingURL=NodeStreamSource.d.ts.map
@@ -1,2 +1 @@
1
1
  export * from "./NodeStreamSource.js";
2
- //# sourceMappingURL=index.d.ts.map
@@ -4,4 +4,3 @@ export declare class AgentsApi extends ApiTopic {
4
4
  constructor(parent: ClientBase);
5
5
  deploy(payload: CreateAgentDeploymentRequest): Promise<void>;
6
6
  }
7
- //# sourceMappingURL=AgentsApi.d.ts.map
@@ -15,4 +15,3 @@ export declare class AnalyzeDocApi extends ApiTopic {
15
15
  url: string;
16
16
  }>;
17
17
  }
18
- //# sourceMappingURL=AnalyzeDocApi.d.ts.map
@@ -35,4 +35,3 @@ export declare class CollectionsApi extends ApiTopic {
35
35
  }>;
36
36
  delete(id: string): Promise<any>;
37
37
  }
38
- //# sourceMappingURL=CollectionsApi.d.ts.map
@@ -8,4 +8,3 @@ export declare class CommandsApi extends ApiTopic {
8
8
  constructor(parent: ClientBase);
9
9
  embeddings: EmbeddingsApi;
10
10
  }
11
- //# sourceMappingURL=CommandsApi.d.ts.map
@@ -10,4 +10,3 @@ export declare class EmbeddingsApi extends ApiTopic {
10
10
  disable(type: SupportedEmbeddingTypes): Promise<GenericCommandResponse>;
11
11
  recalculate(type: SupportedEmbeddingTypes): Promise<GenericCommandResponse>;
12
12
  }
13
- //# sourceMappingURL=EmbeddingsApi.d.ts.map
@@ -40,4 +40,3 @@ export declare class FilesApi extends ApiTopic {
40
40
  uploadMemoryPack(source: StreamSource | File): Promise<string>;
41
41
  downloadMemoryPack(name: string, gunzip?: boolean): Promise<ReadableStream<Uint8Array>>;
42
42
  }
43
- //# sourceMappingURL=FilesApi.d.ts.map
@@ -105,4 +105,3 @@ export declare class ObjectsApi extends ApiTopic {
105
105
  exportProperties(payload: ExportPropertiesPayload): Promise<ExportPropertiesResponse>;
106
106
  setEmbedding(id: string, type: SupportedEmbeddingTypes, payload: Embedding): Promise<Record<SupportedEmbeddingTypes, Embedding>>;
107
107
  }
108
- //# sourceMappingURL=ObjectsApi.d.ts.map
@@ -21,4 +21,3 @@ export declare class TypesApi extends ApiTopic {
21
21
  create(payload: CreateContentObjectTypePayload): Promise<ContentObjectType>;
22
22
  delete(id: string): Promise<any>;
23
23
  }
24
- //# sourceMappingURL=TypesApi.d.ts.map
@@ -45,4 +45,3 @@ export declare class WorkflowsDefinitionApi extends ApiTopic {
45
45
  create(payload: DSLWorkflowSpec): Promise<DSLWorkflowDefinition>;
46
46
  delete(id: string): Promise<any>;
47
47
  }
48
- //# sourceMappingURL=WorkflowsApi.d.ts.map
@@ -27,4 +27,3 @@ export declare class ZenoClient extends AbstractFetchClient<ZenoClient> {
27
27
  collections: CollectionsApi;
28
28
  embeddings: EmbeddingsApi;
29
29
  }
30
- //# sourceMappingURL=client.d.ts.map
@@ -2,4 +2,3 @@ import { RequestError } from "@vertesia/api-fetch-client";
2
2
  export declare class ZenoClientNotFoundError extends RequestError {
3
3
  constructor(req: Request, error: RequestError);
4
4
  }
5
- //# sourceMappingURL=errors.d.ts.map
@@ -3,4 +3,3 @@ export * from "./CommandsApi.js";
3
3
  export * from "./ObjectsApi.js";
4
4
  export * from "./TypesApi.js";
5
5
  export * from "./WorkflowsApi.js";
6
- //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertesia/client",
3
- "version": "0.58.0",
3
+ "version": "0.59.0",
4
4
  "type": "module",
5
5
  "types": "./lib/types/index.d.ts",
6
6
  "files": [
@@ -21,9 +21,9 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "eventsource": "^3.0.6",
24
- "@vertesia/api-fetch-client": "0.58.0",
25
- "@vertesia/common": "0.58.0",
26
- "@llumiverse/common": "0.18.0"
24
+ "@llumiverse/common": "0.18.0",
25
+ "@vertesia/api-fetch-client": "0.59.0",
26
+ "@vertesia/common": "0.59.0"
27
27
  },
28
28
  "ts_dual_module": {
29
29
  "outDir": "lib"