@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
@@ -13,15 +13,16 @@ import { request as __request } from '../core/request';
13
13
  export class CareerService {
14
14
  /**
15
15
  * API endpoint for managing user base locations
16
- * @param org
17
- * @param username
18
16
  * @returns any No response body
19
17
  * @throws ApiError
20
18
  */
21
- public static careerLocationOrgsUsersRetrieve(
19
+ public static careerLocationOrgsUsersRetrieve({
20
+ org,
21
+ username,
22
+ }: {
22
23
  org: string,
23
24
  username: string,
24
- ): CancelablePromise<any> {
25
+ }): CancelablePromise<any> {
25
26
  return __request(OpenAPI, {
26
27
  method: 'GET',
27
28
  url: '/api/career/location/orgs/{org}/users/{username}/',
@@ -33,15 +34,16 @@ export class CareerService {
33
34
  }
34
35
  /**
35
36
  * API endpoint for managing user base locations
36
- * @param org
37
- * @param username
38
37
  * @returns any No response body
39
38
  * @throws ApiError
40
39
  */
41
- public static careerLocationOrgsUsersCreate(
40
+ public static careerLocationOrgsUsersCreate({
41
+ org,
42
+ username,
43
+ }: {
42
44
  org: string,
43
45
  username: string,
44
- ): CancelablePromise<any> {
46
+ }): CancelablePromise<any> {
45
47
  return __request(OpenAPI, {
46
48
  method: 'POST',
47
49
  url: '/api/career/location/orgs/{org}/users/{username}/',
@@ -53,15 +55,16 @@ export class CareerService {
53
55
  }
54
56
  /**
55
57
  * API endpoint for managing user base locations
56
- * @param org
57
- * @param username
58
58
  * @returns any No response body
59
59
  * @throws ApiError
60
60
  */
61
- public static careerLocationOrgsUsersUpdate(
61
+ public static careerLocationOrgsUsersUpdate({
62
+ org,
63
+ username,
64
+ }: {
62
65
  org: string,
63
66
  username: string,
64
- ): CancelablePromise<any> {
67
+ }): CancelablePromise<any> {
65
68
  return __request(OpenAPI, {
66
69
  method: 'PUT',
67
70
  url: '/api/career/location/orgs/{org}/users/{username}/',
@@ -73,13 +76,14 @@ export class CareerService {
73
76
  }
74
77
  /**
75
78
  * Platform-wide location statistics (GET only)
76
- * @param org
77
79
  * @returns any No response body
78
80
  * @throws ApiError
79
81
  */
80
- public static careerLocationsOrgsRetrieve(
82
+ public static careerLocationsOrgsRetrieve({
83
+ org,
84
+ }: {
81
85
  org: string,
82
- ): CancelablePromise<any> {
86
+ }): CancelablePromise<any> {
83
87
  return __request(OpenAPI, {
84
88
  method: 'GET',
85
89
  url: '/api/career/locations/orgs/{org}/',
@@ -89,15 +93,16 @@ export class CareerService {
89
93
  });
90
94
  }
91
95
  /**
92
- * @param org
93
- * @param username
94
96
  * @returns Company
95
97
  * @throws ApiError
96
98
  */
97
- public static careerOrgsCompaniesUsersRetrieve(
99
+ public static careerOrgsCompaniesUsersRetrieve({
100
+ org,
101
+ username,
102
+ }: {
98
103
  org: string,
99
104
  username: string,
100
- ): CancelablePromise<Company> {
105
+ }): CancelablePromise<Company> {
101
106
  return __request(OpenAPI, {
102
107
  method: 'GET',
103
108
  url: '/api/career/orgs/{org}/companies/users/{username}/',
@@ -108,17 +113,18 @@ export class CareerService {
108
113
  });
109
114
  }
110
115
  /**
111
- * @param org
112
- * @param username
113
- * @param requestBody
114
116
  * @returns Company
115
117
  * @throws ApiError
116
118
  */
117
- public static careerOrgsCompaniesUsersCreate(
119
+ public static careerOrgsCompaniesUsersCreate({
120
+ org,
121
+ username,
122
+ requestBody,
123
+ }: {
118
124
  org: string,
119
125
  username: string,
120
126
  requestBody: Company,
121
- ): CancelablePromise<Company> {
127
+ }): CancelablePromise<Company> {
122
128
  return __request(OpenAPI, {
123
129
  method: 'POST',
124
130
  url: '/api/career/orgs/{org}/companies/users/{username}/',
@@ -131,17 +137,18 @@ export class CareerService {
131
137
  });
132
138
  }
133
139
  /**
134
- * @param org
135
- * @param username
136
- * @param requestBody
137
140
  * @returns Company
138
141
  * @throws ApiError
139
142
  */
140
- public static careerOrgsCompaniesUsersUpdate(
143
+ public static careerOrgsCompaniesUsersUpdate({
144
+ org,
145
+ username,
146
+ requestBody,
147
+ }: {
141
148
  org: string,
142
149
  username: string,
143
150
  requestBody: Company,
144
- ): CancelablePromise<Company> {
151
+ }): CancelablePromise<Company> {
145
152
  return __request(OpenAPI, {
146
153
  method: 'PUT',
147
154
  url: '/api/career/orgs/{org}/companies/users/{username}/',
@@ -154,15 +161,16 @@ export class CareerService {
154
161
  });
155
162
  }
156
163
  /**
157
- * @param org
158
- * @param username
159
164
  * @returns void
160
165
  * @throws ApiError
161
166
  */
162
- public static careerOrgsCompaniesUsersDestroy(
167
+ public static careerOrgsCompaniesUsersDestroy({
168
+ org,
169
+ username,
170
+ }: {
163
171
  org: string,
164
172
  username: string,
165
- ): CancelablePromise<void> {
173
+ }): CancelablePromise<void> {
166
174
  return __request(OpenAPI, {
167
175
  method: 'DELETE',
168
176
  url: '/api/career/orgs/{org}/companies/users/{username}/',
@@ -173,15 +181,16 @@ export class CareerService {
173
181
  });
174
182
  }
175
183
  /**
176
- * @param org
177
- * @param username
178
184
  * @returns Education
179
185
  * @throws ApiError
180
186
  */
181
- public static careerOrgsEducationUsersRetrieve(
187
+ public static careerOrgsEducationUsersRetrieve({
188
+ org,
189
+ username,
190
+ }: {
182
191
  org: string,
183
192
  username: string,
184
- ): CancelablePromise<Education> {
193
+ }): CancelablePromise<Education> {
185
194
  return __request(OpenAPI, {
186
195
  method: 'GET',
187
196
  url: '/api/career/orgs/{org}/education/users/{username}/',
@@ -192,17 +201,18 @@ export class CareerService {
192
201
  });
193
202
  }
194
203
  /**
195
- * @param org
196
- * @param username
197
- * @param requestBody
198
204
  * @returns Education
199
205
  * @throws ApiError
200
206
  */
201
- public static careerOrgsEducationUsersCreate(
207
+ public static careerOrgsEducationUsersCreate({
208
+ org,
209
+ username,
210
+ requestBody,
211
+ }: {
202
212
  org: string,
203
213
  username: string,
204
214
  requestBody: Education,
205
- ): CancelablePromise<Education> {
215
+ }): CancelablePromise<Education> {
206
216
  return __request(OpenAPI, {
207
217
  method: 'POST',
208
218
  url: '/api/career/orgs/{org}/education/users/{username}/',
@@ -215,17 +225,18 @@ export class CareerService {
215
225
  });
216
226
  }
217
227
  /**
218
- * @param org
219
- * @param username
220
- * @param requestBody
221
228
  * @returns Education
222
229
  * @throws ApiError
223
230
  */
224
- public static careerOrgsEducationUsersUpdate(
231
+ public static careerOrgsEducationUsersUpdate({
232
+ org,
233
+ username,
234
+ requestBody,
235
+ }: {
225
236
  org: string,
226
237
  username: string,
227
238
  requestBody: Education,
228
- ): CancelablePromise<Education> {
239
+ }): CancelablePromise<Education> {
229
240
  return __request(OpenAPI, {
230
241
  method: 'PUT',
231
242
  url: '/api/career/orgs/{org}/education/users/{username}/',
@@ -238,15 +249,16 @@ export class CareerService {
238
249
  });
239
250
  }
240
251
  /**
241
- * @param org
242
- * @param username
243
252
  * @returns void
244
253
  * @throws ApiError
245
254
  */
246
- public static careerOrgsEducationUsersDestroy(
255
+ public static careerOrgsEducationUsersDestroy({
256
+ org,
257
+ username,
258
+ }: {
247
259
  org: string,
248
260
  username: string,
249
- ): CancelablePromise<void> {
261
+ }): CancelablePromise<void> {
250
262
  return __request(OpenAPI, {
251
263
  method: 'DELETE',
252
264
  url: '/api/career/orgs/{org}/education/users/{username}/',
@@ -257,15 +269,16 @@ export class CareerService {
257
269
  });
258
270
  }
259
271
  /**
260
- * @param org
261
- * @param username
262
272
  * @returns Experience
263
273
  * @throws ApiError
264
274
  */
265
- public static careerOrgsExperienceUsersRetrieve(
275
+ public static careerOrgsExperienceUsersRetrieve({
276
+ org,
277
+ username,
278
+ }: {
266
279
  org: string,
267
280
  username: string,
268
- ): CancelablePromise<Experience> {
281
+ }): CancelablePromise<Experience> {
269
282
  return __request(OpenAPI, {
270
283
  method: 'GET',
271
284
  url: '/api/career/orgs/{org}/experience/users/{username}/',
@@ -276,17 +289,18 @@ export class CareerService {
276
289
  });
277
290
  }
278
291
  /**
279
- * @param org
280
- * @param username
281
- * @param requestBody
282
292
  * @returns Experience
283
293
  * @throws ApiError
284
294
  */
285
- public static careerOrgsExperienceUsersCreate(
295
+ public static careerOrgsExperienceUsersCreate({
296
+ org,
297
+ username,
298
+ requestBody,
299
+ }: {
286
300
  org: string,
287
301
  username: string,
288
302
  requestBody: Experience,
289
- ): CancelablePromise<Experience> {
303
+ }): CancelablePromise<Experience> {
290
304
  return __request(OpenAPI, {
291
305
  method: 'POST',
292
306
  url: '/api/career/orgs/{org}/experience/users/{username}/',
@@ -299,17 +313,18 @@ export class CareerService {
299
313
  });
300
314
  }
301
315
  /**
302
- * @param org
303
- * @param username
304
- * @param requestBody
305
316
  * @returns Experience
306
317
  * @throws ApiError
307
318
  */
308
- public static careerOrgsExperienceUsersUpdate(
319
+ public static careerOrgsExperienceUsersUpdate({
320
+ org,
321
+ username,
322
+ requestBody,
323
+ }: {
309
324
  org: string,
310
325
  username: string,
311
326
  requestBody: Experience,
312
- ): CancelablePromise<Experience> {
327
+ }): CancelablePromise<Experience> {
313
328
  return __request(OpenAPI, {
314
329
  method: 'PUT',
315
330
  url: '/api/career/orgs/{org}/experience/users/{username}/',
@@ -322,15 +337,16 @@ export class CareerService {
322
337
  });
323
338
  }
324
339
  /**
325
- * @param org
326
- * @param username
327
340
  * @returns void
328
341
  * @throws ApiError
329
342
  */
330
- public static careerOrgsExperienceUsersDestroy(
343
+ public static careerOrgsExperienceUsersDestroy({
344
+ org,
345
+ username,
346
+ }: {
331
347
  org: string,
332
348
  username: string,
333
- ): CancelablePromise<void> {
349
+ }): CancelablePromise<void> {
334
350
  return __request(OpenAPI, {
335
351
  method: 'DELETE',
336
352
  url: '/api/career/orgs/{org}/experience/users/{username}/',
@@ -341,15 +357,16 @@ export class CareerService {
341
357
  });
342
358
  }
343
359
  /**
344
- * @param org
345
- * @param username
346
360
  * @returns Institution
347
361
  * @throws ApiError
348
362
  */
349
- public static careerOrgsInstitutionsUsersRetrieve(
363
+ public static careerOrgsInstitutionsUsersRetrieve({
364
+ org,
365
+ username,
366
+ }: {
350
367
  org: string,
351
368
  username: string,
352
- ): CancelablePromise<Institution> {
369
+ }): CancelablePromise<Institution> {
353
370
  return __request(OpenAPI, {
354
371
  method: 'GET',
355
372
  url: '/api/career/orgs/{org}/institutions/users/{username}/',
@@ -360,17 +377,18 @@ export class CareerService {
360
377
  });
361
378
  }
362
379
  /**
363
- * @param org
364
- * @param username
365
- * @param requestBody
366
380
  * @returns Institution
367
381
  * @throws ApiError
368
382
  */
369
- public static careerOrgsInstitutionsUsersCreate(
383
+ public static careerOrgsInstitutionsUsersCreate({
384
+ org,
385
+ username,
386
+ requestBody,
387
+ }: {
370
388
  org: string,
371
389
  username: string,
372
390
  requestBody: Institution,
373
- ): CancelablePromise<Institution> {
391
+ }): CancelablePromise<Institution> {
374
392
  return __request(OpenAPI, {
375
393
  method: 'POST',
376
394
  url: '/api/career/orgs/{org}/institutions/users/{username}/',
@@ -383,17 +401,18 @@ export class CareerService {
383
401
  });
384
402
  }
385
403
  /**
386
- * @param org
387
- * @param username
388
- * @param requestBody
389
404
  * @returns Institution
390
405
  * @throws ApiError
391
406
  */
392
- public static careerOrgsInstitutionsUsersUpdate(
407
+ public static careerOrgsInstitutionsUsersUpdate({
408
+ org,
409
+ username,
410
+ requestBody,
411
+ }: {
393
412
  org: string,
394
413
  username: string,
395
414
  requestBody: Institution,
396
- ): CancelablePromise<Institution> {
415
+ }): CancelablePromise<Institution> {
397
416
  return __request(OpenAPI, {
398
417
  method: 'PUT',
399
418
  url: '/api/career/orgs/{org}/institutions/users/{username}/',
@@ -406,15 +425,16 @@ export class CareerService {
406
425
  });
407
426
  }
408
427
  /**
409
- * @param org
410
- * @param username
411
428
  * @returns void
412
429
  * @throws ApiError
413
430
  */
414
- public static careerOrgsInstitutionsUsersDestroy(
431
+ public static careerOrgsInstitutionsUsersDestroy({
432
+ org,
433
+ username,
434
+ }: {
415
435
  org: string,
416
436
  username: string,
417
- ): CancelablePromise<void> {
437
+ }): CancelablePromise<void> {
418
438
  return __request(OpenAPI, {
419
439
  method: 'DELETE',
420
440
  url: '/api/career/orgs/{org}/institutions/users/{username}/',
@@ -425,15 +445,16 @@ export class CareerService {
425
445
  });
426
446
  }
427
447
  /**
428
- * @param org
429
- * @param username
430
448
  * @returns Program
431
449
  * @throws ApiError
432
450
  */
433
- public static careerOrgsProgramsUsersRetrieve(
451
+ public static careerOrgsProgramsUsersRetrieve({
452
+ org,
453
+ username,
454
+ }: {
434
455
  org: string,
435
456
  username: string,
436
- ): CancelablePromise<Program> {
457
+ }): CancelablePromise<Program> {
437
458
  return __request(OpenAPI, {
438
459
  method: 'GET',
439
460
  url: '/api/career/orgs/{org}/programs/users/{username}/',
@@ -444,17 +465,18 @@ export class CareerService {
444
465
  });
445
466
  }
446
467
  /**
447
- * @param org
448
- * @param username
449
- * @param requestBody
450
468
  * @returns Program
451
469
  * @throws ApiError
452
470
  */
453
- public static careerOrgsProgramsUsersCreate(
471
+ public static careerOrgsProgramsUsersCreate({
472
+ org,
473
+ username,
474
+ requestBody,
475
+ }: {
454
476
  org: string,
455
477
  username: string,
456
478
  requestBody: Program,
457
- ): CancelablePromise<Program> {
479
+ }): CancelablePromise<Program> {
458
480
  return __request(OpenAPI, {
459
481
  method: 'POST',
460
482
  url: '/api/career/orgs/{org}/programs/users/{username}/',
@@ -467,17 +489,18 @@ export class CareerService {
467
489
  });
468
490
  }
469
491
  /**
470
- * @param org
471
- * @param username
472
- * @param requestBody
473
492
  * @returns Program
474
493
  * @throws ApiError
475
494
  */
476
- public static careerOrgsProgramsUsersUpdate(
495
+ public static careerOrgsProgramsUsersUpdate({
496
+ org,
497
+ username,
498
+ requestBody,
499
+ }: {
477
500
  org: string,
478
501
  username: string,
479
502
  requestBody: Program,
480
- ): CancelablePromise<Program> {
503
+ }): CancelablePromise<Program> {
481
504
  return __request(OpenAPI, {
482
505
  method: 'PUT',
483
506
  url: '/api/career/orgs/{org}/programs/users/{username}/',
@@ -490,15 +513,16 @@ export class CareerService {
490
513
  });
491
514
  }
492
515
  /**
493
- * @param org
494
- * @param username
495
516
  * @returns void
496
517
  * @throws ApiError
497
518
  */
498
- public static careerOrgsProgramsUsersDestroy(
519
+ public static careerOrgsProgramsUsersDestroy({
520
+ org,
521
+ username,
522
+ }: {
499
523
  org: string,
500
524
  username: string,
501
- ): CancelablePromise<void> {
525
+ }): CancelablePromise<void> {
502
526
  return __request(OpenAPI, {
503
527
  method: 'DELETE',
504
528
  url: '/api/career/orgs/{org}/programs/users/{username}/',
@@ -509,15 +533,16 @@ export class CareerService {
509
533
  });
510
534
  }
511
535
  /**
512
- * @param org
513
- * @param username
514
536
  * @returns any No response body
515
537
  * @throws ApiError
516
538
  */
517
- public static careerResumeOrgsUsersRetrieve(
539
+ public static careerResumeOrgsUsersRetrieve({
540
+ org,
541
+ username,
542
+ }: {
518
543
  org: string,
519
544
  username: string,
520
- ): CancelablePromise<any> {
545
+ }): CancelablePromise<any> {
521
546
  return __request(OpenAPI, {
522
547
  method: 'GET',
523
548
  url: '/api/career/resume/orgs/{org}/users/{username}/',
@@ -528,15 +553,16 @@ export class CareerService {
528
553
  });
529
554
  }
530
555
  /**
531
- * @param org
532
- * @param username
533
556
  * @returns any No response body
534
557
  * @throws ApiError
535
558
  */
536
- public static careerResumeOrgsUsersCreate(
559
+ public static careerResumeOrgsUsersCreate({
560
+ org,
561
+ username,
562
+ }: {
537
563
  org: string,
538
564
  username: string,
539
- ): CancelablePromise<any> {
565
+ }): CancelablePromise<any> {
540
566
  return __request(OpenAPI, {
541
567
  method: 'POST',
542
568
  url: '/api/career/resume/orgs/{org}/users/{username}/',
@@ -547,15 +573,16 @@ export class CareerService {
547
573
  });
548
574
  }
549
575
  /**
550
- * @param org
551
- * @param username
552
576
  * @returns any No response body
553
577
  * @throws ApiError
554
578
  */
555
- public static careerResumeOrgsUsersUpdate(
579
+ public static careerResumeOrgsUsersUpdate({
580
+ org,
581
+ username,
582
+ }: {
556
583
  org: string,
557
584
  username: string,
558
- ): CancelablePromise<any> {
585
+ }): CancelablePromise<any> {
559
586
  return __request(OpenAPI, {
560
587
  method: 'PUT',
561
588
  url: '/api/career/resume/orgs/{org}/users/{username}/',