@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
@@ -30,13 +30,14 @@ export class ServiceService {
30
30
  * ```
31
31
  *
32
32
  * To create a tenant without a payment provider, call the API without ny of the above provider keys in the request body
33
- * @param requestBody
34
33
  * @returns TenantLaunchResponse
35
34
  * @throws ApiError
36
35
  */
37
- public static serviceLaunchTenantCreate(
36
+ public static serviceLaunchTenantCreate({
37
+ requestBody,
38
+ }: {
38
39
  requestBody: TenantLaunchRequest,
39
- ): CancelablePromise<TenantLaunchResponse> {
40
+ }): CancelablePromise<TenantLaunchResponse> {
40
41
  return __request(OpenAPI, {
41
42
  method: 'POST',
42
43
  url: '/api/service/launch/tenant/',
@@ -81,17 +82,18 @@ export class ServiceService {
81
82
  * {
82
83
  * "redirect_to": "https://checkout.stripe.com/xxx/xxxx/xxxx",
83
84
  * }
84
- * @param org
85
- * @param userId
86
- * @param requestBody
87
85
  * @returns StripeCheckoutSessionResponse
88
86
  * @throws ApiError
89
87
  */
90
- public static serviceOrgsUsersStripeCheckoutSessionCreate(
88
+ public static serviceOrgsUsersStripeCheckoutSessionCreate({
89
+ org,
90
+ userId,
91
+ requestBody,
92
+ }: {
91
93
  org: string,
92
94
  userId: string,
93
95
  requestBody: StripeCheckoutSessionRequest,
94
- ): CancelablePromise<StripeCheckoutSessionResponse> {
96
+ }): CancelablePromise<StripeCheckoutSessionResponse> {
95
97
  return __request(OpenAPI, {
96
98
  method: 'POST',
97
99
  url: '/api/service/orgs/{org}/users/{user_id}/stripe/checkout-session/',
@@ -105,17 +107,18 @@ export class ServiceService {
105
107
  }
106
108
  /**
107
109
  * Mixin that includes the StudentTokenAuthentication and IsAdminUserOrStudent
108
- * @param org
109
- * @param userId
110
- * @param requestBody
111
110
  * @returns StripeCustomerPortalResponse
112
111
  * @throws ApiError
113
112
  */
114
- public static serviceOrgsUsersStripeCustomerPortalCreate(
113
+ public static serviceOrgsUsersStripeCustomerPortalCreate({
114
+ org,
115
+ userId,
116
+ requestBody,
117
+ }: {
115
118
  org: string,
116
119
  userId: string,
117
120
  requestBody: StripeCustomerPortalRequest,
118
- ): CancelablePromise<StripeCustomerPortalResponse> {
121
+ }): CancelablePromise<StripeCustomerPortalResponse> {
119
122
  return __request(OpenAPI, {
120
123
  method: 'POST',
121
124
  url: '/api/service/orgs/{org}/users/{user_id}/stripe/customer-portal/',
@@ -129,15 +132,16 @@ export class ServiceService {
129
132
  }
130
133
  /**
131
134
  * Mixin that includes the StudentTokenAuthentication and IsAdminUserOrStudent
132
- * @param org
133
- * @param userId
134
135
  * @returns StripeLocalProduct
135
136
  * @throws ApiError
136
137
  */
137
- public static serviceOrgsUsersStripeProductsRetrieve(
138
+ public static serviceOrgsUsersStripeProductsRetrieve({
139
+ org,
140
+ userId,
141
+ }: {
138
142
  org: string,
139
143
  userId: string,
140
- ): CancelablePromise<StripeLocalProduct> {
144
+ }): CancelablePromise<StripeLocalProduct> {
141
145
  return __request(OpenAPI, {
142
146
  method: 'GET',
143
147
  url: '/api/service/orgs/{org}/users/{user_id}/stripe/products/',
@@ -149,15 +153,16 @@ export class ServiceService {
149
153
  }
150
154
  /**
151
155
  * Mixin that includes the StudentTokenAuthentication and IsPlatformAdmin
152
- * @param org
153
- * @param userId
154
156
  * @returns any No response body
155
157
  * @throws ApiError
156
158
  */
157
- public static serviceOrgsUsersStripeProductsManageCreate(
159
+ public static serviceOrgsUsersStripeProductsManageCreate({
160
+ org,
161
+ userId,
162
+ }: {
158
163
  org: string,
159
164
  userId: string,
160
- ): CancelablePromise<any> {
165
+ }): CancelablePromise<any> {
161
166
  return __request(OpenAPI, {
162
167
  method: 'POST',
163
168
  url: '/api/service/orgs/{org}/users/{user_id}/stripe/products/manage/',
@@ -169,17 +174,18 @@ export class ServiceService {
169
174
  }
170
175
  /**
171
176
  * Mixin that includes the StudentTokenAuthentication and IsAdminUserOrStudent
172
- * @param org
173
- * @param userId
174
- * @param requestBody
175
177
  * @returns StripeSubscriptionRenewalResponse
176
178
  * @throws ApiError
177
179
  */
178
- public static serviceOrgsUsersStripeSubscriptionRenewalCreate(
180
+ public static serviceOrgsUsersStripeSubscriptionRenewalCreate({
181
+ org,
182
+ userId,
183
+ requestBody,
184
+ }: {
179
185
  org: string,
180
186
  userId: string,
181
187
  requestBody: StripeSubscriptionRenewalRequest,
182
- ): CancelablePromise<StripeSubscriptionRenewalResponse> {
188
+ }): CancelablePromise<StripeSubscriptionRenewalResponse> {
183
189
  return __request(OpenAPI, {
184
190
  method: 'POST',
185
191
  url: '/api/service/orgs/{org}/users/{user_id}/stripe/subscription-renewal/',
@@ -193,15 +199,16 @@ export class ServiceService {
193
199
  }
194
200
  /**
195
201
  * Mixin that includes the StudentTokenAuthentication and IsAdminUserOrStudent
196
- * @param org
197
- * @param userId
198
202
  * @returns any No response body
199
203
  * @throws ApiError
200
204
  */
201
- public static serviceOrgsUsersStripeSubscriptionsRetrieve(
205
+ public static serviceOrgsUsersStripeSubscriptionsRetrieve({
206
+ org,
207
+ userId,
208
+ }: {
202
209
  org: string,
203
210
  userId: string,
204
- ): CancelablePromise<any> {
211
+ }): CancelablePromise<any> {
205
212
  return __request(OpenAPI, {
206
213
  method: 'GET',
207
214
  url: '/api/service/orgs/{org}/users/{user_id}/stripe/subscriptions/',
@@ -223,13 +230,14 @@ export class ServiceService {
223
230
  * - 404: Checkout session not found
224
231
  * - 400: Invalid checkout session or product
225
232
  * - 500: Server error during processing
226
- * @param platformKey
227
233
  * @returns any No response body
228
234
  * @throws ApiError
229
235
  */
230
- public static serviceOrgsStripeCoursePaymentCallbackRetrieve(
236
+ public static serviceOrgsStripeCoursePaymentCallbackRetrieve({
237
+ platformKey,
238
+ }: {
231
239
  platformKey: string,
232
- ): CancelablePromise<any> {
240
+ }): CancelablePromise<any> {
233
241
  return __request(OpenAPI, {
234
242
  method: 'GET',
235
243
  url: '/api/service/orgs/{platform_key}/stripe/course-payment-callback/',
@@ -239,13 +247,14 @@ export class ServiceService {
239
247
  });
240
248
  }
241
249
  /**
242
- * @param checkoutUuid
243
250
  * @returns any No response body
244
251
  * @throws ApiError
245
252
  */
246
- public static serviceStripeCheckoutRetrieve(
253
+ public static serviceStripeCheckoutRetrieve({
254
+ checkoutUuid,
255
+ }: {
247
256
  checkoutUuid: string,
248
- ): CancelablePromise<any> {
257
+ }): CancelablePromise<any> {
249
258
  return __request(OpenAPI, {
250
259
  method: 'GET',
251
260
  url: '/api/service/stripe/checkout/{checkout_uuid}/',
@@ -267,13 +276,14 @@ export class ServiceService {
267
276
  * {
268
277
  * "redirect_to": "https://checkout.stripe.com/xxx/xxxx/xxxx",
269
278
  * }
270
- * @param requestBody
271
279
  * @returns StripeCheckoutSessionResponse
272
280
  * @throws ApiError
273
281
  */
274
- public static serviceStripeCheckoutFreeTrialCreate(
282
+ public static serviceStripeCheckoutFreeTrialCreate({
283
+ requestBody,
284
+ }: {
275
285
  requestBody: StripeCheckoutSessionResponse,
276
- ): CancelablePromise<StripeCheckoutSessionResponse> {
286
+ }): CancelablePromise<StripeCheckoutSessionResponse> {
277
287
  return __request(OpenAPI, {
278
288
  method: 'POST',
279
289
  url: '/api/service/stripe/checkout/free-trial/',
@@ -30,13 +30,14 @@ export class SkillsService {
30
30
  * Access Control:
31
31
  * - Platform admins can access this information
32
32
  * - All authenticated users can access this information
33
- * @param org
34
33
  * @returns SkillInfo
35
34
  * @throws ApiError
36
35
  */
37
- public static skillsOrgsSkillsList(
36
+ public static skillsOrgsSkillsList({
37
+ org,
38
+ }: {
38
39
  org: string,
39
- ): CancelablePromise<Array<SkillInfo>> {
40
+ }): CancelablePromise<Array<SkillInfo>> {
40
41
  return __request(OpenAPI, {
41
42
  method: 'GET',
42
43
  url: '/api/skills/orgs/{org}/skills',
@@ -64,15 +65,16 @@ export class SkillsService {
64
65
  * Access Control:
65
66
  * - Platform admins can access this information
66
67
  * - All authenticated users can access this information
67
- * @param org
68
- * @param skillId
69
68
  * @returns PointsPercentile
70
69
  * @throws ApiError
71
70
  */
72
- public static skillsOrgsSkillsPercentileRetrieve(
71
+ public static skillsOrgsSkillsPercentileRetrieve({
72
+ org,
73
+ skillId,
74
+ }: {
73
75
  org: string,
74
76
  skillId: number,
75
- ): CancelablePromise<PointsPercentile> {
77
+ }): CancelablePromise<PointsPercentile> {
76
78
  return __request(OpenAPI, {
77
79
  method: 'GET',
78
80
  url: '/api/skills/orgs/{org}/skills/{skill_id}/percentile/',
@@ -101,15 +103,16 @@ export class SkillsService {
101
103
  * Access Control:
102
104
  * - Platform admins can access this information
103
105
  * - All authenticated users can access this information
104
- * @param org
105
- * @param skillName
106
106
  * @returns SkillDetail
107
107
  * @throws ApiError
108
108
  */
109
- public static skillsOrgsSkillsRetrieve(
109
+ public static skillsOrgsSkillsRetrieve({
110
+ org,
111
+ skillName,
112
+ }: {
110
113
  org: string,
111
114
  skillName: string,
112
- ): CancelablePromise<SkillDetail> {
115
+ }): CancelablePromise<SkillDetail> {
113
116
  return __request(OpenAPI, {
114
117
  method: 'GET',
115
118
  url: '/api/skills/orgs/{org}/skills/{skill_name}/',
@@ -121,13 +124,14 @@ export class SkillsService {
121
124
  }
122
125
  /**
123
126
  * Mixin that includes the StudentTokenAuthentication and IsAdminUserOrStudent
124
- * @param org
125
127
  * @returns PointsPercentile
126
128
  * @throws ApiError
127
129
  */
128
- public static skillsOrgsSkillsPercentileList(
130
+ public static skillsOrgsSkillsPercentileList({
131
+ org,
132
+ }: {
129
133
  org: string,
130
- ): CancelablePromise<Array<PointsPercentile>> {
134
+ }): CancelablePromise<Array<PointsPercentile>> {
131
135
  return __request(OpenAPI, {
132
136
  method: 'GET',
133
137
  url: '/api/skills/orgs/{org}/skills/percentile/',
@@ -176,13 +180,14 @@ export class SkillsService {
176
180
  *
177
181
  * Access Control:
178
182
  * - Only platform administrators can access this endpoint
179
- * @param org
180
183
  * @returns SkillThreshold
181
184
  * @throws ApiError
182
185
  */
183
- public static skillsOrgsSkillsThresholdsRetrieve(
186
+ public static skillsOrgsSkillsThresholdsRetrieve({
187
+ org,
188
+ }: {
184
189
  org: string,
185
- ): CancelablePromise<SkillThreshold> {
190
+ }): CancelablePromise<SkillThreshold> {
186
191
  return __request(OpenAPI, {
187
192
  method: 'GET',
188
193
  url: '/api/skills/orgs/{org}/skills/thresholds/',
@@ -231,15 +236,16 @@ export class SkillsService {
231
236
  *
232
237
  * Access Control:
233
238
  * - Only platform administrators can access this endpoint
234
- * @param org
235
- * @param requestBody
236
239
  * @returns SkillThreshold
237
240
  * @throws ApiError
238
241
  */
239
- public static skillsOrgsSkillsThresholdsCreate(
242
+ public static skillsOrgsSkillsThresholdsCreate({
243
+ org,
244
+ requestBody,
245
+ }: {
240
246
  org: string,
241
247
  requestBody: SkillThreshold,
242
- ): CancelablePromise<SkillThreshold> {
248
+ }): CancelablePromise<SkillThreshold> {
243
249
  return __request(OpenAPI, {
244
250
  method: 'POST',
245
251
  url: '/api/skills/orgs/{org}/skills/thresholds/',
@@ -290,15 +296,16 @@ export class SkillsService {
290
296
  *
291
297
  * Access Control:
292
298
  * - Only platform administrators can access this endpoint
293
- * @param org
294
- * @param requestBody
295
299
  * @returns SkillThreshold
296
300
  * @throws ApiError
297
301
  */
298
- public static skillsOrgsSkillsThresholdsPartialUpdate(
302
+ public static skillsOrgsSkillsThresholdsPartialUpdate({
303
+ org,
304
+ requestBody,
305
+ }: {
299
306
  org: string,
300
307
  requestBody?: PatchedSkillThreshold,
301
- ): CancelablePromise<SkillThreshold> {
308
+ }): CancelablePromise<SkillThreshold> {
302
309
  return __request(OpenAPI, {
303
310
  method: 'PATCH',
304
311
  url: '/api/skills/orgs/{org}/skills/thresholds/',
@@ -349,13 +356,14 @@ export class SkillsService {
349
356
  *
350
357
  * Access Control:
351
358
  * - Only platform administrators can access this endpoint
352
- * @param org
353
359
  * @returns void
354
360
  * @throws ApiError
355
361
  */
356
- public static skillsOrgsSkillsThresholdsDestroy(
362
+ public static skillsOrgsSkillsThresholdsDestroy({
363
+ org,
364
+ }: {
357
365
  org: string,
358
- ): CancelablePromise<void> {
366
+ }): CancelablePromise<void> {
359
367
  return __request(OpenAPI, {
360
368
  method: 'DELETE',
361
369
  url: '/api/skills/orgs/{org}/skills/thresholds/',
@@ -387,15 +395,16 @@ export class SkillsService {
387
395
  * Access Control:
388
396
  * - Platform admins can access any user's skill information
389
397
  * - Users can access their own skill information
390
- * @param org
391
- * @param userId
392
398
  * @returns UserSkill
393
399
  * @throws ApiError
394
400
  */
395
- public static skillsOrgsSkillsUsersRetrieve(
401
+ public static skillsOrgsSkillsUsersRetrieve({
402
+ org,
403
+ userId,
404
+ }: {
396
405
  org: string,
397
406
  userId: string,
398
- ): CancelablePromise<UserSkill> {
407
+ }): CancelablePromise<UserSkill> {
399
408
  return __request(OpenAPI, {
400
409
  method: 'GET',
401
410
  url: '/api/skills/orgs/{org}/skills/users/{user_id}/',
@@ -425,15 +434,16 @@ export class SkillsService {
425
434
  * Access Control:
426
435
  * - Platform admins can access any user's information
427
436
  * - Users can access their own information
428
- * @param org
429
- * @param userId
430
437
  * @returns DesiredSkill
431
438
  * @throws ApiError
432
439
  */
433
- public static skillsOrgsSkillsUsersDesiredSkillsRetrieve(
440
+ public static skillsOrgsSkillsUsersDesiredSkillsRetrieve({
441
+ org,
442
+ userId,
443
+ }: {
434
444
  org: string,
435
445
  userId: string,
436
- ): CancelablePromise<DesiredSkill> {
446
+ }): CancelablePromise<DesiredSkill> {
437
447
  return __request(OpenAPI, {
438
448
  method: 'GET',
439
449
  url: '/api/skills/orgs/{org}/skills/users/{user_id}/desired-skills/',
@@ -462,15 +472,16 @@ export class SkillsService {
462
472
  * Access Control:
463
473
  * - Platform admins can access any user's information
464
474
  * - Users can access their own information
465
- * @param org
466
- * @param userId
467
475
  * @returns UserSkillPointsPercentile
468
476
  * @throws ApiError
469
477
  */
470
- public static skillsOrgsSkillsUsersPointPercentileRetrieve(
478
+ public static skillsOrgsSkillsUsersPointPercentileRetrieve({
479
+ org,
480
+ userId,
481
+ }: {
471
482
  org: string,
472
483
  userId: string,
473
- ): CancelablePromise<UserSkillPointsPercentile> {
484
+ }): CancelablePromise<UserSkillPointsPercentile> {
474
485
  return __request(OpenAPI, {
475
486
  method: 'GET',
476
487
  url: '/api/skills/orgs/{org}/skills/users/{user_id}/point-percentile/',
@@ -500,15 +511,16 @@ export class SkillsService {
500
511
  * Access Control:
501
512
  * - Platform admins can access any user's information
502
513
  * - Users can access their own information
503
- * @param org
504
- * @param userId
505
514
  * @returns ReportedSkill
506
515
  * @throws ApiError
507
516
  */
508
- public static skillsOrgsSkillsUsersReportedSkillsRetrieve(
517
+ public static skillsOrgsSkillsUsersReportedSkillsRetrieve({
518
+ org,
519
+ userId,
520
+ }: {
509
521
  org: string,
510
522
  userId: string,
511
- ): CancelablePromise<ReportedSkill> {
523
+ }): CancelablePromise<ReportedSkill> {
512
524
  return __request(OpenAPI, {
513
525
  method: 'GET',
514
526
  url: '/api/skills/orgs/{org}/skills/users/{user_id}/reported-skills/',
@@ -33,39 +33,76 @@ export class UserGroupsService {
33
33
  * Access Control:
34
34
  * - Platform admins can see all groups
35
35
  * - Department admins can only see groups in their departments
36
- * @param key
37
- * @param departmentId When `department_mode=1` is passed, it allows to filter data for only user content groups for the specified department
38
- * @param endDate Filter by learners date_joined. Start date. ISO 8601
39
- * @param format Format
40
- *
41
- * * `json` - json
42
- * @param groups Groups search string. Single string or list of strings. e.g 'sample_group' or `['group', 'another group']`
43
- * @param includeMainPlatform Include main platform data
44
- * @param isEnrolled Filter for users who have at least an enrollment
45
- * @param length Size of data to return
46
- * @param location Location search string
47
- * @param page Page offset
48
- * @param pathway Pathway string
49
- * @param program Program search string
50
- * @param startDate Filter by learners date_joined. Start date. ISO 8601
51
36
  * @returns GroupList
52
37
  * @throws ApiError
53
38
  */
54
- public static userGroupsOrgsRetrieve(
39
+ public static userGroupsOrgsRetrieve({
40
+ key,
41
+ departmentId,
42
+ endDate,
43
+ format = 'json',
44
+ groups,
45
+ includeMainPlatform = true,
46
+ isEnrolled,
47
+ length,
48
+ location,
49
+ page,
50
+ pathway,
51
+ program,
52
+ startDate,
53
+ }: {
55
54
  key: string,
55
+ /**
56
+ * When `department_mode=1` is passed, it allows to filter data for only user content groups for the specified department
57
+ */
56
58
  departmentId?: number,
59
+ /**
60
+ * Filter by learners date_joined. Start date. ISO 8601
61
+ */
57
62
  endDate?: string,
58
- format: 'json' = 'json',
63
+ /**
64
+ * Format
65
+ *
66
+ * * `json` - json
67
+ */
68
+ format?: 'json',
69
+ /**
70
+ * Groups search string. Single string or list of strings. e.g 'sample_group' or `['group', 'another group']`
71
+ */
59
72
  groups?: Array<string>,
60
- includeMainPlatform: boolean = true,
73
+ /**
74
+ * Include main platform data
75
+ */
76
+ includeMainPlatform?: boolean,
77
+ /**
78
+ * Filter for users who have at least an enrollment
79
+ */
61
80
  isEnrolled?: boolean | null,
81
+ /**
82
+ * Size of data to return
83
+ */
62
84
  length?: number,
85
+ /**
86
+ * Location search string
87
+ */
63
88
  location?: string,
89
+ /**
90
+ * Page offset
91
+ */
64
92
  page?: number,
93
+ /**
94
+ * Pathway string
95
+ */
65
96
  pathway?: string,
97
+ /**
98
+ * Program search string
99
+ */
66
100
  program?: string,
101
+ /**
102
+ * Filter by learners date_joined. Start date. ISO 8601
103
+ */
67
104
  startDate?: string,
68
- ): CancelablePromise<GroupList> {
105
+ }): CancelablePromise<GroupList> {
69
106
  return __request(OpenAPI, {
70
107
  method: 'GET',
71
108
  url: '/api/user-groups/orgs/{key}/',