@iblai/iblai-api 2025.11.20-memory-pagination-fix-test-2-ai → 2025.12.3-webhook-tool-dev-test-ai

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.
Files changed (74) hide show
  1. package/dist/index.cjs.js +321 -28
  2. package/dist/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +322 -29
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/index.umd.js +321 -28
  6. package/dist/index.umd.js.map +1 -1
  7. package/dist/types/index.d.ts +8 -3
  8. package/dist/types/models/AccessibleMentorsByEmailRequest.d.ts +2 -2
  9. package/dist/types/models/AccessibleMentorsByEmailResponse.d.ts +2 -2
  10. package/dist/types/models/Artifact.d.ts +3 -7
  11. package/dist/types/models/ArtifactList.d.ts +1 -4
  12. package/dist/types/models/ArtifactVersion.d.ts +13 -2
  13. package/dist/types/models/CallConfiguration.d.ts +4 -0
  14. package/dist/types/models/ChatHistory.d.ts +2 -0
  15. package/dist/types/models/ChatSessionResponse.d.ts +2 -0
  16. package/dist/types/models/Conversations.d.ts +9 -0
  17. package/dist/types/models/GoogleAgentDetail.d.ts +17 -0
  18. package/dist/types/models/LlmProviderEnum.d.ts +3 -1
  19. package/dist/types/models/MessageView.d.ts +1 -0
  20. package/dist/types/models/MessageViewRequest.d.ts +1 -0
  21. package/dist/types/models/PaginatedArtifactVersionList.d.ts +7 -0
  22. package/dist/types/models/PaginatedGoogleAgentDetailList.d.ts +7 -0
  23. package/dist/types/models/PaginatedUserGroupList.d.ts +7 -0
  24. package/dist/types/models/PatchedArtifact.d.ts +3 -7
  25. package/dist/types/models/PatchedCallConfiguration.d.ts +4 -0
  26. package/dist/types/models/PatchedConversations.d.ts +9 -0
  27. package/dist/types/models/PatchedGoogleAgentDetail.d.ts +17 -0
  28. package/dist/types/models/PatchedUserGroup.d.ts +26 -0
  29. package/dist/types/models/SttProviderEnum.d.ts +3 -1
  30. package/dist/types/models/TtsProviderEnum.d.ts +3 -1
  31. package/dist/types/models/UserGroup.d.ts +26 -0
  32. package/dist/types/models/UserMemory.d.ts +1 -0
  33. package/dist/types/models/Voice.d.ts +2 -2
  34. package/dist/types/models/{Provider637Enum.d.ts → VoiceProviderEnum.d.ts} +1 -1
  35. package/dist/types/services/AiMentorService.d.ts +85 -11
  36. package/dist/types/services/AiSearchService.d.ts +21 -5
  37. package/dist/types/services/CoreService.d.ts +97 -3
  38. package/package.json +1 -1
  39. package/sdk_schema.yml +1031 -252
  40. package/src/core/OpenAPI.ts +1 -1
  41. package/src/index.ts +8 -3
  42. package/src/models/AccessibleMentorsByEmailRequest.ts +2 -2
  43. package/src/models/AccessibleMentorsByEmailResponse.ts +2 -2
  44. package/src/models/Artifact.ts +3 -7
  45. package/src/models/ArtifactList.ts +1 -4
  46. package/src/models/ArtifactVersion.ts +13 -2
  47. package/src/models/CallConfiguration.ts +4 -0
  48. package/src/models/ChatHistory.ts +2 -0
  49. package/src/models/ChatSessionResponse.ts +2 -0
  50. package/src/models/Conversations.ts +9 -0
  51. package/src/models/GoogleAgentDetail.ts +22 -0
  52. package/src/models/LlmProviderEnum.ts +2 -0
  53. package/src/models/MessageView.ts +1 -0
  54. package/src/models/MessageViewRequest.ts +1 -0
  55. package/src/models/{PaginatedArtifactVersionListList.ts → PaginatedArtifactVersionList.ts} +3 -3
  56. package/src/models/PaginatedGoogleAgentDetailList.ts +12 -0
  57. package/src/models/PaginatedUserGroupList.ts +12 -0
  58. package/src/models/PatchedArtifact.ts +3 -7
  59. package/src/models/PatchedCallConfiguration.ts +4 -0
  60. package/src/models/PatchedConversations.ts +9 -0
  61. package/src/models/PatchedGoogleAgentDetail.ts +22 -0
  62. package/src/models/PatchedUserGroup.ts +31 -0
  63. package/src/models/SttProviderEnum.ts +2 -0
  64. package/src/models/TtsProviderEnum.ts +2 -0
  65. package/src/models/UserGroup.ts +31 -0
  66. package/src/models/UserMemory.ts +1 -0
  67. package/src/models/Voice.ts +2 -2
  68. package/src/models/{Provider637Enum.ts → VoiceProviderEnum.ts} +1 -1
  69. package/src/services/AiMentorService.ts +6051 -5882
  70. package/src/services/AiSearchService.ts +29 -5
  71. package/src/services/CoreService.ts +195 -3
  72. package/dist/types/models/ArtifactVersionList.d.ts +0 -35
  73. package/dist/types/models/PaginatedArtifactVersionListList.d.ts +0 -7
  74. package/src/models/ArtifactVersionList.ts +0 -40
package/dist/index.umd.js CHANGED
@@ -114,7 +114,7 @@
114
114
 
115
115
  const OpenAPI = {
116
116
  BASE: 'https://base.manager.iblai.app',
117
- VERSION: '4.95.2-ai-plus',
117
+ VERSION: '4.102.0-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -438,11 +438,13 @@
438
438
  /**
439
439
  * * `openai` - Openai
440
440
  * * `google` - Google
441
+ * * `azure_openai` - Azure Openai
441
442
  */
442
443
  exports.LlmProviderEnum = void 0;
443
444
  (function (LlmProviderEnum) {
444
445
  LlmProviderEnum["OPENAI"] = "openai";
445
446
  LlmProviderEnum["GOOGLE"] = "google";
447
+ LlmProviderEnum["AZURE_OPENAI"] = "azure_openai";
446
448
  })(exports.LlmProviderEnum || (exports.LlmProviderEnum = {}));
447
449
 
448
450
  /* generated using openapi-typescript-codegen -- do not edit */
@@ -707,22 +709,6 @@
707
709
  Provider05cEnum["TEAMS"] = "teams";
708
710
  })(exports.Provider05cEnum || (exports.Provider05cEnum = {}));
709
711
 
710
- /* generated using openapi-typescript-codegen -- do not edit */
711
- /* istanbul ignore file */
712
- /* tslint:disable */
713
- /* eslint-disable */
714
- /**
715
- * * `openai` - Openai
716
- * * `google` - Google
717
- * * `elevenlabs` - Elevenlabs
718
- */
719
- exports.Provider637Enum = void 0;
720
- (function (Provider637Enum) {
721
- Provider637Enum["OPENAI"] = "openai";
722
- Provider637Enum["GOOGLE"] = "google";
723
- Provider637Enum["ELEVENLABS"] = "elevenlabs";
724
- })(exports.Provider637Enum || (exports.Provider637Enum = {}));
725
-
726
712
  /* generated using openapi-typescript-codegen -- do not edit */
727
713
  /* istanbul ignore file */
728
714
  /* tslint:disable */
@@ -868,6 +854,7 @@
868
854
  * * `google` - Google
869
855
  * * `deepgram` - Deepgram
870
856
  * * `cartesia` - Cartesia
857
+ * * `azure_openai` - Azure Openai
871
858
  */
872
859
  exports.SttProviderEnum = void 0;
873
860
  (function (SttProviderEnum) {
@@ -875,6 +862,7 @@
875
862
  SttProviderEnum["GOOGLE"] = "google";
876
863
  SttProviderEnum["DEEPGRAM"] = "deepgram";
877
864
  SttProviderEnum["CARTESIA"] = "cartesia";
865
+ SttProviderEnum["AZURE_OPENAI"] = "azure_openai";
878
866
  })(exports.SttProviderEnum || (exports.SttProviderEnum = {}));
879
867
 
880
868
  /* generated using openapi-typescript-codegen -- do not edit */
@@ -947,12 +935,14 @@
947
935
  * * `openai` - Openai
948
936
  * * `google` - Google
949
937
  * * `elevenlabs` - Elevenlabs
938
+ * * `azure_openai` - Azure Openai
950
939
  */
951
940
  exports.TtsProviderEnum = void 0;
952
941
  (function (TtsProviderEnum) {
953
942
  TtsProviderEnum["OPENAI"] = "openai";
954
943
  TtsProviderEnum["GOOGLE"] = "google";
955
944
  TtsProviderEnum["ELEVENLABS"] = "elevenlabs";
945
+ TtsProviderEnum["AZURE_OPENAI"] = "azure_openai";
956
946
  })(exports.TtsProviderEnum || (exports.TtsProviderEnum = {}));
957
947
 
958
948
  /* generated using openapi-typescript-codegen -- do not edit */
@@ -1021,6 +1011,22 @@
1021
1011
  TypeC42Enum["ASSESSMENT"] = "assessment";
1022
1012
  })(exports.TypeC42Enum || (exports.TypeC42Enum = {}));
1023
1013
 
1014
+ /* generated using openapi-typescript-codegen -- do not edit */
1015
+ /* istanbul ignore file */
1016
+ /* tslint:disable */
1017
+ /* eslint-disable */
1018
+ /**
1019
+ * * `openai` - Openai
1020
+ * * `google` - Google
1021
+ * * `elevenlabs` - Elevenlabs
1022
+ */
1023
+ exports.VoiceProviderEnum = void 0;
1024
+ (function (VoiceProviderEnum) {
1025
+ VoiceProviderEnum["OPENAI"] = "openai";
1026
+ VoiceProviderEnum["GOOGLE"] = "google";
1027
+ VoiceProviderEnum["ELEVENLABS"] = "elevenlabs";
1028
+ })(exports.VoiceProviderEnum || (exports.VoiceProviderEnum = {}));
1029
+
1024
1030
  /* generated using openapi-typescript-codegen -- do not edit */
1025
1031
  /* istanbul ignore file */
1026
1032
  /* tslint:disable */
@@ -14209,7 +14215,6 @@
14209
14215
  static aiMentorOrgsUsersArtifactsList({
14210
14216
  org,
14211
14217
  userId,
14212
- chatMessageId,
14213
14218
  fileExtension,
14214
14219
  llmName,
14215
14220
  llmProvider,
@@ -14229,7 +14234,6 @@
14229
14234
  'user_id': userId
14230
14235
  },
14231
14236
  query: {
14232
- 'chat_message_id': chatMessageId,
14233
14237
  'file_extension': fileExtension,
14234
14238
  'llm_name': llmName,
14235
14239
  'llm_provider': llmProvider,
@@ -14296,7 +14300,7 @@
14296
14300
  }
14297
14301
  /**
14298
14302
  * Update an artifact
14299
- * Update all fields of an artifact (excluding chat_message reference).
14303
+ * Update all fields of an artifact (excluding session reference).
14300
14304
  * @returns Artifact
14301
14305
  * @throws ApiError
14302
14306
  */
@@ -14383,14 +14387,13 @@
14383
14387
  /**
14384
14388
  * List artifact versions
14385
14389
  * Retrieve all versions for a specific artifact.
14386
- * @returns PaginatedArtifactVersionListList
14390
+ * @returns PaginatedArtifactVersionList
14387
14391
  * @throws ApiError
14388
14392
  */
14389
14393
  static aiMentorOrgsUsersArtifactsVersionsList({
14390
14394
  id,
14391
14395
  org,
14392
14396
  userId,
14393
- chatMessageId,
14394
14397
  fileExtension,
14395
14398
  llmName,
14396
14399
  llmProvider,
@@ -14411,7 +14414,6 @@
14411
14414
  'user_id': userId
14412
14415
  },
14413
14416
  query: {
14414
- 'chat_message_id': chatMessageId,
14415
14417
  'file_extension': fileExtension,
14416
14418
  'llm_name': llmName,
14417
14419
  'llm_provider': llmProvider,
@@ -18170,6 +18172,128 @@
18170
18172
  }
18171
18173
  });
18172
18174
  }
18175
+ /**
18176
+ * Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
18177
+ * @returns PaginatedGoogleAgentDetailList
18178
+ * @throws ApiError
18179
+ */
18180
+ static aiMentorOrgsUsersGoogleAgentsList({
18181
+ org,
18182
+ userId,
18183
+ page,
18184
+ pageSize
18185
+ }) {
18186
+ return request(OpenAPI, {
18187
+ method: 'GET',
18188
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/',
18189
+ path: {
18190
+ 'org': org,
18191
+ 'user_id': userId
18192
+ },
18193
+ query: {
18194
+ 'page': page,
18195
+ 'page_size': pageSize
18196
+ }
18197
+ });
18198
+ }
18199
+ /**
18200
+ * Sample Request
18201
+ * ```
18202
+ * {"name": "my agent", "instruction": "you are a helpful agent",}
18203
+ * ```
18204
+ * @returns GoogleAgentDetail
18205
+ * @throws ApiError
18206
+ */
18207
+ static aiMentorOrgsUsersGoogleAgentsCreate({
18208
+ org,
18209
+ userId,
18210
+ requestBody
18211
+ }) {
18212
+ return request(OpenAPI, {
18213
+ method: 'POST',
18214
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/',
18215
+ path: {
18216
+ 'org': org,
18217
+ 'user_id': userId
18218
+ },
18219
+ body: requestBody,
18220
+ mediaType: 'application/json'
18221
+ });
18222
+ }
18223
+ /**
18224
+ * Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
18225
+ * @returns GoogleAgentDetail
18226
+ * @throws ApiError
18227
+ */
18228
+ static aiMentorOrgsUsersGoogleAgentsRetrieve({
18229
+ org,
18230
+ uniqueId,
18231
+ userId
18232
+ }) {
18233
+ return request(OpenAPI, {
18234
+ method: 'GET',
18235
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/{unique_id}/',
18236
+ path: {
18237
+ 'org': org,
18238
+ 'unique_id': uniqueId,
18239
+ 'user_id': userId
18240
+ }
18241
+ });
18242
+ }
18243
+ /**
18244
+ * Mainly used to update the sub agent list.
18245
+ *
18246
+ * Sample request:
18247
+ * ```
18248
+ * {
18249
+ * "sub_agents": [
18250
+ * "adc4bf84-c174-47e1-b11c-7713ef2dcd89",
18251
+ * "3fb5806d-3be1-4bfd-bcb0-a48558465644",
18252
+ * "339e44cd-6084-4530-be70-ac2a83759fb6"
18253
+ * ]
18254
+ * }
18255
+ * ```
18256
+ * @returns GoogleAgentDetail
18257
+ * @throws ApiError
18258
+ */
18259
+ static aiMentorOrgsUsersGoogleAgentsPartialUpdate({
18260
+ org,
18261
+ uniqueId,
18262
+ userId,
18263
+ requestBody
18264
+ }) {
18265
+ return request(OpenAPI, {
18266
+ method: 'PATCH',
18267
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/{unique_id}/',
18268
+ path: {
18269
+ 'org': org,
18270
+ 'unique_id': uniqueId,
18271
+ 'user_id': userId
18272
+ },
18273
+ body: requestBody,
18274
+ mediaType: 'application/json'
18275
+ });
18276
+ }
18277
+ /**
18278
+ * Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
18279
+ * @returns void
18280
+ * @throws ApiError
18281
+ */
18282
+ static aiMentorOrgsUsersGoogleAgentsDestroy({
18283
+ org,
18284
+ uniqueId,
18285
+ userId
18286
+ }) {
18287
+ return request(OpenAPI, {
18288
+ method: 'DELETE',
18289
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/{unique_id}/',
18290
+ path: {
18291
+ 'org': org,
18292
+ 'unique_id': uniqueId,
18293
+ 'user_id': userId
18294
+ }
18295
+ });
18296
+ }
18173
18297
  /**
18174
18298
  * ViewSet for MCP server connections.
18175
18299
  *
@@ -22241,6 +22365,27 @@
22241
22365
  }
22242
22366
  });
22243
22367
  }
22368
+ /**
22369
+ * Retrieve Shared Messages
22370
+ * Fetches shared chat messages for a specific session.
22371
+ * @returns MessageView
22372
+ * @throws ApiError
22373
+ */
22374
+ static aiMentorOrgsUsersSessionsSharedRetrieve({
22375
+ org,
22376
+ sessionId,
22377
+ userId
22378
+ }) {
22379
+ return request(OpenAPI, {
22380
+ method: 'GET',
22381
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/sessions/{session_id}/shared/',
22382
+ path: {
22383
+ 'org': org,
22384
+ 'session_id': sessionId,
22385
+ 'user_id': userId
22386
+ }
22387
+ });
22388
+ }
22244
22389
  /**
22245
22390
  * Retrieve shell logs for a specific session.
22246
22391
  *
@@ -24687,12 +24832,14 @@
24687
24832
  static v2GlobalMentorSearch({
24688
24833
  category,
24689
24834
  createdBy,
24835
+ featured,
24690
24836
  includeMainPublicMentors = false,
24691
24837
  limit,
24692
24838
  llm,
24693
24839
  offset,
24694
24840
  platformKey,
24695
24841
  query,
24842
+ starred,
24696
24843
  subjects,
24697
24844
  tenant,
24698
24845
  types,
@@ -24704,12 +24851,14 @@
24704
24851
  query: {
24705
24852
  'category': category,
24706
24853
  'created_by': createdBy,
24854
+ 'featured': featured,
24707
24855
  'include_main_public_mentors': includeMainPublicMentors,
24708
24856
  'limit': limit,
24709
24857
  'llm': llm,
24710
24858
  'offset': offset,
24711
24859
  'platform_key': platformKey,
24712
24860
  'query': query,
24861
+ 'starred': starred,
24713
24862
  'subjects': subjects,
24714
24863
  'tenant': tenant,
24715
24864
  'types': types,
@@ -24804,14 +24953,16 @@
24804
24953
  static v2PersonalizedMentors({
24805
24954
  audience,
24806
24955
  category,
24956
+ featured,
24807
24957
  limit,
24808
- llmProviders,
24958
+ llm,
24809
24959
  offset,
24810
24960
  orderBy,
24811
24961
  orderDirection,
24812
24962
  platformKey,
24813
24963
  query,
24814
24964
  returnFacet,
24965
+ starred,
24815
24966
  tags,
24816
24967
  tenant,
24817
24968
  username,
@@ -24823,14 +24974,16 @@
24823
24974
  query: {
24824
24975
  'audience': audience,
24825
24976
  'category': category,
24977
+ 'featured': featured,
24826
24978
  'limit': limit,
24827
- 'llm_providers': llmProviders,
24979
+ 'llm': llm,
24828
24980
  'offset': offset,
24829
24981
  'order_by': orderBy,
24830
24982
  'order_direction': orderDirection,
24831
24983
  'platform_key': platformKey,
24832
24984
  'query': query,
24833
24985
  'return_facet': returnFacet,
24986
+ 'starred': starred,
24834
24987
  'tags': tags,
24835
24988
  'tenant': tenant,
24836
24989
  'username': username,
@@ -36279,12 +36432,152 @@
36279
36432
  url: '/api/core/token/verify/'
36280
36433
  });
36281
36434
  }
36435
+ /**
36436
+ * List UserGroups
36437
+ * Retrieve a list of UserGroups. Can be filtered by platform_key, name, and include_users.
36438
+ * @returns PaginatedUserGroupList
36439
+ * @throws ApiError
36440
+ */
36441
+ static coreUserGroupsList({
36442
+ includeUsers = false,
36443
+ name,
36444
+ page,
36445
+ pageSize,
36446
+ platformKey,
36447
+ withPermissions = false
36448
+ }) {
36449
+ return request(OpenAPI, {
36450
+ method: 'GET',
36451
+ url: '/api/core/user-groups/',
36452
+ query: {
36453
+ 'include_users': includeUsers,
36454
+ 'name': name,
36455
+ 'page': page,
36456
+ 'page_size': pageSize,
36457
+ 'platform_key': platformKey,
36458
+ 'with_permissions': withPermissions
36459
+ }
36460
+ });
36461
+ }
36462
+ /**
36463
+ * Create UserGroup
36464
+ * Create a new UserGroup for a platform. Users can be assigned during creation.
36465
+ * @returns UserGroup
36466
+ * @throws ApiError
36467
+ */
36468
+ static coreUserGroupsCreate({
36469
+ requestBody
36470
+ }) {
36471
+ return request(OpenAPI, {
36472
+ method: 'POST',
36473
+ url: '/api/core/user-groups/',
36474
+ body: requestBody,
36475
+ mediaType: 'application/json',
36476
+ errors: {
36477
+ 400: `Invalid input data. Common errors include:
36478
+ - Users do not belong to the specified platform
36479
+ - Invalid user IDs provided`
36480
+ }
36481
+ });
36482
+ }
36483
+ /**
36484
+ * Retrieve UserGroup
36485
+ * Retrieve details of a specific UserGroup including assigned users.
36486
+ * @returns UserGroup
36487
+ * @throws ApiError
36488
+ */
36489
+ static coreUserGroupsRetrieve({
36490
+ id
36491
+ }) {
36492
+ return request(OpenAPI, {
36493
+ method: 'GET',
36494
+ url: '/api/core/user-groups/{id}/',
36495
+ path: {
36496
+ 'id': id
36497
+ },
36498
+ errors: {
36499
+ 404: `UserGroup not found`
36500
+ }
36501
+ });
36502
+ }
36503
+ /**
36504
+ * Update UserGroup
36505
+ * Update an existing UserGroup. Platform validation applies for user assignments.
36506
+ * @returns UserGroup
36507
+ * @throws ApiError
36508
+ */
36509
+ static coreUserGroupsUpdate({
36510
+ id,
36511
+ requestBody
36512
+ }) {
36513
+ return request(OpenAPI, {
36514
+ method: 'PUT',
36515
+ url: '/api/core/user-groups/{id}/',
36516
+ path: {
36517
+ 'id': id
36518
+ },
36519
+ body: requestBody,
36520
+ mediaType: 'application/json',
36521
+ errors: {
36522
+ 400: `Invalid input data. Common errors include:
36523
+ - Users do not belong to the specified platform
36524
+ - Invalid user IDs provided`,
36525
+ 404: `UserGroup not found`
36526
+ }
36527
+ });
36528
+ }
36529
+ /**
36530
+ * Partially update UserGroup
36531
+ * Partially update an existing UserGroup. Platform validation applies for user assignments.
36532
+ * @returns UserGroup
36533
+ * @throws ApiError
36534
+ */
36535
+ static coreUserGroupsPartialUpdate({
36536
+ id,
36537
+ requestBody
36538
+ }) {
36539
+ return request(OpenAPI, {
36540
+ method: 'PATCH',
36541
+ url: '/api/core/user-groups/{id}/',
36542
+ path: {
36543
+ 'id': id
36544
+ },
36545
+ body: requestBody,
36546
+ mediaType: 'application/json',
36547
+ errors: {
36548
+ 400: `Invalid input data. Common errors include:
36549
+ - Users do not belong to the specified platform
36550
+ - Invalid user IDs provided`,
36551
+ 404: `UserGroup not found`
36552
+ }
36553
+ });
36554
+ }
36555
+ /**
36556
+ * Delete UserGroup
36557
+ * Delete a UserGroup and all associated user group links.
36558
+ * @returns void
36559
+ * @throws ApiError
36560
+ */
36561
+ static coreUserGroupsDestroy({
36562
+ id
36563
+ }) {
36564
+ return request(OpenAPI, {
36565
+ method: 'DELETE',
36566
+ url: '/api/core/user-groups/{id}/',
36567
+ path: {
36568
+ 'id': id
36569
+ },
36570
+ errors: {
36571
+ 404: `UserGroup not found`
36572
+ }
36573
+ });
36574
+ }
36282
36575
  /**
36283
36576
  * Show (active) user groups associated with a platform
36284
36577
  * @returns any No response body
36285
36578
  * @throws ApiError
36286
36579
  */
36287
- static coreUserGroupsRetrieve() {
36580
+ static coreUserGroupsRetrieve2() {
36288
36581
  return request(OpenAPI, {
36289
36582
  method: 'GET',
36290
36583
  url: '/api/core/user_groups/'
@@ -36295,7 +36588,7 @@
36295
36588
  * @returns any No response body
36296
36589
  * @throws ApiError
36297
36590
  */
36298
- static coreUserGroupsCreate() {
36591
+ static coreUserGroupsCreate2() {
36299
36592
  return request(OpenAPI, {
36300
36593
  method: 'POST',
36301
36594
  url: '/api/core/user_groups/'
@@ -36306,7 +36599,7 @@
36306
36599
  * @returns void
36307
36600
  * @throws ApiError
36308
36601
  */
36309
- static coreUserGroupsDestroy() {
36602
+ static coreUserGroupsDestroy2() {
36310
36603
  return request(OpenAPI, {
36311
36604
  method: 'DELETE',
36312
36605
  url: '/api/core/user_groups/'