@iblai/iblai-api 3.48.3-core → 3.48.4-core

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 (63) hide show
  1. package/dist/index.cjs.js +3038 -2750
  2. package/dist/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +3038 -2750
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/index.umd.js +3038 -2750
  6. package/dist/index.umd.js.map +1 -1
  7. package/dist/types/services/AnalyticsService.d.ts +42 -13
  8. package/dist/types/services/AudienceService.d.ts +345 -149
  9. package/dist/types/services/CareerService.d.ts +117 -90
  10. package/dist/types/services/CatalogService.d.ts +3735 -1072
  11. package/dist/types/services/CoreService.d.ts +421 -210
  12. package/dist/types/services/CredentialsService.d.ts +173 -138
  13. package/dist/types/services/DepartmentsService.d.ts +53 -16
  14. package/dist/types/services/EngagementService.d.ts +459 -179
  15. package/dist/types/services/FeaturesService.d.ts +16 -7
  16. package/dist/types/services/FinanceService.d.ts +49 -20
  17. package/dist/types/services/MediaResourcesService.d.ts +243 -67
  18. package/dist/types/services/NotificationBuilderService.d.ts +31 -17
  19. package/dist/types/services/NotificationService.d.ts +56 -49
  20. package/dist/types/services/OrgsService.d.ts +106 -77
  21. package/dist/types/services/OverviewService.d.ts +154 -55
  22. package/dist/types/services/PerformanceService.d.ts +132 -56
  23. package/dist/types/services/PerlearnerService.d.ts +431 -217
  24. package/dist/types/services/PlatformService.d.ts +221 -116
  25. package/dist/types/services/ProviderAssociationService.d.ts +3 -2
  26. package/dist/types/services/ProvidersService.d.ts +27 -18
  27. package/dist/types/services/ProvisionService.d.ts +3 -2
  28. package/dist/types/services/RecommendationsService.d.ts +3 -3
  29. package/dist/types/services/ReportsService.d.ts +22 -16
  30. package/dist/types/services/RolesService.d.ts +8 -6
  31. package/dist/types/services/SearchService.d.ts +305 -80
  32. package/dist/types/services/ServiceService.d.ts +33 -29
  33. package/dist/types/services/SkillsService.d.ts +40 -32
  34. package/dist/types/services/UserGroupsService.d.ts +53 -16
  35. package/package.json +1 -1
  36. package/src/services/AnalyticsService.ts +45 -16
  37. package/src/services/AudienceService.ts +380 -184
  38. package/src/services/CareerService.ts +144 -117
  39. package/src/services/CatalogService.ts +3995 -1332
  40. package/src/services/CoreService.ts +503 -286
  41. package/src/services/CredentialsService.ts +253 -173
  42. package/src/services/DepartmentsService.ts +56 -19
  43. package/src/services/EngagementService.ts +528 -236
  44. package/src/services/FeaturesService.ts +19 -10
  45. package/src/services/FinanceService.ts +54 -25
  46. package/src/services/MediaResourcesService.ts +251 -75
  47. package/src/services/NotificationBuilderService.ts +36 -22
  48. package/src/services/NotificationService.ts +73 -61
  49. package/src/services/OrgsService.ts +135 -106
  50. package/src/services/OverviewService.ts +172 -73
  51. package/src/services/PerformanceService.ts +153 -77
  52. package/src/services/PerlearnerService.ts +591 -279
  53. package/src/services/PlatformService.ts +278 -157
  54. package/src/services/ProviderAssociationService.ts +4 -3
  55. package/src/services/ProvidersService.ts +36 -27
  56. package/src/services/ProvisionService.ts +4 -3
  57. package/src/services/RecommendationsService.ts +5 -4
  58. package/src/services/ReportsService.ts +28 -22
  59. package/src/services/RolesService.ts +10 -8
  60. package/src/services/SearchService.ts +323 -98
  61. package/src/services/ServiceService.ts +49 -39
  62. package/src/services/SkillsService.ts +56 -44
  63. package/src/services/UserGroupsService.ts +56 -19
@@ -6,9 +6,10 @@ export declare class ProvisionService {
6
6
  *
7
7
  * request body:
8
8
  * {"config_name": "demo_config}
9
- * @param configName
10
9
  * @returns any No response body
11
10
  * @throws ApiError
12
11
  */
13
- static provisionCreate(configName: string): CancelablePromise<any>;
12
+ static provisionCreate({ configName, }: {
13
+ configName: string;
14
+ }): CancelablePromise<any>;
14
15
  }
@@ -4,10 +4,10 @@ export declare class RecommendationsService {
4
4
  /**
5
5
  * API endpoint that returns a search api url prepopulated with context data
6
6
  * See http://localhost:8000/api/schema/swagger-ui/#/recommendations
7
- * @param org
8
- * @param userId
9
7
  * @returns RecommendationSearchAPI
10
8
  * @throws ApiError
11
9
  */
12
- static recommendationsOrgsUsersRetrieve(org: string, userId: string): CancelablePromise<RecommendationSearchAPI>;
10
+ static recommendationsOrgsUsersRetrieve({ org, userId, }: {
11
+ org: string;
12
+ }): CancelablePromise<RecommendationSearchAPI>;
13
13
  }
@@ -18,11 +18,12 @@ export declare class ReportsService {
18
18
  *
19
19
  * Returns:
20
20
  * A list of report objects with their metadata and status information.
21
- * @param org
22
21
  * @returns ReportList
23
22
  * @throws ApiError
24
23
  */
25
- static reportsOrgsRetrieve(org: string): CancelablePromise<ReportList>;
24
+ static reportsOrgsRetrieve({ org, }: {
25
+ org: string;
26
+ }): CancelablePromise<ReportList>;
26
27
  /**
27
28
  * Retrieves detailed information about a specific report type.
28
29
  *
@@ -40,12 +41,13 @@ export declare class ReportsService {
40
41
  *
41
42
  * Error Responses:
42
43
  * 404 Not Found: If the specified report type doesn't exist
43
- * @param org
44
- * @param reportName
45
44
  * @returns ReportDetail
46
45
  * @throws ApiError
47
46
  */
48
- static reportsOrgsRetrieve2(org: string, reportName: string): CancelablePromise<ReportDetail>;
47
+ static reportsOrgsRetrieve2({ org, reportName, }: {
48
+ org: string;
49
+ reportName: string;
50
+ }): CancelablePromise<ReportDetail>;
49
51
  /**
50
52
  * Creates and manages report generation requests.
51
53
  *
@@ -88,12 +90,13 @@ export declare class ReportsService {
88
90
  * 400 Bad Request: Invalid parameters or report configuration
89
91
  * 404 Not Found: Report type not found
90
92
  * 403 Forbidden: User doesn't have permission for the requested report
91
- * @param org
92
- * @param requestBody
93
93
  * @returns ReportCreate
94
94
  * @throws ApiError
95
95
  */
96
- static reportsOrgsNewCreate(org: string, requestBody?: ReportRequest): CancelablePromise<ReportCreate>;
96
+ static reportsOrgsNewCreate({ org, requestBody, }: {
97
+ org: string;
98
+ requestBody?: ReportRequest;
99
+ }): CancelablePromise<ReportCreate>;
97
100
  /**
98
101
  * Returns a list of reports available in the system.
99
102
  *
@@ -107,19 +110,21 @@ export declare class ReportsService {
107
110
  * - status: Current status of the report if it has been previously requested
108
111
  *
109
112
  * The status will include details like the report ID, state, and download URL if completed.
110
- * @param key
111
113
  * @returns ReportList
112
114
  * @throws ApiError
113
115
  */
114
- static reportsPlatformsRetrieve(key: string): CancelablePromise<ReportList>;
116
+ static reportsPlatformsRetrieve({ key, }: {
117
+ key: string;
118
+ }): CancelablePromise<ReportList>;
115
119
  /**
116
120
  * Returns details of a specific report type including its status if previously requested.
117
- * @param key
118
- * @param reportName
119
121
  * @returns ReportDetail
120
122
  * @throws ApiError
121
123
  */
122
- static reportsPlatformsRetrieve2(key: string, reportName: string): CancelablePromise<ReportDetail>;
124
+ static reportsPlatformsRetrieve2({ key, reportName, }: {
125
+ key: string;
126
+ reportName: string;
127
+ }): CancelablePromise<ReportDetail>;
123
128
  /**
124
129
  * Triggers a new report generation.
125
130
  *
@@ -133,10 +138,11 @@ export declare class ReportsService {
133
138
  * - force: (optional) Force generation of a new report even if one exists
134
139
  * - filters: (optional) Additional filters for the report
135
140
  * - departments: (optional) Department IDs to filter by
136
- * @param key
137
- * @param requestBody
138
141
  * @returns ReportCreate
139
142
  * @throws ApiError
140
143
  */
141
- static reportsPlatformsNewCreate(key: string, requestBody?: ReportRequest): CancelablePromise<ReportCreate>;
144
+ static reportsPlatformsNewCreate({ key, requestBody, }: {
145
+ key: string;
146
+ requestBody?: ReportRequest;
147
+ }): CancelablePromise<ReportCreate>;
142
148
  }
@@ -22,12 +22,13 @@ export declare class RolesService {
22
22
  * Error Responses:
23
23
  * 400 Bad Request: If the user doesn't exist in the platform or has no desired role
24
24
  * 404 Not Found: If the specified platform doesn't exist
25
- * @param org
26
- * @param username
27
25
  * @returns DesiredRole
28
26
  * @throws ApiError
29
27
  */
30
- static rolesPlatformOrgsRolesUsersDesiredRolesRetrieve(org: string, username: string): CancelablePromise<DesiredRole>;
28
+ static rolesPlatformOrgsRolesUsersDesiredRolesRetrieve({ org, username, }: {
29
+ org: string;
30
+ username: string;
31
+ }): CancelablePromise<DesiredRole>;
31
32
  /**
32
33
  * Retrieve a user's reported role information.
33
34
  *
@@ -48,10 +49,11 @@ export declare class RolesService {
48
49
  * Error Responses:
49
50
  * 400 Bad Request: If the user doesn't exist in the platform or has no reported role
50
51
  * 404 Not Found: If the specified platform doesn't exist
51
- * @param org
52
- * @param username
53
52
  * @returns ReportedRole
54
53
  * @throws ApiError
55
54
  */
56
- static rolesPlatformOrgsRolesUsersReportedRolesRetrieve(org: string, username: string): CancelablePromise<ReportedRole>;
55
+ static rolesPlatformOrgsRolesUsersReportedRolesRetrieve({ org, username, }: {
56
+ org: string;
57
+ username: string;
58
+ }): CancelablePromise<ReportedRole>;
57
59
  }
@@ -167,80 +167,265 @@ export declare class SearchService {
167
167
  * - Results are cached for performance
168
168
  * - The 'resources' content type is only included by default if IBL_ENABLE_RESOURCES_IN_FACET is true
169
169
  * - For debugging, add ?debug=true to see detailed information about skill matching
170
- * @param allowSkillSearch Enable skill-based search
171
- * @param alphabetical Sort alphabetically by name
172
- * @param certificate Filter by certificate type
173
- * @param content Content types to include in results
174
- * @param courseId Filter by specific course ID
175
- * @param duration Filter by course duration range
176
- * @param language Filter by content language
177
- * @param level Filter by difficulty level
178
- * @param limit Number of results per page
179
- * @param offset Starting position for pagination
180
- * @param orderAscending Sort direction
181
- * @param orderBy Field to sort results by
182
- * @param pathwayId Filter by specific pathway ID
183
- * @param price Filter by price/audit status
184
- * @param programId Filter by specific program ID
185
- * @param programType Filter by program type
186
- * @param promotion Filter by promotion status
187
- * @param query Search term to filter content by name or description
188
- * @param resourceType Filter by resource type
189
- * @param returnFacet Include facet data in response
190
- * @param returnItems Include items in programs/pathways
191
- * @param selfPaced Filter by course format
192
- * @param skillId Filter by specific skill ID
193
- * @param skills Filter by skills
194
- * @param subject Filter by subject areas
195
- * @param tags Filter by tags
196
- * @param tenant Filter by tenant/organization
197
- * @param topics Filter by topic areas
198
- * @param updateFacet Force facet update
199
170
  * @returns GlobalCatalogSearchResponse
200
171
  * @throws ApiError
201
172
  */
202
- static searchCatalogRetrieve(allowSkillSearch?: boolean, alphabetical?: boolean, certificate?: Array<string>, content?: Array<string>, courseId?: string, duration?: Array<string>, language?: Array<string>, level?: Array<string>, limit?: number, offset?: number, orderAscending?: boolean, orderBy?: string, pathwayId?: string, price?: string, programId?: string, programType?: Array<string>, promotion?: Array<string>, query?: string, resourceType?: Array<string>, returnFacet?: boolean, returnItems?: boolean, selfPaced?: Array<string>, skillId?: string, skills?: Array<string>, subject?: Array<string>, tags?: Array<string>, tenant?: Array<string>, topics?: Array<string>, updateFacet?: string): CancelablePromise<GlobalCatalogSearchResponse>;
173
+ static searchCatalogRetrieve({ allowSkillSearch, alphabetical, certificate, content, courseId, duration, language, level, limit, offset, orderAscending, orderBy, pathwayId, price, programId, programType, promotion, query, resourceType, returnFacet, returnItems, selfPaced, skillId, skills, subject, tags, tenant, topics, updateFacet, }: {
174
+ /**
175
+ * Enable skill-based search
176
+ */
177
+ allowSkillSearch?: boolean;
178
+ /**
179
+ * Sort alphabetically by name
180
+ */
181
+ alphabetical?: boolean;
182
+ /**
183
+ * Filter by certificate type
184
+ */
185
+ certificate?: Array<string>;
186
+ /**
187
+ * Content types to include in results
188
+ */
189
+ content?: Array<string>;
190
+ /**
191
+ * Filter by specific course ID
192
+ */
193
+ courseId?: string;
194
+ /**
195
+ * Filter by course duration range
196
+ */
197
+ duration?: Array<string>;
198
+ /**
199
+ * Filter by content language
200
+ */
201
+ language?: Array<string>;
202
+ /**
203
+ * Filter by difficulty level
204
+ */
205
+ level?: Array<string>;
206
+ /**
207
+ * Number of results per page
208
+ */
209
+ limit?: number;
210
+ /**
211
+ * Starting position for pagination
212
+ */
213
+ offset?: number;
214
+ /**
215
+ * Sort direction
216
+ */
217
+ orderAscending?: boolean;
218
+ /**
219
+ * Field to sort results by
220
+ */
221
+ orderBy?: string;
222
+ /**
223
+ * Filter by specific pathway ID
224
+ */
225
+ pathwayId?: string;
226
+ /**
227
+ * Filter by price/audit status
228
+ */
229
+ price?: string;
230
+ /**
231
+ * Filter by specific program ID
232
+ */
233
+ programId?: string;
234
+ /**
235
+ * Filter by program type
236
+ */
237
+ programType?: Array<string>;
238
+ /**
239
+ * Filter by promotion status
240
+ */
241
+ promotion?: Array<string>;
242
+ /**
243
+ * Search term to filter content by name or description
244
+ */
245
+ query?: string;
246
+ /**
247
+ * Filter by resource type
248
+ */
249
+ resourceType?: Array<string>;
250
+ /**
251
+ * Include facet data in response
252
+ */
253
+ returnFacet?: boolean;
254
+ /**
255
+ * Include items in programs/pathways
256
+ */
257
+ returnItems?: boolean;
258
+ /**
259
+ * Filter by course format
260
+ */
261
+ selfPaced?: Array<string>;
262
+ /**
263
+ * Filter by specific skill ID
264
+ */
265
+ skillId?: string;
266
+ /**
267
+ * Filter by skills
268
+ */
269
+ skills?: Array<string>;
270
+ /**
271
+ * Filter by subject areas
272
+ */
273
+ subject?: Array<string>;
274
+ /**
275
+ * Filter by tags
276
+ */
277
+ tags?: Array<string>;
278
+ /**
279
+ * Filter by tenant/organization
280
+ */
281
+ tenant?: Array<string>;
282
+ /**
283
+ * Filter by topic areas
284
+ */
285
+ topics?: Array<string>;
286
+ /**
287
+ * Force facet update
288
+ */
289
+ updateFacet?: string;
290
+ }): CancelablePromise<GlobalCatalogSearchResponse>;
203
291
  /**
204
292
  * Determine whether to serve a detail view or a list view.
205
293
  * If any detail-identifying parameters are present (course_id, program_id, etc.)
206
294
  * the detail view is returned; otherwise the aggregated list view is returned.
207
- * @param username
208
- * @param allowSkillSearch Enable skill-based search
209
- * @param alphabetical Sort alphabetically by name
210
- * @param certificate Filter by certificate type
211
- * @param content Content types to include in results
212
- * @param courseId Retrieve a specific course by ID
213
- * @param duration Filter by course duration range
214
- * @param language Filter by content language
215
- * @param level Filter by difficulty level
216
- * @param limit Number of results per page
217
- * @param offset Starting position for pagination
218
- * @param orderAscending Sort direction
219
- * @param orderBy Field to sort results by
220
- * @param pathwayId Retrieve a specific pathway by ID
221
- * @param price Filter by price/audit status
222
- * @param programId Retrieve a specific program by ID
223
- * @param programType Filter by program type
224
- * @param promotion Filter by promotion status
225
- * @param query Search term to filter content by name or description
226
- * @param recommended Show only recommended content
227
- * @param resourceId Retrieve a specific resource by ID
228
- * @param resourceType Filter by resource type
229
- * @param returnFacet Include facet data in response
230
- * @param returnItems Include items in programs/pathways
231
- * @param roleId Retrieve a specific role by ID
232
- * @param selfPaced Filter by course format
233
- * @param skillId Retrieve a specific skill by ID
234
- * @param skills Filter by skills
235
- * @param subject Filter by subject areas
236
- * @param tags Filter by tags
237
- * @param tenant Filter by tenant/organization
238
- * @param topics Filter by topic areas
239
- * @param updateFacet Force facet update
240
295
  * @returns any
241
296
  * @throws ApiError
242
297
  */
243
- static searchPersonalizedCatalogRetrieve(username: string, allowSkillSearch?: boolean, alphabetical?: boolean, certificate?: Array<string>, content?: Array<string>, courseId?: string, duration?: Array<string>, language?: Array<string>, level?: Array<string>, limit?: number, offset?: number, orderAscending?: boolean, orderBy?: string, pathwayId?: string, price?: string, programId?: string, programType?: Array<string>, promotion?: Array<string>, query?: string, recommended?: boolean, resourceId?: string, resourceType?: Array<string>, returnFacet?: boolean, returnItems?: boolean, roleId?: string, selfPaced?: Array<string>, skillId?: string, skills?: Array<string>, subject?: Array<string>, tags?: Array<string>, tenant?: Array<string>, topics?: Array<string>, updateFacet?: string): CancelablePromise<Record<string, any>>;
298
+ static searchPersonalizedCatalogRetrieve({ username, allowSkillSearch, alphabetical, certificate, content, courseId, duration, language, level, limit, offset, orderAscending, orderBy, pathwayId, price, programId, programType, promotion, query, recommended, resourceId, resourceType, returnFacet, returnItems, roleId, selfPaced, skillId, skills, subject, tags, tenant, topics, updateFacet, }: {
299
+ username: string;
300
+ /**
301
+ * Enable skill-based search
302
+ */
303
+ allowSkillSearch?: boolean;
304
+ /**
305
+ * Sort alphabetically by name
306
+ */
307
+ alphabetical?: boolean;
308
+ /**
309
+ * Filter by certificate type
310
+ */
311
+ certificate?: Array<string>;
312
+ /**
313
+ * Content types to include in results
314
+ */
315
+ content?: Array<string>;
316
+ /**
317
+ * Retrieve a specific course by ID
318
+ */
319
+ courseId?: string;
320
+ /**
321
+ * Filter by course duration range
322
+ */
323
+ duration?: Array<string>;
324
+ /**
325
+ * Filter by content language
326
+ */
327
+ language?: Array<string>;
328
+ /**
329
+ * Filter by difficulty level
330
+ */
331
+ level?: Array<string>;
332
+ /**
333
+ * Number of results per page
334
+ */
335
+ limit?: number;
336
+ /**
337
+ * Starting position for pagination
338
+ */
339
+ offset?: number;
340
+ /**
341
+ * Sort direction
342
+ */
343
+ orderAscending?: boolean;
344
+ /**
345
+ * Field to sort results by
346
+ */
347
+ orderBy?: string;
348
+ /**
349
+ * Retrieve a specific pathway by ID
350
+ */
351
+ pathwayId?: string;
352
+ /**
353
+ * Filter by price/audit status
354
+ */
355
+ price?: string;
356
+ /**
357
+ * Retrieve a specific program by ID
358
+ */
359
+ programId?: string;
360
+ /**
361
+ * Filter by program type
362
+ */
363
+ programType?: Array<string>;
364
+ /**
365
+ * Filter by promotion status
366
+ */
367
+ promotion?: Array<string>;
368
+ /**
369
+ * Search term to filter content by name or description
370
+ */
371
+ query?: string;
372
+ /**
373
+ * Show only recommended content
374
+ */
375
+ recommended?: boolean;
376
+ /**
377
+ * Retrieve a specific resource by ID
378
+ */
379
+ resourceId?: string;
380
+ /**
381
+ * Filter by resource type
382
+ */
383
+ resourceType?: Array<string>;
384
+ /**
385
+ * Include facet data in response
386
+ */
387
+ returnFacet?: boolean;
388
+ /**
389
+ * Include items in programs/pathways
390
+ */
391
+ returnItems?: boolean;
392
+ /**
393
+ * Retrieve a specific role by ID
394
+ */
395
+ roleId?: string;
396
+ /**
397
+ * Filter by course format
398
+ */
399
+ selfPaced?: Array<string>;
400
+ /**
401
+ * Retrieve a specific skill by ID
402
+ */
403
+ skillId?: string;
404
+ /**
405
+ * Filter by skills
406
+ */
407
+ skills?: Array<string>;
408
+ /**
409
+ * Filter by subject areas
410
+ */
411
+ subject?: Array<string>;
412
+ /**
413
+ * Filter by tags
414
+ */
415
+ tags?: Array<string>;
416
+ /**
417
+ * Filter by tenant/organization
418
+ */
419
+ tenant?: Array<string>;
420
+ /**
421
+ * Filter by topic areas
422
+ */
423
+ topics?: Array<string>;
424
+ /**
425
+ * Force facet update
426
+ */
427
+ updateFacet?: string;
428
+ }): CancelablePromise<Record<string, any>>;
244
429
  /**
245
430
  * Search and filter users within a specific organization/tenant.
246
431
  *
@@ -330,23 +515,63 @@ export declare class SearchService {
330
515
  * - The requesting user must have an active account in the specified organization
331
516
  * - When department_mode is enabled, the user must be an admin of at least one department
332
517
  * - Department filtering restricts results to users in departments where the requesting user is an admin
333
- * @param org
334
- * @param username
335
- * @param department Filter by department names
336
- * @param educationDegree Filter by degree
337
- * @param educationFieldOfStudy Filter by field of study
338
- * @param educationInstitution Filter by institution
339
- * @param includeMembershipData Include user group membership data in results
340
- * @param limit Number of results per page
341
- * @param offset Starting position for pagination
342
- * @param q Search term to filter users by name, email, or other attributes
343
- * @param userResumeCompany Filter by company
344
- * @param userResumeIndustry Filter by industry
345
- * @param userResumeJobTitle Filter by job title
346
- * @param userResumeLocation Filter by location
347
- * @param userResumeSkills Filter by skills
348
518
  * @returns UserSearchResponse
349
519
  * @throws ApiError
350
520
  */
351
- static searchUsersOrgsUsersRetrieve(org: string, username: string, department?: Array<string>, educationDegree?: string, educationFieldOfStudy?: string, educationInstitution?: string, includeMembershipData?: boolean, limit?: number, offset?: number, q?: string, userResumeCompany?: string, userResumeIndustry?: string, userResumeJobTitle?: string, userResumeLocation?: string, userResumeSkills?: string): CancelablePromise<UserSearchResponse>;
521
+ static searchUsersOrgsUsersRetrieve({ org, username, department, educationDegree, educationFieldOfStudy, educationInstitution, includeMembershipData, limit, offset, q, userResumeCompany, userResumeIndustry, userResumeJobTitle, userResumeLocation, userResumeSkills, }: {
522
+ org: string;
523
+ username: string;
524
+ /**
525
+ * Filter by department names
526
+ */
527
+ department?: Array<string>;
528
+ /**
529
+ * Filter by degree
530
+ */
531
+ educationDegree?: string;
532
+ /**
533
+ * Filter by field of study
534
+ */
535
+ educationFieldOfStudy?: string;
536
+ /**
537
+ * Filter by institution
538
+ */
539
+ educationInstitution?: string;
540
+ /**
541
+ * Include user group membership data in results
542
+ */
543
+ includeMembershipData?: boolean;
544
+ /**
545
+ * Number of results per page
546
+ */
547
+ limit?: number;
548
+ /**
549
+ * Starting position for pagination
550
+ */
551
+ offset?: number;
552
+ /**
553
+ * Search term to filter users by name, email, or other attributes
554
+ */
555
+ q?: string;
556
+ /**
557
+ * Filter by company
558
+ */
559
+ userResumeCompany?: string;
560
+ /**
561
+ * Filter by industry
562
+ */
563
+ userResumeIndustry?: string;
564
+ /**
565
+ * Filter by job title
566
+ */
567
+ userResumeJobTitle?: string;
568
+ /**
569
+ * Filter by location
570
+ */
571
+ userResumeLocation?: string;
572
+ /**
573
+ * Filter by skills
574
+ */
575
+ userResumeSkills?: string;
576
+ }): CancelablePromise<UserSearchResponse>;
352
577
  }