@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.
- package/dist/index.cjs.js +3038 -2750
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3038 -2750
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +3038 -2750
- package/dist/index.umd.js.map +1 -1
- package/dist/types/services/AnalyticsService.d.ts +42 -13
- package/dist/types/services/AudienceService.d.ts +345 -149
- package/dist/types/services/CareerService.d.ts +117 -90
- package/dist/types/services/CatalogService.d.ts +3735 -1072
- package/dist/types/services/CoreService.d.ts +421 -210
- package/dist/types/services/CredentialsService.d.ts +173 -138
- package/dist/types/services/DepartmentsService.d.ts +53 -16
- package/dist/types/services/EngagementService.d.ts +459 -179
- package/dist/types/services/FeaturesService.d.ts +16 -7
- package/dist/types/services/FinanceService.d.ts +49 -20
- package/dist/types/services/MediaResourcesService.d.ts +243 -67
- package/dist/types/services/NotificationBuilderService.d.ts +31 -17
- package/dist/types/services/NotificationService.d.ts +56 -49
- package/dist/types/services/OrgsService.d.ts +106 -77
- package/dist/types/services/OverviewService.d.ts +154 -55
- package/dist/types/services/PerformanceService.d.ts +132 -56
- package/dist/types/services/PerlearnerService.d.ts +431 -217
- package/dist/types/services/PlatformService.d.ts +221 -116
- package/dist/types/services/ProviderAssociationService.d.ts +3 -2
- package/dist/types/services/ProvidersService.d.ts +27 -18
- package/dist/types/services/ProvisionService.d.ts +3 -2
- package/dist/types/services/RecommendationsService.d.ts +3 -3
- package/dist/types/services/ReportsService.d.ts +22 -16
- package/dist/types/services/RolesService.d.ts +8 -6
- package/dist/types/services/SearchService.d.ts +305 -80
- package/dist/types/services/ServiceService.d.ts +33 -29
- package/dist/types/services/SkillsService.d.ts +40 -32
- package/dist/types/services/UserGroupsService.d.ts +53 -16
- package/package.json +1 -1
- package/src/services/AnalyticsService.ts +45 -16
- package/src/services/AudienceService.ts +380 -184
- package/src/services/CareerService.ts +144 -117
- package/src/services/CatalogService.ts +3995 -1332
- package/src/services/CoreService.ts +503 -286
- package/src/services/CredentialsService.ts +253 -173
- package/src/services/DepartmentsService.ts +56 -19
- package/src/services/EngagementService.ts +528 -236
- package/src/services/FeaturesService.ts +19 -10
- package/src/services/FinanceService.ts +54 -25
- package/src/services/MediaResourcesService.ts +251 -75
- package/src/services/NotificationBuilderService.ts +36 -22
- package/src/services/NotificationService.ts +73 -61
- package/src/services/OrgsService.ts +135 -106
- package/src/services/OverviewService.ts +172 -73
- package/src/services/PerformanceService.ts +153 -77
- package/src/services/PerlearnerService.ts +591 -279
- package/src/services/PlatformService.ts +278 -157
- package/src/services/ProviderAssociationService.ts +4 -3
- package/src/services/ProvidersService.ts +36 -27
- package/src/services/ProvisionService.ts +4 -3
- package/src/services/RecommendationsService.ts +5 -4
- package/src/services/ReportsService.ts +28 -22
- package/src/services/RolesService.ts +10 -8
- package/src/services/SearchService.ts +323 -98
- package/src/services/ServiceService.ts +49 -39
- package/src/services/SkillsService.ts +56 -44
- package/src/services/UserGroupsService.ts +56 -19
|
@@ -9,13 +9,14 @@ export class OrgsService {
|
|
|
9
9
|
/**
|
|
10
10
|
* GET /scim/v2/DepartmentMembers
|
|
11
11
|
* List all department members in the system.
|
|
12
|
-
* @param org
|
|
13
12
|
* @returns any No response body
|
|
14
13
|
* @throws ApiError
|
|
15
14
|
*/
|
|
16
|
-
public static orgsScimV2DepartmentMembersRetrieve(
|
|
15
|
+
public static orgsScimV2DepartmentMembersRetrieve({
|
|
16
|
+
org,
|
|
17
|
+
}: {
|
|
17
18
|
org: string,
|
|
18
|
-
): CancelablePromise<any> {
|
|
19
|
+
}): CancelablePromise<any> {
|
|
19
20
|
return __request(OpenAPI, {
|
|
20
21
|
method: 'GET',
|
|
21
22
|
url: '/api/orgs/{org}/scim/v2/DepartmentMembers/',
|
|
@@ -27,13 +28,14 @@ export class OrgsService {
|
|
|
27
28
|
/**
|
|
28
29
|
* POST /scim/v2/DepartmentMembers
|
|
29
30
|
* Create or update a department member using core logic. SCIM format.
|
|
30
|
-
* @param org
|
|
31
31
|
* @returns any No response body
|
|
32
32
|
* @throws ApiError
|
|
33
33
|
*/
|
|
34
|
-
public static orgsScimV2DepartmentMembersCreate(
|
|
34
|
+
public static orgsScimV2DepartmentMembersCreate({
|
|
35
|
+
org,
|
|
36
|
+
}: {
|
|
35
37
|
org: string,
|
|
36
|
-
): CancelablePromise<any> {
|
|
38
|
+
}): CancelablePromise<any> {
|
|
37
39
|
return __request(OpenAPI, {
|
|
38
40
|
method: 'POST',
|
|
39
41
|
url: '/api/orgs/{org}/scim/v2/DepartmentMembers/',
|
|
@@ -45,15 +47,16 @@ export class OrgsService {
|
|
|
45
47
|
/**
|
|
46
48
|
* GET /scim/v2/DepartmentMembers/{id}
|
|
47
49
|
* Get department members for a specific department (must belong to the requesting platform/org). SCIM format.
|
|
48
|
-
* @param id
|
|
49
|
-
* @param org
|
|
50
50
|
* @returns any No response body
|
|
51
51
|
* @throws ApiError
|
|
52
52
|
*/
|
|
53
|
-
public static orgsScimV2DepartmentMembersRetrieve2(
|
|
53
|
+
public static orgsScimV2DepartmentMembersRetrieve2({
|
|
54
|
+
id,
|
|
55
|
+
org,
|
|
56
|
+
}: {
|
|
54
57
|
id: string,
|
|
55
58
|
org: string,
|
|
56
|
-
): CancelablePromise<any> {
|
|
59
|
+
}): CancelablePromise<any> {
|
|
57
60
|
return __request(OpenAPI, {
|
|
58
61
|
method: 'GET',
|
|
59
62
|
url: '/api/orgs/{org}/scim/v2/DepartmentMembers/{id}/',
|
|
@@ -66,15 +69,16 @@ export class OrgsService {
|
|
|
66
69
|
/**
|
|
67
70
|
* PUT /scim/v2/DepartmentMembers/{id}
|
|
68
71
|
* Update a department member using core logic. SCIM format.
|
|
69
|
-
* @param id
|
|
70
|
-
* @param org
|
|
71
72
|
* @returns any No response body
|
|
72
73
|
* @throws ApiError
|
|
73
74
|
*/
|
|
74
|
-
public static orgsScimV2DepartmentMembersUpdate(
|
|
75
|
+
public static orgsScimV2DepartmentMembersUpdate({
|
|
76
|
+
id,
|
|
77
|
+
org,
|
|
78
|
+
}: {
|
|
75
79
|
id: string,
|
|
76
80
|
org: string,
|
|
77
|
-
): CancelablePromise<any> {
|
|
81
|
+
}): CancelablePromise<any> {
|
|
78
82
|
return __request(OpenAPI, {
|
|
79
83
|
method: 'PUT',
|
|
80
84
|
url: '/api/orgs/{org}/scim/v2/DepartmentMembers/{id}/',
|
|
@@ -87,15 +91,16 @@ export class OrgsService {
|
|
|
87
91
|
/**
|
|
88
92
|
* DELETE /scim/v2/DepartmentMembers/{id}
|
|
89
93
|
* Delete a department member using core logic. SCIM format.
|
|
90
|
-
* @param id
|
|
91
|
-
* @param org
|
|
92
94
|
* @returns void
|
|
93
95
|
* @throws ApiError
|
|
94
96
|
*/
|
|
95
|
-
public static orgsScimV2DepartmentMembersDestroy(
|
|
97
|
+
public static orgsScimV2DepartmentMembersDestroy({
|
|
98
|
+
id,
|
|
99
|
+
org,
|
|
100
|
+
}: {
|
|
96
101
|
id: string,
|
|
97
102
|
org: string,
|
|
98
|
-
): CancelablePromise<void> {
|
|
103
|
+
}): CancelablePromise<void> {
|
|
99
104
|
return __request(OpenAPI, {
|
|
100
105
|
method: 'DELETE',
|
|
101
106
|
url: '/api/orgs/{org}/scim/v2/DepartmentMembers/{id}/',
|
|
@@ -109,13 +114,14 @@ export class OrgsService {
|
|
|
109
114
|
* GET /scim/v2/Departments
|
|
110
115
|
*
|
|
111
116
|
* List departments in the system. Supports filtering and pagination.
|
|
112
|
-
* @param org
|
|
113
117
|
* @returns any No response body
|
|
114
118
|
* @throws ApiError
|
|
115
119
|
*/
|
|
116
|
-
public static orgsScimV2DepartmentsRetrieve(
|
|
120
|
+
public static orgsScimV2DepartmentsRetrieve({
|
|
121
|
+
org,
|
|
122
|
+
}: {
|
|
117
123
|
org: string,
|
|
118
|
-
): CancelablePromise<any> {
|
|
124
|
+
}): CancelablePromise<any> {
|
|
119
125
|
return __request(OpenAPI, {
|
|
120
126
|
method: 'GET',
|
|
121
127
|
url: '/api/orgs/{org}/scim/v2/Departments/',
|
|
@@ -128,13 +134,14 @@ export class OrgsService {
|
|
|
128
134
|
* POST /scim/v2/Departments
|
|
129
135
|
*
|
|
130
136
|
* Create a new department in the system.
|
|
131
|
-
* @param org
|
|
132
137
|
* @returns any No response body
|
|
133
138
|
* @throws ApiError
|
|
134
139
|
*/
|
|
135
|
-
public static orgsScimV2DepartmentsCreate(
|
|
140
|
+
public static orgsScimV2DepartmentsCreate({
|
|
141
|
+
org,
|
|
142
|
+
}: {
|
|
136
143
|
org: string,
|
|
137
|
-
): CancelablePromise<any> {
|
|
144
|
+
}): CancelablePromise<any> {
|
|
138
145
|
return __request(OpenAPI, {
|
|
139
146
|
method: 'POST',
|
|
140
147
|
url: '/api/orgs/{org}/scim/v2/Departments/',
|
|
@@ -147,15 +154,16 @@ export class OrgsService {
|
|
|
147
154
|
* GET /scim/v2/Departments/{id}
|
|
148
155
|
*
|
|
149
156
|
* Get details of a specific department.
|
|
150
|
-
* @param id
|
|
151
|
-
* @param org
|
|
152
157
|
* @returns any No response body
|
|
153
158
|
* @throws ApiError
|
|
154
159
|
*/
|
|
155
|
-
public static orgsScimV2DepartmentsRetrieve2(
|
|
160
|
+
public static orgsScimV2DepartmentsRetrieve2({
|
|
161
|
+
id,
|
|
162
|
+
org,
|
|
163
|
+
}: {
|
|
156
164
|
id: string,
|
|
157
165
|
org: string,
|
|
158
|
-
): CancelablePromise<any> {
|
|
166
|
+
}): CancelablePromise<any> {
|
|
159
167
|
return __request(OpenAPI, {
|
|
160
168
|
method: 'GET',
|
|
161
169
|
url: '/api/orgs/{org}/scim/v2/Departments/{id}/',
|
|
@@ -169,15 +177,16 @@ export class OrgsService {
|
|
|
169
177
|
* PUT /scim/v2/Departments/{id}
|
|
170
178
|
*
|
|
171
179
|
* Update a department's information.
|
|
172
|
-
* @param id
|
|
173
|
-
* @param org
|
|
174
180
|
* @returns any No response body
|
|
175
181
|
* @throws ApiError
|
|
176
182
|
*/
|
|
177
|
-
public static orgsScimV2DepartmentsUpdate(
|
|
183
|
+
public static orgsScimV2DepartmentsUpdate({
|
|
184
|
+
id,
|
|
185
|
+
org,
|
|
186
|
+
}: {
|
|
178
187
|
id: string,
|
|
179
188
|
org: string,
|
|
180
|
-
): CancelablePromise<any> {
|
|
189
|
+
}): CancelablePromise<any> {
|
|
181
190
|
return __request(OpenAPI, {
|
|
182
191
|
method: 'PUT',
|
|
183
192
|
url: '/api/orgs/{org}/scim/v2/Departments/{id}/',
|
|
@@ -191,15 +200,16 @@ export class OrgsService {
|
|
|
191
200
|
* DELETE /scim/v2/Departments/{id}
|
|
192
201
|
*
|
|
193
202
|
* Delete a department from the system.
|
|
194
|
-
* @param id
|
|
195
|
-
* @param org
|
|
196
203
|
* @returns void
|
|
197
204
|
* @throws ApiError
|
|
198
205
|
*/
|
|
199
|
-
public static orgsScimV2DepartmentsDestroy(
|
|
206
|
+
public static orgsScimV2DepartmentsDestroy({
|
|
207
|
+
id,
|
|
208
|
+
org,
|
|
209
|
+
}: {
|
|
200
210
|
id: string,
|
|
201
211
|
org: string,
|
|
202
|
-
): CancelablePromise<void> {
|
|
212
|
+
}): CancelablePromise<void> {
|
|
203
213
|
return __request(OpenAPI, {
|
|
204
214
|
method: 'DELETE',
|
|
205
215
|
url: '/api/orgs/{org}/scim/v2/Departments/{id}/',
|
|
@@ -213,15 +223,16 @@ export class OrgsService {
|
|
|
213
223
|
* POST /scim/v2/Departments/{id}/add_members
|
|
214
224
|
*
|
|
215
225
|
* Add members to a department.
|
|
216
|
-
* @param id
|
|
217
|
-
* @param org
|
|
218
226
|
* @returns any No response body
|
|
219
227
|
* @throws ApiError
|
|
220
228
|
*/
|
|
221
|
-
public static orgsScimV2DepartmentsAddMembersCreate(
|
|
229
|
+
public static orgsScimV2DepartmentsAddMembersCreate({
|
|
230
|
+
id,
|
|
231
|
+
org,
|
|
232
|
+
}: {
|
|
222
233
|
id: string,
|
|
223
234
|
org: string,
|
|
224
|
-
): CancelablePromise<any> {
|
|
235
|
+
}): CancelablePromise<any> {
|
|
225
236
|
return __request(OpenAPI, {
|
|
226
237
|
method: 'POST',
|
|
227
238
|
url: '/api/orgs/{org}/scim/v2/Departments/{id}/add_members/',
|
|
@@ -235,15 +246,16 @@ export class OrgsService {
|
|
|
235
246
|
* POST /scim/v2/Departments/{id}/remove_members
|
|
236
247
|
*
|
|
237
248
|
* Remove members from a department.
|
|
238
|
-
* @param id
|
|
239
|
-
* @param org
|
|
240
249
|
* @returns any No response body
|
|
241
250
|
* @throws ApiError
|
|
242
251
|
*/
|
|
243
|
-
public static orgsScimV2DepartmentsRemoveMembersCreate(
|
|
252
|
+
public static orgsScimV2DepartmentsRemoveMembersCreate({
|
|
253
|
+
id,
|
|
254
|
+
org,
|
|
255
|
+
}: {
|
|
244
256
|
id: string,
|
|
245
257
|
org: string,
|
|
246
|
-
): CancelablePromise<any> {
|
|
258
|
+
}): CancelablePromise<any> {
|
|
247
259
|
return __request(OpenAPI, {
|
|
248
260
|
method: 'POST',
|
|
249
261
|
url: '/api/orgs/{org}/scim/v2/Departments/{id}/remove_members/',
|
|
@@ -255,13 +267,14 @@ export class OrgsService {
|
|
|
255
267
|
}
|
|
256
268
|
/**
|
|
257
269
|
* SCIM Group Member endpoints for managing group members in the system.
|
|
258
|
-
* @param org
|
|
259
270
|
* @returns any No response body
|
|
260
271
|
* @throws ApiError
|
|
261
272
|
*/
|
|
262
|
-
public static orgsScimV2GroupMembersRetrieve(
|
|
273
|
+
public static orgsScimV2GroupMembersRetrieve({
|
|
274
|
+
org,
|
|
275
|
+
}: {
|
|
263
276
|
org: string,
|
|
264
|
-
): CancelablePromise<any> {
|
|
277
|
+
}): CancelablePromise<any> {
|
|
265
278
|
return __request(OpenAPI, {
|
|
266
279
|
method: 'GET',
|
|
267
280
|
url: '/api/orgs/{org}/scim/v2/GroupMembers/',
|
|
@@ -272,13 +285,14 @@ export class OrgsService {
|
|
|
272
285
|
}
|
|
273
286
|
/**
|
|
274
287
|
* SCIM Group Member endpoints for managing group members in the system.
|
|
275
|
-
* @param org
|
|
276
288
|
* @returns any No response body
|
|
277
289
|
* @throws ApiError
|
|
278
290
|
*/
|
|
279
|
-
public static orgsScimV2GroupMembersCreate(
|
|
291
|
+
public static orgsScimV2GroupMembersCreate({
|
|
292
|
+
org,
|
|
293
|
+
}: {
|
|
280
294
|
org: string,
|
|
281
|
-
): CancelablePromise<any> {
|
|
295
|
+
}): CancelablePromise<any> {
|
|
282
296
|
return __request(OpenAPI, {
|
|
283
297
|
method: 'POST',
|
|
284
298
|
url: '/api/orgs/{org}/scim/v2/GroupMembers/',
|
|
@@ -289,15 +303,16 @@ export class OrgsService {
|
|
|
289
303
|
}
|
|
290
304
|
/**
|
|
291
305
|
* SCIM Group Member endpoints for managing group members in the system.
|
|
292
|
-
* @param id
|
|
293
|
-
* @param org
|
|
294
306
|
* @returns any No response body
|
|
295
307
|
* @throws ApiError
|
|
296
308
|
*/
|
|
297
|
-
public static orgsScimV2GroupMembersRetrieve2(
|
|
309
|
+
public static orgsScimV2GroupMembersRetrieve2({
|
|
310
|
+
id,
|
|
311
|
+
org,
|
|
312
|
+
}: {
|
|
298
313
|
id: string,
|
|
299
314
|
org: string,
|
|
300
|
-
): CancelablePromise<any> {
|
|
315
|
+
}): CancelablePromise<any> {
|
|
301
316
|
return __request(OpenAPI, {
|
|
302
317
|
method: 'GET',
|
|
303
318
|
url: '/api/orgs/{org}/scim/v2/GroupMembers/{id}/',
|
|
@@ -309,15 +324,16 @@ export class OrgsService {
|
|
|
309
324
|
}
|
|
310
325
|
/**
|
|
311
326
|
* SCIM Group Member endpoints for managing group members in the system.
|
|
312
|
-
* @param id
|
|
313
|
-
* @param org
|
|
314
327
|
* @returns any No response body
|
|
315
328
|
* @throws ApiError
|
|
316
329
|
*/
|
|
317
|
-
public static orgsScimV2GroupMembersUpdate(
|
|
330
|
+
public static orgsScimV2GroupMembersUpdate({
|
|
331
|
+
id,
|
|
332
|
+
org,
|
|
333
|
+
}: {
|
|
318
334
|
id: string,
|
|
319
335
|
org: string,
|
|
320
|
-
): CancelablePromise<any> {
|
|
336
|
+
}): CancelablePromise<any> {
|
|
321
337
|
return __request(OpenAPI, {
|
|
322
338
|
method: 'PUT',
|
|
323
339
|
url: '/api/orgs/{org}/scim/v2/GroupMembers/{id}/',
|
|
@@ -329,15 +345,16 @@ export class OrgsService {
|
|
|
329
345
|
}
|
|
330
346
|
/**
|
|
331
347
|
* SCIM Group Member endpoints for managing group members in the system.
|
|
332
|
-
* @param id
|
|
333
|
-
* @param org
|
|
334
348
|
* @returns void
|
|
335
349
|
* @throws ApiError
|
|
336
350
|
*/
|
|
337
|
-
public static orgsScimV2GroupMembersDestroy(
|
|
351
|
+
public static orgsScimV2GroupMembersDestroy({
|
|
352
|
+
id,
|
|
353
|
+
org,
|
|
354
|
+
}: {
|
|
338
355
|
id: string,
|
|
339
356
|
org: string,
|
|
340
|
-
): CancelablePromise<void> {
|
|
357
|
+
}): CancelablePromise<void> {
|
|
341
358
|
return __request(OpenAPI, {
|
|
342
359
|
method: 'DELETE',
|
|
343
360
|
url: '/api/orgs/{org}/scim/v2/GroupMembers/{id}/',
|
|
@@ -349,13 +366,14 @@ export class OrgsService {
|
|
|
349
366
|
}
|
|
350
367
|
/**
|
|
351
368
|
* SCIM Group endpoints for managing user groups in the system (SCIM 2.0).
|
|
352
|
-
* @param org
|
|
353
369
|
* @returns any No response body
|
|
354
370
|
* @throws ApiError
|
|
355
371
|
*/
|
|
356
|
-
public static orgsScimV2GroupsRetrieve(
|
|
372
|
+
public static orgsScimV2GroupsRetrieve({
|
|
373
|
+
org,
|
|
374
|
+
}: {
|
|
357
375
|
org: string,
|
|
358
|
-
): CancelablePromise<any> {
|
|
376
|
+
}): CancelablePromise<any> {
|
|
359
377
|
return __request(OpenAPI, {
|
|
360
378
|
method: 'GET',
|
|
361
379
|
url: '/api/orgs/{org}/scim/v2/Groups/',
|
|
@@ -366,13 +384,14 @@ export class OrgsService {
|
|
|
366
384
|
}
|
|
367
385
|
/**
|
|
368
386
|
* SCIM Group endpoints for managing user groups in the system (SCIM 2.0).
|
|
369
|
-
* @param org
|
|
370
387
|
* @returns any No response body
|
|
371
388
|
* @throws ApiError
|
|
372
389
|
*/
|
|
373
|
-
public static orgsScimV2GroupsCreate(
|
|
390
|
+
public static orgsScimV2GroupsCreate({
|
|
391
|
+
org,
|
|
392
|
+
}: {
|
|
374
393
|
org: string,
|
|
375
|
-
): CancelablePromise<any> {
|
|
394
|
+
}): CancelablePromise<any> {
|
|
376
395
|
return __request(OpenAPI, {
|
|
377
396
|
method: 'POST',
|
|
378
397
|
url: '/api/orgs/{org}/scim/v2/Groups/',
|
|
@@ -385,15 +404,16 @@ export class OrgsService {
|
|
|
385
404
|
* GET /scim/v2/groups/{id}
|
|
386
405
|
*
|
|
387
406
|
* Get details of a specific user group.
|
|
388
|
-
* @param id
|
|
389
|
-
* @param org
|
|
390
407
|
* @returns any No response body
|
|
391
408
|
* @throws ApiError
|
|
392
409
|
*/
|
|
393
|
-
public static orgsScimV2GroupsRetrieve2(
|
|
410
|
+
public static orgsScimV2GroupsRetrieve2({
|
|
411
|
+
id,
|
|
412
|
+
org,
|
|
413
|
+
}: {
|
|
394
414
|
id: string,
|
|
395
415
|
org: string,
|
|
396
|
-
): CancelablePromise<any> {
|
|
416
|
+
}): CancelablePromise<any> {
|
|
397
417
|
return __request(OpenAPI, {
|
|
398
418
|
method: 'GET',
|
|
399
419
|
url: '/api/orgs/{org}/scim/v2/Groups/{id}/',
|
|
@@ -407,15 +427,16 @@ export class OrgsService {
|
|
|
407
427
|
* PUT /scim/v2/groups/{id}
|
|
408
428
|
*
|
|
409
429
|
* Update a user group's information.
|
|
410
|
-
* @param id
|
|
411
|
-
* @param org
|
|
412
430
|
* @returns any No response body
|
|
413
431
|
* @throws ApiError
|
|
414
432
|
*/
|
|
415
|
-
public static orgsScimV2GroupsUpdate(
|
|
433
|
+
public static orgsScimV2GroupsUpdate({
|
|
434
|
+
id,
|
|
435
|
+
org,
|
|
436
|
+
}: {
|
|
416
437
|
id: string,
|
|
417
438
|
org: string,
|
|
418
|
-
): CancelablePromise<any> {
|
|
439
|
+
}): CancelablePromise<any> {
|
|
419
440
|
return __request(OpenAPI, {
|
|
420
441
|
method: 'PUT',
|
|
421
442
|
url: '/api/orgs/{org}/scim/v2/Groups/{id}/',
|
|
@@ -429,15 +450,16 @@ export class OrgsService {
|
|
|
429
450
|
* DELETE /scim/v2/groups/{id}
|
|
430
451
|
*
|
|
431
452
|
* Delete a user group from the system.
|
|
432
|
-
* @param id
|
|
433
|
-
* @param org
|
|
434
453
|
* @returns void
|
|
435
454
|
* @throws ApiError
|
|
436
455
|
*/
|
|
437
|
-
public static orgsScimV2GroupsDestroy(
|
|
456
|
+
public static orgsScimV2GroupsDestroy({
|
|
457
|
+
id,
|
|
458
|
+
org,
|
|
459
|
+
}: {
|
|
438
460
|
id: string,
|
|
439
461
|
org: string,
|
|
440
|
-
): CancelablePromise<void> {
|
|
462
|
+
}): CancelablePromise<void> {
|
|
441
463
|
return __request(OpenAPI, {
|
|
442
464
|
method: 'DELETE',
|
|
443
465
|
url: '/api/orgs/{org}/scim/v2/Groups/{id}/',
|
|
@@ -451,15 +473,16 @@ export class OrgsService {
|
|
|
451
473
|
* POST /scim/v2/groups/{id}/add_members
|
|
452
474
|
*
|
|
453
475
|
* Add members to a user group.
|
|
454
|
-
* @param id
|
|
455
|
-
* @param org
|
|
456
476
|
* @returns any No response body
|
|
457
477
|
* @throws ApiError
|
|
458
478
|
*/
|
|
459
|
-
public static orgsScimV2GroupsAddMembersCreate(
|
|
479
|
+
public static orgsScimV2GroupsAddMembersCreate({
|
|
480
|
+
id,
|
|
481
|
+
org,
|
|
482
|
+
}: {
|
|
460
483
|
id: string,
|
|
461
484
|
org: string,
|
|
462
|
-
): CancelablePromise<any> {
|
|
485
|
+
}): CancelablePromise<any> {
|
|
463
486
|
return __request(OpenAPI, {
|
|
464
487
|
method: 'POST',
|
|
465
488
|
url: '/api/orgs/{org}/scim/v2/Groups/{id}/add_members/',
|
|
@@ -473,15 +496,16 @@ export class OrgsService {
|
|
|
473
496
|
* POST /scim/v2/groups/{id}/remove_members
|
|
474
497
|
*
|
|
475
498
|
* Remove members from a user group.
|
|
476
|
-
* @param id
|
|
477
|
-
* @param org
|
|
478
499
|
* @returns any No response body
|
|
479
500
|
* @throws ApiError
|
|
480
501
|
*/
|
|
481
|
-
public static orgsScimV2GroupsRemoveMembersCreate(
|
|
502
|
+
public static orgsScimV2GroupsRemoveMembersCreate({
|
|
503
|
+
id,
|
|
504
|
+
org,
|
|
505
|
+
}: {
|
|
482
506
|
id: string,
|
|
483
507
|
org: string,
|
|
484
|
-
): CancelablePromise<any> {
|
|
508
|
+
}): CancelablePromise<any> {
|
|
485
509
|
return __request(OpenAPI, {
|
|
486
510
|
method: 'POST',
|
|
487
511
|
url: '/api/orgs/{org}/scim/v2/Groups/{id}/remove_members/',
|
|
@@ -495,13 +519,14 @@ export class OrgsService {
|
|
|
495
519
|
* GET /scim/v2/users
|
|
496
520
|
*
|
|
497
521
|
* List users in the system. Supports filtering and pagination.
|
|
498
|
-
* @param org
|
|
499
522
|
* @returns any No response body
|
|
500
523
|
* @throws ApiError
|
|
501
524
|
*/
|
|
502
|
-
public static orgsScimV2UsersRetrieve(
|
|
525
|
+
public static orgsScimV2UsersRetrieve({
|
|
526
|
+
org,
|
|
527
|
+
}: {
|
|
503
528
|
org: string,
|
|
504
|
-
): CancelablePromise<any> {
|
|
529
|
+
}): CancelablePromise<any> {
|
|
505
530
|
return __request(OpenAPI, {
|
|
506
531
|
method: 'GET',
|
|
507
532
|
url: '/api/orgs/{org}/scim/v2/Users/',
|
|
@@ -514,13 +539,14 @@ export class OrgsService {
|
|
|
514
539
|
* POST /scim/v2/users
|
|
515
540
|
*
|
|
516
541
|
* Create a new user in the system.
|
|
517
|
-
* @param org
|
|
518
542
|
* @returns any No response body
|
|
519
543
|
* @throws ApiError
|
|
520
544
|
*/
|
|
521
|
-
public static orgsScimV2UsersCreate(
|
|
545
|
+
public static orgsScimV2UsersCreate({
|
|
546
|
+
org,
|
|
547
|
+
}: {
|
|
522
548
|
org: string,
|
|
523
|
-
): CancelablePromise<any> {
|
|
549
|
+
}): CancelablePromise<any> {
|
|
524
550
|
return __request(OpenAPI, {
|
|
525
551
|
method: 'POST',
|
|
526
552
|
url: '/api/orgs/{org}/scim/v2/Users/',
|
|
@@ -533,15 +559,16 @@ export class OrgsService {
|
|
|
533
559
|
* GET /scim/v2/users/{id}
|
|
534
560
|
*
|
|
535
561
|
* Get details of a specific user.
|
|
536
|
-
* @param id
|
|
537
|
-
* @param org
|
|
538
562
|
* @returns any No response body
|
|
539
563
|
* @throws ApiError
|
|
540
564
|
*/
|
|
541
|
-
public static orgsScimV2UsersRetrieve2(
|
|
565
|
+
public static orgsScimV2UsersRetrieve2({
|
|
566
|
+
id,
|
|
567
|
+
org,
|
|
568
|
+
}: {
|
|
542
569
|
id: string,
|
|
543
570
|
org: string,
|
|
544
|
-
): CancelablePromise<any> {
|
|
571
|
+
}): CancelablePromise<any> {
|
|
545
572
|
return __request(OpenAPI, {
|
|
546
573
|
method: 'GET',
|
|
547
574
|
url: '/api/orgs/{org}/scim/v2/Users/{id}/',
|
|
@@ -555,15 +582,16 @@ export class OrgsService {
|
|
|
555
582
|
* PUT /scim/v2/users/{id}
|
|
556
583
|
*
|
|
557
584
|
* Update a user's information.
|
|
558
|
-
* @param id
|
|
559
|
-
* @param org
|
|
560
585
|
* @returns any No response body
|
|
561
586
|
* @throws ApiError
|
|
562
587
|
*/
|
|
563
|
-
public static orgsScimV2UsersUpdate(
|
|
588
|
+
public static orgsScimV2UsersUpdate({
|
|
589
|
+
id,
|
|
590
|
+
org,
|
|
591
|
+
}: {
|
|
564
592
|
id: string,
|
|
565
593
|
org: string,
|
|
566
|
-
): CancelablePromise<any> {
|
|
594
|
+
}): CancelablePromise<any> {
|
|
567
595
|
return __request(OpenAPI, {
|
|
568
596
|
method: 'PUT',
|
|
569
597
|
url: '/api/orgs/{org}/scim/v2/Users/{id}/',
|
|
@@ -575,15 +603,16 @@ export class OrgsService {
|
|
|
575
603
|
}
|
|
576
604
|
/**
|
|
577
605
|
* DELETE /scim/v2/users/{id} is not supported.
|
|
578
|
-
* @param id
|
|
579
|
-
* @param org
|
|
580
606
|
* @returns void
|
|
581
607
|
* @throws ApiError
|
|
582
608
|
*/
|
|
583
|
-
public static orgsScimV2UsersDestroy(
|
|
609
|
+
public static orgsScimV2UsersDestroy({
|
|
610
|
+
id,
|
|
611
|
+
org,
|
|
612
|
+
}: {
|
|
584
613
|
id: string,
|
|
585
614
|
org: string,
|
|
586
|
-
): CancelablePromise<void> {
|
|
615
|
+
}): CancelablePromise<void> {
|
|
587
616
|
return __request(OpenAPI, {
|
|
588
617
|
method: 'DELETE',
|
|
589
618
|
url: '/api/orgs/{org}/scim/v2/Users/{id}/',
|