@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 +2 -1
- package/dist/index.js +2 -1
- package/dist/lib/index.d.ts +2 -1
- package/package.json +1 -1
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,
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -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;
|