@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.cjs.js CHANGED
@@ -110,7 +110,7 @@ class CancelablePromise {
110
110
 
111
111
  const OpenAPI = {
112
112
  BASE: 'https://base.manager.iblai.app',
113
- VERSION: '4.95.2-ai-plus',
113
+ VERSION: '4.102.0-ai-plus',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
@@ -434,11 +434,13 @@ exports.KindEnum = void 0;
434
434
  /**
435
435
  * * `openai` - Openai
436
436
  * * `google` - Google
437
+ * * `azure_openai` - Azure Openai
437
438
  */
438
439
  exports.LlmProviderEnum = void 0;
439
440
  (function (LlmProviderEnum) {
440
441
  LlmProviderEnum["OPENAI"] = "openai";
441
442
  LlmProviderEnum["GOOGLE"] = "google";
443
+ LlmProviderEnum["AZURE_OPENAI"] = "azure_openai";
442
444
  })(exports.LlmProviderEnum || (exports.LlmProviderEnum = {}));
443
445
 
444
446
  /* generated using openapi-typescript-codegen -- do not edit */
@@ -703,22 +705,6 @@ exports.Provider05cEnum = void 0;
703
705
  Provider05cEnum["TEAMS"] = "teams";
704
706
  })(exports.Provider05cEnum || (exports.Provider05cEnum = {}));
705
707
 
706
- /* generated using openapi-typescript-codegen -- do not edit */
707
- /* istanbul ignore file */
708
- /* tslint:disable */
709
- /* eslint-disable */
710
- /**
711
- * * `openai` - Openai
712
- * * `google` - Google
713
- * * `elevenlabs` - Elevenlabs
714
- */
715
- exports.Provider637Enum = void 0;
716
- (function (Provider637Enum) {
717
- Provider637Enum["OPENAI"] = "openai";
718
- Provider637Enum["GOOGLE"] = "google";
719
- Provider637Enum["ELEVENLABS"] = "elevenlabs";
720
- })(exports.Provider637Enum || (exports.Provider637Enum = {}));
721
-
722
708
  /* generated using openapi-typescript-codegen -- do not edit */
723
709
  /* istanbul ignore file */
724
710
  /* tslint:disable */
@@ -864,6 +850,7 @@ exports.StripeCheckoutSessionRequestModeEnum = void 0;
864
850
  * * `google` - Google
865
851
  * * `deepgram` - Deepgram
866
852
  * * `cartesia` - Cartesia
853
+ * * `azure_openai` - Azure Openai
867
854
  */
868
855
  exports.SttProviderEnum = void 0;
869
856
  (function (SttProviderEnum) {
@@ -871,6 +858,7 @@ exports.SttProviderEnum = void 0;
871
858
  SttProviderEnum["GOOGLE"] = "google";
872
859
  SttProviderEnum["DEEPGRAM"] = "deepgram";
873
860
  SttProviderEnum["CARTESIA"] = "cartesia";
861
+ SttProviderEnum["AZURE_OPENAI"] = "azure_openai";
874
862
  })(exports.SttProviderEnum || (exports.SttProviderEnum = {}));
875
863
 
876
864
  /* generated using openapi-typescript-codegen -- do not edit */
@@ -943,12 +931,14 @@ exports.TransportEnum = void 0;
943
931
  * * `openai` - Openai
944
932
  * * `google` - Google
945
933
  * * `elevenlabs` - Elevenlabs
934
+ * * `azure_openai` - Azure Openai
946
935
  */
947
936
  exports.TtsProviderEnum = void 0;
948
937
  (function (TtsProviderEnum) {
949
938
  TtsProviderEnum["OPENAI"] = "openai";
950
939
  TtsProviderEnum["GOOGLE"] = "google";
951
940
  TtsProviderEnum["ELEVENLABS"] = "elevenlabs";
941
+ TtsProviderEnum["AZURE_OPENAI"] = "azure_openai";
952
942
  })(exports.TtsProviderEnum || (exports.TtsProviderEnum = {}));
953
943
 
954
944
  /* generated using openapi-typescript-codegen -- do not edit */
@@ -1017,6 +1007,22 @@ exports.TypeC42Enum = void 0;
1017
1007
  TypeC42Enum["ASSESSMENT"] = "assessment";
1018
1008
  })(exports.TypeC42Enum || (exports.TypeC42Enum = {}));
1019
1009
 
1010
+ /* generated using openapi-typescript-codegen -- do not edit */
1011
+ /* istanbul ignore file */
1012
+ /* tslint:disable */
1013
+ /* eslint-disable */
1014
+ /**
1015
+ * * `openai` - Openai
1016
+ * * `google` - Google
1017
+ * * `elevenlabs` - Elevenlabs
1018
+ */
1019
+ exports.VoiceProviderEnum = void 0;
1020
+ (function (VoiceProviderEnum) {
1021
+ VoiceProviderEnum["OPENAI"] = "openai";
1022
+ VoiceProviderEnum["GOOGLE"] = "google";
1023
+ VoiceProviderEnum["ELEVENLABS"] = "elevenlabs";
1024
+ })(exports.VoiceProviderEnum || (exports.VoiceProviderEnum = {}));
1025
+
1020
1026
  /* generated using openapi-typescript-codegen -- do not edit */
1021
1027
  /* istanbul ignore file */
1022
1028
  /* tslint:disable */
@@ -14205,7 +14211,6 @@ class AiMentorService {
14205
14211
  static aiMentorOrgsUsersArtifactsList({
14206
14212
  org,
14207
14213
  userId,
14208
- chatMessageId,
14209
14214
  fileExtension,
14210
14215
  llmName,
14211
14216
  llmProvider,
@@ -14225,7 +14230,6 @@ class AiMentorService {
14225
14230
  'user_id': userId
14226
14231
  },
14227
14232
  query: {
14228
- 'chat_message_id': chatMessageId,
14229
14233
  'file_extension': fileExtension,
14230
14234
  'llm_name': llmName,
14231
14235
  'llm_provider': llmProvider,
@@ -14292,7 +14296,7 @@ class AiMentorService {
14292
14296
  }
14293
14297
  /**
14294
14298
  * Update an artifact
14295
- * Update all fields of an artifact (excluding chat_message reference).
14299
+ * Update all fields of an artifact (excluding session reference).
14296
14300
  * @returns Artifact
14297
14301
  * @throws ApiError
14298
14302
  */
@@ -14379,14 +14383,13 @@ class AiMentorService {
14379
14383
  /**
14380
14384
  * List artifact versions
14381
14385
  * Retrieve all versions for a specific artifact.
14382
- * @returns PaginatedArtifactVersionListList
14386
+ * @returns PaginatedArtifactVersionList
14383
14387
  * @throws ApiError
14384
14388
  */
14385
14389
  static aiMentorOrgsUsersArtifactsVersionsList({
14386
14390
  id,
14387
14391
  org,
14388
14392
  userId,
14389
- chatMessageId,
14390
14393
  fileExtension,
14391
14394
  llmName,
14392
14395
  llmProvider,
@@ -14407,7 +14410,6 @@ class AiMentorService {
14407
14410
  'user_id': userId
14408
14411
  },
14409
14412
  query: {
14410
- 'chat_message_id': chatMessageId,
14411
14413
  'file_extension': fileExtension,
14412
14414
  'llm_name': llmName,
14413
14415
  'llm_provider': llmProvider,
@@ -18166,6 +18168,128 @@ class AiMentorService {
18166
18168
  }
18167
18169
  });
18168
18170
  }
18171
+ /**
18172
+ * Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
18173
+ * @returns PaginatedGoogleAgentDetailList
18174
+ * @throws ApiError
18175
+ */
18176
+ static aiMentorOrgsUsersGoogleAgentsList({
18177
+ org,
18178
+ userId,
18179
+ page,
18180
+ pageSize
18181
+ }) {
18182
+ return request(OpenAPI, {
18183
+ method: 'GET',
18184
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/',
18185
+ path: {
18186
+ 'org': org,
18187
+ 'user_id': userId
18188
+ },
18189
+ query: {
18190
+ 'page': page,
18191
+ 'page_size': pageSize
18192
+ }
18193
+ });
18194
+ }
18195
+ /**
18196
+ * Sample Request
18197
+ * ```
18198
+ * {"name": "my agent", "instruction": "you are a helpful agent",}
18199
+ * ```
18200
+ * @returns GoogleAgentDetail
18201
+ * @throws ApiError
18202
+ */
18203
+ static aiMentorOrgsUsersGoogleAgentsCreate({
18204
+ org,
18205
+ userId,
18206
+ requestBody
18207
+ }) {
18208
+ return request(OpenAPI, {
18209
+ method: 'POST',
18210
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/',
18211
+ path: {
18212
+ 'org': org,
18213
+ 'user_id': userId
18214
+ },
18215
+ body: requestBody,
18216
+ mediaType: 'application/json'
18217
+ });
18218
+ }
18219
+ /**
18220
+ * Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
18221
+ * @returns GoogleAgentDetail
18222
+ * @throws ApiError
18223
+ */
18224
+ static aiMentorOrgsUsersGoogleAgentsRetrieve({
18225
+ org,
18226
+ uniqueId,
18227
+ userId
18228
+ }) {
18229
+ return request(OpenAPI, {
18230
+ method: 'GET',
18231
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/{unique_id}/',
18232
+ path: {
18233
+ 'org': org,
18234
+ 'unique_id': uniqueId,
18235
+ 'user_id': userId
18236
+ }
18237
+ });
18238
+ }
18239
+ /**
18240
+ * Mainly used to update the sub agent list.
18241
+ *
18242
+ * Sample request:
18243
+ * ```
18244
+ * {
18245
+ * "sub_agents": [
18246
+ * "adc4bf84-c174-47e1-b11c-7713ef2dcd89",
18247
+ * "3fb5806d-3be1-4bfd-bcb0-a48558465644",
18248
+ * "339e44cd-6084-4530-be70-ac2a83759fb6"
18249
+ * ]
18250
+ * }
18251
+ * ```
18252
+ * @returns GoogleAgentDetail
18253
+ * @throws ApiError
18254
+ */
18255
+ static aiMentorOrgsUsersGoogleAgentsPartialUpdate({
18256
+ org,
18257
+ uniqueId,
18258
+ userId,
18259
+ requestBody
18260
+ }) {
18261
+ return request(OpenAPI, {
18262
+ method: 'PATCH',
18263
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/{unique_id}/',
18264
+ path: {
18265
+ 'org': org,
18266
+ 'unique_id': uniqueId,
18267
+ 'user_id': userId
18268
+ },
18269
+ body: requestBody,
18270
+ mediaType: 'application/json'
18271
+ });
18272
+ }
18273
+ /**
18274
+ * Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
18275
+ * @returns void
18276
+ * @throws ApiError
18277
+ */
18278
+ static aiMentorOrgsUsersGoogleAgentsDestroy({
18279
+ org,
18280
+ uniqueId,
18281
+ userId
18282
+ }) {
18283
+ return request(OpenAPI, {
18284
+ method: 'DELETE',
18285
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/google-agents/{unique_id}/',
18286
+ path: {
18287
+ 'org': org,
18288
+ 'unique_id': uniqueId,
18289
+ 'user_id': userId
18290
+ }
18291
+ });
18292
+ }
18169
18293
  /**
18170
18294
  * ViewSet for MCP server connections.
18171
18295
  *
@@ -22237,6 +22361,27 @@ class AiMentorService {
22237
22361
  }
22238
22362
  });
22239
22363
  }
22364
+ /**
22365
+ * Retrieve Shared Messages
22366
+ * Fetches shared chat messages for a specific session.
22367
+ * @returns MessageView
22368
+ * @throws ApiError
22369
+ */
22370
+ static aiMentorOrgsUsersSessionsSharedRetrieve({
22371
+ org,
22372
+ sessionId,
22373
+ userId
22374
+ }) {
22375
+ return request(OpenAPI, {
22376
+ method: 'GET',
22377
+ url: '/api/ai-mentor/orgs/{org}/users/{user_id}/sessions/{session_id}/shared/',
22378
+ path: {
22379
+ 'org': org,
22380
+ 'session_id': sessionId,
22381
+ 'user_id': userId
22382
+ }
22383
+ });
22384
+ }
22240
22385
  /**
22241
22386
  * Retrieve shell logs for a specific session.
22242
22387
  *
@@ -24683,12 +24828,14 @@ class AiSearchService {
24683
24828
  static v2GlobalMentorSearch({
24684
24829
  category,
24685
24830
  createdBy,
24831
+ featured,
24686
24832
  includeMainPublicMentors = false,
24687
24833
  limit,
24688
24834
  llm,
24689
24835
  offset,
24690
24836
  platformKey,
24691
24837
  query,
24838
+ starred,
24692
24839
  subjects,
24693
24840
  tenant,
24694
24841
  types,
@@ -24700,12 +24847,14 @@ class AiSearchService {
24700
24847
  query: {
24701
24848
  'category': category,
24702
24849
  'created_by': createdBy,
24850
+ 'featured': featured,
24703
24851
  'include_main_public_mentors': includeMainPublicMentors,
24704
24852
  'limit': limit,
24705
24853
  'llm': llm,
24706
24854
  'offset': offset,
24707
24855
  'platform_key': platformKey,
24708
24856
  'query': query,
24857
+ 'starred': starred,
24709
24858
  'subjects': subjects,
24710
24859
  'tenant': tenant,
24711
24860
  'types': types,
@@ -24800,14 +24949,16 @@ class AiSearchService {
24800
24949
  static v2PersonalizedMentors({
24801
24950
  audience,
24802
24951
  category,
24952
+ featured,
24803
24953
  limit,
24804
- llmProviders,
24954
+ llm,
24805
24955
  offset,
24806
24956
  orderBy,
24807
24957
  orderDirection,
24808
24958
  platformKey,
24809
24959
  query,
24810
24960
  returnFacet,
24961
+ starred,
24811
24962
  tags,
24812
24963
  tenant,
24813
24964
  username,
@@ -24819,14 +24970,16 @@ class AiSearchService {
24819
24970
  query: {
24820
24971
  'audience': audience,
24821
24972
  'category': category,
24973
+ 'featured': featured,
24822
24974
  'limit': limit,
24823
- 'llm_providers': llmProviders,
24975
+ 'llm': llm,
24824
24976
  'offset': offset,
24825
24977
  'order_by': orderBy,
24826
24978
  'order_direction': orderDirection,
24827
24979
  'platform_key': platformKey,
24828
24980
  'query': query,
24829
24981
  'return_facet': returnFacet,
24982
+ 'starred': starred,
24830
24983
  'tags': tags,
24831
24984
  'tenant': tenant,
24832
24985
  'username': username,
@@ -36275,12 +36428,152 @@ class CoreService {
36275
36428
  url: '/api/core/token/verify/'
36276
36429
  });
36277
36430
  }
36431
+ /**
36432
+ * List UserGroups
36433
+ * Retrieve a list of UserGroups. Can be filtered by platform_key, name, and include_users.
36434
+ * @returns PaginatedUserGroupList
36435
+ * @throws ApiError
36436
+ */
36437
+ static coreUserGroupsList({
36438
+ includeUsers = false,
36439
+ name,
36440
+ page,
36441
+ pageSize,
36442
+ platformKey,
36443
+ withPermissions = false
36444
+ }) {
36445
+ return request(OpenAPI, {
36446
+ method: 'GET',
36447
+ url: '/api/core/user-groups/',
36448
+ query: {
36449
+ 'include_users': includeUsers,
36450
+ 'name': name,
36451
+ 'page': page,
36452
+ 'page_size': pageSize,
36453
+ 'platform_key': platformKey,
36454
+ 'with_permissions': withPermissions
36455
+ }
36456
+ });
36457
+ }
36458
+ /**
36459
+ * Create UserGroup
36460
+ * Create a new UserGroup for a platform. Users can be assigned during creation.
36461
+ * @returns UserGroup
36462
+ * @throws ApiError
36463
+ */
36464
+ static coreUserGroupsCreate({
36465
+ requestBody
36466
+ }) {
36467
+ return request(OpenAPI, {
36468
+ method: 'POST',
36469
+ url: '/api/core/user-groups/',
36470
+ body: requestBody,
36471
+ mediaType: 'application/json',
36472
+ errors: {
36473
+ 400: `Invalid input data. Common errors include:
36474
+ - Users do not belong to the specified platform
36475
+ - Invalid user IDs provided`
36476
+ }
36477
+ });
36478
+ }
36479
+ /**
36480
+ * Retrieve UserGroup
36481
+ * Retrieve details of a specific UserGroup including assigned users.
36482
+ * @returns UserGroup
36483
+ * @throws ApiError
36484
+ */
36485
+ static coreUserGroupsRetrieve({
36486
+ id
36487
+ }) {
36488
+ return request(OpenAPI, {
36489
+ method: 'GET',
36490
+ url: '/api/core/user-groups/{id}/',
36491
+ path: {
36492
+ 'id': id
36493
+ },
36494
+ errors: {
36495
+ 404: `UserGroup not found`
36496
+ }
36497
+ });
36498
+ }
36499
+ /**
36500
+ * Update UserGroup
36501
+ * Update an existing UserGroup. Platform validation applies for user assignments.
36502
+ * @returns UserGroup
36503
+ * @throws ApiError
36504
+ */
36505
+ static coreUserGroupsUpdate({
36506
+ id,
36507
+ requestBody
36508
+ }) {
36509
+ return request(OpenAPI, {
36510
+ method: 'PUT',
36511
+ url: '/api/core/user-groups/{id}/',
36512
+ path: {
36513
+ 'id': id
36514
+ },
36515
+ body: requestBody,
36516
+ mediaType: 'application/json',
36517
+ errors: {
36518
+ 400: `Invalid input data. Common errors include:
36519
+ - Users do not belong to the specified platform
36520
+ - Invalid user IDs provided`,
36521
+ 404: `UserGroup not found`
36522
+ }
36523
+ });
36524
+ }
36525
+ /**
36526
+ * Partially update UserGroup
36527
+ * Partially update an existing UserGroup. Platform validation applies for user assignments.
36528
+ * @returns UserGroup
36529
+ * @throws ApiError
36530
+ */
36531
+ static coreUserGroupsPartialUpdate({
36532
+ id,
36533
+ requestBody
36534
+ }) {
36535
+ return request(OpenAPI, {
36536
+ method: 'PATCH',
36537
+ url: '/api/core/user-groups/{id}/',
36538
+ path: {
36539
+ 'id': id
36540
+ },
36541
+ body: requestBody,
36542
+ mediaType: 'application/json',
36543
+ errors: {
36544
+ 400: `Invalid input data. Common errors include:
36545
+ - Users do not belong to the specified platform
36546
+ - Invalid user IDs provided`,
36547
+ 404: `UserGroup not found`
36548
+ }
36549
+ });
36550
+ }
36551
+ /**
36552
+ * Delete UserGroup
36553
+ * Delete a UserGroup and all associated user group links.
36554
+ * @returns void
36555
+ * @throws ApiError
36556
+ */
36557
+ static coreUserGroupsDestroy({
36558
+ id
36559
+ }) {
36560
+ return request(OpenAPI, {
36561
+ method: 'DELETE',
36562
+ url: '/api/core/user-groups/{id}/',
36563
+ path: {
36564
+ 'id': id
36565
+ },
36566
+ errors: {
36567
+ 404: `UserGroup not found`
36568
+ }
36569
+ });
36570
+ }
36278
36571
  /**
36279
36572
  * Show (active) user groups associated with a platform
36280
36573
  * @returns any No response body
36281
36574
  * @throws ApiError
36282
36575
  */
36283
- static coreUserGroupsRetrieve() {
36576
+ static coreUserGroupsRetrieve2() {
36284
36577
  return request(OpenAPI, {
36285
36578
  method: 'GET',
36286
36579
  url: '/api/core/user_groups/'
@@ -36291,7 +36584,7 @@ class CoreService {
36291
36584
  * @returns any No response body
36292
36585
  * @throws ApiError
36293
36586
  */
36294
- static coreUserGroupsCreate() {
36587
+ static coreUserGroupsCreate2() {
36295
36588
  return request(OpenAPI, {
36296
36589
  method: 'POST',
36297
36590
  url: '/api/core/user_groups/'
@@ -36302,7 +36595,7 @@ class CoreService {
36302
36595
  * @returns void
36303
36596
  * @throws ApiError
36304
36597
  */
36305
- static coreUserGroupsDestroy() {
36598
+ static coreUserGroupsDestroy2() {
36306
36599
  return request(OpenAPI, {
36307
36600
  method: 'DELETE',
36308
36601
  url: '/api/core/user_groups/'