@ideascol/agents-generator-sdk 0.3.2 → 0.3.3

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/dist/bin/cli.js CHANGED
@@ -2213,7 +2213,8 @@ class AgentClient {
2213
2213
  conversations: AdminConversationsService,
2214
2214
  credentials: AdminCredentialsService,
2215
2215
  fileLibrary: AdminFileLibraryService,
2216
- mcpServers: AdminMcpServersService
2216
+ mcpServers: AdminMcpServersService,
2217
+ workspaces: AdminWorkspacesService
2217
2218
  };
2218
2219
  this.public = {
2219
2220
  agents: PublicAgentsService,
package/dist/index.js CHANGED
@@ -1781,7 +1781,8 @@ class AgentClient {
1781
1781
  conversations: AdminConversationsService,
1782
1782
  credentials: AdminCredentialsService,
1783
1783
  fileLibrary: AdminFileLibraryService,
1784
- mcpServers: AdminMcpServersService
1784
+ mcpServers: AdminMcpServersService,
1785
+ workspaces: AdminWorkspacesService
1785
1786
  };
1786
1787
  this.public = {
1787
1788
  agents: PublicAgentsService,
@@ -1,4 +1,4 @@
1
- import { ApiError, CancelablePromise, CancelError, ConversationsService, MessageCreate, OpenAPI, AgentService, McpServersService, RootService, FileLibraryService, CredentialsService, AdminAgentsService, PublicAgentsService, PublicConversationsService, AdminConversationsService, AdminCredentialsService, AdminFileLibraryService, AdminMcpServersService } from "./clients/agents-generator";
1
+ import { ApiError, CancelablePromise, CancelError, ConversationsService, MessageCreate, OpenAPI, AgentService, McpServersService, RootService, FileLibraryService, CredentialsService, AdminAgentsService, PublicAgentsService, PublicConversationsService, AdminConversationsService, AdminCredentialsService, AdminFileLibraryService, AdminMcpServersService, AdminWorkspacesService } from "./clients/agents-generator";
2
2
  export * from "./clients/agents-generator";
3
3
  export interface StreamEvent {
4
4
  type: string;
@@ -36,6 +36,7 @@ export declare class AgentClient {
36
36
  credentials: typeof AdminCredentialsService;
37
37
  fileLibrary: typeof AdminFileLibraryService;
38
38
  mcpServers: typeof AdminMcpServersService;
39
+ workspaces: typeof AdminWorkspacesService;
39
40
  };
40
41
  public: {
41
42
  agents: typeof PublicAgentsService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ideascol/agents-generator-sdk",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "test": "bun test",