@ideascol/agents-generator-sdk 0.2.2 → 0.3.1

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/index.js CHANGED
@@ -166,7 +166,7 @@ var OpenAPI;
166
166
  var init_OpenAPI = __esm(() => {
167
167
  OpenAPI = {
168
168
  BASE: "",
169
- VERSION: "main-2ca05a009ba704a733f8de2cabfb9379a45d1b79",
169
+ VERSION: "main-1.0.0",
170
170
  WITH_CREDENTIALS: false,
171
171
  CREDENTIALS: "include",
172
172
  TOKEN: undefined,
@@ -414,20 +414,21 @@ class AdminAgentsService {
414
414
  }
415
415
  });
416
416
  }
417
- static getAgents(skip, limit = 100) {
417
+ static getAgents(skip, limit = 100, workspaceId) {
418
418
  return request(OpenAPI, {
419
419
  method: "GET",
420
420
  url: "/agents",
421
421
  query: {
422
422
  skip,
423
- limit
423
+ limit,
424
+ workspace_id: workspaceId
424
425
  },
425
426
  errors: {
426
427
  422: `Validation Error`
427
428
  }
428
429
  });
429
430
  }
430
- static updateAgent(agentId, requestBody, userId) {
431
+ static updateAgent(agentId, requestBody, workspaceId) {
431
432
  return request(OpenAPI, {
432
433
  method: "PUT",
433
434
  url: "/agents/{agent_id}",
@@ -435,7 +436,7 @@ class AdminAgentsService {
435
436
  agent_id: agentId
436
437
  },
437
438
  query: {
438
- user_id: userId
439
+ workspace_id: workspaceId
439
440
  },
440
441
  body: requestBody,
441
442
  mediaType: "application/json",
@@ -444,7 +445,7 @@ class AdminAgentsService {
444
445
  }
445
446
  });
446
447
  }
447
- static getAgent(agentId, userId) {
448
+ static getAgent(agentId, workspaceId) {
448
449
  return request(OpenAPI, {
449
450
  method: "GET",
450
451
  url: "/agents/{agent_id}",
@@ -452,14 +453,14 @@ class AdminAgentsService {
452
453
  agent_id: agentId
453
454
  },
454
455
  query: {
455
- user_id: userId
456
+ workspace_id: workspaceId
456
457
  },
457
458
  errors: {
458
459
  422: `Validation Error`
459
460
  }
460
461
  });
461
462
  }
462
- static deleteAgent(agentId, userId) {
463
+ static deleteAgent(agentId, workspaceId) {
463
464
  return request(OpenAPI, {
464
465
  method: "DELETE",
465
466
  url: "/agents/{agent_id}",
@@ -467,7 +468,7 @@ class AdminAgentsService {
467
468
  agent_id: agentId
468
469
  },
469
470
  query: {
470
- user_id: userId
471
+ workspace_id: workspaceId
471
472
  },
472
473
  errors: {
473
474
  422: `Validation Error`
@@ -616,16 +617,13 @@ var init_AdminConversationsService = __esm(() => {
616
617
 
617
618
  // src/lib/clients/agents-generator/services/AdminCredentialsService.ts
618
619
  class AdminCredentialsService {
619
- static getCredentials() {
620
- return request(OpenAPI, {
621
- method: "GET",
622
- url: "/credentials"
623
- });
624
- }
625
- static createCredential(requestBody) {
620
+ static createCredential(requestBody, workspaceId) {
626
621
  return request(OpenAPI, {
627
622
  method: "POST",
628
623
  url: "/credentials",
624
+ query: {
625
+ workspace_id: workspaceId
626
+ },
629
627
  body: requestBody,
630
628
  mediaType: "application/json",
631
629
  errors: {
@@ -633,25 +631,43 @@ class AdminCredentialsService {
633
631
  }
634
632
  });
635
633
  }
636
- static getCredential(credentialId) {
634
+ static getCredentials(workspaceId) {
635
+ return request(OpenAPI, {
636
+ method: "GET",
637
+ url: "/credentials",
638
+ query: {
639
+ workspace_id: workspaceId
640
+ },
641
+ errors: {
642
+ 422: `Validation Error`
643
+ }
644
+ });
645
+ }
646
+ static getCredential(credentialId, workspaceId) {
637
647
  return request(OpenAPI, {
638
648
  method: "GET",
639
649
  url: "/credentials/{credential_id}",
640
650
  path: {
641
651
  credential_id: credentialId
642
652
  },
653
+ query: {
654
+ workspace_id: workspaceId
655
+ },
643
656
  errors: {
644
657
  422: `Validation Error`
645
658
  }
646
659
  });
647
660
  }
648
- static updateCredential(credentialId, requestBody) {
661
+ static updateCredential(credentialId, requestBody, workspaceId) {
649
662
  return request(OpenAPI, {
650
663
  method: "PUT",
651
664
  url: "/credentials/{credential_id}",
652
665
  path: {
653
666
  credential_id: credentialId
654
667
  },
668
+ query: {
669
+ workspace_id: workspaceId
670
+ },
655
671
  body: requestBody,
656
672
  mediaType: "application/json",
657
673
  errors: {
@@ -659,25 +675,31 @@ class AdminCredentialsService {
659
675
  }
660
676
  });
661
677
  }
662
- static deleteCredential(credentialId) {
678
+ static deleteCredential(credentialId, workspaceId) {
663
679
  return request(OpenAPI, {
664
680
  method: "DELETE",
665
681
  url: "/credentials/{credential_id}",
666
682
  path: {
667
683
  credential_id: credentialId
668
684
  },
685
+ query: {
686
+ workspace_id: workspaceId
687
+ },
669
688
  errors: {
670
689
  422: `Validation Error`
671
690
  }
672
691
  });
673
692
  }
674
- static getCredentialDecrypted(credentialId) {
693
+ static getCredentialDecrypted(credentialId, workspaceId) {
675
694
  return request(OpenAPI, {
676
695
  method: "GET",
677
696
  url: "/credentials/{credential_id}/decrypt",
678
697
  path: {
679
698
  credential_id: credentialId
680
699
  },
700
+ query: {
701
+ workspace_id: workspaceId
702
+ },
681
703
  errors: {
682
704
  422: `Validation Error`
683
705
  }
@@ -691,16 +713,13 @@ var init_AdminCredentialsService = __esm(() => {
691
713
 
692
714
  // src/lib/clients/agents-generator/services/AdminFileLibraryService.ts
693
715
  class AdminFileLibraryService {
694
- static getBuckets() {
695
- return request(OpenAPI, {
696
- method: "GET",
697
- url: "/file-library/buckets"
698
- });
699
- }
700
- static createBucket(requestBody) {
716
+ static createBucket(requestBody, workspaceId) {
701
717
  return request(OpenAPI, {
702
718
  method: "POST",
703
719
  url: "/file-library/buckets",
720
+ query: {
721
+ workspace_id: workspaceId
722
+ },
704
723
  body: requestBody,
705
724
  mediaType: "application/json",
706
725
  errors: {
@@ -708,25 +727,43 @@ class AdminFileLibraryService {
708
727
  }
709
728
  });
710
729
  }
711
- static getBucket(bucketId) {
730
+ static getBuckets(workspaceId) {
731
+ return request(OpenAPI, {
732
+ method: "GET",
733
+ url: "/file-library/buckets",
734
+ query: {
735
+ workspace_id: workspaceId
736
+ },
737
+ errors: {
738
+ 422: `Validation Error`
739
+ }
740
+ });
741
+ }
742
+ static getBucket(bucketId, workspaceId) {
712
743
  return request(OpenAPI, {
713
744
  method: "GET",
714
745
  url: "/file-library/buckets/{bucket_id}",
715
746
  path: {
716
747
  bucket_id: bucketId
717
748
  },
749
+ query: {
750
+ workspace_id: workspaceId
751
+ },
718
752
  errors: {
719
753
  422: `Validation Error`
720
754
  }
721
755
  });
722
756
  }
723
- static deleteBucket(bucketId) {
757
+ static deleteBucket(bucketId, workspaceId) {
724
758
  return request(OpenAPI, {
725
759
  method: "DELETE",
726
760
  url: "/file-library/buckets/{bucket_id}",
727
761
  path: {
728
762
  bucket_id: bucketId
729
763
  },
764
+ query: {
765
+ workspace_id: workspaceId
766
+ },
730
767
  errors: {
731
768
  422: `Validation Error`
732
769
  }
@@ -877,6 +914,82 @@ var init_AdminMcpServersService = __esm(() => {
877
914
  init_request();
878
915
  });
879
916
 
917
+ // src/lib/clients/agents-generator/services/AdminWorkspacesService.ts
918
+ class AdminWorkspacesService {
919
+ static createWorkspace(requestBody) {
920
+ return request(OpenAPI, {
921
+ method: "POST",
922
+ url: "/workspaces",
923
+ body: requestBody,
924
+ mediaType: "application/json",
925
+ errors: {
926
+ 422: `Validation Error`
927
+ }
928
+ });
929
+ }
930
+ static getWorkspaces(skip, limit = 100) {
931
+ return request(OpenAPI, {
932
+ method: "GET",
933
+ url: "/workspaces",
934
+ query: {
935
+ skip,
936
+ limit
937
+ },
938
+ errors: {
939
+ 422: `Validation Error`
940
+ }
941
+ });
942
+ }
943
+ static getDefaultWorkspace() {
944
+ return request(OpenAPI, {
945
+ method: "GET",
946
+ url: "/workspaces/default"
947
+ });
948
+ }
949
+ static getWorkspace(workspaceId) {
950
+ return request(OpenAPI, {
951
+ method: "GET",
952
+ url: "/workspaces/{workspace_id}",
953
+ path: {
954
+ workspace_id: workspaceId
955
+ },
956
+ errors: {
957
+ 422: `Validation Error`
958
+ }
959
+ });
960
+ }
961
+ static updateWorkspace(workspaceId, requestBody) {
962
+ return request(OpenAPI, {
963
+ method: "PUT",
964
+ url: "/workspaces/{workspace_id}",
965
+ path: {
966
+ workspace_id: workspaceId
967
+ },
968
+ body: requestBody,
969
+ mediaType: "application/json",
970
+ errors: {
971
+ 422: `Validation Error`
972
+ }
973
+ });
974
+ }
975
+ static deleteWorkspace(workspaceId) {
976
+ return request(OpenAPI, {
977
+ method: "DELETE",
978
+ url: "/workspaces/{workspace_id}",
979
+ path: {
980
+ workspace_id: workspaceId
981
+ },
982
+ errors: {
983
+ 422: `Validation Error`
984
+ }
985
+ });
986
+ }
987
+ }
988
+ var init_AdminWorkspacesService = __esm(() => {
989
+ init_OpenAPI();
990
+ init_request();
991
+ });
992
+
880
993
  // src/lib/clients/agents-generator/services/AgentService.ts
881
994
  class AgentService {
882
995
  static createAgent(requestBody) {
@@ -890,20 +1003,21 @@ class AgentService {
890
1003
  }
891
1004
  });
892
1005
  }
893
- static getAgents(skip, limit = 100) {
1006
+ static getAgents(skip, limit = 100, workspaceId) {
894
1007
  return request(OpenAPI, {
895
1008
  method: "GET",
896
1009
  url: "/agents",
897
1010
  query: {
898
1011
  skip,
899
- limit
1012
+ limit,
1013
+ workspace_id: workspaceId
900
1014
  },
901
1015
  errors: {
902
1016
  422: `Validation Error`
903
1017
  }
904
1018
  });
905
1019
  }
906
- static updateAgent(agentId, requestBody, userId) {
1020
+ static updateAgent(agentId, requestBody, workspaceId) {
907
1021
  return request(OpenAPI, {
908
1022
  method: "PUT",
909
1023
  url: "/agents/{agent_id}",
@@ -911,7 +1025,7 @@ class AgentService {
911
1025
  agent_id: agentId
912
1026
  },
913
1027
  query: {
914
- user_id: userId
1028
+ workspace_id: workspaceId
915
1029
  },
916
1030
  body: requestBody,
917
1031
  mediaType: "application/json",
@@ -920,7 +1034,7 @@ class AgentService {
920
1034
  }
921
1035
  });
922
1036
  }
923
- static getAgent(agentId, userId) {
1037
+ static getAgent(agentId, workspaceId) {
924
1038
  return request(OpenAPI, {
925
1039
  method: "GET",
926
1040
  url: "/agents/{agent_id}",
@@ -928,14 +1042,14 @@ class AgentService {
928
1042
  agent_id: agentId
929
1043
  },
930
1044
  query: {
931
- user_id: userId
1045
+ workspace_id: workspaceId
932
1046
  },
933
1047
  errors: {
934
1048
  422: `Validation Error`
935
1049
  }
936
1050
  });
937
1051
  }
938
- static deleteAgent(agentId, userId) {
1052
+ static deleteAgent(agentId, workspaceId) {
939
1053
  return request(OpenAPI, {
940
1054
  method: "DELETE",
941
1055
  url: "/agents/{agent_id}",
@@ -943,7 +1057,7 @@ class AgentService {
943
1057
  agent_id: agentId
944
1058
  },
945
1059
  query: {
946
- user_id: userId
1060
+ workspace_id: workspaceId
947
1061
  },
948
1062
  errors: {
949
1063
  422: `Validation Error`
@@ -1111,16 +1225,13 @@ var init_ConversationsService = __esm(() => {
1111
1225
 
1112
1226
  // src/lib/clients/agents-generator/services/CredentialsService.ts
1113
1227
  class CredentialsService {
1114
- static getCredentials() {
1115
- return request(OpenAPI, {
1116
- method: "GET",
1117
- url: "/credentials"
1118
- });
1119
- }
1120
- static createCredential(requestBody) {
1228
+ static createCredential(requestBody, workspaceId) {
1121
1229
  return request(OpenAPI, {
1122
1230
  method: "POST",
1123
1231
  url: "/credentials",
1232
+ query: {
1233
+ workspace_id: workspaceId
1234
+ },
1124
1235
  body: requestBody,
1125
1236
  mediaType: "application/json",
1126
1237
  errors: {
@@ -1128,25 +1239,43 @@ class CredentialsService {
1128
1239
  }
1129
1240
  });
1130
1241
  }
1131
- static getCredential(credentialId) {
1242
+ static getCredentials(workspaceId) {
1243
+ return request(OpenAPI, {
1244
+ method: "GET",
1245
+ url: "/credentials",
1246
+ query: {
1247
+ workspace_id: workspaceId
1248
+ },
1249
+ errors: {
1250
+ 422: `Validation Error`
1251
+ }
1252
+ });
1253
+ }
1254
+ static getCredential(credentialId, workspaceId) {
1132
1255
  return request(OpenAPI, {
1133
1256
  method: "GET",
1134
1257
  url: "/credentials/{credential_id}",
1135
1258
  path: {
1136
1259
  credential_id: credentialId
1137
1260
  },
1261
+ query: {
1262
+ workspace_id: workspaceId
1263
+ },
1138
1264
  errors: {
1139
1265
  422: `Validation Error`
1140
1266
  }
1141
1267
  });
1142
1268
  }
1143
- static updateCredential(credentialId, requestBody) {
1269
+ static updateCredential(credentialId, requestBody, workspaceId) {
1144
1270
  return request(OpenAPI, {
1145
1271
  method: "PUT",
1146
1272
  url: "/credentials/{credential_id}",
1147
1273
  path: {
1148
1274
  credential_id: credentialId
1149
1275
  },
1276
+ query: {
1277
+ workspace_id: workspaceId
1278
+ },
1150
1279
  body: requestBody,
1151
1280
  mediaType: "application/json",
1152
1281
  errors: {
@@ -1154,25 +1283,31 @@ class CredentialsService {
1154
1283
  }
1155
1284
  });
1156
1285
  }
1157
- static deleteCredential(credentialId) {
1286
+ static deleteCredential(credentialId, workspaceId) {
1158
1287
  return request(OpenAPI, {
1159
1288
  method: "DELETE",
1160
1289
  url: "/credentials/{credential_id}",
1161
1290
  path: {
1162
1291
  credential_id: credentialId
1163
1292
  },
1293
+ query: {
1294
+ workspace_id: workspaceId
1295
+ },
1164
1296
  errors: {
1165
1297
  422: `Validation Error`
1166
1298
  }
1167
1299
  });
1168
1300
  }
1169
- static getCredentialDecrypted(credentialId) {
1301
+ static getCredentialDecrypted(credentialId, workspaceId) {
1170
1302
  return request(OpenAPI, {
1171
1303
  method: "GET",
1172
1304
  url: "/credentials/{credential_id}/decrypt",
1173
1305
  path: {
1174
1306
  credential_id: credentialId
1175
1307
  },
1308
+ query: {
1309
+ workspace_id: workspaceId
1310
+ },
1176
1311
  errors: {
1177
1312
  422: `Validation Error`
1178
1313
  }
@@ -1186,16 +1321,13 @@ var init_CredentialsService = __esm(() => {
1186
1321
 
1187
1322
  // src/lib/clients/agents-generator/services/FileLibraryService.ts
1188
1323
  class FileLibraryService {
1189
- static getBuckets() {
1190
- return request(OpenAPI, {
1191
- method: "GET",
1192
- url: "/file-library/buckets"
1193
- });
1194
- }
1195
- static createBucket(requestBody) {
1324
+ static createBucket(requestBody, workspaceId) {
1196
1325
  return request(OpenAPI, {
1197
1326
  method: "POST",
1198
1327
  url: "/file-library/buckets",
1328
+ query: {
1329
+ workspace_id: workspaceId
1330
+ },
1199
1331
  body: requestBody,
1200
1332
  mediaType: "application/json",
1201
1333
  errors: {
@@ -1203,25 +1335,43 @@ class FileLibraryService {
1203
1335
  }
1204
1336
  });
1205
1337
  }
1206
- static getBucket(bucketId) {
1338
+ static getBuckets(workspaceId) {
1339
+ return request(OpenAPI, {
1340
+ method: "GET",
1341
+ url: "/file-library/buckets",
1342
+ query: {
1343
+ workspace_id: workspaceId
1344
+ },
1345
+ errors: {
1346
+ 422: `Validation Error`
1347
+ }
1348
+ });
1349
+ }
1350
+ static getBucket(bucketId, workspaceId) {
1207
1351
  return request(OpenAPI, {
1208
1352
  method: "GET",
1209
1353
  url: "/file-library/buckets/{bucket_id}",
1210
1354
  path: {
1211
1355
  bucket_id: bucketId
1212
1356
  },
1357
+ query: {
1358
+ workspace_id: workspaceId
1359
+ },
1213
1360
  errors: {
1214
1361
  422: `Validation Error`
1215
1362
  }
1216
1363
  });
1217
1364
  }
1218
- static deleteBucket(bucketId) {
1365
+ static deleteBucket(bucketId, workspaceId) {
1219
1366
  return request(OpenAPI, {
1220
1367
  method: "DELETE",
1221
1368
  url: "/file-library/buckets/{bucket_id}",
1222
1369
  path: {
1223
1370
  bucket_id: bucketId
1224
1371
  },
1372
+ query: {
1373
+ workspace_id: workspaceId
1374
+ },
1225
1375
  errors: {
1226
1376
  422: `Validation Error`
1227
1377
  }
@@ -1400,7 +1550,7 @@ var init_McpServersService = __esm(() => {
1400
1550
 
1401
1551
  // src/lib/clients/agents-generator/services/PublicAgentsService.ts
1402
1552
  class PublicAgentsService {
1403
- static getAgent(agentId, userId) {
1553
+ static getAgent(agentId, workspaceId) {
1404
1554
  return request(OpenAPI, {
1405
1555
  method: "GET",
1406
1556
  url: "/agents/{agent_id}",
@@ -1408,7 +1558,7 @@ class PublicAgentsService {
1408
1558
  agent_id: agentId
1409
1559
  },
1410
1560
  query: {
1411
- user_id: userId
1561
+ workspace_id: workspaceId
1412
1562
  },
1413
1563
  errors: {
1414
1564
  422: `Validation Error`
@@ -1491,6 +1641,82 @@ var init_RootService = __esm(() => {
1491
1641
  init_request();
1492
1642
  });
1493
1643
 
1644
+ // src/lib/clients/agents-generator/services/WorkspacesService.ts
1645
+ class WorkspacesService {
1646
+ static createWorkspace(requestBody) {
1647
+ return request(OpenAPI, {
1648
+ method: "POST",
1649
+ url: "/workspaces",
1650
+ body: requestBody,
1651
+ mediaType: "application/json",
1652
+ errors: {
1653
+ 422: `Validation Error`
1654
+ }
1655
+ });
1656
+ }
1657
+ static getWorkspaces(skip, limit = 100) {
1658
+ return request(OpenAPI, {
1659
+ method: "GET",
1660
+ url: "/workspaces",
1661
+ query: {
1662
+ skip,
1663
+ limit
1664
+ },
1665
+ errors: {
1666
+ 422: `Validation Error`
1667
+ }
1668
+ });
1669
+ }
1670
+ static getDefaultWorkspace() {
1671
+ return request(OpenAPI, {
1672
+ method: "GET",
1673
+ url: "/workspaces/default"
1674
+ });
1675
+ }
1676
+ static getWorkspace(workspaceId) {
1677
+ return request(OpenAPI, {
1678
+ method: "GET",
1679
+ url: "/workspaces/{workspace_id}",
1680
+ path: {
1681
+ workspace_id: workspaceId
1682
+ },
1683
+ errors: {
1684
+ 422: `Validation Error`
1685
+ }
1686
+ });
1687
+ }
1688
+ static updateWorkspace(workspaceId, requestBody) {
1689
+ return request(OpenAPI, {
1690
+ method: "PUT",
1691
+ url: "/workspaces/{workspace_id}",
1692
+ path: {
1693
+ workspace_id: workspaceId
1694
+ },
1695
+ body: requestBody,
1696
+ mediaType: "application/json",
1697
+ errors: {
1698
+ 422: `Validation Error`
1699
+ }
1700
+ });
1701
+ }
1702
+ static deleteWorkspace(workspaceId) {
1703
+ return request(OpenAPI, {
1704
+ method: "DELETE",
1705
+ url: "/workspaces/{workspace_id}",
1706
+ path: {
1707
+ workspace_id: workspaceId
1708
+ },
1709
+ errors: {
1710
+ 422: `Validation Error`
1711
+ }
1712
+ });
1713
+ }
1714
+ }
1715
+ var init_WorkspacesService = __esm(() => {
1716
+ init_OpenAPI();
1717
+ init_request();
1718
+ });
1719
+
1494
1720
  // src/lib/clients/agents-generator/index.ts
1495
1721
  var init_agents_generator = __esm(() => {
1496
1722
  init_ApiError();
@@ -1501,6 +1727,7 @@ var init_agents_generator = __esm(() => {
1501
1727
  init_AdminCredentialsService();
1502
1728
  init_AdminFileLibraryService();
1503
1729
  init_AdminMcpServersService();
1730
+ init_AdminWorkspacesService();
1504
1731
  init_AgentService();
1505
1732
  init_ConversationsService();
1506
1733
  init_CredentialsService();
@@ -1509,6 +1736,7 @@ var init_agents_generator = __esm(() => {
1509
1736
  init_PublicAgentsService();
1510
1737
  init_PublicConversationsService();
1511
1738
  init_RootService();
1739
+ init_WorkspacesService();
1512
1740
  });
1513
1741
 
1514
1742
  // src/lib/index.ts
@@ -1759,6 +1987,7 @@ var init_lib = __esm(() => {
1759
1987
  // src/index.ts
1760
1988
  var exports_src = {};
1761
1989
  __export(exports_src, {
1990
+ WorkspacesService: () => WorkspacesService,
1762
1991
  RootService: () => RootService,
1763
1992
  PublicConversationsService: () => PublicConversationsService,
1764
1993
  PublicAgentsService: () => PublicAgentsService,
@@ -1772,6 +2001,7 @@ __export(exports_src, {
1772
2001
  ApiError: () => ApiError,
1773
2002
  AgentService: () => AgentService,
1774
2003
  AgentClient: () => AgentClient,
2004
+ AdminWorkspacesService: () => AdminWorkspacesService,
1775
2005
  AdminMcpServersService: () => AdminMcpServersService,
1776
2006
  AdminFileLibraryService: () => AdminFileLibraryService,
1777
2007
  AdminCredentialsService: () => AdminCredentialsService,
@@ -41,11 +41,16 @@ export type { NodeData } from './models/NodeData';
41
41
  export type { Position } from './models/Position';
42
42
  export type { UpdateMCPServerRequest } from './models/UpdateMCPServerRequest';
43
43
  export type { ValidationError } from './models/ValidationError';
44
+ export type { WorkspaceCreate } from './models/WorkspaceCreate';
45
+ export type { WorkspaceResponse } from './models/WorkspaceResponse';
46
+ export type { WorkspaceUpdate } from './models/WorkspaceUpdate';
47
+ export type { WorkspaceWithStats } from './models/WorkspaceWithStats';
44
48
  export { AdminAgentsService } from './services/AdminAgentsService';
45
49
  export { AdminConversationsService } from './services/AdminConversationsService';
46
50
  export { AdminCredentialsService } from './services/AdminCredentialsService';
47
51
  export { AdminFileLibraryService } from './services/AdminFileLibraryService';
48
52
  export { AdminMcpServersService } from './services/AdminMcpServersService';
53
+ export { AdminWorkspacesService } from './services/AdminWorkspacesService';
49
54
  export { AgentService } from './services/AgentService';
50
55
  export { ConversationsService } from './services/ConversationsService';
51
56
  export { CredentialsService } from './services/CredentialsService';
@@ -54,3 +59,4 @@ export { McpServersService } from './services/McpServersService';
54
59
  export { PublicAgentsService } from './services/PublicAgentsService';
55
60
  export { PublicConversationsService } from './services/PublicConversationsService';
56
61
  export { RootService } from './services/RootService';
62
+ export { WorkspacesService } from './services/WorkspacesService';