@iblai/iblai-api 4.96.2-ai → 4.96.3-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.
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.96.2-ai-plus',
113
+ VERSION: '4.96.3-ai-plus',
114
114
  WITH_CREDENTIALS: false,
115
115
  CREDENTIALS: 'include',
116
116
  TOKEN: undefined,
@@ -24833,7 +24833,7 @@ class AiSearchService {
24833
24833
  category,
24834
24834
  featured,
24835
24835
  limit,
24836
- llmProviders,
24836
+ llm,
24837
24837
  offset,
24838
24838
  orderBy,
24839
24839
  orderDirection,
@@ -24854,7 +24854,7 @@ class AiSearchService {
24854
24854
  'category': category,
24855
24855
  'featured': featured,
24856
24856
  'limit': limit,
24857
- 'llm_providers': llmProviders,
24857
+ 'llm': llm,
24858
24858
  'offset': offset,
24859
24859
  'order_by': orderBy,
24860
24860
  'order_direction': orderDirection,
package/dist/index.esm.js CHANGED
@@ -108,7 +108,7 @@ class CancelablePromise {
108
108
 
109
109
  const OpenAPI = {
110
110
  BASE: 'https://base.manager.iblai.app',
111
- VERSION: '4.96.2-ai-plus',
111
+ VERSION: '4.96.3-ai-plus',
112
112
  WITH_CREDENTIALS: false,
113
113
  CREDENTIALS: 'include',
114
114
  TOKEN: undefined,
@@ -24831,7 +24831,7 @@ class AiSearchService {
24831
24831
  category,
24832
24832
  featured,
24833
24833
  limit,
24834
- llmProviders,
24834
+ llm,
24835
24835
  offset,
24836
24836
  orderBy,
24837
24837
  orderDirection,
@@ -24852,7 +24852,7 @@ class AiSearchService {
24852
24852
  'category': category,
24853
24853
  'featured': featured,
24854
24854
  'limit': limit,
24855
- 'llm_providers': llmProviders,
24855
+ 'llm': llm,
24856
24856
  'offset': offset,
24857
24857
  'order_by': orderBy,
24858
24858
  'order_direction': orderDirection,
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.96.2-ai-plus',
117
+ VERSION: '4.96.3-ai-plus',
118
118
  WITH_CREDENTIALS: false,
119
119
  CREDENTIALS: 'include',
120
120
  TOKEN: undefined,
@@ -24837,7 +24837,7 @@
24837
24837
  category,
24838
24838
  featured,
24839
24839
  limit,
24840
- llmProviders,
24840
+ llm,
24841
24841
  offset,
24842
24842
  orderBy,
24843
24843
  orderDirection,
@@ -24858,7 +24858,7 @@
24858
24858
  'category': category,
24859
24859
  'featured': featured,
24860
24860
  'limit': limit,
24861
- 'llm_providers': llmProviders,
24861
+ 'llm': llm,
24862
24862
  'offset': offset,
24863
24863
  'order_by': orderBy,
24864
24864
  'order_direction': orderDirection,
@@ -203,7 +203,7 @@ export declare class AiSearchService {
203
203
  * @returns V2PersonalizedMentorsResponse
204
204
  * @throws ApiError
205
205
  */
206
- static v2PersonalizedMentors({ audience, category, featured, limit, llmProviders, offset, orderBy, orderDirection, platformKey, query, returnFacet, starred, tags, tenant, username, visibility, }: {
206
+ static v2PersonalizedMentors({ audience, category, featured, limit, llm, offset, orderBy, orderDirection, platformKey, query, returnFacet, starred, tags, tenant, username, visibility, }: {
207
207
  /**
208
208
  * Filter by audience
209
209
  */
@@ -221,9 +221,9 @@ export declare class AiSearchService {
221
221
  */
222
222
  limit?: number;
223
223
  /**
224
- * Filter by LLM provider
224
+ * LLM provider filter (frontend uses 'llm', backend maps to 'llm_provider')
225
225
  */
226
- llmProviders?: Array<string>;
226
+ llm?: string;
227
227
  /**
228
228
  * Number of results to skip
229
229
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iblai/iblai-api",
3
- "version": "4.96.2-ai",
3
+ "version": "4.96.3-ai",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "type": "module",
package/sdk_schema.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  openapi: 3.0.3
2
2
  info:
3
3
  title: ibl-data-manager
4
- version: 4.96.2-ai-plus
4
+ version: 4.96.3-ai-plus
5
5
  description: API for iblai
6
6
  paths:
7
7
  /api/ai-account/connected-services/callback/:
@@ -33945,12 +33945,11 @@ paths:
33945
33945
  type: integer
33946
33946
  description: Number of results per page
33947
33947
  - in: query
33948
- name: llm_providers
33948
+ name: llm
33949
33949
  schema:
33950
- type: array
33951
- items:
33952
- type: string
33953
- description: Filter by LLM provider
33950
+ type: string
33951
+ minLength: 1
33952
+ description: LLM provider filter (frontend uses 'llm', backend maps to 'llm_provider')
33954
33953
  - in: query
33955
33954
  name: offset
33956
33955
  schema:
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
21
21
 
22
22
  export const OpenAPI: OpenAPIConfig = {
23
23
  BASE: 'https://base.manager.iblai.app',
24
- VERSION: '4.96.2-ai-plus',
24
+ VERSION: '4.96.3-ai-plus',
25
25
  WITH_CREDENTIALS: false,
26
26
  CREDENTIALS: 'include',
27
27
  TOKEN: undefined,
@@ -305,7 +305,7 @@ export class AiSearchService {
305
305
  category,
306
306
  featured,
307
307
  limit,
308
- llmProviders,
308
+ llm,
309
309
  offset,
310
310
  orderBy,
311
311
  orderDirection,
@@ -335,9 +335,9 @@ export class AiSearchService {
335
335
  */
336
336
  limit?: number,
337
337
  /**
338
- * Filter by LLM provider
338
+ * LLM provider filter (frontend uses 'llm', backend maps to 'llm_provider')
339
339
  */
340
- llmProviders?: Array<string>,
340
+ llm?: string,
341
341
  /**
342
342
  * Number of results to skip
343
343
  */
@@ -394,7 +394,7 @@ export class AiSearchService {
394
394
  'category': category,
395
395
  'featured': featured,
396
396
  'limit': limit,
397
- 'llm_providers': llmProviders,
397
+ 'llm': llm,
398
398
  'offset': offset,
399
399
  'order_by': orderBy,
400
400
  'order_direction': orderDirection,